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

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 "TransSS.hpp"
  14. #include <signaldata/SumaImpl.hpp>
  15. #include <GrepError.hpp>
  16. /*****************************************************************************
  17.  * CREATE SUBSCRIPTION ID
  18.  *****************************************************************************/
  19. void 
  20. TransSS::execGREP_CREATE_SUBID_CONF(NdbApiSignal* signal) 
  21. {
  22.   CreateSubscriptionIdConf const * conf = 
  23.     (CreateSubscriptionIdConf *)signal->getDataPtr();
  24.   Uint32 subId  = conf->subscriptionId;
  25.   Uint32 subKey = conf->subscriptionKey;
  26.   /** @todo Fix this */
  27. #if 0
  28.   signal->theData[0] = EventReport::GrepSubscriptionInfo;
  29.   signal->theData[1] = GrepEvent::GrepSS_CreateSubIdConf;
  30.   signal->theData[2] = subId;
  31.   signal->theData[3] = subKey;
  32.   sendSignal(CMVMI_REF, GSN_EVENT_REP, signal, 4 ,JBB);
  33. #endif
  34.   m_repState->eventSubscriptionIdCreated(subId, subKey);
  35. }
  36. void 
  37. TransSS::execGREP_CREATE_SUBID_REF(NdbApiSignal* signal) 
  38. {
  39.   CreateSubscriptionIdRef const * ref = 
  40.     (CreateSubscriptionIdRef *)signal->getDataPtr();
  41.   Uint32          subId  = ref->subscriptionId;
  42.   Uint32          subKey = ref->subscriptionKey;
  43.   GrepError::Code err    = (GrepError::Code) ref->err;
  44. #if 0
  45.   signal->theData[0] = EventReport::GrepSubscriptionAlert;
  46.   signal->theData[1] = GrepEvent::GrepSS_CreateSubIdRef;
  47.   signal->theData[2] = subId;
  48.   signal->theData[3] = subKey;
  49.   signal->theData[4] = err;
  50.   sendSignal(CMVMI_REF, GSN_EVENT_REP, signal, 5 ,JBB);
  51. #endif
  52.   m_repState->eventSubscriptionIdCreateFailed(subId, subKey, err);
  53. }
  54. /*****************************************************************************
  55.  * CREATE SUBSCRIPTION
  56.  *****************************************************************************/
  57. void
  58. TransSS::execGREP_SUB_CREATE_CONF(NdbApiSignal* signal) 
  59. {
  60.   GrepSubCreateConf * const conf = (GrepSubCreateConf *)signal->getDataPtr(); 
  61.   Uint32 noOfNodeGroups   = conf->noOfNodeGroups;
  62.   Uint32 subId            = conf->subscriptionId;
  63.   Uint32 subKey           = conf->subscriptionKey;
  64.   m_repState->setNoOfNodeGroups(noOfNodeGroups);
  65. #if 0
  66.   signal->theData[0] = EventReport::GrepSubscriptionInfo;
  67.   signal->theData[1] = GrepEvent::GrepSS_SubCreateConf;
  68.   signal->theData[2] = subId;
  69.   signal->theData[3] = subKey;
  70.   signal->theData[4] = noOfNodeGroups;
  71.   sendSignal(CMVMI_REF, GSN_EVENT_REP, signal, 5, JBB);
  72. #endif 
  73.   m_repState->eventSubscriptionCreated(subId, subKey);
  74. }
  75. void
  76. TransSS::execGREP_SUB_CREATE_REF(NdbApiSignal* signal) 
  77. {
  78.   GrepSubCreateRef * const ref = (GrepSubCreateRef *)signal->getDataPtr(); 
  79.   Uint32 subId           = ref->subscriptionId;
  80.   Uint32 subKey          = ref->subscriptionKey;
  81.   GrepError::Code  err   = (GrepError::Code)ref->err;
  82. #if 0
  83.   signal->theData[0] = EventReport::GrepSubscriptionAlert;
  84.   signal->theData[1] = GrepEvent::GrepSS_SubCreateRef;
  85.   signal->theData[2] = subId;
  86.   signal->theData[3] = subKey;
  87.   sendSignal(CMVMI_REF, GSN_EVENT_REP, signal, 4, JBB);
  88. #endif
  89.   m_repState->eventSubscriptionCreateFailed(subId, subKey, err);
  90. }
  91. /*****************************************************************************
  92.  * START SUBSCRIPTION
  93.  *****************************************************************************/
  94. void
  95. TransSS::execGREP_SUB_START_CONF(NdbApiSignal* signal) 
  96. {
  97.   GrepSubStartConf * const conf = (GrepSubStartConf *)signal->getDataPtr();
  98.   Uint32 subId                  = conf->subscriptionId;
  99.   Uint32 subKey                 = conf->subscriptionKey;
  100.   SubscriptionData::Part part   = (SubscriptionData::Part) conf->part;
  101.   
  102.   switch(part) {
  103.   case SubscriptionData::MetaData:
  104.     RLOG(("Metalog started. Subscription %d-%d", subId, subKey));
  105.     m_repState->eventMetaLogStarted(signal, subId, subKey);
  106. #if 0
  107.     signal->theData[0] = EventReport::GrepSubscriptionInfo;
  108.     signal->theData[1] = GrepEvent::GrepSS_SubStartMetaConf;
  109.     signal->theData[2] = m_requestor.getSubId(); 
  110.     signal->theData[3] = m_requestor.getSubKey();
  111.     sendSignal(CMVMI_REF, GSN_EVENT_REP, signal, 4, JBB);
  112. #endif
  113.     break;
  114.   case SubscriptionData::TableData:
  115.     RLOG(("Datalog started. Subscription %d-%d", subId, subKey));
  116.     m_repState->eventDataLogStarted(signal, subId, subKey);
  117. #if 0
  118.     signal->theData[0] = EventReport::GrepSubscriptionInfo;
  119.     signal->theData[1] = GrepEvent::GrepSS_SubStartDataConf;
  120.     signal->theData[2] = m_requestor.getSubId(); 
  121.     signal->theData[3] = m_requestor.getSubKey(); 
  122.     sendSignal(CMVMI_REF, GSN_EVENT_REP, signal, 4, JBB);
  123. #endif
  124.     break;
  125.   default:
  126.     REPABORT("Illegal type of subscription");
  127.   }
  128. }
  129. void
  130. TransSS::execGREP_SUB_START_REF(NdbApiSignal* signal) 
  131. {
  132.   GrepSubStartRef * const ref = (GrepSubStartRef *)signal->getDataPtr();
  133.   Uint32                 subId  = ref->subscriptionId;
  134.   Uint32                 subKey = ref->subscriptionKey;
  135.   GrepError::Code        err    = (GrepError::Code)ref->err;
  136.   SubscriptionData::Part part   = (SubscriptionData::Part) ref->part;
  137.   switch(part) {
  138.   case SubscriptionData::MetaData:
  139.     m_repState->eventMetaLogStartFailed(subId, subKey, err);
  140. #if 1
  141.     ndbout_c("Requestor: Subscription FAILED to start on Meta Data");
  142.     ndbout_c("Error code : %d. Error message: %s",
  143.      err,  GrepError::getErrorDesc(err));
  144. #endif
  145. #if 0
  146.     signal->theData[0] = EventReport::GrepSubscriptionAlert;
  147.     signal->theData[1] = GrepEvent::GrepSS_SubStartMetaRef;
  148.     signal->theData[2] = subId; //@todo. manage subscriptions.
  149.     signal->theData[3] = subKey;  //@todo. manage subscriptions.
  150.     sendSignal(CMVMI_REF, GSN_EVENT_REP, signal, 4, JBB);
  151. #endif
  152.     break;
  153.   case SubscriptionData::TableData:
  154.     m_repState->eventDataLogStartFailed(subId, subKey, err);
  155. #if 0
  156.     signal->theData[0] = EventReport::GrepSubscriptionAlert;
  157.     signal->theData[1] = GrepEvent::GrepSS_SubStartDataRef;
  158.     signal->theData[2] = subId; //@todo. manage subscriptions.
  159.     signal->theData[3] = subKey;  //@todo. manage subscriptions.
  160.     sendSignal(CMVMI_REF, GSN_EVENT_REP, signal, 4, JBB);
  161. #endif
  162. #if 1
  163.     ndbout_c("Requestor: Subscription FAILED to start on Table Data");
  164. #endif
  165.     ndbout_c("Error code : %d. Error message: %s",
  166.      err,  GrepError::getErrorDesc(err));
  167.     break;
  168.   default:
  169.     REPABORT("Illegal type of subscription");
  170.   }
  171. }