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
|
#include "Worker.h"
#include <QTimer>
#include <LuminaXDG.h>
#include <LuminaUtils.h>
Worker::Worker(QObject *parent) : QObject(parent){
//Get the list of all applications and save them in an easily-searchable form
XDGDesktopList APPS;
APPS.updateList();
QList<XDGDesktop*> apps = APPS.apps(false,false);
for(int i=0; i<apps.length(); i++){
applist << ":::1:::"+apps[i]->name+":::2:::"+apps[i]->genericName+":::3:::"+apps[i]->comment+":::4:::"+apps[i]->filePath;
}
stopsearch = false;
}
Worker::~Worker(){
stopsearch = true;
}
void Worker::StartSearch(QString term, bool isApp){
sterm=term; sapp=isApp;
if(stopsearch){
//Need to stop the current search first - give it a moment first
QTimer::singleShot(100,this, SLOT(beginsearch()) );
}else{
//Start immediately
QTimer::singleShot(0,this, SLOT(beginsearch()) );
}
}
void Worker::StopSearch(){
stopsearch = true;
}
bool Worker::searchDir(QString dirpath){
//This is a recursive search algorithm for scanning a directory
QDir dir(dirpath);
//First look for files that match the search term
if(stopsearch){ return true; }
emit SearchUpdate( QString(tr("Searching: %1")).arg(dirpath.replace(QDir::homePath(),"~")) );
QStringList tmp;
if(sterm.startsWith(".")){ tmp = dir.entryList(QStringList(sterm), QDir::AllEntries | QDir::NoDotAndDotDot | QDir::Hidden, QDir::Name); }
else{ tmp = dir.entryList(QStringList(sterm), QDir::AllEntries | QDir::NoDotAndDotDot , QDir::Name); }
for(int i=0; i<tmp.length(); i++){
if(stopsearch){ return true; }
emit FoundItem( dir.absoluteFilePath(tmp[i]) );
}
if(stopsearch){ return true; }
//Now recursively scan the sub directories
tmp = dir.entryList(QDir::Dirs | QDir::NoDotAndDotDot , QDir::Name);
for(int i=0; i<tmp.length(); i++){
if(stopsearch){ return true; }
if( skipDirs.contains(dir.absoluteFilePath(tmp[i])) ){ continue; } //this dir is skipped
if( searchDir(dir.absoluteFilePath(tmp[i])) ){ return true; }
}
return false;
}
void Worker::beginsearch(){
stopsearch = false; //just starting search - always set this to false initially
emit SearchUpdate( QString(tr("Starting Search: %1")).arg(sterm) );
//Now Perform the search
if(sapp){
//First try to match based on the name
QStringList tmp = applist.filter(":::1:::"+sterm, Qt::CaseInsensitive);
tmp.sort();
for(int i=0; i<tmp.length(); i++){
if(stopsearch){ return; }
emit FoundItem( tmp[i].section(":::4:::",1,1) );
}
//Check if this is a binary name
if(stopsearch){ return; }
if(LUtils::isValidBinary(sterm)){
emit FoundItem(sterm);
return;
}
//If items found, go ahead and stop now
if(stopsearch){ return; }
if(tmp.length()<1){
//Now try to match based on the generic name
tmp = applist.filter(":::2:::"+sterm, Qt::CaseInsensitive);
tmp.sort();
for(int i=0; i<tmp.length(); i++){
if(stopsearch){ return; }
emit FoundItem( tmp[i].section(":::4:::",1,1) );
}
}
//If items found, go ahead and stop now
if(stopsearch){ return; }
if(tmp.length()<1){
//Now try to match based on anything (name/genericname/comment)
tmp = applist.filter(sterm, Qt::CaseInsensitive);
tmp.sort();
for(int i=0; i<tmp.length(); i++){
if(stopsearch){ return; }
emit FoundItem( tmp[i].section(":::4:::",1,1) );
}
}
}else{
//Search through the user's home directory and look for a file/dir starting with that term
if(!sterm.contains("*")){
sterm.prepend("*"); sterm.append("*"); //make sure it is a search glob pattern
}
if(startDir.isEmpty()){ startDir = QDir::homePath(); }
searchDir(startDir);
}
emit SearchUpdate( tr("Search Finished") );
emit SearchDone();
}
|