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

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/SumaImpl.hpp>
  14. bool
  15. printSUB_CREATE_REQ(FILE * output, const Uint32 * theData, 
  16.     Uint32 len, Uint16 receiverBlockNo) {
  17.   const SubCreateReq * const sig = (SubCreateReq *)theData;
  18.   fprintf(output, " subscriberRef: %xn", sig->subscriberRef);
  19.   fprintf(output, " subscriberData: %xn", sig->subscriberData);
  20.   fprintf(output, " subscriptionId: %xn", sig->subscriptionId);
  21.   fprintf(output, " subscriptionKey: %xn", sig->subscriptionKey);
  22.   fprintf(output, " subscriptionType: %xn", sig->subscriptionType);
  23.   fprintf(output, " tableId: %xn", sig->tableId);
  24.   return false;
  25. }
  26. bool
  27. printSUB_CREATE_CONF(FILE * output, const Uint32 * theData, 
  28.      Uint32 len, Uint16 receiverBlockNo) {
  29.   const SubCreateConf * const sig = (SubCreateConf *)theData;
  30.   fprintf(output, " subscriptionId: %xn", sig->subscriptionId);
  31.   fprintf(output, " subscriptionKey: %xn", sig->subscriptionKey);
  32.   fprintf(output, " subscriberData: %xn", sig->subscriberData);
  33.   return false;
  34. }
  35. bool
  36. printSUB_START_REQ(FILE * output, const Uint32 * theData, 
  37.    Uint32 len, Uint16 receiverBlockNo) {
  38.   const SubStartReq * const sig = (SubStartReq *)theData;
  39.   fprintf(output, " subscriptionId: %xn", sig->subscriptionId);
  40.   fprintf(output, " subscriptionKey: %xn", sig->subscriptionKey);
  41.   fprintf(output, " startPart: %xn", sig->part);
  42.   return false;
  43. }
  44. bool
  45. printSUB_START_REF(FILE * output, const Uint32 * theData, 
  46.    Uint32 len, Uint16 receiverBlockNo) {
  47.   const SubStartRef * const sig = (SubStartRef *)theData;
  48.   fprintf(output, " subscriptionId: %xn", sig->subscriptionId);
  49.   fprintf(output, " subscriptionKey: %xn", sig->subscriptionKey);
  50.   fprintf(output, " startPart: %xn", sig->part);
  51.   fprintf(output, " subscriberData: %xn", sig->subscriberData);
  52.   fprintf(output, " err: %xn", sig->err);
  53.   return false;
  54. }
  55. bool
  56. printSUB_START_CONF(FILE * output, const Uint32 * theData, 
  57.     Uint32 len, Uint16 receiverBlockNo) {
  58.   const SubStartConf * const sig = (SubStartConf *)theData;
  59.   fprintf(output, " subscriptionId: %xn", sig->subscriptionId);
  60.   fprintf(output, " subscriptionKey: %xn", sig->subscriptionKey);
  61.   fprintf(output, " startPart: %xn", sig->part);
  62.   fprintf(output, " subscriberData: %xn", sig->subscriberData);
  63.   return false;
  64. }
  65. bool
  66. printSUB_SYNC_REQ(FILE * output, const Uint32 * theData, 
  67.   Uint32 len, Uint16 receiverBlockNo) {
  68.   const SubSyncReq * const sig = (SubSyncReq *)theData;
  69.   fprintf(output, " subscriptionId: %xn", sig->subscriptionId);
  70.   fprintf(output, " subscriptionKey: %xn", sig->subscriptionKey);
  71.   fprintf(output, " syncPart: %xn", sig->part);
  72.   return false;
  73. }
  74. bool
  75. printSUB_SYNC_REF(FILE * output, const Uint32 * theData, 
  76.   Uint32 len, Uint16 receiverBlockNo) {
  77.   const SubSyncRef * const sig = (SubSyncRef *)theData;
  78.   fprintf(output, " subscriptionId: %xn", sig->subscriptionId);
  79.   fprintf(output, " subscriptionKey: %xn", sig->subscriptionKey);
  80.   fprintf(output, " syncPart: %xn", sig->part);
  81.   fprintf(output, " subscriberData: %xn", sig->subscriberData);
  82.   fprintf(output, " err: %xn", sig->err);
  83.   return false;
  84. }
  85. bool
  86. printSUB_SYNC_CONF(FILE * output, const Uint32 * theData, 
  87.    Uint32 len, Uint16 receiverBlockNo) {
  88.   const SubSyncConf * const sig = (SubSyncConf *)theData;
  89.   fprintf(output, " subscriptionId: %xn", sig->subscriptionId);
  90.   fprintf(output, " subscriptionKey: %xn", sig->subscriptionKey);
  91.   fprintf(output, " syncPart: %xn", sig->part);
  92.   fprintf(output, " subscriberData: %xn", sig->subscriberData);
  93.   return false;
  94. }
  95. bool
  96. printSUB_META_DATA(FILE * output, const Uint32 * theData, 
  97.    Uint32 len, Uint16 receiverBlockNo) {
  98.   const SubMetaData * const sig = (SubMetaData *)theData;
  99.   fprintf(output, " gci: %xn", sig->gci);
  100.   fprintf(output, " senderData: %xn", sig->senderData);
  101.   fprintf(output, " subscriberData: %xn", sig->subscriberData);
  102.   fprintf(output, " tableId: %xn", sig->tableId);
  103.   return false;
  104. }
  105. bool
  106. printSUB_TABLE_DATA(FILE * output, const Uint32 * theData, 
  107.     Uint32 len, Uint16 receiverBlockNo) {
  108.   const SubTableData * const sig = (SubTableData *)theData;
  109.   fprintf(output, " senderData: %xn", sig->senderData);
  110.   fprintf(output, " subscriberData: %xn", sig->subscriberData);
  111.   fprintf(output, " gci: %xn", sig->gci);
  112.   fprintf(output, " tableId: %xn", sig->tableId);
  113.   fprintf(output, " operation: %xn", sig->operation);
  114.   fprintf(output, " noOfAttributes: %xn", sig->noOfAttributes);
  115.   fprintf(output, " dataSize: %xn", sig->dataSize);
  116.   return false;
  117. }
  118. bool
  119. printSUB_SYNC_CONTINUE_REQ(FILE * output, const Uint32 * theData, 
  120.    Uint32 len, Uint16 receiverBlockNo) {
  121.   const SubSyncContinueReq * const sig = (SubSyncContinueReq *)theData;
  122.   fprintf(output, " subscriberData: %xn", sig->subscriberData);
  123.   fprintf(output, " noOfRowsSent: %xn", sig->noOfRowsSent);
  124.   return false;
  125. }
  126. bool
  127. printSUB_SYNC_CONTINUE_REF(FILE * output, const Uint32 * theData, 
  128.    Uint32 len, Uint16 receiverBlockNo) {
  129.   const SubSyncContinueRef * const sig = (SubSyncContinueRef *)theData;
  130.   fprintf(output, " subscriptionId: %xn", sig->subscriptionId);
  131.   fprintf(output, " subscriptionKey: %xn", sig->subscriptionKey);
  132.   return false;
  133. }
  134. bool
  135. printSUB_SYNC_CONTINUE_CONF(FILE * output, const Uint32 * theData, 
  136.     Uint32 len, Uint16 receiverBlockNo) {
  137.   const SubSyncContinueConf * const sig = (SubSyncContinueConf *)theData;
  138.   fprintf(output, " subscriptionId: %xn", sig->subscriptionId);
  139.   fprintf(output, " subscriptionKey: %xn", sig->subscriptionKey);
  140.   return false;
  141. }
  142. bool
  143. printSUB_GCP_COMPLETE_REP(FILE * output, const Uint32 * theData, 
  144.   Uint32 len, Uint16 receiverBlockNo) {
  145.   const SubGcpCompleteRep * const sig = (SubGcpCompleteRep *)theData;
  146.   fprintf(output, " gci: %xn", sig->gci);
  147.   return false;
  148. }