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