1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
|
//===========================================
// Lumina-DE source code
// Copyright (c) 2013-2016, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
#include "LUtils.h"
#include "LuminaOS.h"
#include "LuminaXDG.h"
#include <QApplication>
#include <QtConcurrent>
#include <unistd.h>
/*inline QStringList ProcessRun(QString cmd, QStringList args){
//Assemble outputs
QStringList out; out << "1" << ""; //error code, string output
QProcess proc;
QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
env.insert("LANG", "C");
env.insert("LC_MESSAGES", "C");
proc.setProcessEnvironment(env);
proc.setProcessChannelMode(QProcess::MergedChannels);
if(args.isEmpty()){
proc.start(cmd, QIODevice::ReadOnly);
}else{
proc.start(cmd,args ,QIODevice::ReadOnly);
}
QString info;
while(!proc.waitForFinished(1000)){
if(proc.state() == QProcess::NotRunning){ break; } //somehow missed the finished signal
QString tmp = proc.readAllStandardOutput();
if(tmp.isEmpty()){ proc.terminate(); }
else{ info.append(tmp); }
}
out[0] = QString::number(proc.exitCode());
out[1] = info+QString(proc.readAllStandardOutput());
return out;
}*/
//=============
// LUtils Functions
//=============
//Return the path to one of the XDG standard directories
QString LUtils::standardDirectory(StandardDir dir, bool createAsNeeded){
// enum StandardDir {Desktop, Documents, Downloads, Music, Pictures, PublicShare, Templates, Videos}
QString var="XDG_%1_DIR";
QString defval="$HOME";
QString val;
switch (dir){
case Desktop:
var = var.arg("DESKTOP");
defval.append("/Desktop");
break;
case Documents:
var = var.arg("DOCUMENTS");
defval.append("/Documents");
break;
case Downloads:
var = var.arg("DOWNLOAD");
defval.append("/Downloads");
break;
case Music:
var = var.arg("MUSIC");
defval.append("/Music");
break;
case Pictures:
var = var.arg("PICTURES");
defval.append("/Pictures");
break;
case PublicShare:
var = var.arg("PUBLICSHARE");
break;
case Templates:
var = var.arg("TEMPLATES");
break;
case Videos:
var = var.arg("VIDEOS");
defval.append("/Videos");
break;
}
//Read the XDG user dirs file (if it exists)
QString configdir = getenv("XDG_DATA_HOME");
if(configdir.isEmpty()){ configdir = QDir::homePath()+"/.config"; }
QString conffile=configdir+"/user-dirs.dirs";
if(QFile::exists(conffile)){
static QStringList _contents;
static QDateTime _lastread;
if(_contents.isEmpty() || _lastread < QFileInfo(conffile).lastModified()){
_contents = LUtils::readFile(conffile);
_lastread = QDateTime::currentDateTime();
}
QStringList match = _contents.filter(var+"=");
if(!match.isEmpty()){
val = match.first().section("=",-1).simplified();
if(val.startsWith("\"")){ val = val.remove(0,1); }
if(val.endsWith("\"")){ val.chop(1); }
}
}
//Now check the value and return it
if(val.isEmpty()){ val = defval; }; //use the default value
val = val.replace("$HOME", QDir::homePath());
if(createAsNeeded && !QFile::exists(val) ){
QDir dir;
dir.mkpath(val);
}
return val;
}
QString LUtils::runCommand(bool &success, QString command, QStringList arguments, QString workdir, QStringList env){
QProcess proc;
proc.setProcessChannelMode(QProcess::MergedChannels); //need output
//First setup the process environment as necessary
QProcessEnvironment PE = QProcessEnvironment::systemEnvironment();
if(!env.isEmpty()){
for(int i=0; i<env.length(); i++){
if(!env[i].contains("=")){ continue; }
PE.insert(env[i].section("=",0,0), env[i].section("=",1,100));
}
}
proc.setProcessEnvironment(PE);
//if a working directory is specified, check it and use it
if(!workdir.isEmpty()){
proc.setWorkingDirectory(workdir);
}
//Now run the command (with any optional arguments)
if(arguments.isEmpty()){ proc.start(command); }
else{ proc.start(command, arguments); }
//Wait for the process to finish (but don't block the event loop)
QString info;
while(!proc.waitForFinished(1000)){
if(proc.state() == QProcess::NotRunning){ break; } //somehow missed the finished signal
QString tmp = proc.readAllStandardOutput();
if(tmp.isEmpty()){ proc.terminate(); }
else{ info.append(tmp); }
}
info.append(proc.readAllStandardOutput()); //make sure we don't miss anything in the output
success = (proc.exitCode()==0); //return success/failure
return info;
}
int LUtils::runCmd(QString cmd, QStringList args){
bool success;
LUtils::runCommand(success, cmd, args);
return success;
/*QFuture<QStringList> future = QtConcurrent::run(ProcessRun, cmd, args);
return future.result()[0].toInt(); //turn it back into an integer return code*/
}
QStringList LUtils::getCmdOutput(QString cmd, QStringList args){
bool success;
QString log = LUtils::runCommand(success, cmd, args);
return log.split("\n");
/*QFuture<QStringList> future = QtConcurrent::run(ProcessRun, cmd, args);
return future.result()[1].split("\n"); //Split the return message into lines*/
}
QStringList LUtils::readFile(QString filepath){
QStringList out;
QFile file(filepath);
if(file.open(QIODevice::Text | QIODevice::ReadOnly)){
QTextStream in(&file);
while(!in.atEnd()){
out << in.readLine();
}
file.close();
}
return out;
}
bool LUtils::writeFile(QString filepath, QStringList contents, bool overwrite){
QFile file(filepath);
if(file.exists() && !overwrite){ return false; }
bool ok = false;
if(contents.isEmpty()){ contents << "\n"; }
if( file.open(QIODevice::WriteOnly | QIODevice::Truncate) ){
QTextStream out(&file);
out << contents.join("\n");
if(!contents.last().isEmpty()){ out << "\n"; } //always end with a new line
file.close();
ok = true;
}
return ok;
}
bool LUtils::isValidBinary(QString& bin){
//Trim off any quotes
if(bin.startsWith("\"") && bin.endsWith("\"")){ bin.chop(1); bin = bin.remove(0,1); }
if(bin.startsWith("\'") && bin.endsWith("\'")){ bin.chop(1); bin = bin.remove(0,1); }
//Now look for relative/absolute path
if(!bin.startsWith("/")){
//Relative path: search for it on the current "PATH" settings
QStringList paths = QString(qgetenv("PATH")).split(":");
for(int i=0; i<paths.length(); i++){
if(QFile::exists(paths[i]+"/"+bin)){ bin = paths[i]+"/"+bin; break;}
}
}
//bin should be the full path by now
if(!bin.startsWith("/")){ return false; }
QFileInfo info(bin);
bool good = (info.exists() && info.isExecutable());
if(good){ bin = info.absoluteFilePath(); }
return good;
}
QSettings* LUtils::openSettings(QString org, QString name, QObject *parent){
//Start with the base configuration directory
QString path = QString(getenv("XDG_CONFIG_HOME")).simplified();
if(path.isEmpty()){ path = QDir::homePath()+"/.config"; }
//Now add the organization directory
path = path+"/"+org;
QDir dir(path);
if(!dir.exists()){ dir.mkpath(path); }
//Now generate/check the name of the file
unsigned int user = getuid();
QString filepath = dir.absoluteFilePath(name+".conf");
if(user==0){
//special case - make sure we don't clobber the user-permissioned file
QString rootfilepath = dir.absoluteFilePath(name+"_root.conf");
if(!QFileInfo::exists(rootfilepath) && QFileInfo::exists(filepath)){
QFile::copy(filepath, rootfilepath); //make a copy of the user settings before they start to diverge
}
return (new QSettings(rootfilepath, QSettings::IniFormat, parent));
}else{
return (new QSettings(filepath, QSettings::IniFormat, parent));
}
}
QStringList LUtils::systemApplicationDirs(){
//Returns a list of all the directories where *.desktop files can be found
QStringList appDirs = QString(getenv("XDG_DATA_HOME")).split(":");
appDirs << QString(getenv("XDG_DATA_DIRS")).split(":");
if(appDirs.isEmpty()){ appDirs << "/usr/local/share" << "/usr/share" << LOS::AppPrefix()+"/share" << LOS::SysPrefix()+"/share" << L_SHAREDIR; }
appDirs.removeDuplicates();
//Now create a valid list
QStringList out;
for(int i=0; i<appDirs.length(); i++){
if( QFile::exists(appDirs[i]+"/applications") ){
out << appDirs[i]+"/applications";
//Also check any subdirs within this directory
// (looking at you KDE - stick to the standards!!)
out << LUtils::listSubDirectories(appDirs[i]+"/applications");
}
}
//qDebug() << "System Application Dirs:" << out;
return out;
}
QString LUtils::GenerateOpenTerminalExec(QString term, QString dirpath){
//Check the input terminal application (default/fallback - determined by calling application)
//if(!LUtils::isValidBinary(term)){
if(term.endsWith(".desktop")){
//Pull the binary name out of the shortcut
XDGDesktop DF(term);
if(DF.type == XDGDesktop::BAD){ term = "xterm"; }
else{ term= DF.exec.section(" ",0,0); } //only take the binary name - not any other flags
}else{
term = "xterm"; //fallback
}
//}
//Now create the calling command for the designated terminal
// NOTE: While the "-e" routine is supposed to be universal, many terminals do not properly use it
// so add some special/known terminals here as necessary
QString exec;
qWarning() << " - Reached terminal initialization" << term;
if(term=="mate-terminal" || term=="lxterminal" || term=="gnome-terminal"){
exec = term+" --working-directory=\""+dirpath+"\"";
}else if(term=="xfce4-terminal"){
exec = term+" --default-working-directory=\""+dirpath+"\"";
}else if(term=="konsole" || term == "qterminal"){
exec = term+" --workdir \""+dirpath+"\"";
}else{
//-e is the parameter for most of the terminal appliction to execute an external command.
//In this case we start a shell in the selected directory
//Need the user's shell first
QString shell = QString(getenv("SHELL"));
if(!LUtils::isValidBinary(shell)){ shell = "/bin/sh"; } //universal fallback for a shell
exec = term + " -e \"cd " + dirpath + " && " + shell + " \" ";
}
qDebug() << exec;
return exec;
}
QStringList LUtils::listSubDirectories(QString dir, bool recursive){
//This is a recursive method for returning the full paths of all subdirectories (if recursive flag is enabled)
QDir maindir(dir);
QStringList out;
QStringList subs = maindir.entryList(QDir::NoDotAndDotDot | QDir::Dirs, QDir::Name);
for(int i=0; i<subs.length(); i++){
out << maindir.absoluteFilePath(subs[i]);
if(recursive){
out << LUtils::listSubDirectories(maindir.absoluteFilePath(subs[i]), recursive);
}
}
return out;
}
QString LUtils::PathToAbsolute(QString path){
//Convert an input path to an absolute path (this does not check existance ot anything)
if(path.startsWith("/")){ return path; } //already an absolute path
if(path.startsWith("~")){ path.replace(0,1,QDir::homePath()); }
if(!path.startsWith("/")){
//Must be a relative path
if(path.startsWith("./")){ path = path.remove(2); }
path.prepend( QDir::currentPath()+"/");
}
return path;
}
QString LUtils::AppToAbsolute(QString path){
if(path.startsWith("~/")){ path = path.replace("~/", QDir::homePath()+"/" ); }
if(path.startsWith("/") || QFile::exists(path)){ return path; }
if(path.endsWith(".desktop")){
//Look in the XDG dirs
QStringList dirs = systemApplicationDirs();
for(int i=0; i<dirs.length(); i++){
if(QFile::exists(dirs[i]+"/"+path)){ return (dirs[i]+"/"+path); }
}
}else{
//Look on $PATH for the binary
QStringList paths = QString(getenv("PATH")).split(":");
for(int i=0; i<paths.length(); i++){
if(QFile::exists(paths[i]+"/"+path)){ return (paths[i]+"/"+path); }
}
}
return path;
}
QStringList LUtils::videoExtensions() {
static QStringList vidExtensions;
vidExtensions << "avi" << "mkv" << "mp4" << "mov" << "webm" << "wmv";
return vidExtensions;
}
QStringList LUtils::imageExtensions(bool wildcards){
//Note that all the image extensions are lowercase!!
static QStringList imgExtensions;
static QStringList imgExtensionsWC;
if(imgExtensions.isEmpty()){
QList<QByteArray> fmt = QImageReader::supportedImageFormats();
for(int i=0; i<fmt.length(); i++){
imgExtensionsWC << "*."+QString::fromLocal8Bit(fmt[i]);
imgExtensions << QString::fromLocal8Bit(fmt[i]);
}
}
if(wildcards){ return imgExtensionsWC; }
return imgExtensions;
}
QTranslator* LUtils::LoadTranslation(QApplication *app, QString appname, QString locale, QTranslator *cTrans){
//Get the current localization
QString langEnc = "UTF-8"; //default value
QString langCode = locale; //provided locale
if(langCode.isEmpty()){ langCode = getenv("LC_ALL"); }
if(langCode.isEmpty()){ langCode = getenv("LANG"); }
if(langCode.isEmpty()){ langCode = "en_US.UTF-8"; } //default to US english
//See if the encoding is included and strip it out as necessary
if(langCode.contains(".")){
langEnc = langCode.section(".",-1);
langCode = langCode.section(".",0,0);
}
//Now verify the encoding for the locale
if(langCode =="C" || langCode=="POSIX" || langCode.isEmpty()){
langEnc = "System"; //use the Qt system encoding
}
if(app !=0){
qDebug() << "Loading Locale:" << appname << langCode << langEnc;
//If an existing translator was provided, remove it first (will be replaced)
if(cTrans!=0){ app->removeTranslator(cTrans); }
//Setup the translator
cTrans = new QTranslator();
//Use the shortened locale code if specific code does not have a corresponding file
if(!QFile::exists(LOS::LuminaShare()+"i18n/"+appname+"_" + langCode + ".qm") && langCode!="en_US" ){
langCode.truncate( langCode.indexOf("_") );
}
QString filename = appname+"_"+langCode+".qm";
//qDebug() << "FileName:" << filename << "Dir:" << LOS::LuminaShare()+"i18n/";
if( cTrans->load( filename, LOS::LuminaShare()+"i18n/" ) ){
app->installTranslator( cTrans );
}else{
//Translator could not be loaded for some reason
cTrans = 0;
if(langCode!="en_US"){
qWarning() << " - Could not load Locale:" << langCode;
}
}
}else{
//Only going to set the encoding since no application given
qDebug() << "Loading System Encoding:" << langEnc;
}
//Load current encoding for this locale
QTextCodec::setCodecForLocale( QTextCodec::codecForName(langEnc.toUtf8()) );
return cTrans;
}
QStringList LUtils::knownLocales(){
QDir i18n = QDir(LOS::LuminaShare()+"i18n");
if( !i18n.exists() ){ return QStringList(); }
QStringList files = i18n.entryList(QStringList() << "lumina-desktop_*.qm", QDir::Files, QDir::Name);
if(files.isEmpty()){ return QStringList(); }
//Now strip off the filename and just leave the locale tag
for(int i=0; i<files.length(); i++){
files[i].chop(3); //remove the ".qm" on the end
files[i] = files[i].section("_",1,50).simplified();
}
files << "en_US"; //default locale
files.sort();
return files;
}
void LUtils::setLocaleEnv(QString lang, QString msg, QString time, QString num,QString money,QString collate, QString ctype){
//Adjust the current locale environment variables
bool all = false;
if(msg.isEmpty() && time.isEmpty() && num.isEmpty() && money.isEmpty() && collate.isEmpty() && ctype.isEmpty() ){
if(lang.isEmpty()){ return; } //nothing to do - no changes requested
all = true; //set everything to the "lang" value
}
//If no lang given, but others are given, then use the current setting
if(lang.isEmpty()){ lang = getenv("LC_ALL"); }
if(lang.isEmpty()){ lang = getenv("LANG"); }
if(lang.isEmpty()){ lang = "en_US"; }
//Now go through and set/unset the environment variables
// - LANG & LC_ALL
if(!lang.contains(".")){ lang.append(".UTF-8"); }
setenv("LANG",lang.toUtf8() ,1); //overwrite setting (this is always required as the fallback)
if(all){ setenv("LC_ALL",lang.toUtf8() ,1); }
else{ unsetenv("LC_ALL"); } //make sure the custom settings are used
// - LC_MESSAGES
if(msg.isEmpty()){ unsetenv("LC_MESSAGES"); }
else{
if(!msg.contains(".")){ msg.append(".UTF-8"); }
setenv("LC_MESSAGES",msg.toUtf8(),1);
}
// - LC_TIME
if(time.isEmpty()){ unsetenv("LC_TIME"); }
else{
if(!time.contains(".")){ time.append(".UTF-8"); }
setenv("LC_TIME",time.toUtf8(),1);
}
// - LC_NUMERIC
if(num.isEmpty()){ unsetenv("LC_NUMERIC"); }
else{
if(!num.contains(".")){ num.append(".UTF-8"); }
setenv("LC_NUMERIC",num.toUtf8(),1);
}
// - LC_MONETARY
if(money.isEmpty()){ unsetenv("LC_MONETARY"); }
else{
if(!money.contains(".")){ money.append(".UTF-8"); }
setenv("LC_MONETARY",money.toUtf8(),1);
}
// - LC_COLLATE
if(collate.isEmpty()){ unsetenv("LC_COLLATE"); }
else{
if(!collate.contains(".")){ collate.append(".UTF-8"); }
setenv("LC_COLLATE",collate.toUtf8(),1);
}
// - LC_CTYPE
if(ctype.isEmpty()){ unsetenv("LC_CTYPE"); }
else{
if(!ctype.contains(".")){ ctype.append(".UTF-8"); }
setenv("LC_CTYPE",ctype.toUtf8(),1);
}
}
QString LUtils::currentLocale(){
QString curr = getenv("LC_ALL");// = QLocale::system();
if(curr.isEmpty()){ curr = getenv("LANG"); }
if(curr.isEmpty()){ curr = "en_US"; }
curr = curr.section(".",0,0); //remove any encodings off the end
return curr;
}
double LUtils::DisplaySizeToBytes(QString num){
//qDebug() << "Convert Num to Bytes:" << num;
num = num.toLower().simplified();
num = num.remove(" ");
if(num.isEmpty()){ return 0.0; }
if(num.endsWith("b")){ num.chop(1); } //remove the "bytes" marker (if there is one)
QString lab = "b";
if(!num[num.size()-1].isNumber()){
lab = num.right(1); num.chop(1);
}
double N = num.toDouble();
QStringList labs; labs <<"b"<<"k"<<"m"<<"g"<<"t"<<"p"; //go up to petabytes for now
for(int i=0; i<labs.length(); i++){
if(lab==labs[i]){ break; }//already at the right units - break out
N = N*1024.0; //Move to the next unit of measurement
}
//qDebug() << " - Done:" << QString::number(N) << lab << num;
return N;
}
QString LUtils::BytesToDisplaySize(qint64 ibytes){
static QStringList labs = QStringList();
if(labs.isEmpty()){ labs << "B" << "K" << "M" << "G" << "T" << "P"; }
//Now get the dominant unit
int c=0;
double bytes = ibytes; //need to keep decimel places for calculations
while(bytes>=1000 && c<labs.length() ){
bytes = bytes/1024;
c++;
} //labs[c] is the unit
//Bytes are now
//Now format the number (up to 3 digits, not including decimel places)
QString num;
if(bytes>=100){
//No decimel places
num = QString::number(qRound(bytes));
}else if(bytes>=10){
//need 1 decimel place
num = QString::number( (qRound(bytes*10)/10.0) );
}else if(bytes>=1){
//need 2 decimel places
num = QString::number( (qRound(bytes*100)/100.0) );
}else{
//Fully decimel (3 places)
num = "0."+QString::number(qRound(bytes*1000));
}
//qDebug() << "Bytes to Human-readable:" << bytes << c << num << labs[c];
return (num+labs[c]);
}
QString LUtils::SecondsToDisplay(int secs){
if(secs < 0){ return "??"; }
QString rem; //remaining
if(secs > 3600){
int hours = secs/3600;
rem.append( QString::number(hours)+"h ");
secs = secs - (hours*3600);
}
if(secs > 60){
int min = secs/60;
rem.append( QString::number(min)+"m ");
secs = secs - (min*60);
}
if(secs > 0){
rem.append( QString::number(secs)+"s");
}else{
rem.append( "0s" );
}
return rem;
}
|