CreateTab.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 CREATE_TAB_HPP
  14. #define CREATE_TAB_HPP
  15. #include "SignalData.hpp"
  16. /**
  17.  * CreateTab
  18.  *
  19.  * Implemenatation of CreateTable
  20.  */
  21. class CreateTabReq {
  22.   /**
  23.    * Sender(s) / Reciver(s)
  24.    */
  25.   friend class Dbdict;
  26.   /**
  27.    * For printing
  28.    */
  29.   friend bool printCREATE_TAB_REQ(FILE*, const Uint32*, Uint32, Uint16);
  30.   
  31. public:
  32.   STATIC_CONST( SignalLength = 8 );
  33.   
  34.   enum RequestType {
  35.     CreateTablePrepare = 0, // Prepare create table
  36.     CreateTableCommit = 1,  // Commit create table
  37.     CreateTableDrop = 2     // Prepare failed, drop instead
  38.   };
  39. private:
  40.   Uint32 senderRef;
  41.   Uint32 senderData;
  42.   Uint32 clientRef;
  43.   Uint32 clientData;
  44.   Uint32 tableId;
  45.   Uint32 tableVersion;
  46.   Uint32 gci;
  47.   Uint32 requestType;
  48.   SECTION( DICT_TAB_INFO = 0 );
  49.   SECTION( FRAGMENTATION = 1 );
  50. };
  51. struct CreateTabRef {
  52.   /**
  53.    * Sender(s) / Reciver(s)
  54.    */
  55.   friend class Dbdict;
  56.   friend class SafeCounter;
  57.   
  58.   /**
  59.    * For printing
  60.    */
  61.   friend bool printCREATE_TAB_REF(FILE *, const Uint32 *, Uint32, Uint16);
  62.   
  63.   STATIC_CONST( SignalLength = 6 );
  64.   STATIC_CONST( GSN = GSN_CREATE_TAB_REF );
  65.   enum ErrorCode {
  66.     NF_FakeErrorREF = 255
  67.   };
  68.   Uint32 senderRef;
  69.   Uint32 senderData;
  70.   Uint32 errorCode;
  71.   Uint32 errorLine; 
  72.   Uint32 errorKey;
  73.   Uint32 errorStatus;
  74. };
  75. class CreateTabConf {
  76.   /**
  77.    * Sender(s) / Reciver(s)
  78.    */
  79.   friend class Dbdict;
  80.   
  81.   /**
  82.    * For printing
  83.    */
  84.   friend bool printCREATE_TAB_CONF(FILE *, const Uint32 *, Uint32, Uint16);
  85.   
  86. public:
  87.   STATIC_CONST( SignalLength = 2 );
  88. private:
  89.   Uint32 senderRef;
  90.   Uint32 senderData;
  91. };
  92. #endif