/* SPDX-FileCopyrightText: 2014-2015 Vishesh Handa SPDX-FileCopyrightText: 2014 Denis Steckelmacher SPDX-License-Identifier: LGPL-2.1-or-later */ #include "advancedqueryparser.h" #include #include #include using namespace Baloo; AdvancedQueryParser::AdvancedQueryParser() { } static QStringList lex(const QString& text) { QStringList tokenList; QString token; bool inQuotes = false; for (int i = 0, end = text.size(); i != end; ++i) { QChar c = text.at(i); if (c == QLatin1Char('"')) { // Quotes start or end string literals if (inQuotes) { tokenList.append(token); token.clear(); } inQuotes = !inQuotes; } else if (inQuotes) { // Don't do any processing in strings token.append(c); } else if (c.isSpace()) { // Spaces end tokens if (!token.isEmpty()) { tokenList.append(token); token.clear(); } } else if (c == QLatin1Char('(') || c == QLatin1Char(')')) { // Parentheses end tokens, and are tokens by themselves if (!token.isEmpty()) { tokenList.append(token); token.clear(); } tokenList.append(c); } else if (c == QLatin1Char('>') || c == QLatin1Char('<') || c == QLatin1Char(':') || c == QLatin1Char('=')) { // Operators end tokens if (!token.isEmpty()) { tokenList.append(token); token.clear(); } // accept '=' after any of the above if (((i + 1) < end) && (text.at(i + 1) == QLatin1Char('='))) { tokenList.append(text.mid(i, 2)); i++; } else { tokenList.append(c); } } else { // Simply extend the current token token.append(c); } } if (!token.isEmpty()) { tokenList.append(token); } return tokenList; } static void addTermToStack(QStack& stack, const Term& termInConstruction, Term::Operation op) { Term &tos = stack.top(); tos = Term(tos, op, termInConstruction); } Term AdvancedQueryParser::parse(const QString& text) { // The parser does not do any look-ahead but has to store some state QStack stack; QStack ops; Term termInConstruction; bool valueExpected = false; stack.push(Term()); ops.push(Term::And); // Lex the input string QStringList tokens = lex(text); for (const QString &token : tokens) { // If a key and an operator have been parsed, now is time for a value if (valueExpected) { // When the parser encounters a literal, it puts it in the value of // termInConstruction so that "foo bar baz" is parsed as expected. auto property = termInConstruction.value().toString(); if (property.isEmpty()) { qDebug() << "Binary operator without first argument encountered:" << text; return Term(); } termInConstruction.setProperty(property); termInConstruction.setValue(token); valueExpected = false; continue; } // Handle the logic operators if (token == QLatin1String("AND")) { if (!termInConstruction.isEmpty()) { addTermToStack(stack, termInConstruction, ops.top()); termInConstruction = Term(); } ops.top() = Term::And; continue; } else if (token == QLatin1String("OR")) { if (!termInConstruction.isEmpty()) { addTermToStack(stack, termInConstruction, ops.top()); termInConstruction = Term(); } ops.top() = Term::Or; continue; } // Handle the different comparators (and braces) Term::Comparator comparator = Term::Auto; switch (token.isEmpty() ? '\0' : token.at(0).toLatin1()) { case ':': comparator = Term::Contains; break; case '=': comparator = Term::Equal; break; case '<': { if (token.size() == 1) { comparator = Term::Less; } else if (token[1] == QLatin1Char('=')) { comparator = Term::LessEqual; } break; } case '>': { if (token.size() == 1) { comparator = Term::Greater; } else if (token[1] == QLatin1Char('=')) { comparator = Term::GreaterEqual; } break; } case '(': if (!termInConstruction.isEmpty()) { addTermToStack(stack, termInConstruction, ops.top()); ops.top() = Term::And; } stack.push(Term()); ops.push(Term::And); termInConstruction = Term(); continue; case ')': // Prevent a stack underflow if the user writes "a b ))))" if (stack.size() > 1) { // Don't forget the term just before the closing brace if (termInConstruction.value().isValid()) { addTermToStack(stack, termInConstruction, ops.top()); } // stack.pop() is the term that has just been closed. Append // it to the term just above it. ops.pop(); addTermToStack(stack, stack.pop(), ops.top()); ops.top() = Term::And; termInConstruction = Term(); } continue; default: break; } if (comparator != Term::Auto) { // Set the comparator of the term in construction and expect a value termInConstruction.setComparator(comparator); valueExpected = true; } else { // A new term will be started, so termInConstruction has to be appended // to the top-level subterm list. if (!termInConstruction.isEmpty()) { addTermToStack(stack, termInConstruction, ops.top()); ops.top() = Term::And; } termInConstruction = Term(QString(), token); } } if (valueExpected) { termInConstruction.setProperty(termInConstruction.value().toString()); termInConstruction.setValue(QString()); termInConstruction.setComparator(Term::Contains); } if (termInConstruction.value().isValid()) { addTermToStack(stack, termInConstruction, ops.top()); } // Process unclosed parentheses ops.pop(); while (stack.size() > 1) { // stack.pop() is the term that has to be closed. Append // it to the term just above it. addTermToStack(stack, stack.pop(), ops.top()); } return stack.top(); }