rep_version.hpp
上传用户: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. #ifndef REP_VERSION_HPP
  14. #define REP_VERSION_HPP
  15. /**
  16.  * Block number for REP
  17.  */
  18. #define SSREPBLOCKNO 1
  19. #define PSREPBLOCKNO 2
  20. #define DBUG
  21. #include <ndb_version.h>
  22. extern "C"
  23. void 
  24. DBUG_PRINT__(const char * fmt, ...);
  25. extern "C"
  26. void 
  27. replog(const char * fmt, ...);
  28. extern "C"
  29. void 
  30. rlog(const char * fmt, ...);
  31. #define RLOG(ARGS) 
  32.   do { if (replogEnabled) { 
  33.          rlog ARGS; 
  34.          ndbout << " (" << __FILE__ << ":" << __LINE__ << ")" << endl; 
  35.        } 
  36.      } while (0)
  37. /**
  38.  * Replication logging on or off
  39.  */
  40. extern int replogEnabled;
  41. /**
  42.  * Used for config id
  43.  */
  44. #define REP_VERSION_ID NDB_VERSION
  45. #define MAX_NODE_GROUPS 6
  46. #define REPABORT(string) 
  47.   { 
  48.     ndbout_c("nInternal error in %s:%d: %s", __FILE__, __LINE__, string); 
  49.     abort(); 
  50.   }
  51. #define REPABORT1(string, data1) 
  52.   { 
  53.     ndbout_c("nInternal error in %s:%d: %s" 
  54.      "n  (data1: %d)", 
  55.      __FILE__, __LINE__, string, data1); 
  56.     abort(); 
  57.   }
  58. #define REPABORT2(string, data1, data2) 
  59.   { 
  60.     ndbout_c("nInternal error in %s:%d: %s" 
  61.      "n  (data1: %d, data2: %d)", 
  62.               __FILE__, __LINE__, string, data1, data2); 
  63.     abort(); 
  64.   }
  65. #define REPABORT3(string, data1, data2, data3) 
  66.   { 
  67.     ndbout_c("nInternal error in %s:%d: %s" 
  68.      "n  (data1: %d, data2: %d data3: %d)", 
  69.               __FILE__, __LINE__, string, data1, data2, data3); 
  70.     abort(); 
  71.   }
  72. #endif