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
|
/**
* \file expressionparser.h
* Simple parser for expressions.
*
* \b Project: Kid3
* \author Urs Fleisch
* \date 23 Jan 2008
*
* Copyright (C) 2008-2024 Urs Fleisch
*
* This file is part of Kid3.
*
* Kid3 is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Kid3 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* The RPN tokenizer is based on ExprEvaluator,
* Copyright (C) 2004 the VideoLAN team, under the same license.
*/
#include "expressionparser.h"
namespace {
/**
* Convert a string to a boolean.
*
* @param str string
* @param b the boolean is returned here
*
* @return true if ok.
*/
bool stringToBool(const QString& str, bool& b)
{
if (str == QLatin1String("1") || str == QLatin1String("true") ||
str == QLatin1String("on") || str == QLatin1String("yes")) {
b = true;
return true;
}
if (str == QLatin1String("0") || str == QLatin1String("false") ||
str == QLatin1String("off") || str == QLatin1String("no")) {
b = false;
return true;
}
return false;
}
/**
* Convert a boolean to a string.
*
* @param b boolean to convert
*
* @return "1" or "0".
*/
QString boolToString(bool b)
{
return b ? QLatin1String("1") : QLatin1String("0");
}
}
/**
* Constructor.
*
* @param operators additional operators (besides not, and, or),
* highest priority first
*/
ExpressionParser::ExpressionParser(QStringList operators) : // clazy:exclude=function-args-by-ref
m_operators(operators << QLatin1String("not") << QLatin1String("and")
<< QLatin1String("or")),
m_error(false)
{
}
/**
* Compare operator priority.
*
* @return true if op1 has less priority than op2.
*/
bool ExpressionParser::lessPriority(const QString& op1,
const QString& op2) const
{
int index1 = m_operators.indexOf(op1);
int index2 = m_operators.indexOf(op2);
if (op1 == QLatin1String("(")) return true;
if (index1 >= 0 && index2 >= 0) return index1 >= index2;
return false;
}
/**
* Tokenize an expression in reverse polish notation.
*
* @param expr with strings, operators, not, and, or, (, ).
*/
void ExpressionParser::tokenizeRpn(const QString& expr)
{
m_rpnStack.clear();
QStringList operatorStack;
QString token;
int begin = 0, end = 0, len = expr.length();
while (begin < len) {
// skip spaces
while (expr[begin] == QLatin1Char(' ')) {
++begin;
}
if (expr[begin] == QLatin1Char('(')) {
// push '(' on operator stack and continue
operatorStack.push_back(QLatin1String("("));
++begin;
} else if (expr[begin] == QLatin1Char(')')) {
// after ')', pop operator stack until '(' is found
while (!operatorStack.empty()) {
QString lastOp = operatorStack.back();
operatorStack.pop_back();
if (lastOp == QLatin1String("(")) {
break;
}
m_rpnStack.push_back(lastOp);
}
++begin;
} else {
if (expr[begin] == QLatin1Char('"')) {
// skip quoted string
end = begin + 1;
while (end < len &&
!(expr[end] == QLatin1Char('"') &&
(end <= 0 || expr[end - 1] != QLatin1Char('\\')))) {
++end;
}
token = expr.mid(begin + 1, end - begin - 1);
token.replace(QLatin1String("\\\""), QLatin1String("\""));
begin = end + 1;
} else {
// skip spaces
end = begin;
while (end < len && expr[end] != QLatin1Char(' ') &&
expr[end] != QLatin1Char(')')) {
++end;
}
token = expr.mid(begin, end - begin);
begin = end;
}
if (m_operators.contains(token)) {
// pop the operator stack while the token has lower priority
while (!operatorStack.empty() &&
lessPriority(token, operatorStack.back())) {
QString lastOp = operatorStack.back();
operatorStack.pop_back();
m_rpnStack.push_back(lastOp);
}
operatorStack.push_back(token);
} else {
m_rpnStack.push_back(token);
}
}
}
// pop operator stack
while (!operatorStack.empty()) {
QString lastOp = operatorStack.back();
operatorStack.pop_back();
m_rpnStack.push_back(lastOp);
}
m_rpnIterator = m_rpnStack.constBegin();
}
/**
* Clear the variable stack before restarting an evaluation.
*/
void ExpressionParser::clearEvaluation()
{
m_rpnIterator = m_rpnStack.constBegin();
m_varStack.clear();
m_error = false;
}
/**
* Pop a boolean from the variable stack.
* Can be used to get the result after evaluate() returns false and
* no error occurred.
*
* @param var the boolean is returned here
*
* @return true if ok.
*/
bool ExpressionParser::popBool(bool& var)
{
if (m_varStack.empty() || !stringToBool(m_varStack.back(), var)) {
return false;
}
m_varStack.pop_back();
return true;
}
/**
* Push a boolean to the variable stack.
* Can be used to push the result of the operation returned by
* evaluate() back onto the variable stack.
*
* @param var boolean to push
*/
void ExpressionParser::pushBool(bool var)
{
m_varStack.push_back(boolToString(var));
}
/**
* Pop two booleans from the variable stack.
*
* @param var1 first boolean
* @param var2 second boolean
*
* @return true if ok.
*/
bool ExpressionParser::popTwoBools(bool& var1, bool& var2)
{
if (m_varStack.empty() || !stringToBool(m_varStack.back(), var1)) {
return false;
}
m_varStack.pop_back();
if (m_varStack.empty() || !stringToBool(m_varStack.back(), var2)) {
return false;
}
m_varStack.pop_back();
return true;
}
/**
* Evaluate the RPN stack.
* Boolean operations and, or, not are performed automatically. If another
* operation has to be performed, the method stops and returns operator
* and variables. The result can then be pushed onto the stack using
* pushBool() and then the method can be called again.
*
* @param op the operator is returned here
* @param var1 the first variable is returned here
* @param var2 the second variable is returned here
*
* @return true if the RPN stack has more to evaluate,
* if false, the evaluation is finished.
*/
bool ExpressionParser::evaluate(QString& op, QString& var1, QString& var2)
{
while (m_rpnIterator != m_rpnStack.constEnd()) {
if (QString token = *m_rpnIterator++; token == QLatin1String("and")) {
bool b1, b2;
if (!popTwoBools(b1, b2)) {
m_error = true;
break;
}
pushBool(b1 && b2);
} else if (token == QLatin1String("or")) {
bool b1, b2;
if (!popTwoBools(b1, b2)) {
m_error = true;
break;
}
pushBool(b1 || b2);
} else if (token == QLatin1String("not")) {
bool var;
if (!popBool(var)) {
m_error = true;
break;
}
pushBool(!var);
} else if (m_operators.contains(token)) {
if (m_varStack.empty()) {
m_error = true;
break;
}
var1 = m_varStack.back();
m_varStack.pop_back();
if (m_varStack.empty()) {
m_error = true;
break;
}
var2 = m_varStack.back();
m_varStack.pop_back();
op = token;
return true;
} else {
m_varStack.push_back(token);
}
}
return false;
}
|