Dbtc.hpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:68k
源码类别:

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 DBTC_H
  14. #define DBTC_H
  15. #include <ndb_limits.h>
  16. #include <pc.hpp>
  17. #include <SimulatedBlock.hpp>
  18. #include <DLHashTable.hpp>
  19. #include <SLList.hpp>
  20. #include <DLList.hpp>
  21. #include <DLFifoList.hpp>
  22. #include <DataBuffer.hpp>
  23. #include <Bitmask.hpp>
  24. #include <AttributeList.hpp>
  25. #include <signaldata/AttrInfo.hpp>
  26. #include <signaldata/LqhTransConf.hpp>
  27. #include <signaldata/LqhKey.hpp>
  28. #include <signaldata/TrigAttrInfo.hpp>
  29. #include <signaldata/TcIndx.hpp>
  30. #include <signaldata/TransIdAI.hpp>
  31. #include <signaldata/EventReport.hpp>
  32. #include <trigger_definitions.h>
  33. #include <SignalCounter.hpp>
  34. #ifdef DBTC_C
  35. /*
  36.  * 2.2 LOCAL SYMBOLS
  37.  * -----------------
  38.  */
  39. #define Z8NIL 255
  40. #define ZAPI_CONNECT_FILESIZE 20
  41. #define ZATTRBUF_FILESIZE 4000
  42. #define ZCLOSED 2
  43. #define ZCOMMITING 0  /* VALUE FOR TRANSTATUS        */
  44. #define ZCOMMIT_SETUP 2
  45. #define ZCONTINUE_ABORT_080 4
  46. #define ZDATABUF_FILESIZE 4000
  47. #define ZGCP_FILESIZE 10
  48. #define ZINBUF_DATA_LEN 24  /* POSITION OF 'DATA LENGHT'-VARIABLE. */
  49. #define ZINBUF_NEXT 27   /* POSITION OF 'NEXT'-VARIABLE.        */
  50. #define ZINBUF_PREV 26   /* POSITION OF 'PREVIOUS'-VARIABLE.    */
  51. #define ZINTSPH1 1
  52. #define ZINTSPH2 2
  53. #define ZINTSPH3 3
  54. #define ZINTSPH6 6
  55. #define ZLASTPHASE 255
  56. #define ZMAX_DATA_IN_LQHKEYREQ 12
  57. #define ZNODEBUF_FILESIZE 2000
  58. #define ZNR_OF_SEIZE 10
  59. #define ZSCANREC_FILE_SIZE 100
  60. #define ZSCAN_FRAGREC_FILE_SIZE 400
  61. #define ZSCAN_OPREC_FILE_SIZE 400
  62. #define ZSEND_ATTRINFO 0
  63. #define ZSPH1 1
  64. #define ZTABREC_FILESIZE 16
  65. #define ZTAKE_OVER_ACTIVE 1
  66. #define ZTAKE_OVER_IDLE 0
  67. #define ZTC_CONNECT_FILESIZE 200
  68. #define ZTCOPCONF_SIZE 6
  69. // ----------------------------------------
  70. // Error Codes for Scan
  71. // ----------------------------------------
  72. #define ZNO_CONCURRENCY_ERROR 242
  73. #define ZTOO_HIGH_CONCURRENCY_ERROR 244
  74. #define ZNO_SCANREC_ERROR 245
  75. #define ZNO_FRAGMENT_ERROR 246
  76. #define ZSCAN_AI_LEN_ERROR 269
  77. #define ZSCAN_LQH_ERROR 270
  78. #define ZSCAN_FRAG_LQH_ERROR 274
  79. #define ZSCANTIME_OUT_ERROR 296
  80. #define ZSCANTIME_OUT_ERROR2 297
  81. // ----------------------------------------
  82. // Error Codes for transactions
  83. // ----------------------------------------
  84. #define ZSTATE_ERROR 202
  85. #define ZLENGTH_ERROR 207 // Also Scan
  86. #define ZERO_KEYLEN_ERROR 208
  87. #define ZSIGNAL_ERROR 209
  88. #define ZGET_ATTRBUF_ERROR 217 // Also Scan
  89. #define ZGET_DATAREC_ERROR 218
  90. #define ZMORE_AI_IN_TCKEYREQ_ERROR 220
  91. #define ZCOMMITINPROGRESS 230
  92. #define ZROLLBACKNOTALLOWED 232
  93. #define ZNO_FREE_TC_CONNECTION 233 // Also Scan
  94. #define ZABORTINPROGRESS 237
  95. #define ZPREPAREINPROGRESS 238
  96. #define ZWRONG_SCHEMA_VERSION_ERROR 241 // Also Scan
  97. #define ZSCAN_NODE_ERROR 250
  98. #define ZTRANS_STATUS_ERROR 253
  99. #define ZTIME_OUT_ERROR 266
  100. #define ZSIMPLE_READ_WITHOUT_AI 271
  101. #define ZNO_AI_WITH_UPDATE 272
  102. #define ZSEIZE_API_COPY_ERROR 275
  103. #define ZSCANINPROGRESS 276
  104. #define ZABORT_ERROR 277
  105. #define ZCOMMIT_TYPE_ERROR 278
  106. #define ZNO_FREE_TC_MARKER 279
  107. #define ZNODE_SHUTDOWN_IN_PROGRESS 280
  108. #define ZCLUSTER_SHUTDOWN_IN_PROGRESS 281
  109. #define ZWRONG_STATE 282
  110. #define ZCLUSTER_IN_SINGLEUSER_MODE 299
  111. #define ZDROP_TABLE_IN_PROGRESS 283
  112. #define ZNO_SUCH_TABLE 284
  113. #define ZUNKNOWN_TABLE_ERROR 285
  114. #define ZNODEFAIL_BEFORE_COMMIT 286
  115. #define ZINDEX_CORRUPT_ERROR 287
  116. // ----------------------------------------
  117. // Seize error
  118. // ----------------------------------------
  119. #define ZNO_FREE_API_CONNECTION 219
  120. #define ZSYSTEM_NOT_STARTED_ERROR 203
  121. // ----------------------------------------
  122. // Release errors
  123. // ----------------------------------------
  124. #define ZINVALID_CONNECTION 229
  125. #define ZNOT_FOUND 626
  126. #define ZALREADYEXIST 630
  127. #define ZINCONSISTENTHASHINDEX 892
  128. #define ZNOTUNIQUE 893
  129. #endif
  130. class Dbtc: public SimulatedBlock {
  131. public:
  132.   enum ConnectionState {
  133.     CS_CONNECTED = 0,
  134.     CS_DISCONNECTED = 1,
  135.     CS_STARTED = 2,
  136.     CS_RECEIVING = 3,
  137.     CS_PREPARED = 4,
  138.     CS_START_PREPARING = 5,
  139.     CS_REC_PREPARING = 6,
  140.     CS_RESTART = 7,
  141.     CS_ABORTING = 8,
  142.     CS_COMPLETING = 9,
  143.     CS_COMPLETE_SENT = 10,
  144.     CS_PREPARE_TO_COMMIT = 11,
  145.     CS_COMMIT_SENT = 12,
  146.     CS_START_COMMITTING = 13,
  147.     CS_COMMITTING = 14,
  148.     CS_REC_COMMITTING = 15,
  149.     CS_WAIT_ABORT_CONF = 16,
  150.     CS_WAIT_COMPLETE_CONF = 17,
  151.     CS_WAIT_COMMIT_CONF = 18,
  152.     CS_FAIL_ABORTING = 19,
  153.     CS_FAIL_ABORTED = 20,
  154.     CS_FAIL_PREPARED = 21,
  155.     CS_FAIL_COMMITTING = 22,
  156.     CS_FAIL_COMMITTED = 23,
  157.     CS_FAIL_COMPLETED = 24,
  158.     CS_START_SCAN = 25
  159.   };
  160.   enum OperationState {
  161.     OS_CONNECTING_DICT = 0,
  162.     OS_CONNECTED = 1,
  163.     OS_OPERATING = 2,
  164.     OS_PREPARED = 3,
  165.     OS_COMMITTING = 4,
  166.     OS_COMMITTED = 5,
  167.     OS_COMPLETING = 6,
  168.     OS_COMPLETED = 7,
  169.     OS_RESTART = 8,
  170.     OS_ABORTING = 9,
  171.     OS_ABORT_SENT = 10,
  172.     OS_TAKE_OVER = 11,
  173.     OS_WAIT_DIH = 12,
  174.     OS_WAIT_KEYINFO = 13,
  175.     OS_WAIT_ATTR = 14,
  176.     OS_WAIT_COMMIT_CONF = 15,
  177.     OS_WAIT_ABORT_CONF = 16,
  178.     OS_WAIT_COMPLETE_CONF = 17,
  179.     OS_WAIT_SCAN = 18
  180.   };
  181.   enum AbortState {
  182.     AS_IDLE = 0,
  183.     AS_ACTIVE = 1
  184.   };
  185.   enum HostState {
  186.     HS_ALIVE = 0,
  187.     HS_DEAD = 1
  188.   };
  189.   enum LqhTransState {
  190.     LTS_IDLE = 0,
  191.     LTS_ACTIVE = 1
  192.   };
  193.   enum TakeOverState {
  194.     TOS_NOT_DEFINED = 0,
  195.     TOS_IDLE = 1,
  196.     TOS_ACTIVE = 2,
  197.     TOS_COMPLETED = 3,
  198.     TOS_NODE_FAILED = 4
  199.   };
  200.   enum FailState {
  201.     FS_IDLE = 0,
  202.     FS_LISTENING = 1,
  203.     FS_COMPLETING = 2
  204.   };
  205.   enum SystemStartState {
  206.     SSS_TRUE = 0,
  207.     SSS_FALSE = 1
  208.   };
  209.   enum TimeOutCheckState {
  210.     TOCS_TRUE = 0,
  211.     TOCS_FALSE = 1
  212.   };
  213.   enum ReturnSignal {
  214.     RS_NO_RETURN = 0,
  215.     RS_TCKEYCONF = 1,
  216.     RS_TC_COMMITCONF = 3,
  217.     RS_TCROLLBACKCONF = 4,
  218.     RS_TCROLLBACKREP = 5
  219.   };
  220.   
  221.   enum IndexOperationState {
  222.     IOS_NOOP = 0,
  223.     IOS_INDEX_ACCESS = 1,
  224.     IOS_INDEX_ACCESS_WAIT_FOR_TCKEYCONF = 2,
  225.     IOS_INDEX_ACCESS_WAIT_FOR_TRANSID_AI = 3,
  226.     IOS_INDEX_OPERATION = 4
  227.   };
  228.   
  229.   enum IndexState {
  230.     IS_BUILDING = 0,          // build in progress, start state at create
  231.     IS_ONLINE = 1             // ready to use
  232.   };
  233.   
  234.   /**--------------------------------------------------------------------------
  235.    * LOCAL SYMBOLS PER 'SYMBOL-VALUED' VARIABLE
  236.    *
  237.    *
  238.    *            NSYMB ZAPI_CONNECT_FILESIZE = 20
  239.    *            NSYMB ZTC_CONNECT_FILESIZE  = 200
  240.    *            NSYMB ZHOST_FILESIZE        = 16  
  241.    *            NSYMB ZDATABUF_FILESIZE     = 4000
  242.    *            NSYMB ZATTRBUF_FILESIZE     = 4000 
  243.    *            NSYMB ZGCP_FILESIZE         = 10 
  244.    *
  245.    *
  246.    *  ABORTED CODES
  247.    *  TPHASE    NSYMB ZSPH1 = 1
  248.    *            NSYMB ZLASTPHASE = 255
  249.    *
  250.    * 
  251.    * LQH_TRANS
  252.    *       NSYMB ZTRANS_ABORTED = 1 
  253.    *       NSYMB ZTRANS_PREPARED = 2 
  254.    *       NSYMB ZTRANS_COMMITTED = 3
  255.    *       NSYMB ZCOMPLETED_LQH_TRANS = 4
  256.    *       NSYMB ZTRANS_COMPLETED = 5 
  257.    *
  258.    * 
  259.    * TAKE OVER 
  260.    *       NSYMB ZTAKE_OVER_IDLE = 0
  261.    *       NSYMB ZTAKE_OVER_ACTIVE = 1
  262.    * 
  263.    * ATTRBUF (ATTRBUF_RECORD)
  264.    *          NSYMB ZINBUF_DATA_LEN = 24
  265.    *          NSYMB ZINBUF_NEXTFREE = 25    (NOT USED )
  266.    *          NSYMB ZINBUF_PREV = 26   
  267.    *          NSYMB ZINBUF_NEXT = 27    
  268.    -------------------------------------------------------------------------*/
  269.   /*
  270.     2.3 RECORDS AND FILESIZES
  271.     -------------------------
  272.   */
  273.   /* **************************************************************** */
  274.   /* ---------------------------------------------------------------- */
  275.   /* ------------------- TRIGGER AND INDEX DATA --------------------- */
  276.   /* ---------------------------------------------------------------- */
  277.   /* **************************************************************** */
  278.   /* ********* DEFINED TRIGGER DATA ********* */
  279.   /* THIS RECORD FORMS LISTS OF ACTIVE        */
  280.   /* TRIGGERS FOR EACH TABLE.                 */
  281.   /* THE RECORDS ARE MANAGED BY A TRIGGER     */
  282.   /* POOL WHERE A TRIGGER RECORD IS SEIZED    */
  283.   /* WHEN A TRIGGER IS ACTIVATED AND RELEASED */
  284.   /* WHEN THE TRIGGER IS DEACTIVATED.         */
  285.   /* **************************************** */
  286.   struct TcDefinedTriggerData {
  287.     /**
  288.      * Trigger id, used to identify the trigger
  289.      */
  290.     UintR triggerId;
  291.     
  292.     /**
  293.      * Trigger type, defines what the trigger is used for
  294.      */
  295.     TriggerType::Value triggerType;
  296.     
  297.     /**
  298.      * Trigger type, defines what the trigger is used for
  299.      */
  300.     TriggerEvent::Value triggerEvent;
  301.     
  302.     /**
  303.      * Attribute mask, defines what attributes are to be monitored
  304.      * Can be seen as a compact representation of SQL column name list
  305.      */
  306.     Bitmask<MAXNROFATTRIBUTESINWORDS> attributeMask;
  307.     /**
  308.      * Next ptr (used in pool/list)
  309.      */
  310.     union {
  311.       Uint32 nextPool;
  312.       Uint32 nextList;
  313.     };
  314.     
  315.     /**
  316.      * Index id, only used by secondary_index triggers.  This is same as
  317.      * index table id in DICT.
  318.      **/
  319.     Uint32 indexId;
  320.     /**
  321.      * Prev pointer (used in list)
  322.      */
  323.     Uint32 prevList;
  324.     inline void print(NdbOut & s) const { 
  325.       s << "[DefinedTriggerData = " << triggerId << "]"; 
  326.     }
  327.   };
  328.   typedef Ptr<TcDefinedTriggerData> DefinedTriggerPtr;
  329.   
  330.   /**
  331.    * Pool of trigger data record
  332.    */
  333.   ArrayPool<TcDefinedTriggerData> c_theDefinedTriggerPool;
  334.   /**
  335.    * The list of active triggers
  336.    */  
  337.   DLList<TcDefinedTriggerData> c_theDefinedTriggers;
  338.   typedef DataBuffer<11> AttributeBuffer;
  339.  
  340.   AttributeBuffer::DataBufferPool c_theAttributeBufferPool;
  341.   UintR c_transactionBufferSpace;
  342.   /* ********** FIRED TRIGGER DATA ********** */
  343.   /* THIS RECORD FORMS LISTS OF FIRED         */
  344.   /* TRIGGERS FOR A TRANSACTION.              */
  345.   /* THE RECORDS ARE MANAGED BY A TRIGGER     */
  346.   /* POOL WHERE A TRIGGER RECORD IS SEIZED    */
  347.   /* WHEN A TRIGGER IS ACTIVATED AND RELEASED */
  348.   /* WHEN THE TRIGGER IS DEACTIVATED.         */
  349.   /* **************************************** */
  350.   struct TcFiredTriggerData {
  351.     TcFiredTriggerData() {}
  352.     /**
  353.      * Trigger id, used to identify the trigger
  354.      **/
  355.     Uint32 triggerId;
  356.     
  357.     /**
  358.      * The operation that fired the trigger
  359.      */
  360.     Uint32 fireingOperation;
  361.     /**
  362.      * Used for scrapping in case of node failure
  363.      */
  364.     Uint32 nodeId;
  365.     /**
  366.      * Trigger attribute info, primary key value(s)
  367.      */
  368.     AttributeBuffer::Head keyValues;
  369.     
  370.     /**
  371.      * Trigger attribute info, attribute value(s) before operation
  372.      */
  373.     AttributeBuffer::Head beforeValues;
  374.     
  375.     /**
  376.      * Trigger attribute info, attribute value(s) after operation
  377.      */
  378.     AttributeBuffer::Head afterValues;
  379.     /**
  380.      * Next ptr (used in pool/list)
  381.      */
  382.     union {
  383.       Uint32 nextPool;
  384.       Uint32 nextList;
  385.       Uint32 nextHash;
  386.     };
  387.     
  388.     /**
  389.      * Prev pointer (used in list)
  390.      */
  391.     union {
  392.       Uint32 prevList;
  393.       Uint32 prevHash;
  394.     };
  395.     
  396.     inline void print(NdbOut & s) const { 
  397.       s << "[FiredTriggerData = " << triggerId << "]"; 
  398.     }
  399.     inline Uint32 hashValue() const {
  400.       return fireingOperation ^ nodeId;
  401.     }
  402.     inline bool equal(const TcFiredTriggerData & rec) const {
  403.       return fireingOperation == rec.fireingOperation && nodeId == rec.nodeId;
  404.     }
  405.   };
  406.   typedef Ptr<TcFiredTriggerData> FiredTriggerPtr;
  407.   
  408.   /**
  409.    * Pool of trigger data record
  410.    */
  411.   ArrayPool<TcFiredTriggerData> c_theFiredTriggerPool;
  412.   DLHashTable<TcFiredTriggerData> c_firedTriggerHash;
  413.   AttributeBuffer::DataBufferPool c_theTriggerAttrInfoPool;
  414.   Uint32 c_maxNumberOfDefinedTriggers;
  415.   Uint32 c_maxNumberOfFiredTriggers;
  416.   struct AttrInfoRecord {
  417.     /**
  418.      * Pre-allocated AttrInfo signal
  419.      */
  420.     AttrInfo attrInfo;
  421.     /**
  422.      * Next ptr (used in pool/list)
  423.      */
  424.     union {
  425.       Uint32 nextPool;
  426.       Uint32 nextList;
  427.     };
  428.     /**
  429.      * Prev pointer (used in list)
  430.      */
  431.     Uint32 prevList;
  432.   };
  433.   /* ************* INDEX DATA *************** */
  434.   /* THIS RECORD FORMS LISTS OF ACTIVE        */
  435.   /* INDEX FOR EACH TABLE.                    */
  436.   /* THE RECORDS ARE MANAGED BY A INDEX       */
  437.   /* POOL WHERE AN INDEX RECORD IS SEIZED     */
  438.   /* WHEN AN INDEX IS CREATED AND RELEASED    */
  439.   /* WHEN THE INDEX IS DROPPED.               */
  440.   /* **************************************** */
  441.   struct TcIndexData {
  442.     /**
  443.      *  IndexState
  444.      */
  445.     IndexState indexState;
  446.     /**
  447.      * Index id, same as index table id in DICT
  448.      */
  449.     Uint32 indexId;
  450.     
  451.     /**
  452.      * Index attribute list.  Only the length is used in v21x.
  453.      */
  454.     AttributeList attributeList;
  455.     /**
  456.      * Primary table id, the primary table to be indexed
  457.      */
  458.     Uint32 primaryTableId;
  459.     /**
  460.      *  Primary key position in secondary table
  461.      */
  462.     Uint32 primaryKeyPos;
  463.     /**
  464.      * Next ptr (used in pool/list)
  465.      */
  466.     union {
  467.       Uint32 nextPool;
  468.       Uint32 nextList;
  469.     };
  470.     /**
  471.      * Prev pointer (used in list)
  472.      */
  473.     Uint32 prevList;
  474.   };
  475.   
  476.   typedef Ptr<TcIndexData> TcIndexDataPtr;
  477.   
  478.   /**
  479.    * Pool of index data record
  480.    */
  481.   ArrayPool<TcIndexData> c_theIndexPool;
  482.   
  483.   /**
  484.    * The list of defined indexes
  485.    */  
  486.   ArrayList<TcIndexData> c_theIndexes;
  487.   UintR c_maxNumberOfIndexes;
  488.   struct TcIndexOperation {
  489.     TcIndexOperation(AttributeBuffer::DataBufferPool & abp) :
  490.       indexOpState(IOS_NOOP),
  491.       expectedKeyInfo(0),
  492.       keyInfo(abp),
  493.       expectedAttrInfo(0),
  494.       attrInfo(abp),
  495.       expectedTransIdAI(0),
  496.       transIdAI(abp),
  497.       indexReadTcConnect(RNIL)
  498.     {}
  499.     ~TcIndexOperation()
  500.     {
  501.     }
  502.     
  503.     // Index data
  504.     Uint32 indexOpId;
  505.     IndexOperationState indexOpState; // Used to mark on-going TcKeyReq
  506.     Uint32 expectedKeyInfo;
  507.     AttributeBuffer keyInfo;   // For accumulating IndxKeyInfo
  508.     Uint32 expectedAttrInfo;
  509.     AttributeBuffer attrInfo; // For accumulating IndxAttrInfo
  510.     Uint32 expectedTransIdAI;
  511.     AttributeBuffer transIdAI; // For accumulating TransId_AI
  512.     
  513.     TcIndxReq tcIndxReq;
  514.     UintR connectionIndex;
  515.     UintR indexReadTcConnect; //
  516.     
  517.     /**
  518.      * Next ptr (used in pool/list)
  519.      */
  520.     union {
  521.       Uint32 nextPool;
  522.       Uint32 nextList;
  523.     };
  524.     /**
  525.      * Prev pointer (used in list)
  526.      */
  527.     Uint32 prevList;
  528.   };
  529.   
  530.   typedef Ptr<TcIndexOperation> TcIndexOperationPtr;
  531.   
  532.   /**
  533.    * Pool of index data record
  534.    */
  535.   ArrayPool<TcIndexOperation> c_theIndexOperationPool;
  536.   UintR c_maxNumberOfIndexOperations;   
  537.   /************************** API CONNECT RECORD ***********************
  538.    * The API connect record contains the connection record to which the
  539.    * application connects.  
  540.    *
  541.    * The application can send one operation at a time.  It can send a 
  542.    * new operation immediately after sending the previous operation. 
  543.    * Thereby several operations can be active in one transaction within TC. 
  544.    * This is achieved by using the API connect record. 
  545.    * Each active operation is handled by the TC connect record. 
  546.    * As soon as the TC connect record has sent the     
  547.    * request to the LQH it is ready to receive new operations. 
  548.    * The LQH connect record takes care of waiting for an operation to      
  549.    * complete.  
  550.    * When an operation has completed on the LQH connect record, 
  551.    * a new operation can be started on this LQH connect record. 
  552.    *******************************************************************
  553.    *                                                                   
  554.    *       API CONNECT RECORD ALIGNED TO BE 256 BYTES                  
  555.    ********************************************************************/
  556.   
  557.   /*******************************************************************>*/
  558.   // We break out the API Timer for optimisation on scanning rather than
  559.   // on fast access.
  560.   /*******************************************************************>*/
  561.   inline void setApiConTimer(Uint32 apiConPtrI, Uint32 value, Uint32 line){
  562.     c_apiConTimer[apiConPtrI] = value;
  563.     c_apiConTimer_line[apiConPtrI] = line;
  564.   }
  565.   inline Uint32 getApiConTimer(Uint32 apiConPtrI) const {
  566.     return c_apiConTimer[apiConPtrI];
  567.   }
  568.   UintR* c_apiConTimer;
  569.   UintR* c_apiConTimer_line;
  570.   struct ApiConnectRecord {
  571.     ApiConnectRecord(ArrayPool<TcFiredTriggerData> & firedTriggerPool,
  572.      ArrayPool<TcIndexOperation> & seizedIndexOpPool):
  573.       theFiredTriggers(firedTriggerPool),
  574.       isIndexOp(false),
  575.       theSeizedIndexOperations(seizedIndexOpPool) 
  576.     {}
  577.     
  578.     //---------------------------------------------------
  579.     // First 16 byte cache line. Hot variables.
  580.     //---------------------------------------------------
  581.     ConnectionState apiConnectstate;
  582.     UintR transid[2];
  583.     UintR firstTcConnect;
  584.     
  585.     //---------------------------------------------------
  586.     // Second 16 byte cache line. Hot variables.
  587.     //---------------------------------------------------
  588.     UintR lqhkeyconfrec;
  589.     UintR cachePtr;
  590.     UintR currSavePointId;
  591.     UintR counter;
  592.     
  593.     //---------------------------------------------------
  594.     // Third 16 byte cache line. First and second cache
  595.     // line plus this will be enough for copy API records.
  596.     // Variables used in late phases.
  597.     //---------------------------------------------------
  598.     UintR nextGcpConnect;
  599.     UintR prevGcpConnect;
  600.     UintR gcpPointer;
  601.     UintR ndbapiConnect;
  602.     
  603.     //---------------------------------------------------
  604.     // Fourth 16 byte cache line. Only used in late phases.
  605.     // Plus 4 bytes of error handling.
  606.     //---------------------------------------------------
  607.     UintR nextApiConnect;
  608.     BlockReference ndbapiBlockref;
  609.     UintR apiCopyRecord;
  610.     UintR globalcheckpointid;
  611.     
  612.     //---------------------------------------------------
  613.     // Second 64 byte cache line starts. First 16 byte
  614.     // cache line in this one. Variables primarily used
  615.     // in early phase.
  616.     //---------------------------------------------------
  617.     UintR lastTcConnect;
  618.     UintR lqhkeyreqrec;
  619.     AbortState abortState;
  620.     Uint32 buddyPtr;
  621.     Uint8 m_exec_flag;
  622.     Uint8 unused2;
  623.     Uint8 takeOverRec;
  624.     Uint8 currentReplicaNo;
  625.     
  626.     //---------------------------------------------------
  627.     // Error Handling variables. If cache line 32 bytes
  628.     // ensures that cache line is still only read in
  629.     // early phases.
  630.     //---------------------------------------------------
  631.     union {
  632.       UintR apiScanRec;
  633.       UintR commitAckMarker;
  634.     };
  635.     UintR currentTcConnect;
  636.     BlockReference tcBlockref;
  637.     Uint16 returncode;
  638.     Uint16 takeOverInd;
  639.     
  640.     //---------------------------------------------------
  641.     // Second 64 byte cache line. Third 16 byte cache line
  642.     // in this one. Variables primarily used in early phase
  643.     // and checked in late phase.
  644.     // Fourth cache line is the tcSendArray that is used
  645.     // when two and three operations are responded to in
  646.     // parallel. The first two entries in tcSendArray is
  647.     // part of the third cache line.
  648.     //---------------------------------------------------
  649.     //---------------------------------------------------
  650.     // timeOutCounter is used waiting for ABORTCONF, COMMITCONF
  651.     // and COMPLETECONF
  652.     //---------------------------------------------------
  653.     UintR failureNr;
  654.     Uint8 tckeyrec; // 膎drad fr錸 R
  655.     Uint8 tcindxrec;
  656.     Uint8 apiFailState; // 膎drad fr錸 R
  657.     ReturnSignal returnsignal;
  658.     Uint8 timeOutCounter;
  659.     
  660.     UintR tcSendArray[6];
  661.     
  662.     // Trigger data
  663.     
  664.     /**
  665.      * The list of fired triggers
  666.      */  
  667.     DLFifoList<TcFiredTriggerData> theFiredTriggers;
  668.     
  669.     bool triggerPending; // Used to mark waiting for a CONTINUEB
  670.     
  671.     // Index data
  672.     
  673.     bool isIndexOp;      // Used to mark on-going TcKeyReq as indx table access
  674.     bool indexOpReturn;
  675.     UintR noIndexOp;     // No outstanding index ops
  676.     // Index op return context
  677.     UintR indexOp;
  678.     UintR clientData;
  679.     UintR attrInfoLen;
  680.     
  681.     UintR accumulatingIndexOp;
  682.     UintR executingIndexOp;
  683.     UintR tcIndxSendArray[6];
  684.     ArrayList<TcIndexOperation> theSeizedIndexOperations;
  685.   };
  686.   
  687.   typedef Ptr<ApiConnectRecord> ApiConnectRecordPtr;
  688.   /************************** TC CONNECT RECORD ************************/
  689.   /* *******************************************************************/
  690.   /* TC CONNECT RECORD KEEPS ALL INFORMATION TO CARRY OUT A TRANSACTION*/
  691.   /* THE TRANSACTION CONTROLLER ESTABLISHES CONNECTIONS TO DIFFERENT   */
  692.   /* BLOCKS TO CARRY OUT THE TRANSACTION. THERE CAN BE SEVERAL RECORDS */
  693.   /* PER ACTIVE TRANSACTION. THE TC CONNECT RECORD COOPERATES WITH THE */
  694.   /* API CONNECT RECORD FOR COMMUNICATION WITH THE API AND WITH THE    */
  695.   /* LQH CONNECT RECORD FOR COMMUNICATION WITH THE LQH'S INVOLVED IN   */
  696.   /* THE TRANSACTION. TC CONNECT RECORD IS PERMANENTLY CONNECTED TO A  */
  697.   /* RECORD IN DICT AND ONE IN DIH. IT CONTAINS A LIST OF ACTIVE LQH   */
  698.   /* CONNECT RECORDS AND A LIST OF STARTED BUT NOT ACTIVE LQH CONNECT  */
  699.   /* RECORDS. IT DOES ALSO CONTAIN A LIST OF ALL OPERATIONS THAT ARE   */
  700.   /* EXECUTED WITH THE TC CONNECT RECORD.                              */
  701.   /*******************************************************************>*/
  702.   /*       TC_CONNECT RECORD ALIGNED TO BE 128 BYTES                   */
  703.   /*******************************************************************>*/
  704.   struct TcConnectRecord {
  705.     //---------------------------------------------------
  706.     // First 16 byte cache line. Those variables are only
  707.     // used in error cases.
  708.     //---------------------------------------------------
  709.     UintR  tcOprec;      /* TC OPREC of operation being taken over       */
  710.     Uint16 failData[4];  /* Failed nodes when taking over an operation   */
  711.     UintR  nextTcFailHash;
  712.     
  713.     //---------------------------------------------------
  714.     // Second 16 byte cache line. Those variables are used
  715.     // from LQHKEYCONF to sending COMMIT and COMPLETED.
  716.     //---------------------------------------------------
  717.     UintR lastLqhCon;        /* Connect record in last replicas Lqh record   */
  718.     Uint16 lastLqhNodeId;    /* Node id of last replicas Lqh                 */
  719.     Uint16 m_execAbortOption;/* TcKeyReq::ExecuteAbortOption */
  720.     UintR  commitAckMarker;  /* CommitMarker I value */
  721.     
  722.     //---------------------------------------------------
  723.     // Third 16 byte cache line. The hottest variables.
  724.     //---------------------------------------------------
  725.     OperationState tcConnectstate;         /* THE STATE OF THE CONNECT*/
  726.     UintR apiConnect;                      /* POINTER TO API CONNECT RECORD */
  727.     UintR nextTcConnect;                   /* NEXT TC RECORD*/
  728.     Uint8 dirtyOp;
  729.     Uint8 lastReplicaNo;     /* NUMBER OF THE LAST REPLICA IN THE OPERATION */
  730.     Uint8 noOfNodes;         /* TOTAL NUMBER OF NODES IN OPERATION          */
  731.     Uint8 operation;         /* OPERATION TYPE                              */
  732.                              /* 0 = READ REQUEST                            */
  733.                              /* 1 = UPDATE REQUEST                          */
  734.                              /* 2 = INSERT REQUEST                          */
  735.                              /* 3 = DELETE REQUEST                          */
  736.     
  737.     //---------------------------------------------------
  738.     // Fourth 16 byte cache line. The mildly hot variables.
  739.     // tcNodedata expands 4 Bytes into the next cache line
  740.     // with indexes almost never used.
  741.     //---------------------------------------------------
  742.     UintR clientData;           /* SENDERS OPERATION POINTER              */
  743.     UintR dihConnectptr;         /* CONNECTION TO DIH BLOCK ON THIS NODE   */
  744.     UintR prevTcConnect;         /* DOUBLY LINKED LIST OF TC CONNECT RECORDS*/
  745.     UintR savePointId;
  746.     Uint16 tcNodedata[4];
  747.     
  748.     // Trigger data
  749.     FiredTriggerPtr accumulatingTriggerData;
  750.     UintR noFiredTriggers;
  751.     UintR noReceivedTriggers;
  752.     UintR triggerExecutionCount;
  753.     UintR triggeringOperation;
  754.     UintR savedState[LqhKeyConf::SignalLength];
  755.     
  756.     // Index data
  757.     bool isIndexOp; // Used to mark on-going TcKeyReq as index table access
  758.     UintR indexOp;
  759.     UintR currentIndexId;
  760.     UintR attrInfoLen;
  761.   };
  762.   
  763.   friend struct TcConnectRecord;
  764.   
  765.   typedef Ptr<TcConnectRecord> TcConnectRecordPtr;
  766.   
  767.   // ********************** CACHE RECORD **************************************
  768.   //---------------------------------------------------------------------------
  769.   // This record is used between reception of TCKEYREQ and sending of LQHKEYREQ
  770.   // It is separatedso as to improve the cache hit rate and also to minimise 
  771.   // the necessary memory storage in NDB Cluster.
  772.   //---------------------------------------------------------------------------
  773.   struct CacheRecord {
  774.     //---------------------------------------------------
  775.     // First 16 byte cache line. Variables used by
  776.     // ATTRINFO processing.
  777.     //---------------------------------------------------
  778.     UintR  firstAttrbuf;      /* POINTER TO LINKED LIST OF ATTRIBUTE BUFFERS */
  779.     UintR  lastAttrbuf;       /* POINTER TO LINKED LIST OF ATTRIBUTE BUFFERS */
  780.     UintR  currReclenAi;
  781.     Uint16 attrlength;        /* ATTRIBUTE INFORMATION LENGTH                */
  782.     Uint16 save1;
  783.     
  784.     //---------------------------------------------------
  785.     // Second 16 byte cache line. Variables initiated by
  786.     // TCKEYREQ and used in LQHKEYREQ.
  787.     //---------------------------------------------------
  788.     UintR  attrinfo15[4];
  789.     
  790.     //---------------------------------------------------
  791.     // Third 16 byte cache line. Variables initiated by
  792.     // TCKEYREQ and used in LQHKEYREQ.
  793.     //---------------------------------------------------
  794.     UintR  attrinfo0;
  795.     UintR  schemaVersion;/* SCHEMA VERSION USED IN TRANSACTION         */
  796.     UintR  tableref;     /* POINTER TO THE TABLE IN WHICH THE FRAGMENT EXISTS*/
  797.     Uint16 apiVersionNo;
  798.     Uint16 keylen;       /* KEY LENGTH SENT BY REQUEST SIGNAL                */
  799.     
  800.     //---------------------------------------------------
  801.     // Fourth 16 byte cache line. Variables initiated by
  802.     // TCKEYREQ and used in LQHKEYREQ.
  803.     //---------------------------------------------------
  804.     UintR  keydata[4];   /* RECEIVES FIRST 16 BYTES OF TUPLE KEY         */
  805.     
  806.     //---------------------------------------------------
  807.     // First 16 byte cache line in second 64 byte cache
  808.     // line. Diverse use.
  809.     //---------------------------------------------------
  810.     UintR  fragmentid;   /* THE COMPUTED FRAGMENT ID                     */
  811.     UintR  hashValue;    /* THE HASH VALUE USED TO LOCATE FRAGMENT       */
  812.     
  813.     Uint8  distributionKeyIndicator;
  814.     Uint8  distributionGroupIndicator;
  815.     Uint8  distributionGroupType;
  816.     Uint8  lenAiInTckeyreq;  /* LENGTH OF ATTRIBUTE INFORMATION IN TCKEYREQ */
  817.     Uint8  distributionKey;
  818.     /**
  819.      * EXECUTION MODE OF OPERATION                    
  820.      * 0 = NORMAL EXECUTION, 1 = INTERPRETED EXECUTION
  821.      */
  822.     Uint8  opExec;     
  823.     /** 
  824.      * LOCK TYPE OF OPERATION IF READ OPERATION
  825.      * 0 = READ LOCK, 1 = WRITE LOCK                    
  826.      */
  827.     Uint8  opLock;     
  828.     /** 
  829.      * IS THE OPERATION A SIMPLE TRANSACTION            
  830.      * 0 = NO, 1 = YES                                 
  831.      */
  832.     Uint8  opSimple;   
  833.     
  834.     //---------------------------------------------------
  835.     // Second 16 byte cache line in second 64 byte cache
  836.     // line. Diverse use.
  837.     //---------------------------------------------------
  838.     UintR  distributionGroup;
  839.     UintR  nextCacheRec;
  840.     UintR  distributionKeySize;
  841.     Uint32 scanInfo;
  842.     
  843.     //---------------------------------------------------
  844.     // Third 16 byte cache line in second 64
  845.     // byte cache line. Diverse use.
  846.     //---------------------------------------------------
  847.     Uint32 scanNode;
  848.     Uint32 scanTakeOverInd;
  849.     UintR  firstKeybuf;   /* POINTER THE LINKED LIST OF KEY BUFFERS       */
  850.     UintR  lastKeybuf;    /* VARIABLE POINTING TO THE LAST KEY BUFFER     */
  851.     //---------------------------------------------------
  852.     // Fourth 16 byte cache line in second 64
  853.     // byte cache line. Not used currently.
  854.     //---------------------------------------------------
  855.     UintR  packedCacheVar[4];
  856.   };
  857.   
  858.   typedef Ptr<CacheRecord> CacheRecordPtr;
  859.   
  860.   /* ************************ HOST RECORD ********************************** */
  861.   /********************************************************/
  862.   /* THIS RECORD CONTAINS ALIVE-STATUS ON ALL NODES IN THE*/
  863.   /* SYSTEM                                               */
  864.   /********************************************************/
  865.   /*       THIS RECORD IS ALIGNED TO BE 128 BYTES.        */
  866.   /********************************************************/
  867.   struct HostRecord {
  868.     HostState hostStatus;
  869.     LqhTransState lqhTransStatus;
  870.     TakeOverState takeOverStatus;
  871.     bool  inPackedList;
  872.     UintR noOfPackedWordsLqh;
  873.     UintR packedWordsLqh[26];
  874.     UintR noOfWordsTCKEYCONF;
  875.     UintR packedWordsTCKEYCONF[30];
  876.     UintR noOfWordsTCINDXCONF;
  877.     UintR packedWordsTCINDXCONF[30];
  878.     BlockReference hostLqhBlockRef;
  879.   }; /* p2c: size = 128 bytes */
  880.   
  881.   typedef Ptr<HostRecord> HostRecordPtr;
  882.   
  883.   /* *********** TABLE RECORD ********************************************* */
  884.   /********************************************************/
  885.   /* THIS RECORD CONTAINS THE CURRENT SCHEMA VERSION OF   */
  886.   /* ALL TABLES IN THE SYSTEM.                            */
  887.   /********************************************************/
  888.   struct TableRecord {
  889.     Uint32 currentSchemaVersion;
  890.     Uint8 enabled;
  891.     Uint8 dropping;
  892.     Uint8 tableType;
  893.     Uint8 storedTable;
  894.     
  895.     bool checkTable(Uint32 schemaVersion) const {
  896.       return enabled && !dropping && 
  897. (table_version_major(schemaVersion) == table_version_major(currentSchemaVersion));
  898.     }
  899.     
  900.     Uint32 getErrorCode(Uint32 schemaVersion) const;
  901.     
  902.     struct DropTable {
  903.       Uint32 senderRef;
  904.       Uint32 senderData;
  905.       SignalCounter waitDropTabCount;
  906.     } dropTable;
  907.   };
  908.   typedef Ptr<TableRecord> TableRecordPtr;
  909.   /**
  910.    * There is max 16 ScanFragRec's for 
  911.    * each scan started in TC. Each ScanFragRec is used by
  912.    * a scan fragment "process" that scans one fragment at a time. 
  913.    * It will receive max 16 tuples in each request
  914.    */
  915.   struct ScanFragRec {
  916.     ScanFragRec(){ 
  917.       stopFragTimer();
  918.       lqhBlockref = 0;
  919.       scanFragState = IDLE;
  920.       scanRec = RNIL;
  921.     }
  922.     /**
  923.      * ScanFragState      
  924.      *  WAIT_GET_PRIMCONF : Waiting for DIGETPRIMCONF when starting a new 
  925.      *   fragment scan
  926.      *  LQH_ACTIVE : The scan process has sent a command to LQH and is
  927.      *   waiting for the response
  928.      *  LQH_ACTIVE_CLOSE : The scan process has sent close to LQH and is
  929.      *   waiting for the response
  930.      *  DELIVERED : The result have been delivered, this scan frag process 
  931.      *   are waiting for a SCAN_NEXTREQ to tell us to continue scanning
  932.      *  RETURNING_FROM_DELIVERY : SCAN_NEXTREQ received and continuing scan
  933.      *   soon 
  934.      *  QUEUED_FOR_DELIVERY : Result queued in TC and waiting for delivery
  935.      *   to API
  936.      *  COMPLETED : The fragment scan processes has completed and finally
  937.      *    sent a SCAN_PROCCONF
  938.      */
  939.     enum ScanFragState {
  940.       IDLE = 0,
  941.       WAIT_GET_PRIMCONF = 1,
  942.       LQH_ACTIVE = 2,
  943.       DELIVERED = 4,
  944.       QUEUED_FOR_DELIVERY = 6,
  945.       COMPLETED = 7
  946.     };
  947.     // Timer for checking timeout of this fragment scan
  948.     Uint32  scanFragTimer;
  949.     // Id of the current scanned fragment
  950.     Uint32 scanFragId;
  951.     // Blockreference of LQH 
  952.     BlockReference lqhBlockref;
  953.     // getNodeInfo.m_connectCount, set at seize used so that
  954.     // I don't accidently kill a starting node
  955.     Uint32 m_connectCount;
  956.     // State of this fragment scan
  957.     ScanFragState scanFragState;
  958.     // Id of the ScanRecord this fragment scan belongs to
  959.     Uint32 scanRec;
  960.     // The value of fragmentCompleted in the last received SCAN_FRAGCONF
  961.     Uint8 m_scan_frag_conf_status;
  962.     inline void startFragTimer(Uint32 timeVal){
  963.       scanFragTimer = timeVal;
  964.     }
  965.     inline void stopFragTimer(void){
  966.       scanFragTimer = 0;
  967.     }
  968.     Uint32 m_ops;
  969.     Uint32 m_chksum;
  970.     Uint32 m_apiPtr;
  971.     Uint32 m_totalLen;
  972.     union {
  973.       Uint32 nextPool;
  974.       Uint32 nextList;
  975.     };
  976.     Uint32 prevList;
  977.   };
  978.   
  979.   typedef Ptr<ScanFragRec> ScanFragRecPtr;
  980.   typedef LocalDLList<ScanFragRec> ScanFragList;
  981.   /**
  982.    * Each scan allocates one ScanRecord to store information 
  983.    * about the current scan
  984.    *
  985.    */
  986.   struct ScanRecord {
  987.     ScanRecord() {}
  988.     /** NOTE! This is the old comment for ScanState. - MASV
  989.      *       STATE TRANSITIONS OF SCAN_STATE. SCAN_STATE IS THE STATE 
  990.      *       VARIABLE OF THE RECEIVE AND DELIVERY PROCESS.
  991.      *       THE PROCESS HAS THREE STEPS IT GOES THROUGH.  
  992.      *       1) THE INITIAL STATES WHEN RECEIVING DATA FOR THE SCAN.         
  993.      *          - WAIT_SCAN_TAB_INFO                                         
  994.      *          - WAIT_AI                                                    
  995.      *          - WAIT_FRAGMENT_COUNT                                        
  996.      *       2) THE EXECUTION STATES WHEN THE SCAN IS PERFORMED.             
  997.      *          - SCAN_NEXT_ORDERED                                          
  998.      *          - DELIVERED                                                  
  999.      *          - QUEUED_DELIVERED                                           
  1000.      *       3) THE CLOSING STATE WHEN THE SCAN PROCESS IS CLOSING UP 
  1001.      *          EVERYTHING.        
  1002.      *          - CLOSING_SCAN                                               
  1003.      *       INITIAL START WHEN SCAN_TABREQ RECEIVED                         
  1004.      *       -> WAIT_SCAN_TAB_INFO (IF ANY SCAN_TABINFO TO BE RECEIVED)      
  1005.      *       -> WAIT_AI (IF NO SCAN_TAB_INFO BUT ATTRINFO IS RECEIVED)       
  1006.      *       -> WAIT_FRAGMENT_COUNT (IF NEITHER SCAN_TABINFO OR ATTRINFO 
  1007.      *                               RECEIVED)       
  1008.      *                                                                       
  1009.      *       WAIT_SCAN_TAB_INFO TRANSITIONS:                                 
  1010.      *       -> WAIT_SCAN_TABINFO (WHEN MORE SCAN_TABINFO RECEIVED)          
  1011.      *       -> WAIT_AI (WHEN ATTRINFO RECEIVED AFTER RECEIVING ALL 
  1012.      *                    SCAN_TABINFO)        
  1013.      *       -> WAIT_FRAGMENT_COUNT (WHEN NO ATTRINFO RECEIVED AFTER 
  1014.      *                               RECEIVING ALL SCAN_TABINFO )            
  1015.      *       WAIT_AI TRANSITIONS:                                            
  1016.      *       -> WAIT_AI (WHEN MORE ATTRINFO RECEIVED)                        
  1017.      *       -> WAIT_FRAGMENT_COUNT (WHEN ALL ATTRINFO RECEIVED)             
  1018.      *                                                                       
  1019.      *       WAIT_FRAGMENT_COUNT TRANSITIONS:                                
  1020.      *       -> SCAN_NEXT_ORDERED                                            
  1021.      *                                                                       
  1022.      *       SCAN_NEXT_ORDERED TRANSITIONS:                                  
  1023.      *       -> DELIVERED (WHEN FIRST SCAN_FRAGCONF ARRIVES WITH OPERATIONS 
  1024.      *                     TO REPORT IN IT)                                  
  1025.      *       -> CLOSING_SCAN (WHEN SCAN IS CLOSED BY SCAN_NEXTREQ OR BY SOME 
  1026.      *                        ERROR)      
  1027.      *
  1028.      *       DELIVERED TRANSITIONS:
  1029.      *       -> SCAN_NEXT_ORDERED (IF SCAN_NEXTREQ ARRIVES BEFORE ANY NEW 
  1030.      *                             OPERATIONS TO REPORT ARRIVES)
  1031.      *       -> QUEUED_DELIVERED (IF NEW OPERATION TO REPORT ARRIVES BEFORE 
  1032.      *                            SCAN_NEXTREQ)
  1033.      *       -> CLOSING_SCAN (WHEN SCAN IS CLOSED BY SCAN_NEXTREQ OR BY SOME 
  1034.      *                        ERROR)      
  1035.      *   
  1036.      *       QUEUED_DELIVERED TRANSITIONS:  
  1037.      *       -> DELIVERED (WHEN SCAN_NEXTREQ ARRIVES AND QUEUED OPERATIONS 
  1038.      *                     TO REPORT ARE SENT TO THE APPLICATION)
  1039.      *       -> CLOSING_SCAN (WHEN SCAN IS CLOSED BY SCAN_NEXTREQ OR BY 
  1040.      *                        SOME ERROR)      
  1041.      */
  1042.     enum ScanState {
  1043.       IDLE = 0,
  1044.       WAIT_SCAN_TAB_INFO = 1,
  1045.       WAIT_AI = 2,
  1046.       WAIT_FRAGMENT_COUNT = 3,
  1047.       RUNNING = 4,
  1048.       CLOSING_SCAN = 5
  1049.     };
  1050.     // State of this scan
  1051.     ScanState scanState;
  1052.     
  1053.     DLList<ScanFragRec>::Head m_running_scan_frags;  // Currently in LQH
  1054.     union { Uint32 m_queued_count; Uint32 scanReceivedOperations; };
  1055.     DLList<ScanFragRec>::Head m_queued_scan_frags;   // In TC !sent to API
  1056.     DLList<ScanFragRec>::Head m_delivered_scan_frags;// Delivered to API
  1057.     
  1058.     // Id of the next fragment to be scanned. Used by scan fragment 
  1059.     // processes when they are ready for the next fragment
  1060.     Uint32 scanNextFragId;
  1061.     
  1062.     // Total number of fragments in the table we are scanning
  1063.     Uint32 scanNoFrag;
  1064.     // Index of next ScanRecords when in free list
  1065.     Uint32 nextScan;
  1066.     // Length of expected attribute information
  1067.     Uint32 scanAiLength;
  1068.     Uint32 scanKeyLen;
  1069.     // Reference to ApiConnectRecord
  1070.     Uint32 scanApiRec;
  1071.     // Reference to TcConnectRecord
  1072.     Uint32 scanTcrec;
  1073.     // Number of scan frag processes that belong to this scan 
  1074.     Uint32 scanParallel;
  1075.     // Schema version used by this scan
  1076.     Uint32 scanSchemaVersion;
  1077.     // Index of stored procedure belonging to this scan
  1078.     Uint32 scanStoredProcId;
  1079.     // The index of table that is scanned
  1080.     Uint32 scanTableref;
  1081.     // Number of operation records per scanned fragment
  1082.     // Number of operations in first batch
  1083.     // Max number of bytes per batch
  1084.     union {
  1085.       Uint16 first_batch_size_rows;
  1086.       Uint16 batch_size_rows;
  1087.     };
  1088.     Uint32 batch_byte_size;
  1089.     Uint32 scanRequestInfo; // ScanFrag format
  1090.     // Close is ordered
  1091.     bool m_close_scan_req;
  1092.   };   
  1093.   typedef Ptr<ScanRecord> ScanRecordPtr;
  1094.   
  1095.   /* **********************************************************************$ */
  1096.   /* ******$                        DATA BUFFER                      ******$ */
  1097.   /*                                                                         */
  1098.   /*       THIS BUFFER IS USED AS A GENERAL DATA STORAGE.                    */
  1099.   /* **********************************************************************$ */
  1100.   struct DatabufRecord {
  1101.     UintR data[4];
  1102.     /* 4 * 1 WORD = 4 WORD   */
  1103.     UintR nextDatabuf;
  1104.   }; /* p2c: size = 20 bytes */
  1105.   
  1106.   typedef Ptr<DatabufRecord> DatabufRecordPtr;
  1107.   /* **********************************************************************$ */
  1108.   /* ******$                 ATTRIBUTE INFORMATION RECORD            ******$ */
  1109.   /*
  1110.    * CAN CONTAIN ONE (1) ATTRINFO SIGNAL. ONE SIGNAL CONTAINS 24 ATTR.      
  1111.    * INFO WORDS. BUT 32 ELEMENTS ARE USED TO MAKE PLEX HAPPY.
  1112.    * SOME OF THE ELEMENTS ARE USED TO THE FOLLOWING THINGS:                 
  1113.    * DATA LENGHT IN THIS RECORD IS STORED IN THE ELEMENT INDEXED BY          
  1114.    * ZINBUF_DATA_LEN.                                                         
  1115.    * NEXT FREE ATTRBUF IS POINTED OUT BY THE ELEMENT INDEXED BY               
  1116.    * PREVIOUS ATTRBUF IS POINTED OUT BY THE ELEMENT INDEXED BY ZINBUF_PREV     
  1117.    * (NOT USED YET).                                                          
  1118.    * NEXT ATTRBUF IS POINTED OUT BY THE ELEMENT INDEXED BY ZINBUF_NEXT.   */
  1119.   /* ******************************************************************** */
  1120.   struct AttrbufRecord {
  1121.     UintR attrbuf[32];
  1122.   }; /* p2c: size = 128 bytes */
  1123.   
  1124.   typedef Ptr<AttrbufRecord> AttrbufRecordPtr;
  1125.   /*************************************************************************>*/
  1126.   /*                     GLOBAL CHECKPOINT INFORMATION RECORD                */
  1127.   /*                                                                         */
  1128.   /*       THIS RECORD IS USED TO STORE THE GLOBALCHECKPOINT NUMBER AND A 
  1129.    *       COUNTER DURING THE COMPLETION PHASE OF THE TRANSACTION            */
  1130.   /*************************************************************************>*/
  1131.   /*                                                                         */
  1132.   /*       GCP RECORD ALIGNED TO BE 32 BYTES                                 */
  1133.   /*************************************************************************>*/
  1134.   struct GcpRecord {
  1135.     UintR gcpUnused1[2]; /* p2c: Not used */
  1136.     UintR firstApiConnect;
  1137.     UintR lastApiConnect;
  1138.     UintR gcpId;
  1139.     UintR nextGcp;
  1140.     UintR gcpUnused2; /* p2c: Not used */
  1141.     Uint16 gcpNomoretransRec;
  1142.   }; /* p2c: size = 32 bytes */
  1143.   
  1144.   typedef Ptr<GcpRecord> GcpRecordPtr;
  1145.   /*************************************************************************>*/
  1146.   /*               TC_FAIL_RECORD                                            */
  1147.   /*       THIS RECORD IS USED WHEN HANDLING TAKE OVER OF ANOTHER FAILED 
  1148.    *       TC NODE.       */
  1149.   /*************************************************************************>*/
  1150.   struct TcFailRecord {
  1151.     Uint16 queueList[MAX_NDB_NODES];
  1152.     Uint8 takeOverProcState[MAX_NDB_NODES];
  1153.     UintR completedTakeOver;
  1154.     UintR currentHashIndexTakeOver;
  1155.     FailState failStatus;
  1156.     Uint16 queueIndex;
  1157.     Uint16 takeOverNode;
  1158.   }; /* p2c: size = 64 bytes */
  1159.   
  1160.   typedef Ptr<TcFailRecord> TcFailRecordPtr;
  1161. public:
  1162.   Dbtc(const class Configuration &);
  1163.   virtual ~Dbtc();
  1164. private:
  1165.   BLOCK_DEFINES(Dbtc);
  1166.   // Transit signals
  1167.   void execPACKED_SIGNAL(Signal* signal);
  1168.   void execABORTED(Signal* signal);
  1169.   void execATTRINFO(Signal* signal);
  1170.   void execCONTINUEB(Signal* signal);
  1171.   void execKEYINFO(Signal* signal);
  1172.   void execSCAN_NEXTREQ(Signal* signal);
  1173.   void execSCAN_PROCREQ(Signal* signal);
  1174.   void execSCAN_PROCCONF(Signal* signal);
  1175.   void execTAKE_OVERTCREQ(Signal* signal);
  1176.   void execTAKE_OVERTCCONF(Signal* signal);
  1177.   void execLQHKEYREF(Signal* signal);
  1178.   void execTRANSID_AI_R(Signal* signal);
  1179.   void execKEYINFO20_R(Signal* signal);
  1180.   // Received signals
  1181.   void execDUMP_STATE_ORD(Signal* signal);
  1182.   void execSEND_PACKED(Signal* signal);
  1183.   void execCOMPLETED(Signal* signal);
  1184.   void execCOMMITTED(Signal* signal);
  1185.   void execDIGETNODESREF(Signal* signal);
  1186.   void execDIGETPRIMCONF(Signal* signal);
  1187.   void execDIGETPRIMREF(Signal* signal);
  1188.   void execDISEIZECONF(Signal* signal);
  1189.   void execDIVERIFYCONF(Signal* signal);
  1190.   void execDI_FCOUNTCONF(Signal* signal);
  1191.   void execDI_FCOUNTREF(Signal* signal);
  1192.   void execGCP_NOMORETRANS(Signal* signal);
  1193.   void execLQHKEYCONF(Signal* signal);
  1194.   void execNDB_STTOR(Signal* signal);
  1195.   void execREAD_NODESCONF(Signal* signal);
  1196.   void execREAD_NODESREF(Signal* signal);
  1197.   void execSTTOR(Signal* signal);
  1198.   void execTC_COMMITREQ(Signal* signal);
  1199.   void execTC_CLOPSIZEREQ(Signal* signal);
  1200.   void execTCGETOPSIZEREQ(Signal* signal);
  1201.   void execTCKEYREQ(Signal* signal);
  1202.   void execTCRELEASEREQ(Signal* signal);
  1203.   void execTCSEIZEREQ(Signal* signal);
  1204.   void execTCROLLBACKREQ(Signal* signal);
  1205.   void execTC_HBREP(Signal* signal);
  1206.   void execTC_SCHVERREQ(Signal* signal);
  1207.   void execSCAN_TABREQ(Signal* signal);
  1208.   void execSCAN_TABINFO(Signal* signal);
  1209.   void execSCAN_FRAGCONF(Signal* signal);
  1210.   void execSCAN_FRAGREF(Signal* signal);
  1211.   void execREAD_CONFIG_REQ(Signal* signal);
  1212.   void execLQH_TRANSCONF(Signal* signal);
  1213.   void execCOMPLETECONF(Signal* signal);
  1214.   void execCOMMITCONF(Signal* signal);
  1215.   void execABORTCONF(Signal* signal);
  1216.   void execNODE_FAILREP(Signal* signal);
  1217.   void execINCL_NODEREQ(Signal* signal);
  1218.   void execTIME_SIGNAL(Signal* signal);
  1219.   void execAPI_FAILREQ(Signal* signal);
  1220.   void execSCAN_HBREP(Signal* signal);
  1221.   void execSET_VAR_REQ(Signal* signal);
  1222.   void execABORT_ALL_REQ(Signal* signal);
  1223.   void execCREATE_TRIG_REQ(Signal* signal);
  1224.   void execDROP_TRIG_REQ(Signal* signal);
  1225.   void execFIRE_TRIG_ORD(Signal* signal);
  1226.   void execTRIG_ATTRINFO(Signal* signal);
  1227.   void execCREATE_INDX_REQ(Signal* signal);
  1228.   void execDROP_INDX_REQ(Signal* signal);
  1229.   void execTCINDXREQ(Signal* signal);
  1230.   void execINDXKEYINFO(Signal* signal);
  1231.   void execINDXATTRINFO(Signal* signal);
  1232.   void execALTER_INDX_REQ(Signal* signal);
  1233.   // Index table lookup
  1234.   void execTCKEYCONF(Signal* signal);
  1235.   void execTCKEYREF(Signal* signal);
  1236.   void execTRANSID_AI(Signal* signal);
  1237.   void execTCROLLBACKREP(Signal* signal);
  1238.   void execCREATE_TAB_REQ(Signal* signal);
  1239.   void execPREP_DROP_TAB_REQ(Signal* signal);
  1240.   void execDROP_TAB_REQ(Signal* signal);
  1241.   void execWAIT_DROP_TAB_REF(Signal* signal);
  1242.   void execWAIT_DROP_TAB_CONF(Signal* signal);
  1243.   void checkWaitDropTabFailedLqh(Signal*, Uint32 nodeId, Uint32 tableId);
  1244.   void execALTER_TAB_REQ(Signal* signal);
  1245.   void set_timeout_value(Uint32 timeOut);
  1246.   void set_appl_timeout_value(Uint32 timeOut);
  1247.   void set_no_parallel_takeover(Uint32);
  1248.   void updateBuddyTimer(ApiConnectRecordPtr);
  1249.   // Statement blocks
  1250.   void updatePackedList(Signal* signal, HostRecord* ahostptr, 
  1251. Uint16 ahostIndex);
  1252.   void clearTcNodeData(Signal* signal, 
  1253.                        UintR TLastLqhIndicator,
  1254.                        UintR Tstart);
  1255.   void errorReport(Signal* signal, int place);
  1256.   void warningReport(Signal* signal, int place);
  1257.   void printState(Signal* signal, int place);
  1258.   int seizeTcRecord(Signal* signal);
  1259.   int seizeCacheRecord(Signal* signal);
  1260.   void TCKEY_abort(Signal* signal, int place);
  1261.   void copyFromToLen(UintR* sourceBuffer, UintR* destBuffer, UintR copyLen);
  1262.   void reportNodeFailed(Signal* signal, Uint32 nodeId);
  1263.   void sendPackedTCKEYCONF(Signal* signal,
  1264.                            HostRecord * ahostptr,
  1265.                            UintR hostId);
  1266.   void sendPackedTCINDXCONF(Signal* signal,
  1267.                             HostRecord * ahostptr,
  1268.                             UintR hostId);
  1269.   void sendPackedSignalLqh(Signal* signal, HostRecord * ahostptr);
  1270.   void sendCommitLqh(Signal* signal,
  1271.                      TcConnectRecord * const regTcPtr);
  1272.   void sendCompleteLqh(Signal* signal,
  1273.                        TcConnectRecord * const regTcPtr);
  1274.   void sendTCKEY_FAILREF(Signal* signal, const ApiConnectRecord *);
  1275.   void sendTCKEY_FAILCONF(Signal* signal, ApiConnectRecord *);
  1276.   void checkStartTimeout(Signal* signal);
  1277.   void checkStartFragTimeout(Signal* signal);
  1278.   void timeOutFoundFragLab(Signal* signal, Uint32 TscanConPtr);
  1279.   void timeOutLoopStartFragLab(Signal* signal, Uint32 TscanConPtr);
  1280.   int  releaseAndAbort(Signal* signal);
  1281.   void findApiConnectFail(Signal* signal);
  1282.   void findTcConnectFail(Signal* signal);
  1283.   void initApiConnectFail(Signal* signal);
  1284.   void initTcConnectFail(Signal* signal);
  1285.   void initTcFail(Signal* signal);
  1286.   void releaseTakeOver(Signal* signal);
  1287.   void setupFailData(Signal* signal);
  1288.   void updateApiStateFail(Signal* signal);
  1289.   void updateTcStateFail(Signal* signal);
  1290.   void handleApiFailState(Signal* signal, UintR anApiConnectptr);
  1291.   void handleFailedApiNode(Signal* signal,
  1292.                            UintR aFailedNode,
  1293.                            UintR anApiConnectPtr);
  1294.   void handleScanStop(Signal* signal, UintR aFailedNode);
  1295.   void initScanTcrec(Signal* signal);
  1296.   void initScanrec(ScanRecordPtr,  const class ScanTabReq*,
  1297.    const UintR scanParallel, 
  1298.    const UintR noOprecPerFrag);
  1299.   void initScanfragrec(Signal* signal);
  1300.   void releaseScanResources(ScanRecordPtr);
  1301.   ScanRecordPtr seizeScanrec(Signal* signal);
  1302.   void sendScanFragReq(Signal*, ScanRecord*, ScanFragRec*);
  1303.   void sendScanTabConf(Signal* signal, ScanRecordPtr);
  1304.   void close_scan_req(Signal*, ScanRecordPtr, bool received_req);
  1305.   void close_scan_req_send_conf(Signal*, ScanRecordPtr);
  1306.   
  1307.   void checkGcp(Signal* signal);
  1308.   void commitGciHandling(Signal* signal, UintR Tgci);
  1309.   void copyApi(Signal* signal);
  1310.   void DIVER_node_fail_handling(Signal* signal, UintR Tgci);
  1311.   void gcpTcfinished(Signal* signal);
  1312.   void handleGcp(Signal* signal);
  1313.   void hash(Signal* signal);
  1314.   void initApiConnect(Signal* signal);
  1315.   void initApiConnectRec(Signal* signal, 
  1316.  ApiConnectRecord * const regApiPtr,
  1317.  bool releaseIndexOperations = false);
  1318.   void initattrbuf(Signal* signal);
  1319.   void initdatabuf(Signal* signal);
  1320.   void initgcp(Signal* signal);
  1321.   void inithost(Signal* signal);
  1322.   void initialiseScanrec(Signal* signal);
  1323.   void initialiseScanFragrec(Signal* signal);
  1324.   void initialiseScanOprec(Signal* signal);
  1325.   void initTable(Signal* signal);
  1326.   void initialiseTcConnect(Signal* signal);
  1327.   void linkApiToGcp(Signal* signal);
  1328.   void linkGciInGcilist(Signal* signal);
  1329.   void linkKeybuf(Signal* signal);
  1330.   void linkTcInConnectionlist(Signal* signal);
  1331.   void releaseAbortResources(Signal* signal);
  1332.   void releaseApiCon(Signal* signal, UintR aApiConnectPtr);
  1333.   void releaseApiConCopy(Signal* signal);
  1334.   void releaseApiConnectFail(Signal* signal);
  1335.   void releaseAttrinfo();
  1336.   void releaseGcp(Signal* signal);
  1337.   void releaseKeys();
  1338.   void releaseSimpleRead(Signal*, ApiConnectRecordPtr, TcConnectRecord*);
  1339.   void releaseDirtyWrite(Signal* signal);
  1340.   void releaseTcCon();
  1341.   void releaseTcConnectFail(Signal* signal);
  1342.   void releaseTransResources(Signal* signal);
  1343.   void saveAttrbuf(Signal* signal);
  1344.   void seizeApiConnect(Signal* signal);
  1345.   void seizeApiConnectCopy(Signal* signal);
  1346.   void seizeApiConnectFail(Signal* signal);
  1347.   void seizeDatabuf(Signal* signal);
  1348.   void seizeGcp(Signal* signal);
  1349.   void seizeTcConnect(Signal* signal);
  1350.   void seizeTcConnectFail(Signal* signal);
  1351.   void sendApiCommit(Signal* signal);
  1352.   void sendAttrinfo(Signal* signal,
  1353.                     UintR TattrinfoPtr,
  1354.                     AttrbufRecord * const regAttrPtr,
  1355.                     UintR TBref);
  1356.   void sendContinueTimeOutControl(Signal* signal, Uint32 TapiConPtr);
  1357.   void sendKeyinfo(Signal* signal, BlockReference TBRef, Uint32 len);
  1358.   void sendlqhkeyreq(Signal* signal, BlockReference TBRef);
  1359.   void sendSystemError(Signal* signal);
  1360.   void sendtckeyconf(Signal* signal, UintR TcommitFlag);
  1361.   void sendTcIndxConf(Signal* signal, UintR TcommitFlag);
  1362.   void unlinkApiConnect(Signal* signal);
  1363.   void unlinkGcp(Signal* signal);
  1364.   void unlinkReadyTcCon(Signal* signal);
  1365.   void handleFailedOperation(Signal* signal,
  1366.      const LqhKeyRef * const lqhKeyRef, 
  1367.      bool gotLqhKeyRef);
  1368.   void markOperationAborted(ApiConnectRecord * const regApiPtr,
  1369.     TcConnectRecord * const regTcPtr);
  1370.   void clearCommitAckMarker(ApiConnectRecord * const regApiPtr,
  1371.     TcConnectRecord * const regTcPtr);
  1372.   // Trigger and index handling
  1373.   bool saveINDXKEYINFO(Signal* signal,
  1374.                        TcIndexOperation* indexOp,
  1375.                        const Uint32 *src, 
  1376.                        Uint32 len);
  1377.   bool receivedAllINDXKEYINFO(TcIndexOperation* indexOp);
  1378.   bool saveINDXATTRINFO(Signal* signal,
  1379.                         TcIndexOperation* indexOp,
  1380.                         const Uint32 *src, 
  1381.                         Uint32 len);
  1382.   bool receivedAllINDXATTRINFO(TcIndexOperation* indexOp);
  1383.   bool  saveTRANSID_AI(Signal* signal,
  1384.        TcIndexOperation* indexOp, 
  1385.                        const Uint32 *src,
  1386.                        Uint32 len);
  1387.   bool receivedAllTRANSID_AI(TcIndexOperation* indexOp);
  1388.   void readIndexTable(Signal* signal, 
  1389.       ApiConnectRecord* regApiPtr,
  1390.       TcIndexOperation* indexOp);
  1391.   void executeIndexOperation(Signal* signal, 
  1392.      ApiConnectRecord* regApiPtr,
  1393.      TcIndexOperation* indexOp);
  1394.   bool seizeIndexOperation(ApiConnectRecord* regApiPtr,
  1395.    TcIndexOperationPtr& indexOpPtr);
  1396.   void releaseIndexOperation(ApiConnectRecord* regApiPtr,
  1397.      TcIndexOperation* indexOp);
  1398.   void releaseAllSeizedIndexOperations(ApiConnectRecord* regApiPtr);
  1399.   void setupIndexOpReturn(ApiConnectRecord* regApiPtr,
  1400.   TcConnectRecord* regTcPtr);
  1401.   void saveTriggeringOpState(Signal* signal,
  1402.      TcConnectRecord* trigOp);
  1403.   void restoreTriggeringOpState(Signal* signal, 
  1404. TcConnectRecord* trigOp);
  1405.   void continueTriggeringOp(Signal* signal, 
  1406.     TcConnectRecord* trigOp);
  1407.   void scheduleFiredTrigger(ApiConnectRecordPtr* transPtr, 
  1408.                             TcConnectRecordPtr* opPtr);
  1409.   void executeTriggers(Signal* signal, ApiConnectRecordPtr* transPtr);
  1410.   void executeTrigger(Signal* signal,
  1411.                       TcFiredTriggerData* firedTriggerData,
  1412.                       ApiConnectRecordPtr* transPtr,
  1413.                       TcConnectRecordPtr* opPtr);
  1414.   void executeIndexTrigger(Signal* signal,
  1415.                            TcDefinedTriggerData* definedTriggerData,
  1416.                            TcFiredTriggerData* firedTriggerData,
  1417.                            ApiConnectRecordPtr* transPtr,
  1418.                            TcConnectRecordPtr* opPtr);
  1419.   void insertIntoIndexTable(Signal* signal, 
  1420.                             TcFiredTriggerData* firedTriggerData, 
  1421.                             ApiConnectRecordPtr* transPtr,
  1422.                             TcConnectRecordPtr* opPtr,
  1423.                             TcIndexData* indexData,
  1424.                             bool holdOperation = false);
  1425.   void deleteFromIndexTable(Signal* signal, 
  1426.                             TcFiredTriggerData* firedTriggerData, 
  1427.                             ApiConnectRecordPtr* transPtr,
  1428.                             TcConnectRecordPtr* opPtr,
  1429.                             TcIndexData* indexData,
  1430.                             bool holdOperation = false);
  1431.   void releaseFiredTriggerData(DLFifoList<TcFiredTriggerData>* triggers);
  1432.   // Generated statement blocks
  1433.   void warningHandlerLab(Signal* signal);
  1434.   void systemErrorLab(Signal* signal);
  1435.   void sendSignalErrorRefuseLab(Signal* signal);
  1436.   void scanTabRefLab(Signal* signal, Uint32 errCode);
  1437.   void diFcountReqLab(Signal* signal, ScanRecordPtr);
  1438.   void signalErrorRefuseLab(Signal* signal);
  1439.   void abort080Lab(Signal* signal);
  1440.   void packKeyData000Lab(Signal* signal, BlockReference TBRef, Uint32 len);
  1441.   void abortScanLab(Signal* signal, ScanRecordPtr, Uint32 errCode);
  1442.   void sendAbortedAfterTimeout(Signal* signal, int Tcheck);
  1443.   void abort010Lab(Signal* signal);
  1444.   void abort015Lab(Signal* signal);
  1445.   void packLqhkeyreq(Signal* signal, BlockReference TBRef);
  1446.   void packLqhkeyreq040Lab(Signal* signal,
  1447.                            UintR anAttrBufIndex,
  1448.                            BlockReference TBRef);
  1449.   void packLqhkeyreq040Lab(Signal* signal);
  1450.   void returnFromQueuedDeliveryLab(Signal* signal);
  1451.   void startTakeOverLab(Signal* signal);
  1452.   void toCompleteHandlingLab(Signal* signal);
  1453.   void toCommitHandlingLab(Signal* signal);
  1454.   void toAbortHandlingLab(Signal* signal);
  1455.   void abortErrorLab(Signal* signal);
  1456.   void nodeTakeOverCompletedLab(Signal* signal);
  1457.   void ndbsttorry010Lab(Signal* signal);
  1458.   void commit020Lab(Signal* signal);
  1459.   void complete010Lab(Signal* signal);
  1460.   void releaseAtErrorLab(Signal* signal);
  1461.   void seizeDatabuferrorLab(Signal* signal);
  1462.   void scanAttrinfoLab(Signal* signal, UintR Tlen);
  1463.   void seizeAttrbuferrorLab(Signal* signal);
  1464.   void attrinfoDihReceivedLab(Signal* signal);
  1465.   void aiErrorLab(Signal* signal);
  1466.   void attrinfo020Lab(Signal* signal);
  1467.   void scanReleaseResourcesLab(Signal* signal);
  1468.   void scanCompletedLab(Signal* signal);
  1469.   void scanError(Signal* signal, ScanRecordPtr, Uint32 errorCode);
  1470.   void diverify010Lab(Signal* signal);
  1471.   void intstartphase2x010Lab(Signal* signal);
  1472.   void intstartphase3x010Lab(Signal* signal);
  1473.   void sttorryLab(Signal* signal);
  1474.   void abortBeginErrorLab(Signal* signal);
  1475.   void tabStateErrorLab(Signal* signal);
  1476.   void wrongSchemaVersionErrorLab(Signal* signal);
  1477.   void noFreeConnectionErrorLab(Signal* signal);
  1478.   void tckeyreq050Lab(Signal* signal);
  1479.   void timeOutFoundLab(Signal* signal, UintR anAdd);
  1480.   void completeTransAtTakeOverLab(Signal* signal, UintR TtakeOverInd);
  1481.   void completeTransAtTakeOverDoLast(Signal* signal, UintR TtakeOverInd);
  1482.   void completeTransAtTakeOverDoOne(Signal* signal, UintR TtakeOverInd);
  1483.   void timeOutLoopStartLab(Signal* signal, Uint32 apiConnectPtr);
  1484.   void initialiseRecordsLab(Signal* signal, UintR Tdata0, Uint32, Uint32);
  1485.   void tckeyreq020Lab(Signal* signal);
  1486.   void intstartphase2x020Lab(Signal* signal);
  1487.   void intstartphase1x010Lab(Signal* signal);
  1488.   void startphase1x010Lab(Signal* signal);
  1489.   void lqhKeyConf_checkTransactionState(Signal * signal,
  1490. ApiConnectRecord * const regApiPtr);
  1491.   void checkDropTab(Signal* signal);
  1492.   void checkScanActiveInFailedLqh(Signal* signal,
  1493.   Uint32 scanPtrI,
  1494.   Uint32 failedNodeId);
  1495.   void checkScanFragList(Signal*, Uint32 failedNodeId, ScanRecord * scanP, 
  1496.  LocalDLList<ScanFragRec>::Head&);
  1497.   // Initialisation
  1498.   void initData();
  1499.   void initRecords();
  1500.   // Transit signals
  1501.   ApiConnectRecord *apiConnectRecord;
  1502.   ApiConnectRecordPtr apiConnectptr;
  1503.   UintR capiConnectFilesize;
  1504.   TcConnectRecord *tcConnectRecord;
  1505.   TcConnectRecordPtr tcConnectptr;
  1506.   UintR ctcConnectFilesize;
  1507.   CacheRecord *cacheRecord;
  1508.   CacheRecordPtr cachePtr;
  1509.   UintR ccacheFilesize;
  1510.   AttrbufRecord *attrbufRecord;
  1511.   AttrbufRecordPtr attrbufptr;
  1512.   UintR cattrbufFilesize;
  1513.   HostRecord *hostRecord;
  1514.   HostRecordPtr hostptr;
  1515.   UintR chostFilesize;
  1516.   GcpRecord *gcpRecord;
  1517.   GcpRecordPtr gcpPtr;
  1518.   UintR cgcpFilesize;
  1519.   TableRecord *tableRecord;
  1520.   UintR ctabrecFilesize;
  1521.   UintR thashValue;
  1522.   UintR tdistrHashValue;
  1523.   UintR ttransid_ptr;
  1524.   UintR cfailure_nr;
  1525.   UintR coperationsize;
  1526.   UintR ctcTimer;
  1527.   ApiConnectRecordPtr tmpApiConnectptr;
  1528.   UintR tcheckGcpId;
  1529.   struct TransCounters {
  1530.     enum { Off, Timer, Started } c_trans_status;
  1531.     UintR cattrinfoCount;
  1532.     UintR ctransCount;
  1533.     UintR ccommitCount;
  1534.     UintR creadCount;
  1535.     UintR csimpleReadCount;
  1536.     UintR cwriteCount;
  1537.     UintR cabortCount;
  1538.     UintR cconcurrentOp;
  1539.     Uint32 c_scan_count;
  1540.     Uint32 c_range_scan_count;
  1541.     void reset () { 
  1542.       cattrinfoCount = ctransCount = ccommitCount = creadCount =
  1543. csimpleReadCount = cwriteCount = cabortCount =
  1544. c_scan_count = c_range_scan_count = 0; 
  1545.     }
  1546.     Uint32 report(Signal* signal){
  1547.       signal->theData[0] = EventReport::TransReportCounters;
  1548.       signal->theData[1] = ctransCount;
  1549.       signal->theData[2] = ccommitCount;
  1550.       signal->theData[3] = creadCount;
  1551.       signal->theData[4] = csimpleReadCount;
  1552.       signal->theData[5] = cwriteCount;
  1553.       signal->theData[6] = cattrinfoCount;
  1554.       signal->theData[7] = cconcurrentOp;
  1555.       signal->theData[8] = cabortCount;
  1556.       signal->theData[9] = c_scan_count;
  1557.       signal->theData[10] = c_range_scan_count;
  1558.       return 11;
  1559.     }
  1560.   } c_counters;
  1561.   
  1562.   Uint16 cownNodeid;
  1563.   Uint16 terrorCode;
  1564.   UintR cfirstfreeAttrbuf;
  1565.   UintR cfirstfreeTcConnect;
  1566.   UintR cfirstfreeApiConnectCopy;
  1567.   UintR cfirstfreeCacheRec;
  1568.   UintR cfirstgcp;
  1569.   UintR clastgcp;
  1570.   UintR cfirstfreeGcp;
  1571.   UintR cfirstfreeScanrec;
  1572.   TableRecordPtr tabptr;
  1573.   UintR cfirstfreeApiConnectFail;
  1574.   UintR cfirstfreeApiConnect;
  1575.   UintR cfirstfreeDatabuf;
  1576.   BlockReference cdihblockref;
  1577.   BlockReference cownref;                   /* OWN BLOCK REFERENCE */
  1578.   ApiConnectRecordPtr timeOutptr;
  1579.   ScanRecord *scanRecord;
  1580.   UintR cscanrecFileSize;
  1581.   UnsafeArrayPool<ScanFragRec> c_scan_frag_pool;
  1582.   ScanFragRecPtr scanFragptr;
  1583.   UintR cscanFragrecFileSize;
  1584.   UintR cdatabufFilesize;
  1585.   BlockReference cdictblockref;
  1586.   BlockReference cerrorBlockref;
  1587.   BlockReference clqhblockref;
  1588.   BlockReference cndbcntrblockref;
  1589.   Uint16 csignalKey;
  1590.   Uint16 csystemnodes;
  1591.   Uint16 cnodes[4];
  1592.   NodeId cmasterNodeId;
  1593.   UintR cnoParallelTakeOver;
  1594.   TimeOutCheckState ctimeOutCheckFragActive;
  1595.   UintR ctimeOutCheckFragCounter;
  1596.   UintR ctimeOutCheckCounter;
  1597.   UintR ctimeOutValue;
  1598.   UintR ctimeOutCheckDelay;
  1599.   Uint32 ctimeOutCheckHeartbeat;
  1600.   Uint32 ctimeOutCheckLastHeartbeat;
  1601.   Uint32 ctimeOutMissedHeartbeats;
  1602.   Uint32 c_appl_timeout_value;
  1603.   SystemStartState csystemStart;
  1604.   TimeOutCheckState ctimeOutCheckActive;
  1605.   BlockReference capiFailRef;
  1606.   UintR cpackedListIndex;
  1607.   Uint16 cpackedList[MAX_NODES];
  1608.   UintR capiConnectClosing[MAX_NODES];
  1609.   UintR con_lineNodes;
  1610.   DatabufRecord *databufRecord;
  1611.   DatabufRecordPtr databufptr;
  1612.   DatabufRecordPtr tmpDatabufptr;
  1613.   UintR treqinfo;
  1614.   UintR ttransid1;
  1615.   UintR ttransid2;
  1616.   UintR tabortInd;
  1617.   NodeId tnodeid;
  1618.   BlockReference tblockref;
  1619.   LqhTransConf::OperationStatus ttransStatus;
  1620.   UintR ttcOprec;
  1621.   NodeId tfailedNodeId;
  1622.   Uint8 tcurrentReplicaNo;
  1623.   Uint8 tpad1;
  1624.   UintR tgci;
  1625.   UintR tapplRef;
  1626.   UintR tapplOprec;
  1627.   UintR tindex;
  1628.   UintR tmaxData;
  1629.   UintR tmp;
  1630.   UintR tnodes;
  1631.   BlockReference tusersblkref;
  1632.   UintR tuserpointer;
  1633.   UintR tloadCode;
  1634.   UintR tconfig1;
  1635.   UintR tconfig2;
  1636.   UintR cdata[32];
  1637.   UintR ctransidFailHash[512];
  1638.   UintR ctcConnectFailHash[1024];
  1639.   
  1640.   /**
  1641.    * Commit Ack handling
  1642.    */
  1643. public:
  1644.   struct CommitAckMarker {
  1645.     Uint32 transid1;
  1646.     Uint32 transid2;
  1647.     union { Uint32 nextPool; Uint32 nextHash; };
  1648.     Uint32 prevHash;
  1649.     Uint32 apiConnectPtr;
  1650.     Uint16 apiNodeId;
  1651.     Uint16 noOfLqhs;
  1652.     Uint16 lqhNodeId[MAX_REPLICAS];
  1653.     inline bool equal(const CommitAckMarker & p) const {
  1654.       return ((p.transid1 == transid1) && (p.transid2 == transid2));
  1655.     }
  1656.     
  1657.     inline Uint32 hashValue() const {
  1658.       return transid1;
  1659.     }
  1660.   };
  1661. private:
  1662.   typedef Ptr<CommitAckMarker> CommitAckMarkerPtr;
  1663.   typedef DLHashTable<CommitAckMarker>::Iterator CommitAckMarkerIterator;
  1664.   
  1665.   ArrayPool<CommitAckMarker>   m_commitAckMarkerPool;
  1666.   DLHashTable<CommitAckMarker> m_commitAckMarkerHash;
  1667.   
  1668.   void execTC_COMMIT_ACK(Signal* signal);
  1669.   void sendRemoveMarkers(Signal*, const CommitAckMarker *);
  1670.   void sendRemoveMarker(Signal* signal, 
  1671. NodeId nodeId,
  1672. Uint32 transid1, 
  1673. Uint32 transid2);
  1674.   void removeMarkerForFailedAPI(Signal* signal, Uint32 nodeId, Uint32 bucket);
  1675.   bool getAllowStartTransaction() const {
  1676.     if(getNodeState().getSingleUserMode())
  1677.       return true;
  1678.     return getNodeState().startLevel < NodeState::SL_STOPPING_2;
  1679.   }
  1680.   
  1681.   void checkAbortAllTimeout(Signal* signal, Uint32 sleepTime);
  1682.   struct AbortAllRecord {
  1683.     AbortAllRecord(){ clientRef = 0; }
  1684.     Uint32 clientData;
  1685.     BlockReference clientRef;
  1686.     
  1687.     Uint32 oldTimeOutValue;
  1688.   };
  1689.   AbortAllRecord c_abortRec;
  1690.   /************************** API CONNECT RECORD ***********************/
  1691.   /* *******************************************************************/
  1692.   /* THE API CONNECT RECORD CONTAINS THE CONNECTION RECORD TO WHICH THE*/
  1693.   /* APPLICATION CONNECTS. THE APPLICATION CAN SEND ONE OPERATION AT A */
  1694.   /* TIME. IT CAN SEND A NEW OPERATION IMMEDIATELY AFTER SENDING THE   */
  1695.   /* PREVIOUS OPERATION. THEREBY SEVERAL OPERATIONS CAN BE ACTIVE IN   */
  1696.   /* ONE TRANSACTION WITHIN TC. THIS IS ACHIEVED BY USING THE API      */
  1697.   /* CONNECT RECORD. EACH ACTIVE OPERATION IS HANDLED BY THE TC        */
  1698.   /* CONNECT RECORD. AS SOON AS THE TC CONNECT RECORD HAS SENT THE     */
  1699.   /* REQUEST TO THE LQH IT IS READY TO RECEIVE NEW OPERATIONS. THE     */
  1700.   /* LQH CONNECT RECORD TAKES CARE OF WAITING FOR AN OPERATION TO      */
  1701.   /* COMPLETE. WHEN AN OPERATION HAS COMPLETED ON THE LQH CONNECT      */
  1702.   /* RECORD A NEW OPERATION CAN BE STARTED ON THIS LQH CONNECT RECORD. */
  1703.   /*******************************************************************>*/
  1704.   /*                                                                   */
  1705.   /*       API CONNECT RECORD ALIGNED TO BE 256 BYTES                  */
  1706.   /*******************************************************************>*/
  1707.   /************************** TC CONNECT RECORD ************************/
  1708.   /* *******************************************************************/
  1709.   /* TC CONNECT RECORD KEEPS ALL INFORMATION TO CARRY OUT A TRANSACTION*/
  1710.   /* THE TRANSACTION CONTROLLER ESTABLISHES CONNECTIONS TO DIFFERENT   */
  1711.   /* BLOCKS TO CARRY OUT THE TRANSACTION. THERE CAN BE SEVERAL RECORDS */
  1712.   /* PER ACTIVE TRANSACTION. THE TC CONNECT RECORD COOPERATES WITH THE */
  1713.   /* API CONNECT RECORD FOR COMMUNICATION WITH THE API AND WITH THE    */
  1714.   /* LQH CONNECT RECORD FOR COMMUNICATION WITH THE LQH'S INVOLVED IN   */
  1715.   /* THE TRANSACTION. TC CONNECT RECORD IS PERMANENTLY CONNECTED TO A  */
  1716.   /* RECORD IN DICT AND ONE IN DIH. IT CONTAINS A LIST OF ACTIVE LQH   */
  1717.   /* CONNECT RECORDS AND A LIST OF STARTED BUT NOT ACTIVE LQH CONNECT  */
  1718.   /* RECORDS. IT DOES ALSO CONTAIN A LIST OF ALL OPERATIONS THAT ARE   */
  1719.   /* EXECUTED WITH THE TC CONNECT RECORD.                              */
  1720.   /*******************************************************************>*/
  1721.   /*       TC_CONNECT RECORD ALIGNED TO BE 128 BYTES                   */
  1722.   /*******************************************************************>*/
  1723.   UintR cfirstfreeTcConnectFail;
  1724.   /* POINTER FOR THE LQH RECORD*/
  1725.   /* ************************ HOST RECORD ********************************* */
  1726.   /********************************************************/
  1727.   /* THIS RECORD CONTAINS ALIVE-STATUS ON ALL NODES IN THE*/
  1728.   /* SYSTEM                                               */
  1729.   /********************************************************/
  1730.   /*       THIS RECORD IS ALIGNED TO BE 8 BYTES.         */
  1731.   /********************************************************/
  1732.   /* ************************ TABLE RECORD ******************************** */
  1733.   /********************************************************/
  1734.   /* THIS RECORD CONTAINS THE CURRENT SCHEMA VERSION OF   */
  1735.   /* ALL TABLES IN THE SYSTEM.                            */
  1736.   /********************************************************/
  1737.   /*-------------------------------------------------------------------------*/
  1738.   /*       THE TC CONNECTION USED BY THIS SCAN.                              */
  1739.   /*-------------------------------------------------------------------------*/
  1740.   /*-------------------------------------------------------------------------*/
  1741.   /* LENGTH READ FOR A PARTICULAR SCANNED OPERATION.      */
  1742.   /*-------------------------------------------------------------------------*/
  1743.   /*-------------------------------------------------------------------------*/
  1744.   /*       REFERENCE TO THE SCAN RECORD FOR THIS SCAN PROCESS.               */
  1745.   /*-------------------------------------------------------------------------*/
  1746.   /* *********************************************************************** */
  1747.   /* ******$                           DATA BUFFER                   ******$ */
  1748.   /*                                                                         */
  1749.   /*       THIS BUFFER IS USED AS A GENERAL DATA STORAGE.                    */
  1750.   /* *********************************************************************** */
  1751.   /* *********************************************************************** */
  1752.   /* ******$                 ATTRIBUTE INFORMATION RECORD            ******$ */
  1753.   /*
  1754.     CAN CONTAIN ONE (1) ATTRINFO SIGNAL. ONE SIGNAL CONTAINS 24 ATTR.          
  1755.     INFO WORDS. BUT 32 ELEMENTS ARE USED TO MAKE PLEX HAPPY.                   
  1756.     SOME OF THE ELEMENTS ARE USED TO THE FOLLOWING THINGS:                     
  1757.     DATA LENGHT IN THIS RECORD IS STORED IN THE ELEMENT INDEXED BY             
  1758.     ZINBUF_DATA_LEN.                                                           
  1759.     NEXT FREE ATTRBUF IS POINTED OUT BY THE ELEMENT INDEXED BY                 
  1760.     PREVIOUS ATTRBUF IS POINTED OUT BY THE ELEMENT INDEXED BY ZINBUF_PREV      
  1761.     (NOT USED YET).                                                            
  1762.     NEXT ATTRBUF IS POINTED OUT BY THE ELEMENT INDEXED BY ZINBUF_NEXT.        
  1763.   */
  1764.   /* ********************************************************************** */
  1765.   /**************************************************************************/
  1766.   /*           GLOBAL CHECKPOINT INFORMATION RECORD                         */
  1767.   /*                                                                        */
  1768.   /*       THIS RECORD IS USED TO STORE THE GCP NUMBER AND A COUNTER        */
  1769.   /*                DURING THE COMPLETION PHASE OF THE TRANSACTION          */
  1770.   /**************************************************************************/
  1771.   /*                                                                        */
  1772.   /*       GCP RECORD ALIGNED TO BE 32 BYTES                                */
  1773.   /**************************************************************************/
  1774.   /**************************************************************************/
  1775.   /*                          TC_FAIL_RECORD                                */
  1776.   /*  THIS RECORD IS USED WHEN HANDLING TAKE OVER OF ANOTHER FAILED TC NODE.*/
  1777.   /**************************************************************************/
  1778.   TcFailRecord *tcFailRecord;
  1779.   TcFailRecordPtr tcNodeFailptr;
  1780.   /**************************************************************************/
  1781.   // Temporary variables that are not allowed to use for storage between
  1782.   // signals. They
  1783.   // can only be used in a signal to transfer values between subroutines.
  1784.   // In the long run
  1785.   // those variables should be removed and exchanged for stack
  1786.   // variable communication.
  1787.   /**************************************************************************/
  1788. };
  1789. #endif