ExtSender.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 EXT_SENDER_HPP
  14. #define EXT_SENDER_HPP
  15. #include <NdbSleep.h>
  16. #include <TransporterFacade.hpp>
  17. #include <NdbApiSignal.hpp>
  18. #include <rep/rep_version.hpp>
  19. /**
  20.  * @todo Johan comment:
  21.  *
  22.  * ext->sendSignal should return something if send failed.
  23.  * I.e., i think all methods sending a signal should return int
  24.  * so that we can take care of errors. ALternatively take care of 
  25.  * the error like this:
  26.  * if(ext->sendSignal(..) < 0 )
  27.  *   handleSignalError(...)
  28.  * 
  29.  * or a combination.... 
  30.  *
  31.  * Should go through all places that sends signals and check that 
  32.  * they do correct error handling.
  33.  */
  34. /**
  35.  * @class  ExtSender
  36.  * @brief  Manages connection to a transporter facade
  37.  */
  38. class ExtSender {
  39. public:
  40.   /***************************************************************************
  41.    * Constructor / Destructor / Init / Get / Set  (Only set once!)
  42.    ***************************************************************************/
  43.   ExtSender();
  44.   ~ExtSender();
  45.   
  46.   void    setTransporterFacade(TransporterFacade * tf) { m_tf = tf; }
  47.   void    setNodeId(Uint32 nodeId);
  48.   Uint32  getOwnRef() const;
  49.   void    setOwnRef(Uint32 ref);
  50.   /***************************************************************************
  51.    * Usage
  52.    ***************************************************************************/
  53.   int sendSignal(NdbApiSignal * s);
  54.   int sendFragmentedSignal(NdbApiSignal * s, LinearSectionPtr ptr[3],
  55.     Uint32 sections);
  56.   bool connected(Uint32 TimeOutInMilliSeconds);
  57.   bool connected(Uint32 TimeOutInMilliSeconds, Uint32 nodeId);
  58.   NdbApiSignal * getSignal();
  59. private:
  60.   TransporterFacade *  m_tf;
  61.   Uint32               m_nodeId;
  62.   Uint32               m_ownRef;
  63. };
  64. #endif