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

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. #include "dba_internal.hpp"
  14. #include "dba_process.hpp"
  15. #include <NdbOut.hpp>
  16. #ifdef NDB_WIN32
  17. static NdbMutex & DBA__InitMutex = * NdbMutex_Create();
  18. #else
  19. static NdbMutex DBA__InitMutex = NDB_MUTEX_INITIALIZER;
  20. #endif
  21. Ndb      * DBA__TheNdb           = 0;
  22. NdbMutex * DBA__TheNewtonMutex   = 0;
  23. unsigned DBA__SentTransactions   = 0;
  24. unsigned DBA__RecvTransactions   = 0;
  25. NewtonBatchProcess * DBA__TheNBP = 0;
  26. extern "C"
  27. DBA_Error_t
  28. DBA_Open( ) {
  29.   NdbMutex_Lock(&DBA__InitMutex);
  30.   
  31.   if(DBA__TheNdb != 0){
  32.     NdbMutex_Unlock(&DBA__InitMutex);
  33.     return DBA_NO_ERROR;
  34.   }
  35.   
  36.   DBA__TheNdb = new Ndb("Newton");
  37.   DBA__TheNdb->init(1024);
  38.   if(DBA__TheNdb->waitUntilReady() != 0){
  39.     delete DBA__TheNdb; DBA__TheNdb = 0;
  40.     NdbMutex_Unlock(&DBA__InitMutex);
  41.     return DBA_NDB_ERROR;
  42.   }
  43.   DBA__TheNewtonMutex = NdbMutex_Create();
  44.   DBA__TheNBP = new NewtonBatchProcess(* DBA__TheNdb, * DBA__TheNewtonMutex);
  45.   DBA__TheNBP->doStart();
  46.   NdbMutex_Unlock(&DBA__InitMutex);
  47.   return DBA_NO_ERROR;
  48. }
  49. /**
  50.  * Closes the database.
  51.  * 
  52.  * @return Error status
  53.  */
  54. extern "C"
  55. DBA_Error_t
  56. DBA_Close(void){
  57.   NdbMutex_Lock(&DBA__InitMutex);
  58.   if(DBA__TheNBP != 0)
  59.     DBA__TheNBP->doStop(true);
  60.   delete DBA__TheNBP; 
  61.   DBA__TheNBP = 0;
  62.   
  63.   if(DBA__TheNdb != 0)
  64.     delete DBA__TheNdb;
  65.   DBA__TheNdb = 0;
  66.   
  67.   if(DBA__TheNewtonMutex != 0)
  68.     NdbMutex_Destroy(DBA__TheNewtonMutex);
  69.   DBA__TheNewtonMutex = 0;
  70.   NdbMutex_Unlock(&DBA__InitMutex);
  71.   return DBA_NO_ERROR;
  72. }