ReadNodesConf.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 READ_NODESCONF_HPP
  14. #define READ_NODESCONF_HPP
  15. #include <NodeBitmask.hpp>
  16. /**
  17.  * This signals is sent by Qmgr to NdbCntr
  18.  *   and then from NdbCntr sent to: dih, dict, lqh, tc
  19.  *
  20.  * NOTE Only noOfNodes & allNodes are valid when sent from Qmgr
  21.  */
  22. class ReadNodesConf {
  23.   /**
  24.    * Sender(s)
  25.    */
  26.   friend class Qmgr;
  27.   
  28.   /**
  29.    * Sender(s) / Reciver(s)
  30.    */
  31.   friend class Ndbcntr;
  32.   
  33.   /**
  34.    * Reciver(s)
  35.    */
  36.   friend class Dbdih;
  37.   friend class Dbdict;
  38.   friend class Dblqh;
  39.   friend class Dbtc;
  40.   friend class Trix;
  41.   friend class Backup;
  42.   friend class Suma;
  43.   friend class Grep;
  44.   friend bool printREAD_NODES_CONF(FILE*, const Uint32 *, Uint32, Uint16);
  45. public:
  46.   STATIC_CONST( SignalLength = 3 + 5*NdbNodeBitmask::Size );
  47. private:
  48.   
  49.   Uint32 noOfNodes;
  50.   Uint32 ndynamicId;
  51.   /**
  52.    * 
  53.    * NOTE Not valid when send from Qmgr
  54.    */
  55.   Uint32 masterNodeId;
  56.   /**
  57.    * This array defines all the ndb nodes in the system
  58.    */
  59.   union {
  60.     Uint32 allNodes[NdbNodeBitmask::Size];
  61.     Uint32 definedNodes[NdbNodeBitmask::Size];
  62.   };  
  63.   /**
  64.    * This array describes wheather the nodes are currently active
  65.    *
  66.    * NOTE Not valid when send from Qmgr
  67.    */
  68.   Uint32 inactiveNodes[NdbNodeBitmask::Size];
  69.   Uint32 clusterNodes[NdbNodeBitmask::Size];  // From Qmgr
  70.   Uint32 startingNodes[NdbNodeBitmask::Size]; // From Cntr
  71.   Uint32 startedNodes[NdbNodeBitmask::Size];  // From Cntr
  72. };
  73. #endif