Albert S
407ee1210c
Search for content and paths. Merge lone words for content search. This behaviour is much more natural than typing "c:()".
38 lines
890 B
C++
38 lines
890 B
C++
#include <QCommandLineParser>
|
|
#include "commandsearch.h"
|
|
#include "databasefactory.h"
|
|
#include "logger.h"
|
|
|
|
int CommandSearch::handle(QStringList arguments)
|
|
{
|
|
QCommandLineParser parser;
|
|
parser.addOptions({
|
|
{{"r", "reverse"},
|
|
"Print most-recent changed files first. This is short for adding \"sort:(mtime asc)\" to the query."},
|
|
});
|
|
|
|
parser.addHelpOption();
|
|
parser.process(arguments);
|
|
|
|
QStringList files = parser.positionalArguments();
|
|
QString queryStrings = files.join(' ');
|
|
LooqsQuery query = LooqsQuery::build(queryStrings, TokenType::FILTER_PATH_CONTAINS, false);
|
|
bool reverse = parser.isSet("reverse");
|
|
if(reverse)
|
|
{
|
|
SortCondition sc;
|
|
sc.field = FILE_MTIME;
|
|
sc.order = ASC;
|
|
query.addSortCondition(sc);
|
|
}
|
|
|
|
auto results = dbService->search(query);
|
|
|
|
for(SearchResult &result : results)
|
|
{
|
|
Logger::info() << result.fileData.absPath << Qt::endl;
|
|
}
|
|
|
|
return 0;
|
|
}
|