Services.hpp
上传用户: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. #ifndef MGMAPI_SERVICE_HPP
  14. #define MGMAPI_SERVICE_HPP
  15. #include <SocketServer.hpp>
  16. #include <NdbSleep.h>
  17. #include <Parser.hpp>
  18. #include <OutputStream.hpp>
  19. #include <InputStream.hpp>
  20. #include "MgmtSrvr.hpp"
  21. /** Undefine this to remove backwards compatibility for "GET CONFIG". */
  22. #define MGM_GET_CONFIG_BACKWARDS_COMPAT
  23. class MgmApiSession : public SocketServer::Session
  24. {
  25.   static void stop_session_if_not_connected(SocketServer::Session *_s, void *data);
  26. private:
  27.   typedef Parser<MgmApiSession> Parser_t;
  28.   class MgmtSrvr & m_mgmsrv;
  29.   InputStream *m_input;
  30.   OutputStream *m_output;
  31.   Parser_t *m_parser;
  32.   MgmtSrvr::Allocated_resources *m_allocated_resources;
  33.   char m_err_str[1024];
  34.   void getConfig_common(Parser_t::Context &ctx,
  35. const class Properties &args,
  36. bool compat = false);
  37.   const char *get_error_text(int err_no)
  38.   { return m_mgmsrv.getErrorText(err_no, m_err_str, sizeof(m_err_str)); }
  39. public:
  40.   MgmApiSession(class MgmtSrvr & mgm, NDB_SOCKET_TYPE sock);  
  41.   virtual ~MgmApiSession();
  42.   void runSession();
  43.   void getStatPort(Parser_t::Context &ctx, const class Properties &args);
  44.   void getConfig(Parser_t::Context &ctx, const class Properties &args);
  45. #ifdef MGM_GET_CONFIG_BACKWARDS_COMPAT
  46.   void getConfig_old(Parser_t::Context &ctx);
  47. #endif /* MGM_GET_CONFIG_BACKWARDS_COMPAT */
  48.   void get_nodeid(Parser_t::Context &ctx, const class Properties &args);
  49.   void getVersion(Parser_t::Context &ctx, const class Properties &args);
  50.   void getStatus(Parser_t::Context &ctx, const class Properties &args);
  51.   void getInfoClusterLog(Parser_t::Context &ctx, const class Properties &args);
  52.   void restart(Parser_t::Context &ctx, const class Properties &args);
  53.   void restartAll(Parser_t::Context &ctx, const class Properties &args);
  54.   void insertError(Parser_t::Context &ctx, const class Properties &args);
  55.   void setTrace(Parser_t::Context &ctx, const class Properties &args);
  56.   void logSignals(Parser_t::Context &ctx, const class Properties &args);
  57.   void startSignalLog(Parser_t::Context &ctx, const class Properties &args);
  58.   void stopSignalLog(Parser_t::Context &ctx, const class Properties &args);
  59.   void dumpState(Parser_t::Context &ctx, const class Properties &args);
  60.   void startBackup(Parser_t::Context &ctx, const class Properties &args);
  61.   void abortBackup(Parser_t::Context &ctx, const class Properties &args);
  62.   void enterSingleUser(Parser_t::Context &ctx, const class Properties &args);
  63.   void exitSingleUser(Parser_t::Context &ctx, const class Properties &args);
  64.   void stop(Parser_t::Context &ctx, const class Properties &args);
  65.   void stopAll(Parser_t::Context &ctx, const class Properties &args);
  66.   void start(Parser_t::Context &ctx, const class Properties &args);
  67.   void startAll(Parser_t::Context &ctx, const class Properties &args);
  68.   void bye(Parser_t::Context &ctx, const class Properties &args);
  69.   void setLogLevel(Parser_t::Context &ctx, const class Properties &args);
  70.   void setClusterLogLevel(Parser_t::Context &ctx, 
  71.   const class Properties &args);
  72.   void setLogFilter(Parser_t::Context &ctx, const class Properties &args);
  73.   void setParameter(Parser_t::Context &ctx, const class Properties &args);
  74.   void listen_event(Parser_t::Context &ctx, const class Properties &args);
  75.   void purge_stale_sessions(Parser_t::Context &ctx, const class Properties &args);
  76.   void check_connection(Parser_t::Context &ctx, const class Properties &args);
  77.   
  78.   void repCommand(Parser_t::Context &ctx, const class Properties &args);
  79. };
  80. class MgmApiService : public SocketServer::Service {
  81.   class MgmtSrvr * m_mgmsrv;
  82. public:
  83.   MgmApiService(){
  84.     m_mgmsrv = 0;
  85.   }
  86.   
  87.   void setMgm(class MgmtSrvr * mgmsrv){
  88.     m_mgmsrv = mgmsrv;
  89.   }
  90.   
  91.   SocketServer::Session * newSession(NDB_SOCKET_TYPE socket){
  92.     return new MgmApiSession(* m_mgmsrv, socket);
  93.   }
  94. };
  95. #endif