Electroneum
Loading...
Searching...
No Matches
rpc.h
Go to the documentation of this file.
1// Copyrights(c) 2017-2021, The Electroneum Project
2// Copyrights(c) 2014-2019, The Monero Project
3//
4// All rights reserved.
5//
6// Redistribution and use in source and binary forms, with or without modification, are
7// permitted provided that the following conditions are met:
8//
9// 1. Redistributions of source code must retain the above copyright notice, this list of
10// conditions and the following disclaimer.
11//
12// 2. Redistributions in binary form must reproduce the above copyright notice, this list
13// of conditions and the following disclaimer in the documentation and/or other
14// materials provided with the distribution.
15//
16// 3. Neither the name of the copyright holder nor the names of its contributors may be
17// used to endorse or promote products derived from this software without specific
18// prior written permission.
19//
20// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
21// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
22// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
23// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
27// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
28// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29//
30// Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
31
32#pragma once
33
34#include "rpc/core_rpc_server.h"
35
36#undef ELECTRONEUM_DEFAULT_LOG_CATEGORY
37#define ELECTRONEUM_DEFAULT_LOG_CATEGORY "daemon"
38
39namespace daemonize
40{
41
42class t_rpc final
43{
44public:
45 static void init_options(boost::program_options::options_description & option_spec)
46 {
48 }
49private:
51 const std::string m_description;
52public:
54 boost::program_options::variables_map const & vm
55 , t_core & core
56 , t_p2p & p2p
57 , const bool restricted
58 , const std::string & port
59 , const std::string & description
60 )
61 : m_server{core.get(), p2p.get()}, m_description{description}
62 {
63 MGINFO("Initializing " << m_description << " RPC server...");
64
65 if (!m_server.init(vm, restricted, port))
66 {
67 throw std::runtime_error("Failed to initialize " + m_description + " RPC server.");
68 }
69 MGINFO(m_description << " RPC server initialized OK on port: " << m_server.get_binded_port());
70 }
71
72 void run()
73 {
74 MGINFO("Starting " << m_description << " RPC server...");
75 if (!m_server.run(2, false))
76 {
77 throw std::runtime_error("Failed to start " + m_description + " RPC server.");
78 }
79 MGINFO(m_description << " RPC server started ok");
80 }
81
82 void stop()
83 {
84 MGINFO("Stopping " << m_description << " RPC server...");
85 m_server.send_stop_signal();
86 m_server.timed_wait_server_stop(5000);
87 }
88
90 {
91 return &m_server;
92 }
93
95 {
96 MGINFO("Deinitializing " << m_description << " RPC server...");
97 try {
98 m_server.deinit();
99 } catch (...) {
100 MERROR("Failed to deinitialize " << m_description << " RPC server...");
101 }
102 }
103};
104
105}
static void init_options(boost::program_options::options_description &desc)
static void init_options(boost::program_options::options_description &option_spec)
Definition rpc.h:45
void run()
Definition rpc.h:72
cryptonote::core_rpc_server * get_server()
Definition rpc.h:89
void stop()
Definition rpc.h:82
t_rpc(boost::program_options::variables_map const &vm, t_core &core, t_p2p &p2p, const bool restricted, const std::string &port, const std::string &description)
Definition rpc.h:53
void get(std::istream &input, bool &res)
Definition io.h:62
#define MERROR(x)
Definition misc_log_ex.h:73
#define MGINFO(x)
Definition misc_log_ex.h:80