TupKey.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 TUP_KEY_H
  14. #define TUP_KEY_H
  15. #include "SignalData.hpp"
  16. class TupKeyReq {
  17.   /**
  18.    * Reciver(s)
  19.    */
  20.   friend class Dbtup;
  21.   /**
  22.    * Sender(s)
  23.    */
  24.   friend class Dblqh;
  25.   /**
  26.    * For printing
  27.    */
  28.   friend bool printTUPKEYREQ(FILE * output, const Uint32 * theData, Uint32 len, Uint16 receiverBlockNo);
  29. public:
  30.   STATIC_CONST( SignalLength = 18 );
  31. private:
  32.   /**
  33.    * DATA VARIABLES
  34.    */
  35.   Uint32 connectPtr;
  36.   Uint32 request;
  37.   Uint32 tableRef;
  38.   Uint32 fragId;
  39.   Uint32 keyRef1;
  40.   Uint32 keyRef2;
  41.   Uint32 attrBufLen;
  42.   Uint32 opRef;
  43.   Uint32 applRef;
  44.   Uint32 schemaVersion;
  45.   Uint32 storedProcedure;
  46.   Uint32 transId1;
  47.   Uint32 transId2;
  48.   Uint32 fragPtr;
  49.   Uint32 primaryReplica;
  50.   Uint32 coordinatorTC;
  51.   Uint32 tcOpIndex;
  52.   Uint32 savePointId;
  53. };
  54. class TupKeyConf {
  55.   /**
  56.    * Reciver(s)
  57.    */
  58.   friend class Dblqh;
  59.   /**
  60.    * Sender(s)
  61.    */
  62.   friend class Dbtup;
  63.   /**
  64.    * For printing
  65.    */
  66.   friend bool printTUPKEYCONF(FILE * output, const Uint32 * theData, Uint32 len, Uint16 receiverBlockNo);
  67. public:
  68.   STATIC_CONST( SignalLength = 5 );
  69. private:
  70.   /**
  71.    * DATA VARIABLES
  72.    */
  73.   Uint32 userPtr;
  74.   Uint32 readLength;
  75.   Uint32 writeLength;
  76.   Uint32 noFiredTriggers;
  77.   Uint32 lastRow;
  78. };
  79. class TupKeyRef {
  80.   /**
  81.    * Reciver(s)
  82.    */
  83.   friend class Dblqh;      
  84.   /**
  85.    * Sender(s)
  86.    */
  87.   friend class Dbtup;
  88.   /**
  89.    * For printing
  90.    */
  91.   friend bool printTUPKEYREF(FILE * output, const Uint32 * theData, Uint32 len, Uint16 receiverBlockNo);
  92. public:
  93.   STATIC_CONST( SignalLength = 2 );
  94. private:
  95.   /**
  96.    * DATA VARIABLES
  97.    */
  98.   Uint32 userRef;
  99.   Uint32 errorCode;
  100. };
  101. #endif