Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsogrexpressioncompiler.h 3 : : -------------------------- 4 : : begin : November 2015 5 : : copyright : (C) 2015 Nyall Dawson 6 : : email : nyall dot dawson at gmail dot com 7 : : *************************************************************************** 8 : : * * 9 : : * This program is free software; you can redistribute it and/or modify * 10 : : * it under the terms of the GNU General Public License as published by * 11 : : * the Free Software Foundation; either version 2 of the License, or * 12 : : * (at your option) any later version. * 13 : : * * 14 : : ***************************************************************************/ 15 : : 16 : : #ifndef QGSOGREXPRESSIONCOMPILER_H 17 : : #define QGSOGREXPRESSIONCOMPILER_H 18 : : 19 : : #include "qgsogrfeatureiterator.h" 20 : : #include "qgssqlexpressioncompiler.h" 21 : : #include "qgis_sip.h" 22 : : 23 : : ///@cond PRIVATE 24 : : #define SIP_NO_FILE 25 : : 26 : : class QgsExpressionNode; 27 : : class QgsExpression; 28 : : 29 : 0 : class QgsOgrExpressionCompiler : public QgsSqlExpressionCompiler 30 : : { 31 : : public: 32 : : 33 : : explicit QgsOgrExpressionCompiler( QgsOgrFeatureSource *source, bool ignoreStaticNodes = false ); 34 : : 35 : : Result compile( const QgsExpression *exp ) override; 36 : : 37 : : protected: 38 : : 39 : : Result compileNode( const QgsExpressionNode *node, QString &str ) override; 40 : : QString quotedIdentifier( const QString &identifier ) override; 41 : : QString quotedValue( const QVariant &value, bool &ok ) override; 42 : : QString sqlFunctionFromFunctionName( const QString &fnName ) const override; 43 : : QStringList sqlArgumentsFromFunctionName( const QString &fnName, const QStringList &fnArgs ) const override; 44 : : QString castToReal( const QString &value ) const override; 45 : : QString castToInt( const QString &value ) const override; 46 : : 47 : : private: 48 : : 49 : : QgsOgrFeatureSource *mSource = nullptr; 50 : : }; 51 : : 52 : : ///@endcond 53 : : #endif // QGSOGREXPRESSIONCOMPILER_H