Kea 2.7.1
stdout_control_socket.h
Go to the documentation of this file.
1// Copyright (C) 2018-2024 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
9
10#ifndef STDOUT_CONTROL_SOCKET_H
11#define STDOUT_CONTROL_SOCKET_H
12
14
15#include <iostream>
16
17namespace isc {
18namespace netconf {
19
26public:
33
35 virtual ~StdoutControlSocket() = default;
36
44 data::ConstElementPtr configGet(const std::string& service) override final;
45
54 const std::string& service) override final;
55
64 const std::string& service) override final;
65
66protected:
71 StdoutControlSocket(CfgControlSocketPtr ctrl_sock, std::ostream& output);
72
74 std::ostream& output_;
75}; // StdoutControlSocket
76
78using StdoutControlSocketPtr = std::shared_ptr<StdoutControlSocket>;
79
84template <> ControlSocketBasePtr
86
87} // namespace netconf
88} // namespace isc
89
90#endif // STDOUT_CONTROL_SOCKET_H
Base class for control socket communication.
Class for control socket communication over stdout.
data::ConstElementPtr configGet(const std::string &service) override final
Get configuration.
data::ConstElementPtr configSet(data::ElementPtr config, const std::string &service) override final
Set configuration.
StdoutControlSocket(CfgControlSocketPtr ctrl_sock)
Constructor.
virtual ~StdoutControlSocket()=default
Destructor (does nothing).
data::ConstElementPtr configTest(data::ElementPtr config, const std::string &service) override final
Test configuration.
std::ostream & output_
The output stream (std::cout outside tests).
Contains declarations for control socket communication.
boost::shared_ptr< const Element > ConstElementPtr
Definition data.h:29
boost::shared_ptr< Element > ElementPtr
Definition data.h:28
std::shared_ptr< ControlSocketBase > ControlSocketBasePtr
Type definition for the pointer to the ControlSocketBase.
ControlSocketBasePtr createControlSocket< CfgControlSocket::Type::STDOUT >(CfgControlSocketPtr ctrl_sock)
Factory template specialization for stdout control sockets.
std::shared_ptr< CfgControlSocket > CfgControlSocketPtr
Defines a pointer for CfgControlSocket instances.
std::shared_ptr< StdoutControlSocket > StdoutControlSocketPtr
Type definition for the pointer to the StdoutControlSocket.
Defines the logger used by the top-level component of kea-lfc.