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

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. #include <signaldata/LqhKey.hpp>
  14. bool
  15. printLQHKEYREQ(FILE * output, const Uint32 * theData, Uint32 len, Uint16 receiverBlockNo){
  16.   const LqhKeyReq * const sig = (LqhKeyReq *) theData;
  17.   
  18.   fprintf(output,
  19.     " ClientPtr = H'%.8x hashValue = H'%.8x tcBlockRef = H'%.8xn"
  20.     " transId1 = H'%.8x transId2 = H'%.8x savePointId = H'%.8xn",
  21.           sig->clientConnectPtr,        // DATA 0
  22.           sig->hashValue,               // DATA 2
  23.           sig->tcBlockref,              // DATA 4
  24.           sig->transId1,                // DATA 7
  25.           sig->transId2,                // DATA 8
  26.           sig->savePointId              // DATA 9
  27.           );
  28.   const Uint32 reqInfo  = sig->requestInfo;
  29.   const Uint32 attrLen = sig->attrLen;
  30.   fprintf(output,
  31.           " Op: %d Lock: %d Flags: ",
  32.           LqhKeyReq::getOperation(reqInfo),
  33.           LqhKeyReq::getLockType(reqInfo));
  34.   if(LqhKeyReq::getSimpleFlag(reqInfo))
  35.     fprintf(output, "Simple ");
  36.   if(LqhKeyReq::getDirtyFlag(reqInfo))
  37.     fprintf(output, "Dirty ");
  38.   if(LqhKeyReq::getInterpretedFlag(reqInfo))
  39.     fprintf(output, "Interpreted ");
  40.   if(LqhKeyReq::getScanTakeOverFlag(attrLen))
  41.     fprintf(output, "ScanTakeOver ");
  42.   if(LqhKeyReq::getMarkerFlag(reqInfo))
  43.     fprintf(output, "CommitAckMarker ");
  44.   fprintf(output, "ScanInfo/noFiredTriggers: H'%xn", sig->scanInfo);
  45.   
  46.   fprintf(output,
  47.           " AttrLen: %d (%d in this) KeyLen: %d TableId: %d SchemaVer: %dn",
  48.           LqhKeyReq::getAttrLen(attrLen),
  49.           LqhKeyReq::getAIInLqhKeyReq(reqInfo),
  50.           LqhKeyReq::getKeyLen(reqInfo),
  51.           LqhKeyReq::getTableId(sig->tableSchemaVersion),
  52.           LqhKeyReq::getSchemaVersion(sig->tableSchemaVersion));
  53.   fprintf(output,
  54.           " FragId: %d ReplicaNo: %d LastReplica: %d NextNodeId: %dn",
  55.           LqhKeyReq::getFragmentId(sig->fragmentData),
  56.           LqhKeyReq::getSeqNoReplica(reqInfo),
  57.           LqhKeyReq::getLastReplicaNo(reqInfo),
  58.           LqhKeyReq::getNextReplicaNodeId(sig->fragmentData));
  59.   bool printed = false;
  60.   Uint32 nextPos = LqhKeyReq::getApplicationAddressFlag(reqInfo) << 1;
  61.   if(nextPos != 0){
  62.     fprintf(output,
  63.             " ApiRef: H'%.8x ApiOpRef: H'%.8x",
  64.             sig->variableData[0],
  65.             sig->variableData[1]);
  66.     printed = true;
  67.   }
  68.   
  69.   if(LqhKeyReq::getSameClientAndTcFlag(reqInfo)){
  70.     fprintf(output, " TcOpRec: H'%.8x", sig->variableData[nextPos]);
  71.     nextPos++;
  72.     printed = true;
  73.   }
  74.   Uint32 tmp = LqhKeyReq::getLastReplicaNo(reqInfo) - 
  75.     LqhKeyReq::getSeqNoReplica(reqInfo);
  76.   if(tmp > 1){
  77.     NodeId node2 = sig->variableData[nextPos] & 0xffff;
  78.     NodeId node3 = sig->variableData[nextPos] >> 16;
  79.     fprintf(output, " NextNodeId2: %d NextNodeId3: %d",
  80.             node2, node3);
  81.     nextPos ++;
  82.     printed = true;
  83.   }
  84.   if(printed)
  85.     fprintf(output, "n");
  86.   
  87.   printed = false;
  88.   if(LqhKeyReq::getStoredProcFlag(attrLen)){
  89.     fprintf(output, " StoredProcId: %d", sig->variableData[nextPos]);
  90.     nextPos++;
  91.     printed = true;
  92.   }
  93.   if(LqhKeyReq::getReturnedReadLenAIFlag(reqInfo)){
  94.     fprintf(output, " ReturnedReadLenAI: %d",
  95.             sig->variableData[nextPos]);
  96.     nextPos++;
  97.     printed = true;
  98.   }
  99.   const UintR keyLen = LqhKeyReq::getKeyLen(reqInfo);
  100.   if(keyLen > 0){
  101.     fprintf(output, " KeyInfo: ");
  102.     for(UintR i = 0; i<keyLen && i<4; i++, nextPos++)
  103.       fprintf(output, "H'%.8x ", sig->variableData[nextPos]);
  104.     fprintf(output, "n");
  105.   }
  106.   
  107.   if(!LqhKeyReq::getInterpretedFlag(reqInfo)){
  108.     fprintf(output, " AttrInfo: ");
  109.     for(int i = 0; i<LqhKeyReq::getAIInLqhKeyReq(reqInfo); i++, nextPos++)
  110.       fprintf(output, "H'%.8x ", sig->variableData[nextPos]);
  111.     fprintf(output, "n");
  112.   } else {
  113.     fprintf(output, " InitialReadSize: %d InterpretedSize: %d "
  114.             "FinalUpdateSize: %d FinalReadSize: %d SubroutineSize: %dn",
  115.             sig->variableData[nextPos+0], sig->variableData[nextPos+1], 
  116.             sig->variableData[nextPos+2], sig->variableData[nextPos+3],
  117.             sig->variableData[nextPos+4]);
  118.     nextPos += 5;
  119.   }
  120.   return true;
  121. }
  122. bool
  123. printLQHKEYCONF(FILE * output, const Uint32 * theData, Uint32 len, Uint16 receiverBlockNo){
  124. //  const LqhKeyConf * const sig = (LqhKeyConf *) theData;
  125.   fprintf(output, "Signal data: ");
  126.   Uint32 i = 0;
  127.   while (i < len)
  128.     fprintf(output, "H'%.8x ", theData[i++]);
  129.   fprintf(output,"n");
  130.   
  131.   return true;
  132. }
  133. bool
  134. printLQHKEYREF(FILE * output, const Uint32 * theData, Uint32 len, Uint16 receiverBlockNo){
  135. //  const LqhKeyRef * const sig = (LqhKeyRef *) theData;
  136.   fprintf(output, "Signal data: ");
  137.   Uint32 i = 0;
  138.   while (i < len)
  139.     fprintf(output, "H'%.8x ", theData[i++]);
  140.   fprintf(output,"n");
  141.   
  142.   return true;
  143. }