RepApiService.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 REP_APISERVICE_HPP
  14. #define REP_APISERVICE_HPP
  15. #include <Parser.hpp>
  16. #include <InputStream.hpp>
  17. #include <SocketServer.hpp>
  18. class RepApiInterpreter;
  19. class RepApiSession : public SocketServer::Session {
  20.   typedef Parser<RepApiSession> Parser_t;
  21.   class RepApiInterpreter & m_rep;
  22.   InputStream *m_input;
  23.   OutputStream *m_output;
  24.   Parser_t *m_parser;
  25.   
  26. void printProperty(Properties *prop, const char *key);
  27. public:
  28.   RepApiSession(NDB_SOCKET_TYPE, class RepApiInterpreter &);
  29.   RepApiSession(FILE * f, class RepApiInterpreter & rep);
  30.   ~RepApiSession();
  31.   virtual void runSession();
  32.   virtual void stopSession();
  33.   
  34.   void execCommand(Parser_t::Context & ctx, const class Properties & args);
  35.   void getStatus(Parser_t::Context & ctx, const class Properties & args);
  36.   void query(Parser_t::Context & ctx, const class Properties & args);
  37. };
  38. class RepApiService : public SocketServer::Service {
  39.   class RepApiInterpreter & m_rep;
  40. public:
  41.   RepApiService(class RepApiInterpreter & rep) : m_rep(rep) {}
  42.   
  43.   RepApiSession * newSession(NDB_SOCKET_TYPE theSock){
  44.     return new RepApiSession(theSock, m_rep);
  45.   }
  46. };
  47. #endif