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

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/AccLock.hpp>
  14. #include <SignalLoggerManager.hpp>
  15. bool
  16. printACC_LOCKREQ(FILE* output, const Uint32* theData, Uint32 len, Uint16 rbn)
  17. {
  18.   const AccLockReq* const sig = (const AccLockReq*)theData;
  19.   Uint32 reqtype = sig->requestInfo & 0xFF;
  20.   switch (sig->returnCode) {
  21.   case RNIL:
  22.     fprintf(output, " returnCode=RNIL");
  23.     break;
  24.   case AccLockReq::Success:
  25.     fprintf(output, " returnCode=Success");
  26.     break;
  27.   case AccLockReq::IsBlocked:
  28.     fprintf(output, " returnCode=IsBlocked");
  29.     break;
  30.   case AccLockReq::WouldBlock:
  31.     fprintf(output, " returnCode=WouldBlock");
  32.     break;
  33.   case AccLockReq::Refused:
  34.     fprintf(output, " returnCode=Refused");
  35.     break;
  36.   case AccLockReq::NoFreeOp:
  37.     fprintf(output, " returnCode=NoFreeOp");
  38.     break;
  39.   default:
  40.     fprintf(output, " returnCode=%u?", sig->returnCode);
  41.     break;
  42.   }
  43.   switch (reqtype) {
  44.     case AccLockReq::LockShared:
  45.     fprintf(output, " req=LockSharedn");
  46.     break;
  47.   case AccLockReq::LockExclusive:
  48.     fprintf(output, " req=LockExclusiven");
  49.     break;
  50.   case AccLockReq::Unlock:
  51.     fprintf(output, " req=Unlockn");
  52.     break;
  53.   case AccLockReq::Abort:
  54.     fprintf(output, " req=Abortn");
  55.     break;
  56.   default:
  57.     fprintf(output, " req=%un", reqtype);
  58.     break;
  59.   }
  60.   fprintf(output, " accOpPtr: 0x%xn", sig->accOpPtr);
  61.   if (reqtype == AccLockReq::LockShared ||
  62.       reqtype == AccLockReq::LockExclusive) {
  63.     fprintf(output, " userPtr: 0x%x userRef: 0x%xn", sig->userPtr, sig->userRef);
  64.     fprintf(output, " table: id=%u", sig->tableId);
  65.     fprintf(output, " fragment: id=%u ptr=0x%xn", sig->fragId, sig->fragPtrI);
  66.     fprintf(output, " tuple: addr=0x%x hashValue=%xn", sig->tupAddr, sig->hashValue);
  67.     fprintf(output, " transid: %08x %08xn", sig->transId1, sig->transId2);
  68.   }
  69.   return true;
  70. }