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

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/TcKeyReq.hpp>
  14. bool
  15. printTCKEYREQ(FILE * output, const Uint32 * theData, Uint32 len, Uint16 receiverBlockNo){
  16.   
  17.   const TcKeyReq * const sig = (TcKeyReq *) theData;
  18.   
  19.   UintR requestInfo = sig->requestInfo;
  20.   fprintf(output, " apiConnectPtr: H'%.8x, apiOperationPtr: H'%.8xn", 
  21.   sig->apiConnectPtr, sig->apiOperationPtr);
  22.   fprintf(output, " Operation: %s, Flags: ", 
  23.   sig->getOperationType(requestInfo) == ZREAD    ? "Read" :
  24.   sig->getOperationType(requestInfo) == ZREAD_EX ? "Read-Ex" :
  25.   sig->getOperationType(requestInfo) == ZUPDATE  ? "Update" :
  26.   sig->getOperationType(requestInfo) == ZINSERT  ? "Insert" :
  27.   sig->getOperationType(requestInfo) == ZDELETE  ? "Delete" :
  28.   sig->getOperationType(requestInfo) == ZWRITE   ? "Write" :
  29.   "Unknown");
  30.   {
  31.     if(sig->getDirtyFlag(requestInfo)){
  32.       fprintf(output, "Dirty ");
  33.     }    
  34.     if(sig->getStartFlag(requestInfo)){
  35.       fprintf(output, "Start ");
  36.     }    
  37.     if(sig->getExecuteFlag(requestInfo)){
  38.       fprintf(output, "Execute ");
  39.     }
  40.     if(sig->getCommitFlag(requestInfo)){
  41.       fprintf(output, "Commit ");
  42.     }
  43.     if (sig->getExecutingTrigger(requestInfo)) {
  44.       fprintf(output, "Trigger ");
  45.     }
  46.    
  47.     UintR TcommitType = sig->getAbortOption(requestInfo);
  48.     if (TcommitType == TcKeyReq::AbortOnError) {
  49.       fprintf(output, "AbortOnError ");
  50.     } else if (TcommitType == TcKeyReq::IgnoreError) {
  51.       fprintf(output, "IgnoreError ");
  52.     }//if
  53.     if(sig->getSimpleFlag(requestInfo)){
  54.       fprintf(output, "Simple ");
  55.     }   
  56.     if(sig->getScanIndFlag(requestInfo)){
  57.       fprintf(output, "ScanInd ");
  58.     }   
  59.     if(sig->getInterpretedFlag(requestInfo)){
  60.       fprintf(output, "Interpreted ");
  61.     }
  62.     if(sig->getDistributionGroupFlag(requestInfo)){
  63.       fprintf(output, "DGroup = %d ", sig->distrGroupHashValue);
  64.     }
  65.     if(sig->getDistributionKeyFlag(sig->requestInfo)){
  66.       fprintf(output, "DKey = %d ", sig->distributionKeySize);
  67.     }
  68.     fprintf(output, "n");
  69.   }
  70.   
  71.   const int keyLen     = sig->getKeyLength(requestInfo);
  72.   const int attrInThis = sig->getAIInTcKeyReq(requestInfo);
  73.   const int attrLen = sig->getAttrinfoLen(sig->attrLen);
  74.   const int apiVer = sig->getAPIVersion(sig->attrLen);
  75.   fprintf(output, 
  76.   " keyLen: %d, attrLen: %d, AI in this: %d, tableId: %d, "
  77.   "tableSchemaVer: %d, API Ver: %dn",
  78.   keyLen, attrLen, attrInThis, 
  79.   sig->tableId, sig->tableSchemaVersion, apiVer);
  80.     
  81.   fprintf(output, " transId(1, 2): (H'%.8x, H'%.8x)n -- Variable Data --n", 
  82.   sig->transId1, sig->transId2);
  83.   
  84.   if (len >= TcKeyReq::StaticLength) {
  85.     Uint32 restLen = (len - TcKeyReq::StaticLength);
  86.     const Uint32 * rest = &sig->scanInfo;
  87.     while(restLen >= 7){
  88.       fprintf(output, 
  89.               " H'%.8x H'%.8x H'%.8x H'%.8x H'%.8x H'%.8x H'%.8xn",
  90.               rest[0], rest[1], rest[2], rest[3], 
  91.               rest[4], rest[5], rest[6]);
  92.       restLen -= 7;
  93.       rest += 7;
  94.     }
  95.     if(restLen > 0){
  96.       for(Uint32 i = 0; i<restLen; i++)
  97.         fprintf(output, " H'%.8x", rest[i]);
  98.       fprintf(output, "n");
  99.     }
  100.   } else {
  101.     fprintf(output, "*** invalid len %u ***n", len);
  102.   }
  103.   return true;
  104. }