// Copyright (C) 2018-2022 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
/// @file http_control_socket.h
/// Contains declarations for HTTP control socket communication.
#ifndef HTTP_CONTROL_SOCKET_H
#define HTTP_CONTROL_SOCKET_H
#include <netconf/control_socket.h>
namespace isc {
namespace netconf {
/// @brief Class for control socket communication over HTTP socket.
///
/// This class is the derived class for control socket communication
/// over HTTP sockets.
/// This class implements config-get, config-test and config-set.
class HttpControlSocket : public ControlSocketBase {
public:
/// @brief Constructor.
///
/// @param ctrl_sock The control socket configuration.
HttpControlSocket(CfgControlSocketPtr ctrl_sock);<--- Class 'HttpControlSocket' has a constructor with 1 argument that is not explicit. [+]Class 'HttpControlSocket' has a constructor with 1 argument that is not explicit. Such, so called "Converting constructors", should in general be explicit for type safety reasons as that prevents unintended implicit conversions.
/// @brief Destructor (does nothing).
virtual ~HttpControlSocket() = default;<--- Destructor in derived class
/// @brief Get configuration.
///
/// Call config-get over the control socket.
///
/// @param service The target service.
/// @return The JSON element answer of config-get.
/// @throw ControlSocketError when a communication error occurs.
data::ConstElementPtr configGet(const std::string& service) override final;
/// @brief Test configuration.
///
/// Call config-test over the control socket.
///
/// @param config The configuration to test.
/// @param service The target service.
/// @return The JSON element answer of config-test.
/// @throw ControlSocketError when a communication error occurs.
data::ConstElementPtr configTest(data::ElementPtr config,
const std::string& service) override final;
/// @brief Set configuration.
///
/// Call config-set over the control socket.
///
/// @param config The configuration to set.
/// @param service The target service.
/// @return The JSON element answer of config-set.
/// @throw ControlSocketError when a communication error occurs.
data::ConstElementPtr configSet(data::ElementPtr config,
const std::string& service) override final;
private:
/// @brief Perform the actual communication.
///
/// @todo Use persistent connections (vs. a new connection per call)
/// as the HTTP library supports them.
///
/// @param command The command to send.
/// @return The answer.
data::ConstElementPtr sendCommand(data::ConstElementPtr command);
}; // HttpControlSocket
/// @brief Type definition for the pointer to the @c HttpControlSocket.
using HttpControlSocketPtr = std::shared_ptr<HttpControlSocket>;
/// @brief Factory template specialization for http control sockets.
///
/// @param ctrl_sock The control socket configuration.
/// @return A pointer to a http control socket communication object.
template <> ControlSocketBasePtr
createControlSocket<CfgControlSocket::Type::HTTP>(CfgControlSocketPtr ctrl_sock);
} // namespace netconf
} // namespace isc
#endif // HTTP_CONTROL_SOCKET_H