Kea  2.3.8
command_interpreter.h
Go to the documentation of this file.
1 // Copyright (C) 2009-2022 Internet Systems Consortium, Inc. ("ISC")
2 //
3 // This Source Code Form is subject to the terms of the Mozilla Public
4 // License, v. 2.0. If a copy of the MPL was not distributed with this
5 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 
7 #ifndef COMMAND_INTERPRETER_H
8 #define COMMAND_INTERPRETER_H
9 
10 #include <cc/data.h>
11 #include <string>
12 
19 
20 namespace isc {
21 namespace config {
22 
24 extern const char *CONTROL_COMMAND;
25 
27 extern const char *CONTROL_RESULT;
28 
30 extern const char *CONTROL_TEXT;
31 
33 extern const char *CONTROL_ARGUMENTS;
34 
36 extern const char *CONTROL_SERVICE;
37 
39 extern const char *CONTROL_REMOTE_ADDRESS;
40 
42 const int CONTROL_RESULT_SUCCESS = 0;
43 
45 const int CONTROL_RESULT_ERROR = 1;
46 
49 
53 const int CONTROL_RESULT_EMPTY = 3;
54 
60 
64 public:
65  CtrlChannelError(const char* file, size_t line, const char* what) :
66  isc::Exception(file, line, what) {}
67 };
68 
73 
80 isc::data::ConstElementPtr createAnswer(const int status_code,
81  const std::string& status_text);
82 
91  const isc::data::ConstElementPtr& arg);
92 
101  const std::string& status,
102  const isc::data::ConstElementPtr& arg);
103 
111  const isc::data::ConstElementPtr& msg);
112 
117 std::string answerToText(const isc::data::ConstElementPtr& msg);
118 
124 isc::data::ConstElementPtr createCommand(const std::string& command);
125 
133 isc::data::ConstElementPtr createCommand(const std::string& command,
135 
143  isc::data::ConstElementPtr createCommand(const std::string& command,
144  const std::string& service);
145 
155 isc::data::ConstElementPtr createCommand(const std::string& command,
157  const std::string& service);
158 
171 
172 
189 
205  const isc::data::ConstElementPtr& response2);
206 
207 }; // end of namespace isc::config
208 }; // end of namespace isc
209 
210 #endif // COMMAND_INTERPRETER_H
This is a base class for exceptions thrown from the DNS library module.
virtual const char * what() const
Returns a C-style character string of the cause of the exception.
A standard control channel exception that is thrown if a function is there is a problem with one of t...
CtrlChannelError(const char *file, size_t line, const char *what)
std::string parseCommandWithArgs(ConstElementPtr &arg, ConstElementPtr command)
const char * CONTROL_ARGUMENTS
String used for arguments map ("arguments")
const int CONTROL_RESULT_EMPTY
Status code indicating that the specified command was completed correctly, but failed to produce any ...
const char * CONTROL_TEXT
String used for storing textual description ("text")
const char * CONTROL_COMMAND
String used for commands ("command")
ConstElementPtr createCommand(const std::string &command)
Creates a standard command message with no argument (of the form { "command": "my_command" })
const int CONTROL_RESULT_ERROR
Status code indicating a general failure.
const char * CONTROL_SERVICE
String used for service list ("service")
std::string parseCommand(ConstElementPtr &arg, ConstElementPtr command)
ConstElementPtr combineCommandsLists(const ConstElementPtr &response1, const ConstElementPtr &response2)
const int CONTROL_RESULT_CONFLICT
Status code indicating that the command was unsuccessful due to a conflict between the command argume...
const int CONTROL_RESULT_COMMAND_UNSUPPORTED
Status code indicating that the specified command is not supported.
ConstElementPtr createAnswer(const int status_code, const std::string &text, const ConstElementPtr &arg)
ConstElementPtr parseAnswer(int &rcode, const ConstElementPtr &msg)
const char * CONTROL_REMOTE_ADDRESS
String used for remote address ("remote-address")
const char * CONTROL_RESULT
String used for result, i.e. integer status ("result")
const int CONTROL_RESULT_SUCCESS
Status code indicating a successful operation.
std::string answerToText(const ConstElementPtr &msg)
boost::shared_ptr< const Element > ConstElementPtr
Definition: data.h:29
Defines the logger used by the top-level component of kea-lfc.