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
|
#include "parsercontext.h"
#include "parsererror.h"
#include "lexer.h"
#include <QDebug>
ParserContext::~ParserContext()
{
cleanUp();
}
void ParserContext::addQuery(SqliteQuery *query)
{
parsedQueries << SqliteQueryPtr(query);
}
void ParserContext::error(TokenPtr token, const QString &text)
{
if (token->start > -1 && token->end > -1)
errors << new ParserError(token, text);
else if (managedTokens.size() > 0)
errors << new ParserError(managedTokens.last()->start, managedTokens.last()->end + 1, text);
else
errors << new ParserError(text);
successful = false;
}
void ParserContext::error(Token* token, const QString& text)
{
if (token->type != Token::INVALID)
error(getTokenPtr(token), text);
else if (managedTokens.size() > 0)
error(managedTokens.last(), text);
else
error(text);
}
void ParserContext::error(const QString &text)
{
errors << new ParserError(text);
successful = false;
}
void ParserContext::minorErrorAfterLastToken(const QString &text)
{
if (ignoreMinorErrors)
return;
if (managedTokens.isEmpty())
{
qCritical() << "Tried to report minor error after last token, but there's no tokens!";
return;
}
error(managedTokens.last(), text);
}
void ParserContext::minorErrorBeforeNextToken(const QString &text)
{
if (ignoreMinorErrors)
return;
raiseErrorBeforeNextToken = true;
nextTokenError = text;
}
void ParserContext::errorAfterLastToken(const QString& text)
{
if (managedTokens.isEmpty())
{
qCritical() << "Tried to report error after last token, but there's no tokens!";
return;
}
error(managedTokens.last(), text);
}
void ParserContext::errorBeforeNextToken(const QString& text)
{
raiseErrorBeforeNextToken = true;
nextTokenError = text;
}
void ParserContext::errorAtToken(const QString& text, int pos)
{
if (managedTokens.isEmpty())
{
qCritical() << "Tried to report error at token" << pos << ", but there's no tokens!";
return;
}
int idx = managedTokens.size() - 1 + pos;
if (idx < 0 && idx >= managedTokens.size())
{
qCritical() << "Tried to report error at token" << pos << ", calculated idx was out of range:" << idx
<< "(manages tokens size:" << managedTokens.size() << ").";
return;
}
error(managedTokens[idx], text);
}
void ParserContext::flushErrors()
{
if (raiseErrorBeforeNextToken && !ignoreMinorErrors)
{
if (managedTokens.size() > 0)
error(managedTokens.last(), QObject::tr("Incomplete query."));
else
error(QObject::tr("Incomplete query."));
nextTokenError = QString();
raiseErrorBeforeNextToken = false;
}
}
TokenPtr ParserContext::getTokenPtr(Token* token)
{
if (tokenPtrMap.contains(token))
return tokenPtrMap[token];
TokenPtr tokenPtr = Lexer::getEveryTokenTypePtr(token);
if (!tokenPtr.isNull())
return tokenPtr;
qWarning() << "No TokenPtr for Token*. Token asked:" << token->toString();
return TokenPtr();
}
TokenList ParserContext::getTokenPtrList(const QList<Token*>& tokens)
{
TokenList resList;
for (Token* token : tokens)
resList << getTokenPtr(token);
return resList;
}
void ParserContext::addManagedToken(TokenPtr token)
{
managedTokens << token;
tokenPtrMap[token.data()] = token;
if (raiseErrorBeforeNextToken)
{
error(token, nextTokenError);
nextTokenError = QString();
raiseErrorBeforeNextToken = false;
}
}
bool ParserContext::isSuccessful() const
{
return successful;
}
const QList<SqliteQueryPtr>& ParserContext::getQueries()
{
return parsedQueries;
}
const QList<ParserError *> &ParserContext::getErrors()
{
return errors;
}
QVariant *ParserContext::handleNumberToken(const QString &tokenValue)
{
recentNumberIsCandidateForMaxNegative = false;
bool ok;
if (tokenValue.startsWith("0x", Qt::CaseInsensitive))
{
qint64 i64 = tokenValue.toLongLong(&ok, 16);
if (!ok)
{
quint64 ui64 = tokenValue.toULongLong(&ok, 16);
i64 = static_cast<qint64>(ui64);
}
return new QVariant(i64);
}
else if (tokenValue == "9223372036854775808") // max negative longlong value, but without a sign
{
recentNumberIsCandidateForMaxNegative = true;
return new QVariant(static_cast<qint64>(0L));
}
QVariant varLong = QVariant(tokenValue).toLongLong(&ok);
if (!ok)
varLong = QVariant(tokenValue).toDouble();
return new QVariant(varLong);
}
bool ParserContext::isCandidateForMaxNegativeNumber() const
{
return recentNumberIsCandidateForMaxNegative;
}
void ParserContext::cleanUp()
{
for (ParserError*& err : errors)
delete err;
parsedQueries.clear();
errors.clear();
managedTokens.clear();
nextTokenError.clear();
tokenPtrMap.clear();
raiseErrorBeforeNextToken = false;
successful = true;
}
bool ParserContext::isManagedToken(Token* token)
{
return tokenPtrMap.contains(token);
}
TokenList ParserContext::getManagedTokens()
{
return managedTokens;
}
|