📄 ndbscanfilter.hpp
字号:
/* Copyright (C) 2003 MySQL AB This program 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. This program 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, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */#ifndef NDB_SCAN_FILTER_HPP#define NDB_SCAN_FILTER_HPP#include <ndb_types.h>/** * @class NdbScanFilter * @brief A simple way to specify filters for scan operations * * @note This filter interface is under development and may change in * the future! * */class NdbScanFilter {public: /** * Constructor * @param op The NdbOperation that the filter belongs to (is applied to). */ NdbScanFilter(class NdbOperation * op); ~NdbScanFilter(); /** * Group operators */ enum Group { AND = 1, ///< (x1 AND x2 AND x3) OR = 2, ///< (x1 OR x2 OR X3) NAND = 3, ///< NOT (x1 AND x2 AND x3) NOR = 4 ///< NOT (x1 OR x2 OR x3) }; enum BinaryCondition { COND_LE = 0, ///< lower bound COND_LT = 1, ///< lower bound, strict COND_GE = 2, ///< upper bound COND_GT = 3, ///< upper bound, strict COND_EQ = 4, ///< equality COND_NE = 5, ///< not equal COND_LIKE = 6, ///< like COND_NOT_LIKE = 7 ///< not like }; /** * @name Grouping * @{ */ /** * Begin of compound. * 畆eturn 0 if successful, -1 otherwize */ int begin(Group group = AND); /** * End of compound. * 畆eturn 0 if successful, -1 otherwize */ int end(); /** @} *********************************************************************/ /** * <i>Explanation missing</i> */ int istrue(); /** * <i>Explanation missing</i> */ int isfalse(); /** * Compare column <b>ColId</b> with <b>val</b> */ int cmp(BinaryCondition cond, int ColId, const void *val, Uint32 len = 0); /** * @name Integer Comparators * @{ */ /** Compare column value with integer for equal * 畆eturn 0 if successful, -1 otherwize */ int eq(int ColId, Uint32 value) { return cmp(COND_EQ, ColId, &value, 4);} /** Compare column value with integer for not equal. * 畆eturn 0 if successful, -1 otherwize */ int ne(int ColId, Uint32 value) { return cmp(COND_NE, ColId, &value, 4);} /** Compare column value with integer for less than. * 畆eturn 0 if successful, -1 otherwize */ int lt(int ColId, Uint32 value) { return cmp(COND_LT, ColId, &value, 4);} /** Compare column value with integer for less than or equal. * 畆eturn 0 if successful, -1 otherwize */ int le(int ColId, Uint32 value) { return cmp(COND_LE, ColId, &value, 4);} /** Compare column value with integer for greater than. * 畆eturn 0 if successful, -1 otherwize */ int gt(int ColId, Uint32 value) { return cmp(COND_GT, ColId, &value, 4);} /** Compare column value with integer for greater than or equal. * 畆eturn 0 if successful, -1 otherwize */ int ge(int ColId, Uint32 value) { return cmp(COND_GE, ColId, &value, 4);} /** Compare column value with integer for equal. 64-bit. * 畆eturn 0 if successful, -1 otherwize */ int eq(int ColId, Uint64 value) { return cmp(COND_EQ, ColId, &value, 8);} /** Compare column value with integer for not equal. 64-bit. * 畆eturn 0 if successful, -1 otherwize */ int ne(int ColId, Uint64 value) { return cmp(COND_NE, ColId, &value, 8);} /** Compare column value with integer for less than. 64-bit. * 畆eturn 0 if successful, -1 otherwize */ int lt(int ColId, Uint64 value) { return cmp(COND_LT, ColId, &value, 8);} /** Compare column value with integer for less than or equal. 64-bit. * 畆eturn 0 if successful, -1 otherwize */ int le(int ColId, Uint64 value) { return cmp(COND_LE, ColId, &value, 8);} /** Compare column value with integer for greater than. 64-bit. * 畆eturn 0 if successful, -1 otherwize */ int gt(int ColId, Uint64 value) { return cmp(COND_GT, ColId, &value, 8);} /** Compare column value with integer for greater than or equal. 64-bit. * 畆eturn 0 if successful, -1 otherwize */ int ge(int ColId, Uint64 value) { return cmp(COND_GE, ColId, &value, 8);} /** @} *********************************************************************/ /** Check if column value is NULL */ int isnull(int ColId); /** Check if column value is non-NULL */ int isnotnull(int ColId); #ifndef DOXYGEN_SHOULD_SKIP_INTERNAL /** * Like comparison operator. * 畆eturn 0 if successful, -1 otherwize */ int like(int ColId, const char * val, Uint32 len, bool nopad=false); /** * Notlike comparison operator. * 畆eturn 0 if successful, -1 otherwize */ int notlike(int ColId, const char * val, Uint32 len, bool nopad=false); /** @} *********************************************************************/#endifprivate:#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL friend class NdbScanFilterImpl;#endif class NdbScanFilterImpl & m_impl; NdbScanFilter& operator=(const NdbScanFilter&); ///< Defined not implemented};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -