GetTableId.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 GET_TABLEID_HPP
  14. #define GET_TABLEID_HPP
  15. #include "SignalData.hpp"
  16. /**
  17.  * Convert tabname to table id
  18.  */
  19. class GetTableIdReq {
  20.   /**
  21.    * Sender(s) / Reciver(s)
  22.    */
  23.   // Blocks
  24.   friend class Dbdict;
  25.   friend class SumaParticipant;
  26.   
  27.   friend bool printGET_TABLEID_REQ(FILE *, const Uint32 *, Uint32, Uint16);  
  28. public:
  29.   STATIC_CONST( SignalLength = 3 );
  30. public:
  31.   Uint32 senderData; 
  32.   Uint32 senderRef;
  33.   Uint32 len;
  34.   SECTION( TABLE_NAME = 0 );
  35. };
  36. /**
  37.  * Convert tabname to table id
  38.  */
  39. class GetTableIdRef {
  40.   /**
  41.    * Sender(s) / Reciver(s)
  42.    */
  43.   // Blocks
  44.   friend class Dbdict;
  45.   friend class SumaParticipant;
  46.   friend bool printGET_TABLEID_REF(FILE *, const Uint32 *, Uint32, Uint16);  
  47. public:
  48.   STATIC_CONST( SignalLength = 3 );
  49. public:
  50.   Uint32 senderData; 
  51.   Uint32 senderRef;
  52.   Uint32 err;
  53.   enum ErrorCode {
  54.     InvalidTableId  = 709,
  55.     TableNotDefined = 723,
  56.     TableNameTooLong = 702,
  57.     EmptyTable = 1111
  58.   };
  59. };
  60. /**
  61.  * Convert tabname to table id
  62.  */
  63. class GetTableIdConf {
  64.   /**
  65.    * Sender(s) / Reciver(s)
  66.    */
  67.   // Blocks
  68.   friend class Dbdict;
  69.   friend class SumaParticipant;
  70.   friend bool printGET_TABLEID_CONF(FILE *, const Uint32 *, Uint32, Uint16);  
  71. public:
  72.   STATIC_CONST( SignalLength = 4 );
  73. public:
  74.   Uint32 senderData; 
  75.   Uint32 senderRef;
  76.   Uint32 tableId;
  77.   Uint32 schemaVersion;
  78.   
  79. };
  80. #endif