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

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 PREP_DROP_TAB_HPP
  14. #define PREP_DROP_TAB_HPP
  15. #include "SignalData.hpp"
  16. class PrepDropTabReq {
  17.   /**
  18.    * Sender(s)
  19.    */
  20.   friend class Dbdict;
  21.   /**
  22.    * Receiver(s)
  23.    */
  24.   friend class Dbtc;
  25.   friend class Dblqh;
  26.   friend class Dbdih;
  27.   friend bool printPREP_DROP_TAB_REQ(FILE *, const Uint32 *, Uint32, Uint16);
  28. public:
  29.   STATIC_CONST( SignalLength = 4 );
  30. private:
  31.   Uint32 senderRef;
  32.   Uint32 senderData;
  33.   Uint32 tableId;
  34.   Uint32 requestType; // @see DropTabReq::RequestType
  35. };
  36. class PrepDropTabConf {
  37.   /**
  38.    * Sender(s)
  39.    */
  40.   friend class Dbtc;
  41.   friend class Dblqh;
  42.   friend class Dbdih;
  43.   /**
  44.    * Receiver(s)
  45.    */
  46.   friend class Dbdict;
  47.   friend bool printPREP_DROP_TAB_CONF(FILE *, const Uint32 *, Uint32, Uint16);
  48. public:
  49.   STATIC_CONST( SignalLength = 3 );
  50. private:
  51.   Uint32 senderRef;
  52.   Uint32 senderData;
  53.   Uint32 tableId;
  54. };
  55. class PrepDropTabRef {
  56.   /**
  57.    * Sender(s)
  58.    */
  59.   friend class Dbtc;
  60.   friend class Dblqh;
  61.   friend class Dbdih;
  62.   /**
  63.    * Receiver(s)
  64.    */
  65.   friend class Dbdict;
  66.   friend bool printPREP_DROP_TAB_REF(FILE *, const Uint32 *, Uint32, Uint16);
  67. public:
  68.   STATIC_CONST( SignalLength = 4 );
  69.   enum ErrorCode {
  70.     OK = 0,
  71.     NoSuchTable = 1,
  72.     PrepDropInProgress = 2,
  73.     DropInProgress = 3,
  74.     InvalidTableState = 4,
  75.     NF_FakeErrorREF = 5
  76.   };
  77.   
  78. private:
  79.   Uint32 senderRef;
  80.   Uint32 senderData;
  81.   Uint32 tableId;
  82.   Uint32 errorCode;
  83. };
  84. class WaitDropTabReq {
  85.   /**
  86.    * Sender
  87.    */
  88.   friend class Dbtc;
  89.   friend class Dbdih;
  90.   /**
  91.    * Receiver(s)
  92.    */
  93.   friend class Dblqh;
  94.   friend bool printWAIT_DROP_TAB_REQ(FILE *, const Uint32 *, Uint32, Uint16);
  95. public:
  96.   STATIC_CONST( SignalLength = 2 );
  97.   
  98.   Uint32 tableId;
  99.   Uint32 senderRef;
  100. };
  101. class WaitDropTabRef {
  102.   /**
  103.    * Sender
  104.    */
  105.   friend class Dblqh;
  106.   /**
  107.    * Receiver(s)
  108.    */
  109.   friend class Dbtc;
  110.   friend class Dbdih;
  111.   friend bool printWAIT_DROP_TAB_REF(FILE *, const Uint32 *, Uint32, Uint16);
  112. public:
  113.   STATIC_CONST( SignalLength = 4 );
  114.   
  115.   enum ErrorCode {
  116.     NoSuchTable = 1,
  117.     IllegalTableState = 2,
  118.     DropInProgress = 3,
  119.     NF_FakeErrorREF = 4
  120.   };
  121.   
  122.   Uint32 tableId;
  123.   Uint32 senderRef;
  124.   Uint32 errorCode;
  125.   Uint32 tableStatus;
  126. };
  127. class WaitDropTabConf {
  128.   /**
  129.    * Sender
  130.    */
  131.   friend class Dblqh;
  132.   /**
  133.    * Receiver(s)
  134.    */
  135.   friend class Dbtc;
  136.   friend class Dbdih;
  137.   friend bool printWAIT_DROP_TAB_CONF(FILE *, const Uint32 *, Uint32, Uint16);
  138. public:
  139.   STATIC_CONST( SignalLength = 2 );
  140.   Uint32 tableId;
  141.   Uint32 senderRef;
  142. };
  143. #endif