123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- /*
- * Copyright 2005 - 2016 Zarafa and its licensors
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * 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 Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- #ifndef ECDATABASEUTILS_H
- #define ECDATABASEUTILS_H
- #include <kopano/zcdefs.h>
- #include "ECMAPI.h"
- #include "kcore.hpp"
- #include <kopano/kcodes.h>
- #include "ECDatabase.h"
- #include "ECDatabaseFactory.h"
- #include <kopano/ECLogger.h>
- #include <string>
- struct propVal;
- struct soap;
- namespace KC {
- #define MAX_PROP_SIZE 8192
- #define MAX_QUERY 4096
- #define PROPCOL_ULONG "val_ulong"
- #define PROPCOL_STRING "val_string"
- #define PROPCOL_BINARY "val_binary"
- #define PROPCOL_DOUBLE "val_double"
- #define PROPCOL_LONGINT "val_longint"
- #define PROPCOL_HI "val_hi"
- #define PROPCOL_LO "val_lo"
- #define _PROPCOL_ULONG(_tab) #_tab "." PROPCOL_ULONG
- #define _PROPCOL_STRING(_tab) #_tab "." PROPCOL_STRING
- #define _PROPCOL_BINARY(_tab) #_tab "." PROPCOL_BINARY
- #define _PROPCOL_DOUBLE(_tab) #_tab "." PROPCOL_DOUBLE
- #define _PROPCOL_LONGINT(_tab) #_tab "." PROPCOL_LONGINT
- #define _PROPCOL_HI(_tab) #_tab "." PROPCOL_HI
- #define _PROPCOL_LO(_tab) #_tab "." PROPCOL_LO
- #define PROPCOL_HILO PROPCOL_HI "," PROPCOL_LO
- #define _PROPCOL_HILO(_tab) PROPCOL_HI(_tab) "," PROPCOL_LO(_tab)
- /* make string of define value */
- #ifndef __STRING
- #define __STRING(x) #x
- #endif
- #define STR(macro) __STRING(macro)
- // Warning! Code references the ordering of these values! Do not change unless you know what you're doing!
- #define PROPCOLVALUEORDER(_tab) _PROPCOL_ULONG(_tab) "," _PROPCOL_STRING(_tab) "," _PROPCOL_BINARY(_tab) "," _PROPCOL_DOUBLE(_tab) "," _PROPCOL_LONGINT(_tab) "," _PROPCOL_HI(_tab) "," _PROPCOL_LO(_tab)
- #define PROPCOLVALUEORDER_TRUNCATED(_tab) _PROPCOL_ULONG(_tab) ", LEFT(" _PROPCOL_STRING(_tab) "," STR(TABLE_CAP_STRING) "),LEFT(" _PROPCOL_BINARY(_tab) "," STR(TABLE_CAP_BINARY) ")," _PROPCOL_DOUBLE(_tab) "," _PROPCOL_LONGINT(_tab) "," _PROPCOL_HI(_tab) "," _PROPCOL_LO(_tab)
- enum { VALUE_NR_ULONG=0, VALUE_NR_STRING, VALUE_NR_BINARY, VALUE_NR_DOUBLE, VALUE_NR_LONGINT, VALUE_NR_HILO, VALUE_NR_MAX };
- #define PROPCOLORDER "0,properties.tag,properties.type," PROPCOLVALUEORDER(properties)
- #define PROPCOLORDER_TRUNCATED "0,properties.tag,properties.type," PROPCOLVALUEORDER_TRUNCATED(properties)
- #define MVPROPCOLORDER "count(*),mvproperties.tag,mvproperties.type,group_concat(length(mvproperties.val_ulong),':', mvproperties.val_ulong ORDER BY mvproperties.orderid SEPARATOR ''), group_concat(length(mvproperties.val_string),':', mvproperties.val_string ORDER BY mvproperties.orderid SEPARATOR ''), group_concat(length(mvproperties.val_binary),':', mvproperties.val_binary ORDER BY mvproperties.orderid SEPARATOR ''), group_concat(length(mvproperties.val_double),':', mvproperties.val_double ORDER BY mvproperties.orderid SEPARATOR ''), group_concat(length(mvproperties.val_longint),':', mvproperties.val_longint ORDER BY mvproperties.orderid SEPARATOR ''), group_concat(length(mvproperties.val_hi),':', mvproperties.val_hi ORDER BY mvproperties.orderid SEPARATOR ''), group_concat(length(mvproperties.val_lo),':', mvproperties.val_lo ORDER BY mvproperties.orderid SEPARATOR '')"
- #define MVIPROPCOLORDER "0,mvproperties.tag,mvproperties.type | 0x2000," PROPCOLVALUEORDER(mvproperties)
- #define MVIPROPCOLORDER_TRUNCATED "0,mvproperties.tag,mvproperties.type | 0x2000," PROPCOLVALUEORDER_TRUNCATED(mvproperties)
- enum { FIELD_NR_ID=0, FIELD_NR_TAG, FIELD_NR_TYPE, FIELD_NR_ULONG, FIELD_NR_STRING, FIELD_NR_BINARY, FIELD_NR_DOUBLE, FIELD_NR_LONGINT, FIELD_NR_HI, FIELD_NR_LO, FIELD_NR_MAX };
- ULONG GetColOffset(ULONG ulPropTag);
- std::string GetPropColOrder(unsigned int ulPropTag, const std::string &strSubQuery);
- unsigned int GetColWidth(unsigned int ulPropType);
- ECRESULT GetPropSize(DB_ROW lpRow, DB_LENGTHS lpLen, unsigned int *lpulSize);
- ECRESULT CopySOAPPropValToDatabasePropVal(struct propVal *lpPropVal, unsigned int *ulColId, std::string &strColData, ECDatabase *lpMySQL, bool bTruncate);
- ECRESULT CopyDatabasePropValToSOAPPropVal(struct soap *soap, DB_ROW lpRow, DB_LENGTHS lpLen, propVal *lpPropVal);
- gsoap_size_t GetMVItemCount(struct propVal *lpPropVal);
- ECRESULT CopySOAPPropValToDatabaseMVPropVal(struct propVal *lpPropVal, int nItem, std::string &strColName, std::string &strColData, ECDatabase *lpDatabase);
- ECRESULT ParseMVProp(const char *lpRowData, ULONG ulSize, unsigned int *lpulLastPos, std::string *lpstrData);
- unsigned int NormalizeDBPropTag(unsigned int ulPropTag);
- bool CompareDBPropTag(unsigned int ulPropTag1, unsigned int ulPropTag2);
- ECRESULT GetDatabaseSettingAsInteger(ECDatabase *lpDatabase, const std::string &strSettings, unsigned int *lpulResult);
- ECRESULT SetDatabaseSetting(ECDatabase *lpDatabase, const std::string &strSettings, unsigned int ulValue);
- /**
- * This class is used to suppress the lock-error logging for the database passed to its
- * constructor during the lifetime of the instance.
- * This means the lock-error logging is restored when the scope in which an instance of
- * this class exists is exited.
- */
- class SuppressLockErrorLogging _kc_final {
- public:
- SuppressLockErrorLogging(ECDatabase *lpDatabase);
- ~SuppressLockErrorLogging();
- private:
- ECDatabase *m_lpDatabase;
- bool m_bResetValue;
- SuppressLockErrorLogging(const SuppressLockErrorLogging &) = delete;
- SuppressLockErrorLogging &operator=(const SuppressLockErrorLogging &) = delete;
- };
- /**
- * This macro allows anyone to create a temporary scope in which the lock-errors
- * for a database connection are suppressed.
- *
- * Simple usage:
- * WITH_SUPPRESSED_LOGGING(lpDatabase)
- * do_something_with(lpDatabase);
- *
- * or when more stuff needs to be done with the suppression enabled:
- * WITH_SUPPRESSED_LOGGING(lpDatabase) {
- * do_something_with(lpDatabase);
- * do_something_else_with(lpDatabase);
- * }
- */
- #define WITH_SUPPRESSED_LOGGING(_db) \
- for (SuppressLockErrorLogging suppressor(_db), *ptr = NULL; ptr == NULL; ptr = &suppressor)
- } /* namespace */
- #endif // ECDATABASEUTILS_H
|