StartInfo.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 START_INFO_HPP
  14. #define START_INFO_HPP
  15. /**
  16.  * This signal is sent from the master DIH to all DIHs
  17.  * when a node is starting.
  18.  * If the typeStart is initial node restart then the node
  19.  * has started without filesystem.
  20.  * All DIHs must then "forget" that the starting node has 
  21.  * performed LCP's ever.
  22.  *
  23.  * @see StartPermReq
  24.  */
  25. class StartInfoReq {  
  26.   /**
  27.    * Sender/Receiver
  28.    */
  29.   friend class Dbdih;
  30.   Uint32 startingNodeId;
  31.   Uint32 typeStart;
  32.   Uint32 systemFailureNo;
  33. public:
  34.   STATIC_CONST( SignalLength = 3 );
  35. };
  36. class StartInfoConf {
  37.   
  38.   /**
  39.    * Sender/Receiver
  40.    */
  41.   friend class Dbdih;
  42.   
  43.   /**
  44.    * NodeId of sending node
  45.    * which is "done"
  46.    */
  47.   Uint32 sendingNodeId;
  48.   Uint32 startingNodeId;
  49. public:
  50.   STATIC_CONST( SignalLength = 2 );
  51. };
  52. class StartInfoRef {
  53.   
  54.   /**
  55.    * Sender/Receiver
  56.    */
  57.   friend class Dbdih;
  58.   
  59.   /**
  60.    * NodeId of sending node
  61.    * The node was refused to start. This could be
  62.    * because there are still processes handling
  63.    * previous information from the starting node.
  64.    */
  65.   Uint32 sendingNodeId;
  66.   Uint32 startingNodeId;
  67.   Uint32 errorCode;
  68. public:
  69.   STATIC_CONST( SignalLength = 3 );
  70. };
  71. #endif