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

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. /*****************************************************************************
  14.  * Name:          NdbConnectionScan.cpp
  15.  * Include:
  16.  * Link:
  17.  * Author:        UABRONM MikaelRonstr鰉 UAB/M/MT       
  18.  *                QABJKAM Jonas Kamf UAB/M/MT                  
  19.  * Date:          2000-06-12
  20.  * Version:       0.1
  21.  * Description:   Interface between Application and NDB
  22.  * Documentation:
  23.  * Adjust:  2000-06-12  UABRONM   First version.
  24.  ****************************************************************************/
  25. #include <ndb_global.h>
  26. #include <Ndb.hpp>
  27. #include <NdbConnection.hpp>
  28. #include <NdbOperation.hpp>
  29. #include <NdbScanOperation.hpp>
  30. #include "NdbApiSignal.hpp"
  31. #include "TransporterFacade.hpp"
  32. #include "NdbUtil.hpp"
  33. #include "API.hpp"
  34. #include "NdbImpl.hpp"
  35. #include <signaldata/ScanTab.hpp>
  36. #include <NdbOut.hpp>
  37. /***************************************************************************
  38.  * int  receiveSCAN_TABREF(NdbApiSignal* aSignal)
  39.  *
  40.  *  This means the scan could not be started, set status(s) to indicate 
  41.  *  the failure
  42.  *
  43.  ****************************************************************************/
  44. int
  45. NdbConnection::receiveSCAN_TABREF(NdbApiSignal* aSignal){
  46.   const ScanTabRef * ref = CAST_CONSTPTR(ScanTabRef, aSignal->getDataPtr());
  47.   
  48.   if(checkState_TransId(&ref->transId1)){
  49.     theScanningOp->setErrorCode(ref->errorCode);
  50.     theScanningOp->execCLOSE_SCAN_REP();
  51.     if(!ref->closeNeeded){
  52.       return 0;
  53.     }
  54.     /**
  55.      * Setup so that close_impl will actually perform a close
  56.      *   and not "close scan"-optimze it away
  57.      */
  58.     theScanningOp->m_conf_receivers_count++;
  59.     theScanningOp->m_conf_receivers[0] = theScanningOp->m_receivers[0];
  60.     theScanningOp->m_conf_receivers[0]->m_tcPtrI = ~0;
  61.     return 0;
  62.   } else {
  63. #ifdef NDB_NO_DROPPED_SIGNAL
  64.     abort();
  65. #endif
  66.   }
  67.   return -1;
  68. }
  69. /*****************************************************************************
  70.  * int  receiveSCAN_TABCONF(NdbApiSignal* aSignal)
  71.  *
  72.  * Receive SCAN_TABCONF
  73.  * If scanStatus == 0 there is more records to read. Since signals may be 
  74.  * received in any order we have to go through the lists with saved signals 
  75.  * and check if all expected signals are there so that we can start to 
  76.  * execute them.
  77.  *
  78.  * If scanStatus > 0 this indicates that the scan is finished and there are 
  79.  * no more data to be read.
  80.  * 
  81.  *****************************************************************************/
  82. int
  83. NdbConnection::receiveSCAN_TABCONF(NdbApiSignal* aSignal, 
  84.    const Uint32 * ops, Uint32 len)
  85. {
  86.   const ScanTabConf * conf = CAST_CONSTPTR(ScanTabConf, aSignal->getDataPtr());
  87.   if(checkState_TransId(&conf->transId1)){
  88.     
  89.     if (conf->requestInfo == ScanTabConf::EndOfData) {
  90.       theScanningOp->execCLOSE_SCAN_REP();
  91.       return 0;
  92.     }
  93.     for(Uint32 i = 0; i<len; i += 3){
  94.       Uint32 opCount, totalLen;
  95.       Uint32 ptrI = * ops++;
  96.       Uint32 tcPtrI = * ops++;
  97.       Uint32 info = * ops++;
  98.       opCount  = ScanTabConf::getRows(info);
  99.       totalLen = ScanTabConf::getLength(info);
  100.       
  101.       void * tPtr = theNdb->int2void(ptrI);
  102.       assert(tPtr); // For now
  103.       NdbReceiver* tOp = theNdb->void2rec(tPtr);
  104.       if (tOp && tOp->checkMagicNumber())
  105.       {
  106. if (tcPtrI == RNIL && opCount == 0)
  107.   theScanningOp->receiver_completed(tOp);
  108. else if (tOp->execSCANOPCONF(tcPtrI, totalLen, opCount))
  109.   theScanningOp->receiver_delivered(tOp);
  110.       }
  111.     }
  112.     return 0;
  113.   } else {
  114. #ifdef NDB_NO_DROPPED_SIGNAL
  115.     abort();
  116. #endif
  117.   }
  118.   
  119.   return -1;
  120. }