BackupImpl.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 <trigger_definitions.h>
  14. #include <signaldata/BackupImpl.hpp>
  15. bool 
  16. printDEFINE_BACKUP_REQ(FILE * out, const Uint32 * data, Uint32 len, Uint16 bno){
  17.   DefineBackupReq* sig = (DefineBackupReq*)data;
  18.   fprintf(out, " backupPtr: %d backupId: %d clientRef: %d clientData: %dn",
  19.   sig->backupPtr, sig->backupId, sig->clientRef, sig->clientData);
  20.   fprintf(out, " backupKey: [ %08x%08x ] DataLength: %dn",
  21.   sig->backupKey[0], sig->backupKey[1], sig->backupDataLen);
  22.   char buf[_NDB_NODE_BITMASK_SIZE * 8 + 1];
  23.   fprintf(out, " Nodes: %sn", sig->nodes.getText(buf));
  24.   return true;
  25. }
  26. bool 
  27. printDEFINE_BACKUP_REF(FILE * out, const Uint32 * data, Uint32 len, Uint16 bno){
  28.   DefineBackupRef* sig = (DefineBackupRef*)data;
  29.   fprintf(out, " backupPtr: %d backupId: %d errorCode: %dn",
  30.   sig->backupPtr, sig->backupId, sig->errorCode);
  31.   return true;
  32. }
  33. bool 
  34. printDEFINE_BACKUP_CONF(FILE * out, const Uint32 * data, Uint32 l, Uint16 bno){
  35.   DefineBackupConf* sig = (DefineBackupConf*)data;
  36.   fprintf(out, " backupPtr: %d backupId: %dn",
  37.   sig->backupPtr, sig->backupId);
  38.   return true;
  39. }
  40. bool 
  41. printSTART_BACKUP_REQ(FILE * out, const Uint32 * data, Uint32 l, Uint16 bno){
  42.   StartBackupReq* sig = (StartBackupReq*)data;
  43.   fprintf(out, " backupPtr: %d backupId: %d signalNo: %d of %dn",
  44.   sig->backupPtr, sig->backupId,
  45.   sig->signalNo + 1, sig->noOfSignals);
  46.   for(Uint32 i = 0; i<sig->noOfTableTriggers; i++)
  47.     fprintf(out, 
  48.     "   Table: %d Triggers = [ insert: %d update: %d delete: %d ]n",
  49.     sig->tableTriggers[i].tableId,
  50.     sig->tableTriggers[i].triggerIds[TriggerEvent::TE_INSERT],
  51.     sig->tableTriggers[i].triggerIds[TriggerEvent::TE_UPDATE],
  52.     sig->tableTriggers[i].triggerIds[TriggerEvent::TE_DELETE]);
  53.   return true;
  54. }
  55. bool 
  56. printSTART_BACKUP_REF(FILE * out, const Uint32 * data, Uint32 len, Uint16 bno){
  57.   StartBackupRef* sig = (StartBackupRef*)data;
  58.   fprintf(out, " backupPtr: %d backupId: %d errorCode: %dn",
  59.   sig->backupPtr, sig->backupId, sig->errorCode);
  60.   return true;
  61. }
  62. bool 
  63. printSTART_BACKUP_CONF(FILE * out, const Uint32 * data, Uint32 l, Uint16 bno){
  64.   StartBackupConf* sig = (StartBackupConf*)data;
  65.   fprintf(out, " backupPtr: %d backupId: %dn",
  66.   sig->backupPtr, sig->backupId);
  67.   return true;
  68. }
  69. bool 
  70. printBACKUP_FRAGMENT_REQ(FILE * out, const Uint32 * data, Uint32 l, Uint16 bno){
  71.   BackupFragmentReq* sig = (BackupFragmentReq*)data;
  72.   fprintf(out, " backupPtr: %d backupId: %dn",
  73.   sig->backupPtr, sig->backupId);
  74.   fprintf(out, " tableId: %d fragmentNo: %d (count = %d)n",
  75.   sig->tableId, sig->fragmentNo, sig->count);
  76.   return true;
  77. }
  78. bool 
  79. printBACKUP_FRAGMENT_REF(FILE * out, const Uint32 * data, Uint32 l, Uint16 bno){
  80.   BackupFragmentRef* sig = (BackupFragmentRef*)data;
  81.   fprintf(out, " backupPtr: %d backupId: %d nodeId: %d errorCode: %dn",
  82.   sig->backupPtr, sig->backupId, sig->nodeId, sig->errorCode);
  83.   return true;
  84. }
  85. bool 
  86. printBACKUP_FRAGMENT_CONF(FILE * out, const Uint32 * data, Uint32 l, Uint16 b){
  87.   BackupFragmentConf* sig = (BackupFragmentConf*)data;
  88.   fprintf(out, " backupPtr: %d backupId: %dn",
  89.   sig->backupPtr, sig->backupId);
  90.   fprintf(out, " tableId: %d fragmentNo: %d records: %d bytes: %dn",
  91.   sig->tableId, sig->fragmentNo, sig->noOfRecords, sig->noOfBytes);
  92.   return true;
  93. }
  94. bool 
  95. printSTOP_BACKUP_REQ(FILE * out, const Uint32 * data, Uint32 l, Uint16 bno){
  96.   StopBackupReq* sig = (StopBackupReq*)data;
  97.   fprintf(out, " backupPtr: %d backupId: %dn",
  98.   sig->backupPtr, sig->backupId);
  99.   return true;
  100. }
  101. bool 
  102. printSTOP_BACKUP_REF(FILE * out, const Uint32 * data, Uint32 len, Uint16 bno){
  103.   StopBackupRef* sig = (StopBackupRef*)data;
  104.   fprintf(out, " backupPtr: %d backupId: %d errorCode: %dn",
  105.   sig->backupPtr, sig->backupId, sig->errorCode);
  106.   return true;
  107. }
  108. bool 
  109. printSTOP_BACKUP_CONF(FILE * out, const Uint32 * data, Uint32 l, Uint16 bno){
  110.   StopBackupConf* sig = (StopBackupConf*)data;
  111.   fprintf(out, " backupPtr: %d backupId: %dn",
  112.   sig->backupPtr, sig->backupId);
  113.   return true;
  114. }
  115. bool 
  116. printBACKUP_STATUS_REQ(FILE *, const Uint32 *, Uint32, Uint16){
  117.   return false;
  118. }
  119. bool 
  120. printBACKUP_STATUS_CONF(FILE *, const Uint32 *, Uint32, Uint16){
  121.   return false;
  122. }