SignalSender.hpp
上传用户: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. #ifndef SIGNAL_SENDER_HPP
  14. #define SIGNAL_SENDER_HPP
  15. #include <ndb_global.h>
  16. #include <TransporterDefinitions.hpp>
  17. #include <TransporterFacade.hpp>
  18. #include <ClusterMgr.hpp>
  19. #include <Vector.hpp>
  20. struct SimpleSignal {
  21. public:
  22.   SimpleSignal(bool dealloc = false);
  23.   ~SimpleSignal();
  24.   
  25.   void set(class SignalSender&,
  26.    Uint8  trace, Uint16 recBlock, Uint16 gsn, Uint32 len);
  27.   
  28.   struct SignalHeader header;
  29.   Uint32 theData[25];
  30.   LinearSectionPtr ptr[3];
  31.   void print(FILE * out = stdout);
  32. private:
  33.   bool deallocSections;
  34. };
  35. class SignalSender {
  36. public:
  37.   SignalSender(const char * connectString = 0);
  38.   virtual ~SignalSender();
  39.   
  40.   bool connectOne(Uint32 timeOutMillis = 0);
  41.   bool connectAll(Uint32 timeOutMillis = 0);
  42.   bool connect(Uint32 timeOutMillis = 0) { return connectAll(timeOutMillis);}
  43.   
  44.   Uint32 getOwnRef() const;
  45.   
  46.   Uint32 getAliveNode();
  47.   Uint32 getNoOfConnectedNodes() const;
  48.   const ClusterMgr::Node & getNodeInfo(Uint16 nodeId) const;
  49.   
  50.   SendStatus sendSignal(Uint16 nodeId, const SimpleSignal *);
  51.   
  52.   SimpleSignal * waitFor(Uint32 timeOutMillis = 0);
  53.   SimpleSignal * waitFor(Uint16 nodeId, Uint32 timeOutMillis = 0);
  54.   SimpleSignal * waitFor(Uint16 nodeId, Uint16 gsn, Uint32 timeOutMillis = 0);  
  55.   
  56. private:
  57.   int m_blockNo;
  58.   TransporterFacade * theFacade;
  59.   
  60.   static void execSignal(void* signalSender, 
  61.  NdbApiSignal* signal, 
  62.  class LinearSectionPtr ptr[3]);
  63.   
  64.   static void execNodeStatus(void* signalSender, NodeId, 
  65.      bool alive, bool nfCompleted);
  66.   
  67.   struct NdbCondition * m_cond;
  68.   Vector<SimpleSignal *> m_jobBuffer;
  69.   template<class T>
  70.   SimpleSignal * waitFor(Uint32 timeOutMillis, T & t);
  71. };
  72. #endif