GCPSave.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 GCP_SAVE_HPP
  14. #define GCP_SAVE_HPP
  15. #include "SignalData.hpp"
  16. /**
  17.  * GCPSaveReq / (Ref/Conf) is sent as part of GCP
  18.  */
  19. class GCPSaveReq {
  20.   /**
  21.    * Sender(s)
  22.    */
  23.   friend class Dbdih;
  24.   
  25.   /**
  26.    * Reciver(s)
  27.    */
  28.   friend class Dblqh;
  29.   friend bool printGCPSaveReq(FILE * output, const Uint32 * theData, 
  30.       Uint32 len, Uint16 receiverBlockNo);
  31. public:
  32.   STATIC_CONST( SignalLength = 3 );
  33. private:
  34.   Uint32 dihBlockRef;
  35.   Uint32 dihPtr;
  36.   Uint32 gci;
  37. };
  38. class GCPSaveRef {
  39.   /**
  40.    * Sender(s)
  41.    */
  42.   friend class Dblqh;
  43.   
  44.   /**
  45.    * Reciver(s)
  46.    */
  47.   friend class Dbdih;
  48.   
  49.   friend bool printGCPSaveRef(FILE * output, const Uint32 * theData, 
  50.       Uint32 len, Uint16 receiverBlockNo);
  51. public:
  52.   STATIC_CONST( SignalLength = 4 );
  53.   enum ErrorCode {
  54.     NodeShutdownInProgress = 1,
  55.     FakedSignalDueToNodeFailure = 2,
  56.     NodeRestartInProgress = 3
  57.   };
  58.   
  59. private:
  60.   Uint32 dihPtr;
  61.   Uint32 nodeId;
  62.   Uint32 gci;
  63.   Uint32 errorCode;
  64. };
  65. class GCPSaveConf {
  66.   /**
  67.    * Sender(s)
  68.    */
  69.   friend class Dblqh;
  70.   
  71.   /**
  72.    * Reciver(s)
  73.    */
  74.   friend class Dbdih;
  75.   friend bool printGCPSaveConf(FILE * output, const Uint32 * theData, 
  76.        Uint32 len, Uint16 receiverBlockNo);
  77. public:
  78.   STATIC_CONST( SignalLength = 3 );
  79. private:
  80.   Uint32 dihPtr;
  81.   Uint32 nodeId;
  82.   Uint32 gci;
  83. };
  84. #endif