MasterLCP.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 MASTER_LCP_HPP
  14. #define MASTER_LCP_HPP
  15. #include <NdbOut.hpp>
  16. #include "SignalData.hpp"
  17. /**
  18.  * 
  19.  */
  20. class MasterLCPConf {
  21.   /**
  22.    * Sender(s) / Reciver(s)
  23.    */
  24.   friend class Dbdih;
  25.     
  26.   friend bool printMASTER_LCP_CONF(FILE *, const Uint32 *, Uint32, Uint16);  
  27. public:
  28.   STATIC_CONST( SignalLength = 3 );
  29.   enum State {
  30.     LCP_STATUS_IDLE        = 0,
  31.     LCP_STATUS_ACTIVE      = 2,
  32.     LCP_TAB_COMPLETED      = 8,
  33.     LCP_TAB_SAVED          = 9
  34.   };
  35.   friend NdbOut& operator<<(NdbOut&, const State&);
  36.   
  37. private:  
  38.   /**
  39.    * Data replied
  40.    */
  41.   Uint32 senderNodeId;
  42.   Uint32 lcpState;
  43.   Uint32 failedNodeId;
  44. };
  45. /**
  46.  * 
  47.  */
  48. class MasterLCPReq {
  49.   /**
  50.    * Sender(s) / Reciver(s)
  51.    */
  52.   friend class Dbdih;
  53.   friend bool printMASTER_LCP_REQ(FILE *, const Uint32 *, Uint32, Uint16);   
  54. public:
  55.   STATIC_CONST( SignalLength = 2 );
  56. private:
  57.   Uint32 masterRef;
  58.   Uint32 failedNodeId;
  59. };
  60. class MasterLCPRef {
  61.   /**
  62.    * Sender(s) / Reciver(s)
  63.    */
  64.   friend class Dbdih;
  65.   friend bool printMASTER_LCP_REF(FILE *, const Uint32 *, Uint32, Uint16);   
  66. public:
  67.   STATIC_CONST( SignalLength = 2 );
  68. private:  
  69.   /**
  70.    * Data replied
  71.    */
  72.   Uint32 senderNodeId;
  73.   Uint32 failedNodeId;
  74. };
  75. #endif