GetTabInfo.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 GET_INFO_TAB_HPP
  14. #define GET_INFO_TAB_HPP
  15. #include "SignalData.hpp"
  16. /**
  17.  * GetTabInfo - Get table info from DICT
  18.  *
  19.  * Successfull return = series of DICTTABINFO-signals
  20.  */
  21. class GetTabInfoReq {
  22.   /**
  23.    * Sender(s) / Reciver(s)
  24.    */
  25.   // Blocks
  26.   friend class Dbdict;
  27.   friend class Backup;
  28.   friend class Trix;
  29.   friend class DbUtil;
  30.   // API
  31.   friend class Table;
  32.   friend bool printGET_TABINFO_REQ(FILE *, const Uint32 *, Uint32, Uint16);  
  33. public:
  34.   STATIC_CONST( SignalLength = 5 );
  35.   //  STATIC_CONST( MaxTableNameLengthInWords = 20 );
  36. public:
  37.   Uint32 senderData; 
  38.   Uint32 senderRef;
  39.   /**
  40.    * 0 = request by id, 1 = request by name
  41.    */
  42.   Uint32 requestType; 
  43.   
  44.   union {
  45.     Uint32 tableId; 
  46.     Uint32 tableNameLen;
  47.   };
  48.   Uint32 unused; // This is located here so that Req & Ref have the same format
  49.   //  Uint32 tableName[MaxTableNameLengthInWords];
  50.   
  51.   enum RequestType {
  52.     RequestById = 0,
  53.     RequestByName = 1,
  54.     LongSignalConf = 2
  55.   };
  56.   SECTION( TABLE_NAME = 0 );
  57. };
  58. class GetTabInfoRef {
  59.   /**
  60.    * Sender(s) / Reciver(s)
  61.    */
  62.   // Blocks
  63.   friend class Dbdict;
  64.   friend class Backup;
  65.   friend class Trix;
  66.   friend class DbUtil;
  67.   // API
  68.   friend class Table;
  69.   friend bool printGET_TABINFO_REF(FILE *, const Uint32 *, Uint32, Uint16);    
  70. public:
  71.   STATIC_CONST( SignalLength = 5 );
  72.   
  73. public:
  74.   Uint32 senderData; 
  75.   Uint32 senderRef;
  76.   Uint32 requestType; // 0 = request by id, 1 = request by name
  77.   union {
  78.     Uint32 tableId; 
  79.     Uint32 tableNameLen;
  80.   };
  81.   Uint32 errorCode; 
  82.   enum ErrorCode {
  83.     InvalidTableId  = 709,
  84.     TableNotDefined = 723,
  85.     TableNameTooLong = 702,
  86.     Busy            = 701
  87.   };
  88. };
  89. class GetTabInfoConf {
  90.   /**
  91.    * Sender(s) / Reciver(s)
  92.    */
  93.   // Blocks
  94.   friend class Dbdict;
  95.   friend class Backup;
  96.   friend class Trix;
  97.   friend class DbUtil;
  98.   friend class Suma;
  99.   // API
  100.   friend class Table;
  101.   friend bool printGET_TABINFO_CONF(FILE *, const Uint32 *, Uint32, Uint16);  
  102. public:
  103.   STATIC_CONST( SignalLength = 4 );
  104.   
  105.   SECTION( DICT_TAB_INFO = 0 );
  106. public:
  107.   Uint32 senderData; 
  108.   Uint32 tableId;
  109.   Uint32 gci; // For table
  110.   Uint32 totalLen; // In words
  111. };
  112. #endif