/*============================================================================= Library: CTK Copyright (c) German Cancer Research Center, Division of Medical and Biological Informatics Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =============================================================================*/ #ifndef CTKLDAPEXPR_P_H #define CTKLDAPEXPR_P_H #include "ctkPluginConstants.h" #include "ctkDictionary.h" #include #include #include #include #include #include class ctkLDAPExprData; /** \ingroup PluginFramework \brief LDAP Expression \date 19 May 2010 \author Xavi Planes \ingroup ctkPluginFramework */ class ctkLDAPExpr { public: const static int AND; // = 0; const static int OR; // = 1; const static int NOT; // = 2; const static int EQ; // = 4; const static int LE; // = 8; const static int GE; // = 16; const static int APPROX; // = 32; const static int COMPLEX; // = AND | OR | NOT; const static int SIMPLE; // = EQ | LE | GE | APPROX; typedef char Byte; typedef QVector LocalCache; /** * Creates an invalid ctkLDAPExpr object. Use with care. * * @see isNull() */ ctkLDAPExpr(); //! ctkLDAPExpr(const QString &filter); //! ctkLDAPExpr(const ctkLDAPExpr& other); ctkLDAPExpr& operator=(const ctkLDAPExpr& other); ~ctkLDAPExpr(); /** * Get object class set matched by this LDAP expression. This will not work * with wildcards and NOT expressions. If a set can not be determined return null. * * @return A set of classes matched, otherwise an empty set. */ QSet getMatchedObjectClasses() const; /** * Checks if this LDAP expression is "simple". The definition of * a simple filter is: *
    *
  • (name=value) is simple if * name is a member of the provided keywords, * and value does not contain a wildcard character;
  • *
  • (| EXPR+ ) is simple if all EXPR * expressions are simple;
  • *
  • No other expressions are simple.
  • *
* If the filter is found to be simple, the cache is * filled with mappings from the provided keywords to lists * of attribute values. The keyword-value-pairs are the ones that * satisfy this expression, for the given keywords. * * @param keywords The keywords to look for. * @param cache An array (indexed by the keyword indexes) of lists to * fill in with values saturating this expression. * @return true if this expression is simple, * false otherwise. */ bool isSimple( const QStringList& keywords, LocalCache& cache, bool matchCase) const; /** * Returns true if this instance is invalid, i.e. it was * constructed using ctkLDAPExpr(). * * @return true if the expression is invalid, * false otherwise. */ bool isNull() const; //! static bool query(const QString &filter, const ctkDictionary &pd); //! Evaluate this LDAP filter. bool evaluate(const ctkDictionary &p, bool matchCase) const; //! const QString toString() const; private: class ParseState; //! ctkLDAPExpr(int op, const QList &args); //! ctkLDAPExpr(int op, const QString &attrName, const QString &attrValue); //! static ctkLDAPExpr parseExpr(ParseState &ps); //! static ctkLDAPExpr parseSimple(ParseState &ps); //! bool compare(const QVariant &obj, int op, const QString &s) const; //! static bool compareString(const QString &s1, int op, const QString &s2); //! static QString fixupString(const QString &s); //! static bool patSubstr(const QString &s, const QString &pat); //! static bool patSubstr(const QString &s, int si, const QString &pat, int pi); const static QChar WILDCARD; // = 65535; const static QString WILDCARD_QString;// = QString( WILDCARD ); const static QString NULLQ;// = "Null query"; const static QString GARBAGE;// = "Trailing garbage"; const static QString EOS;// = "Unexpected end of query"; const static QString MALFORMED;// = "Malformed query"; const static QString OPERATOR;// = "Undefined m_operator"; //! Shared pointer QSharedDataPointer d; }; #endif // CTKLDAPEXPR_P_H