DropTab.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 DROP_TAB_HPP
  14. #define DROP_TAB_HPP
  15. #include "SignalData.hpp"
  16. class DropTabReq {
  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 Dbacc;
  27.   friend class Dbtup;
  28.   friend class Dbtux;
  29.   friend class Dbdih;
  30.   
  31.   friend bool printDROP_TAB_REQ(FILE *, const Uint32 *, Uint32, Uint16);
  32. public:
  33.   STATIC_CONST( SignalLength = 4 );
  34.   enum RequestType {
  35.     OnlineDropTab = 0,
  36.     CreateTabDrop = 1,
  37.     RestartDropTab = 2
  38.   };
  39. private:
  40.   Uint32 senderRef;
  41.   Uint32 senderData;
  42.   Uint32 tableId;
  43.   Uint32 requestType;
  44. };
  45. class DropTabConf {
  46.   /**
  47.    * Sender(s)
  48.    */
  49.   friend class Dbtc;
  50.   friend class Dblqh;
  51.   friend class Dbacc;
  52.   friend class Dbtup;
  53.   friend class Dbtux;
  54.   friend class Dbdih;
  55.   /**
  56.    * Receiver(s)
  57.    */
  58.   friend class Dbdict;
  59.   friend bool printDROP_TAB_CONF(FILE *, const Uint32 *, Uint32, Uint16);
  60. public:
  61.   STATIC_CONST( SignalLength = 3 );
  62. private:
  63.   Uint32 senderRef;
  64.   Uint32 senderData;
  65.   Uint32 tableId;
  66. };
  67. class DropTabRef {
  68.   /**
  69.    * Sender(s)
  70.    */
  71.   friend class Dbtc;
  72.   friend class Dblqh;
  73.   friend class Dbacc;
  74.   friend class Dbtup;
  75.   friend class Dbtux;
  76.   friend class Dbdih;
  77.   /**
  78.    * Receiver(s)
  79.    */
  80.   friend class Dbdict;
  81.   friend bool printDROP_TAB_REF(FILE *, const Uint32 *, Uint32, Uint16);
  82. public:
  83.   STATIC_CONST( SignalLength = 4 );
  84.   enum ErrorCode {
  85.     NoSuchTable = 1,
  86.     DropWoPrep = 2, // Calling Drop with first calling PrepDrop
  87.     PrepDropInProgress = 3,
  88.     DropInProgress = 4,
  89.     NF_FakeErrorREF = 5
  90.   };
  91.   
  92. private:
  93.   Uint32 senderRef;
  94.   Uint32 senderData;
  95.   Uint32 tableId;
  96.   Uint32 errorCode;
  97. };
  98. #endif