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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include <signaldata/GCPSave.hpp>
  14. #include <RefConvert.hpp>
  15. bool
  16. printGCPSaveReq(FILE * output, 
  17. const Uint32 * theData, 
  18. Uint32 len, 
  19. Uint16 receiverBlockNo){
  20.   
  21.   GCPSaveReq * sr = (GCPSaveReq*)theData;
  22.   
  23.   fprintf(output, " dihBlockRef = (%d, %d) dihPtr = %d gci = %dn",
  24.   refToBlock(sr->dihBlockRef), refToNode(sr->dihBlockRef),
  25.   sr->dihPtr, sr->gci);
  26.   
  27.   return true;
  28. }
  29. bool
  30. printGCPSaveRef(FILE * output, 
  31. const Uint32 * theData, 
  32. Uint32 len, 
  33. Uint16 receiverBlockNo){
  34.   
  35.   GCPSaveRef * sr = (GCPSaveRef*)theData;
  36.   
  37.   fprintf(output, " nodeId = %d dihPtr = %d gci = %d reason: ",
  38.   sr->nodeId,
  39.   sr->dihPtr, sr->gci);
  40.   
  41.   switch(sr->errorCode){
  42.   case GCPSaveRef::NodeShutdownInProgress:
  43.     fprintf(output, "NodeShutdownInProgressn");
  44.     break;
  45.   case GCPSaveRef::FakedSignalDueToNodeFailure:
  46.     fprintf(output, "FakedSignalDueToNodeFailuren");
  47.     break;
  48.   default:
  49.     fprintf(output, "Unknown reason: %dn", sr->errorCode);
  50.     return false;
  51.   }
  52.   
  53.   return true;
  54. }
  55. bool
  56. printGCPSaveConf(FILE * output, 
  57.  const Uint32 * theData, 
  58.  Uint32 len, 
  59.  Uint16 receiverBlockNo){
  60.   
  61.   GCPSaveConf * sr = (GCPSaveConf*)theData;
  62.   
  63.   fprintf(output, " nodeId = %d dihPtr = %d gci = %dn",
  64.   sr->nodeId,
  65.   sr->dihPtr, sr->gci);
  66.   
  67.   return true;
  68. }