HandleRoot.hpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #ifndef ODBC_HANDLES_HandleRoot_hpp
  14. #define ODBC_HANDLES_HandleRoot_hpp
  15. #include <list>
  16. #include <map>
  17. #include <common/common.hpp>
  18. #include "HandleBase.hpp"
  19. class HandleEnv;
  20. class HandleDbc;
  21. class HandleStmt;
  22. class HandleDesc;
  23. class PoolNdb;
  24. /**
  25.  * @class HandleRoot
  26.  * @brief The singleton root handle.
  27.  *
  28.  * This class is the level above HandleEnv.  It has a single
  29.  * instance.  The instance is the root node of dynamically
  30.  * allocated handles.  The instance is also used to call methods
  31.  * not tied to any handle.
  32.  */
  33. class HandleRoot : public HandleBase {
  34. protected:
  35.     HandleRoot();
  36.     ~HandleRoot();
  37. public:
  38.     static HandleRoot* instance();
  39.     HandleRoot* getRoot();
  40.     HandleBase* getParent();
  41.     PoolNdb* getPoolNdb();
  42.     OdbcHandle odbcHandle();
  43.     void lockHandle();
  44.     void unlockHandle();
  45.     // check and find handle types and handles
  46.     SQLSMALLINT findParentType(SQLSMALLINT childType);
  47.     HandleBase* findBase(SQLSMALLINT handleType, void* pHandle);
  48.     HandleEnv* findEnv(void* pHandle);
  49.     HandleDbc* findDbc(void* pHandle);
  50.     HandleStmt* findStmt(void* pHandle);
  51.     HandleDesc* findDesc(void* pHandle);
  52.     // add or remove handle from validation list
  53.     void record(SQLSMALLINT handleType, HandleBase* pHandle, bool add);
  54.     // allocate and free handles
  55.     void sqlAllocEnv(Ctx& ctx, HandleEnv** ppEnv);
  56.     void sqlAllocHandle(Ctx& ctx, SQLSMALLINT childType, HandleBase** ppChild);
  57.     void sqlFreeEnv(Ctx& ctx, HandleEnv* pEnv);
  58.     void sqlFreeHandle(Ctx& ctx, SQLSMALLINT childType, HandleBase* pChild);
  59.     // process-level attributes
  60.     void sqlSetRootAttr(Ctx& ctx, SQLINTEGER attribute, SQLPOINTER value, SQLINTEGER stringLength);
  61.     void sqlGetRootAttr(Ctx& ctx, SQLINTEGER attribute, SQLPOINTER value, SQLINTEGER bufferLength, SQLINTEGER* stringLength);
  62. private:
  63.     static HandleRoot* m_instance; // the instance
  64.     std::list<HandleEnv*> m_listEnv;
  65.     PoolNdb* m_poolNdb;
  66.     typedef std::map<void*, SQLSMALLINT> ValidList;
  67.     ValidList m_validList;
  68.     static AttrSpec m_attrSpec[];
  69.     AttrArea m_attrArea;
  70. };
  71. inline HandleRoot*
  72. HandleRoot::getRoot()
  73. {
  74.     return this;
  75. }
  76. inline HandleBase*
  77. HandleRoot::getParent()
  78. {
  79.     return 0;
  80. }
  81. inline PoolNdb*
  82. HandleRoot::getPoolNdb()
  83. {
  84.     return m_poolNdb;
  85. }
  86. inline OdbcHandle
  87. HandleRoot::odbcHandle()
  88. {
  89.     return Odbc_handle_root;
  90. }
  91. #endif