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

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 CM_REG_HPP
  14. #define CM_REG_HPP
  15. #include <NodeBitmask.hpp>
  16. /**
  17.  * This is the first distributed signal 
  18.  *   (the node tries to register in the cluster)
  19.  */
  20. class CmRegReq {
  21.   /**
  22.    * Sender(s) & Reciver(s)
  23.    */
  24.   friend class Qmgr;
  25.   
  26. public:
  27.   STATIC_CONST( SignalLength = 3 );
  28. private:
  29.   
  30.   Uint32 blockRef;
  31.   Uint32 nodeId;
  32.   Uint32 version; // See ndb_version.h
  33. };
  34. /**
  35.  * The node receving this signal has been accepted into the cluster
  36.  */
  37. class CmRegConf {
  38.   /**
  39.    * Sender(s) & Reciver(s)
  40.    */
  41.   friend class Qmgr;
  42.   
  43. public:
  44.   STATIC_CONST( SignalLength = 4 + NdbNodeBitmask::Size );
  45. private:
  46.   
  47.   Uint32 presidentBlockRef;
  48.   Uint32 presidentNodeId;
  49.   Uint32 presidentVersion;
  50.   /**
  51.    * The dynamic id that the node reciving this signal has
  52.    */
  53.   Uint32 dynamicId;
  54.   
  55.   Uint32 allNdbNodes[NdbNodeBitmask::Size];
  56. };
  57. /**
  58.  * 
  59.  */
  60. class CmRegRef {
  61.   /**
  62.    * Sender(s) & Reciver(s)
  63.    */
  64.   friend class Qmgr;
  65.   
  66. public:
  67.   STATIC_CONST( SignalLength = 4 );
  68.   
  69.   enum ErrorCode {
  70.     ZBUSY = 0,          /* Only the president can send this */
  71.     ZBUSY_PRESIDENT = 1,/* Only the president can send this */
  72.     ZBUSY_TO_PRES = 2,  /* Only the president can send this */
  73.     ZNOT_IN_CFG = 3,    /* Only the president can send this */
  74.     ZELECTION = 4,      /* Receiver is definitely not president,
  75.                          * but we are not sure if sender ends up
  76.                          * as president. */
  77.     ZNOT_PRESIDENT = 5, /* We are not president */
  78.     ZNOT_DEAD = 6,       /* We are not dead when we are starting  */
  79.     ZINCOMPATIBLE_VERSION = 7
  80.   };
  81. private:
  82.   
  83.   Uint32 blockRef;
  84.   Uint32 nodeId;
  85.   Uint32 errorCode;
  86.   Uint32 presidentCandidate;
  87. };
  88. class CmAdd {
  89.   /**
  90.    * Sender(s) & Reciver(s)
  91.    */
  92.   friend class Qmgr;
  93.   
  94. public:
  95.   STATIC_CONST( SignalLength = 3 );
  96.   
  97. private:
  98.   enum RequestType {
  99.     Prepare   = 0,
  100.     AddCommit = 1,
  101.     CommitNew = 2
  102.   };
  103.   
  104.   Uint32 requestType;
  105.   Uint32 startingNodeId;
  106.   Uint32 startingVersion;
  107. };
  108. class CmAckAdd {
  109.   /**
  110.    * Sender(s) & Reciver(s)
  111.    */
  112.   friend class Qmgr;
  113.   
  114. public:
  115.   STATIC_CONST( SignalLength = 3 );
  116.   
  117. private:
  118.   Uint32 senderNodeId;
  119.   Uint32 requestType; // see CmAdd::RequestType
  120.   Uint32 startingNodeId;
  121. };
  122. class CmNodeInfoReq {
  123.   /**
  124.    * Sender(s) & Reciver(s)
  125.    */
  126.   friend class Qmgr;
  127.   
  128. public:
  129.   STATIC_CONST( SignalLength = 3 );
  130.   
  131. private:
  132.   /**
  133.    * This is information for sending node (starting node)
  134.    */
  135.   Uint32 nodeId;
  136.   Uint32 dynamicId;
  137.   Uint32 version;
  138. };
  139. class CmNodeInfoRef {
  140.   /**
  141.    * Sender(s) & Reciver(s)
  142.    */
  143.   friend class Qmgr;
  144.   
  145. public:
  146.   STATIC_CONST( SignalLength = 3 );
  147.   enum ErrorCode {
  148.     NotRunning = 1
  149.   };
  150.   
  151. private:
  152.   Uint32 nodeId;
  153.   Uint32 errorCode;
  154. };
  155. class CmNodeInfoConf {
  156.   /**
  157.    * Sender(s) & Reciver(s)
  158.    */
  159.   friend class Qmgr;
  160.   
  161. public:
  162.   STATIC_CONST( SignalLength = 3 );
  163.   
  164. private:
  165.   Uint32 nodeId;
  166.   Uint32 dynamicId;
  167.   Uint32 version;
  168. };
  169. #endif