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

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 LQH_TRANS_CONF_H
  14. #define LQH_TRANS_CONF_H
  15. #include "SignalData.hpp"
  16. /**
  17.  * This signal is sent as response to a LQH_TRANSREQ
  18.  * which is sent as by a take-over TC
  19.  */
  20. class LqhTransConf {
  21.   /**
  22.    * Reciver(s)
  23.    */
  24.   friend class Dbtc;
  25.   /**
  26.    * Sender(s)
  27.    */
  28.   friend class Dblqh;      
  29.   friend bool printLQH_TRANSCONF(FILE *, const Uint32 *, Uint32, Uint16);  
  30. public:
  31.   STATIC_CONST( SignalLength = 15 );
  32. private:
  33.   /**
  34.    * This type describes the state of the operation returned in this signal
  35.    */
  36.   enum OperationStatus {
  37.     InvalidStatus = 0, /**< This status should never be sent in a signal
  38.   it is only used for initializing variables so that
  39.   you can easily later check if they have changed */
  40.     LastTransConf = 4, /**< This status indicates that LQH has finished the scan
  41.   of operations belonging to the died TC.
  42.   Data 0 - 2 is valid */
  43.     
  44.     Prepared  = 2,
  45.     Committed = 3,
  46.     Aborted   = 1,
  47.     Marker    = 5 /**< This means that the only thing left is a marker,
  48.      Data 0 - 6 is valid */
  49.   };
  50.   
  51.   /**
  52.    * DATA VARIABLES
  53.    */
  54.   Uint32 tcRef;           // 0
  55.   Uint32 lqhNodeId;       // 1   
  56.   Uint32 operationStatus; // 2 See enum OperationStatus
  57.   Uint32 transId1;        // 3
  58.   Uint32 transId2;        // 4
  59.   Uint32 apiRef;          // 5
  60.   Uint32 apiOpRec;        // 6
  61.   Uint32 lqhConnectPtr;
  62.   Uint32 oldTcOpRec;
  63.   Uint32 requestInfo;
  64.   Uint32 gci;
  65.   Uint32 nextNodeId1;
  66.   Uint32 nextNodeId2;
  67.   Uint32 nextNodeId3;
  68.   Uint32 tableId;
  69.   /**
  70.    * Getters
  71.    */
  72.   static Uint32 getReplicaNo(Uint32 & requestInfo);
  73.   static Uint32 getReplicaType(Uint32 & requestInfo);
  74.   static Uint32 getLastReplicaNo(Uint32 & requestInfo);
  75.   static Uint32 getSimpleFlag(Uint32 & requestInfo);
  76.   static Uint32 getDirtyFlag(Uint32 & requestInfo);
  77.   static Uint32 getOperation(Uint32 & requestInfo);
  78.   static Uint32 getMarkerFlag(Uint32 & requestInfo);
  79.   static void setReplicaNo(UintR & requestInfo, UintR val);
  80.   static void setReplicaType(UintR & requestInfo, UintR val);
  81.   static void setLastReplicaNo(UintR & requestInfo, UintR val);
  82.   static void setSimpleFlag(UintR & requestInfo, UintR val);
  83.   static void setDirtyFlag(UintR & requestInfo, UintR val);
  84.   static void setOperation(UintR & requestInfo, UintR val);
  85.   static void setMarkerFlag(Uint32 & requestInfo, Uint32 val);
  86. };
  87. /**
  88.  * Request Info
  89.  *
  90.  * t = replica type           - 2  Bits (0-1)
  91.  * r = Replica No             - 2  Bits (2-3)
  92.  * l = Last Replica No        - 2  Bits (4-5)
  93.  * s = Simple                 - 1  Bits (6)
  94.  * d = Dirty                  - 1  Bit  (7)
  95.  * o = Operation              - 3  Bit  (8-9)
  96.  * m = Marker present         - 1  Bit  (10)
  97.  *
  98.  *           1111111111222222222233
  99.  * 01234567890123456789012345678901
  100.  * ttrrllsdooom
  101.  */
  102. #define LTC_REPLICA_TYPE_SHIFT    (0)
  103. #define LTC_REPLICA_TYPE_MASK     (3)
  104. #define LTC_REPLICA_NO_SHIFT      (2)
  105. #define LTC_REPLICA_NO_MASK       (3)
  106. #define LTC_LAST_REPLICA_SHIFT    (4)
  107. #define LTC_LAST_REPLICA_MASK     (3)
  108. #define LTC_SIMPLE_SHIFT          (6)
  109. #define LTC_DIRTY_SHIFT           (7)
  110. #define LTC_OPERATION_SHIFT       (8)
  111. #define LTC_OPERATION_MASK        (7)
  112. #define LTC_MARKER_SHIFT          (10)
  113. inline
  114. Uint32
  115. LqhTransConf::getReplicaType(Uint32 & requestInfo){
  116.   return (requestInfo >> LTC_REPLICA_TYPE_SHIFT) & LTC_REPLICA_TYPE_MASK;
  117. }
  118. inline
  119. Uint32
  120. LqhTransConf::getReplicaNo(Uint32 & requestInfo){
  121.   return (requestInfo >> LTC_REPLICA_NO_SHIFT) & LTC_REPLICA_NO_MASK;
  122. }
  123. inline
  124. Uint32
  125. LqhTransConf::getLastReplicaNo(Uint32 & requestInfo){
  126.   return (requestInfo >> LTC_LAST_REPLICA_SHIFT) & LTC_LAST_REPLICA_MASK;
  127. }
  128. inline
  129. Uint32
  130. LqhTransConf::getSimpleFlag(Uint32 & requestInfo){
  131.   return (requestInfo >> LTC_SIMPLE_SHIFT) & 1;
  132. }
  133. inline
  134. Uint32
  135. LqhTransConf::getDirtyFlag(Uint32 & requestInfo){
  136.   return (requestInfo >> LTC_DIRTY_SHIFT) & 1;
  137. }
  138. inline
  139. Uint32
  140. LqhTransConf::getOperation(Uint32 & requestInfo){
  141.   return (requestInfo >> LTC_OPERATION_SHIFT) & LTC_OPERATION_MASK;
  142. }
  143. inline
  144. Uint32
  145. LqhTransConf::getMarkerFlag(Uint32 & requestInfo){
  146.   return (requestInfo >> LTC_MARKER_SHIFT) & 1;
  147. }
  148. inline
  149. void
  150. LqhTransConf::setReplicaNo(UintR & requestInfo, UintR val){
  151.   ASSERT_MAX(val, LTC_REPLICA_NO_MASK, "LqhTransConf::setReplicaNo");
  152.   requestInfo |= (val << LTC_REPLICA_NO_SHIFT);
  153. }
  154. inline
  155. void
  156. LqhTransConf::setReplicaType(UintR & requestInfo, UintR val){
  157.   ASSERT_MAX(val, LTC_REPLICA_TYPE_MASK, "LqhTransConf::setReplicaType");
  158.   requestInfo |= (val << LTC_REPLICA_TYPE_SHIFT);
  159. }
  160. inline
  161. void
  162. LqhTransConf::setLastReplicaNo(UintR & requestInfo, UintR val){
  163.   ASSERT_MAX(val, LTC_LAST_REPLICA_MASK, "LqhTransConf::setLastReplicaNo");
  164.   requestInfo |= (val << LTC_LAST_REPLICA_SHIFT);
  165. }
  166. inline
  167. void
  168. LqhTransConf::setSimpleFlag(UintR & requestInfo, UintR val){
  169.   ASSERT_BOOL(val, "LqhTransConf::setSimpleFlag");
  170.   requestInfo |= (val << LTC_SIMPLE_SHIFT);
  171. }
  172. inline
  173. void
  174. LqhTransConf::setDirtyFlag(UintR & requestInfo, UintR val){
  175.   ASSERT_BOOL(val, "LqhTransConf::setDirtyFlag");
  176.   requestInfo |= (val << LTC_DIRTY_SHIFT);
  177. }
  178. inline
  179. void
  180. LqhTransConf::setOperation(UintR & requestInfo, UintR val){
  181.   ASSERT_MAX(val, LTC_OPERATION_MASK, "LqhTransConf::setOperation");
  182.   requestInfo |= (val << LTC_OPERATION_SHIFT);
  183. }
  184. inline
  185. void
  186. LqhTransConf::setMarkerFlag(UintR & requestInfo, UintR val){
  187.   ASSERT_BOOL(val, "LqhTransConf::setMarkerFlag");
  188.   requestInfo |= (val << LTC_MARKER_SHIFT);
  189. }
  190. #endif