MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
APIService.hpp
1 /*
2  Copyright (C) 2003, 2005, 2006 MySQL AB
3  All rights reserved. Use is subject to license terms.
4 
5  This program is free software; you can redistribute it and/or modify
6  it under the terms of the GNU General Public License as published by
7  the Free Software Foundation; version 2 of the License.
8 
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  GNU General Public License for more details.
13 
14  You should have received a copy of the GNU General Public License
15  along with this program; if not, write to the Free Software
16  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18 
19 #ifndef CPCD_API_HPP
20 #define CPCD_API_HPP
21 
22 #include <Parser.hpp>
23 #include <InputStream.hpp>
24 #include <SocketServer.hpp>
25 
26 class CPCD;
27 
30 
31  class CPCD & m_cpcd;
32  InputStream *m_input;
33  OutputStream *m_output;
34  Parser_t *m_parser;
35 
36  Vector<int> m_temporaryProcesses;
37 
38  void printProperty(Properties *prop, const char *key);
39 public:
40  CPCDAPISession(NDB_SOCKET_TYPE, class CPCD &);
41  CPCDAPISession(FILE * f, CPCD & cpcd);
42  ~CPCDAPISession();
43 
44  virtual void runSession();
45  virtual void stopSession();
46  void loadFile();
47 
48  void defineProcess(Parser_t::Context & ctx, const class Properties & args);
49  void undefineProcess(Parser_t::Context & ctx, const class Properties & args);
50  void startProcess(Parser_t::Context & ctx, const class Properties & args);
51  void stopProcess(Parser_t::Context & ctx, const class Properties & args);
52  void showProcess(Parser_t::Context & ctx, const class Properties & args);
53  void listProcesses(Parser_t::Context & ctx, const class Properties & args);
54  void showVersion(Parser_t::Context & ctx, const class Properties & args);
55 };
56 
58  class CPCD & m_cpcd;
59 public:
60  CPCDAPIService(class CPCD & cpcd) : m_cpcd(cpcd) {}
61 
62  CPCDAPISession * newSession(NDB_SOCKET_TYPE theSock){
63  return new CPCDAPISession(theSock, m_cpcd);
64  }
65 };
66 
67 #endif