23 static const QRegExp IDENTIFIER_RE(
"^[A-Za-z_\x80-\xff][A-Za-z0-9_\x80-\xff]*$" );
35 "=",
"<>",
"<=",
">=",
"<",
">",
"LIKE",
"NOT LIKE",
"ILIKE",
"NOT ILIKE",
"IS",
"IS NOT",
36 "+",
"-",
"*",
"/",
"//",
"%",
"^",
49 "",
"LEFT",
"LEFT OUTER",
"RIGHT",
"RIGHT OUTER",
"CROSS",
"INNER",
"FULL" 65 return tr(
"(no root)" );
72 return QStringLiteral(
"\"%1\"" ).arg( name.replace(
'\"', QLatin1String(
"\"\"" ) ) );
78 static const char *
const RESERVED_KEYWORDS[] =
80 "AND",
"OR",
"NOT",
"LIKE",
"IN",
"IS",
"BETWEEN",
"NULL",
"SELECT",
"ALL",
"DISTINCT",
"CAST",
"AS",
81 "FROM",
"JOIN",
"ON",
"USING",
"WHERE",
"ORDER",
"BY",
"ASC",
"DESC",
82 "LEFT",
"RIGHT",
"INNER",
"OUTER",
"CROSS",
"FULL",
"NATURAL",
"UNION",
83 "OFFSET",
"LIMIT",
"GROUP",
"HAVING" 86 for (
size_t i = 0; i <
sizeof( RESERVED_KEYWORDS ) /
sizeof( RESERVED_KEYWORDS[0] ); ++i )
88 if ( name.compare( QString( RESERVED_KEYWORDS[i] ), Qt::CaseInsensitive ) == 0 )
98 if ( text.length() >= 2 && text[0] ==
'"' && text[text.length() - 1] ==
'"' )
101 text = text.mid( 1, text.length() - 2 );
104 text.replace( QLatin1String(
"\"\"" ), QLatin1String(
"\"" ) );
111 text.replace(
'\'', QLatin1String(
"''" ) );
112 text.replace(
'\\', QLatin1String(
"\\\\" ) );
113 text.replace(
'\n', QLatin1String(
"\\n" ) );
114 text.replace(
'\t', QLatin1String(
"\\t" ) );
115 return QStringLiteral(
"'%1'" ).arg( text );
132 if ( &other !=
this )
164 const auto constTables = n.
tables();
167 table->accept( *
this );
169 const auto constColumns = n.
columns();
172 column->accept( *
this );
174 const auto constJoins = n.
joins();
177 join->accept( *
this );
182 const auto constOrderBy = n.
orderBy();
185 column->accept( *
this );
228 tableNamesDeclared.insert( n.
alias().isEmpty() ? n.
name() : n.
alias() );
237 errorMsgOut = tr(
"No root node" );
247 if ( !errorMsgOut.isEmpty() )
248 errorMsgOut += QLatin1String(
" " );
249 errorMsgOut += QString( tr(
"Table %1 is referenced by column %2, but not selected in FROM / JOIN." ) ).arg( pair.first, pair.second );
253 return errorMsgOut.isEmpty();
270 const auto constMList = mList;
271 for (
Node *node : constMList )
273 nl->
mList.append( node->clone() );
283 const auto constMList = mList;
284 for (
Node *n : constMList )
286 if ( !first ) msg += QLatin1String(
", " );
349 Q_ASSERT(
false &&
"unexpected binary operator" );
384 Q_ASSERT(
false &&
"unexpected binary operator" );
394 QString rdump( mOpRight->dump() );
399 rdump.prepend(
'(' ).append(
')' );
403 if ( leftAssociative() )
405 fmt += lOp && ( lOp->
precedence() < precedence() ) ?
"(%1)" :
"%1";
406 fmt += QLatin1String(
" %2 " );
407 fmt += rOp && ( rOp->
precedence() <= precedence() ) ?
"(%3)" :
"%3";
411 fmt += lOp && ( lOp->
precedence() <= precedence() ) ?
"(%1)" :
"%1";
412 fmt += QLatin1String(
" %2 " );
413 fmt += rOp && ( rOp->
precedence() < precedence() ) ?
"(%3)" :
"%3";
428 return QStringLiteral(
"%1 %2IN (%3)" ).arg( mNode->dump(), mNotIn ?
"NOT " :
"", mList->dump() );
433 return new NodeInOperator( mNode->clone(), mList->clone(), mNotIn );
440 return QStringLiteral(
"%1 %2BETWEEN %3 AND %4" ).arg( mNode->dump(), mNotBetween ?
"NOT " :
"", mMinVal->dump(), mMaxVal->dump() );
445 return new NodeBetweenOperator( mNode->clone(), mMinVal->clone(), mMaxVal->clone(), mNotBetween );
452 return QStringLiteral(
"%1(%2)" ).arg( mName, mArgs ? mArgs->dump() : QString() );
457 return new NodeFunction( mName, mArgs ? mArgs->clone() : nullptr );
464 if ( mValue.isNull() )
465 return QStringLiteral(
"NULL" );
467 switch ( mValue.type() )
470 return QString::number( mValue.toInt() );
471 case QVariant::LongLong:
472 return QString::number( mValue.toLongLong() );
473 case QVariant::Double:
474 return QString::number( mValue.toDouble() );
475 case QVariant::String:
478 return mValue.toBool() ?
"TRUE" :
"FALSE";
480 return tr(
"[unsupported type: %1; value: %2]" ).arg( mValue.typeName(), mValue.toString() );
495 ret += QLatin1String(
"DISTINCT " );
496 if ( !mTableName.isEmpty() )
522 ret += mColumnNode->dump();
523 if ( !mAlias.isEmpty() )
525 ret += QLatin1String(
" AS " );
548 if ( !mAlias.isEmpty() )
550 ret += QLatin1String(
" AS " );
570 qDeleteAll( mTableList );
571 qDeleteAll( mColumns );
572 qDeleteAll( mJoins );
574 qDeleteAll( mOrderBy );
579 QString ret = QStringLiteral(
"SELECT " );
581 ret += QLatin1String(
"DISTINCT " );
582 bool bFirstColumn =
true;
583 const auto constMColumns = mColumns;
587 ret += QLatin1String(
", " );
588 bFirstColumn =
false;
589 ret += column->dump();
591 ret += QLatin1String(
" FROM " );
592 bool bFirstTable =
true;
593 const auto constMTableList = mTableList;
597 ret += QLatin1String(
", " );
599 ret += table->dump();
601 const auto constMJoins = mJoins;
609 ret += QLatin1String(
" WHERE " );
610 ret += mWhere->dump();
612 if ( !mOrderBy.isEmpty() )
614 ret += QLatin1String(
" ORDER BY " );
616 const auto constMOrderBy = mOrderBy;
620 ret += QLatin1String(
", " );
622 ret += orderBy->dump();
630 QList<QgsSQLStatement::NodeSelectedColumn *> newColumnList;
631 const auto constMColumns = mColumns;
634 newColumnList.push_back( column->cloneThis() );
636 QList<QgsSQLStatement::NodeTableDef *> newTableList;
637 const auto constMTableList = mTableList;
640 newTableList.push_back( table->cloneThis() );
643 const auto constMJoins = mJoins;
650 newSelect->
setWhere( mWhere->clone() );
652 QList<QgsSQLStatement::NodeColumnSorted *> newOrderByList;
653 const auto constMOrderBy = mOrderBy;
656 newOrderByList.push_back( columnSorted->cloneThis() );
670 ret += QLatin1String(
" " );
672 ret += QLatin1String(
"JOIN " );
673 ret += mTableDef->dump();
676 ret += QLatin1String(
" ON " );
677 ret += mOnExpr->dump();
681 ret += QLatin1String(
" USING (" );
683 const auto constMUsingColumns = mUsingColumns;
684 for ( QString column : constMUsingColumns )
687 ret += QLatin1String(
", " );
691 ret += QLatin1String(
")" );
704 return new NodeJoin( mTableDef->cloneThis(), mOnExpr->clone(), mType );
706 return new NodeJoin( mTableDef->cloneThis(), mUsingColumns, mType );
714 ret = mColumn->dump();
716 ret += QLatin1String(
" DESC" );
734 QString ret( QStringLiteral(
"CAST(" ) );
735 ret += mNode->dump();
736 ret += QLatin1String(
" AS " );
744 return new NodeCast( mNode->clone(), mType );
QgsSQLStatement::Node * clone() const override
Generate a clone of this node.
QgsSQLStatement::NodeTableDef * cloneThis() const
Clone with same type return.
static const char * JOIN_TYPE_TEXT[]
QgsSQLStatement::Node * onExpr() const
On expression. Will be nullptr if usingColumns() is not empty.
bool leftAssociative() const
Is left associative ?
void appendJoin(QgsSQLStatement::NodeJoin *join)
Append a join.
Function with a name and arguments node.
QgsSQLStatement::Node * clone() const override
Generate a clone of this node.
QgsSQLStatement::NodeList * clone() const
Creates a deep copy of this list. Ownership is transferred to the caller.
QgsSQLStatement::NodeTableDef * tableDef() const
Table definition.
QgsSQLStatement::Node * where() const
Returns the where clause.
QString dump() const override
Abstract virtual dump method.
QgsSQLStatement::NodeSelectedColumn * cloneThis() const
Clone with same type return.
static const char * BINARY_OPERATOR_TEXT[]
void visit(const QgsSQLStatement::NodeColumnRef &n) override
Visit NodeColumnRef.
QString dump() const override
Abstract virtual dump method.
QString statement() const
Returns the original, unmodified statement string.
Binary logical/arithmetical operator (AND, OR, =, +, ...)
static QString quotedString(QString text)
Returns a quoted version of a string (in single quotes)
QString dump() const override
Abstract virtual dump method.
QList< QgsSQLStatement::NodeSelectedColumn * > columns() const
Returns the list of columns.
bool hasParserError() const
Returns true if an error occurred when parsing the input statement.
QgsSQLStatement::Node * mRootNode
void setWhere(QgsSQLStatement::Node *where)
Sets where clause.
QgsSQLStatement::Node * clone() const override
Generate a clone of this node.
QgsSQLStatement::Node * clone() const override
Generate a clone of this node.
A visitor that recursively explores all children.
QgsSQLStatement::Node * clone() const override
Generate a clone of this node.
void accept(QgsSQLStatement::Visitor &v) const override
Support the visitor pattern.
Class for parsing SQL statements.
QString dump() const override
Abstract virtual dump method.
virtual QString dump() const
Dump list.
QPair< QString, QString > TableColumnPair
QString name() const
Table name.
QString alias() const
Table alias.
virtual QString dump() const =0
Abstract virtual dump method.
QString dump() const override
Abstract virtual dump method.
void setOrderBy(const QList< QgsSQLStatement::NodeColumnSorted *> &orderBy)
Sets order by columns.
QgsSQLStatement::Node * clone() const override
Generate a clone of this node.
Literal value (integer, integer64, double, string)
QString name() const
The name of the column.
QList< QgsSQLStatement::NodeTableDef * > tables() const
Returns the list of tables.
QString dump() const override
Abstract virtual dump method.
QgsSQLStatement::Node * clone() const override
Generate a clone of this node.
void setAlias(const QString &alias)
Sets alias name.
Unary logicial/arithmetical operator ( NOT, - )
const QgsSQLStatement::Node * rootNode() const
Returns the root node of the statement.
QgsSQLStatement::NodeJoin * cloneThis() const
Clone with same type return.
QString dump() const override
Abstract virtual dump method.
QString dump() const override
Abstract virtual dump method.
QgsSQLStatement::Node * clone() const override
Generate a clone of this node.
QSet< TableColumnPair > tableNamesReferenced
QList< QgsSQLStatement::NodeColumnSorted * > orderBy() const
Returns the list of order by columns.
QString parserErrorString() const
Returns parser error.
'X BETWEEN y and z' operator
QgsSQLStatement::NodeColumnRef * cloneThis() const
Clone with same type return.
QgsSQLStatement::Node * clone() const override
Generate a clone of this node.
QgsSQLStatement::Node * clone() const override
Generate a clone of this node.
void accept(QgsSQLStatement::Visitor &v) const
Accept visitor.
QList< QgsSQLStatement::NodeJoin * > joins() const
Returns the list of joins.
void acceptVisitor(QgsSQLStatement::Visitor &v) const
Entry function for the visitor pattern.
QString dump() const
Returns the statement string, constructed from the internal abstract syntax tree. ...
bool doBasicValidationChecks(QString &errorMsgOut) const
Performs basic validity checks.
QgsSQLStatement & operator=(const QgsSQLStatement &other)
Create a copy of this statement.
static QString stripQuotedIdentifier(QString text)
Remove double quotes from an identifier.
int precedence() const
Precedence.
virtual void accept(QgsSQLStatement::Visitor &v) const =0
Support the visitor pattern.
QgsSQLStatement::NodeColumnSorted * cloneThis() const
Clone with same type return.
QString dump() const override
Abstract virtual dump method.
void setDistinct(bool distinct=true)
Sets whether this is prefixed by DISTINCT.
QString dump() const override
Abstract virtual dump method.
QgsSQLStatement::Node * clone() const override
Generate a clone of this node.
static QString quotedIdentifierIfNeeded(const QString &name)
Returns a quoted column reference (in double quotes) if needed, or otherwise the original string...
QgsSQLStatement::Node * clone() const override
Generate a clone of this node.
void visit(const QgsSQLStatement::NodeUnaryOperator &n) override
Visit NodeUnaryOperator.
static const char * UNARY_OPERATOR_TEXT[]
Support for visitor pattern - algorithms dealing with the statement may be implemented without modify...
QSet< QString > tableNamesDeclared
QString tableName() const
The name of the table. May be empty.
QString dump() const override
Abstract virtual dump method.
QgsSQLStatement::Node * clone() const override
Generate a clone of this node.
QString dump() const override
Abstract virtual dump method.
QgsSQLStatement::UnaryOperator op() const
Operator.
QString dump() const override
Abstract virtual dump method.
static QString quotedIdentifier(QString name)
Returns a quoted column reference (in double quotes)
QgsSQLStatement::Node * parse(const QString &str, QString &parserErrorMsg)
'x IN (y, z)' operator
QgsSQLStatement(const QString &statement)
Creates a new statement based on the provided string.
QString mParserErrorString