forked from steemit/steem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.cpp
307 lines (259 loc) · 9.11 KB
/
application.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
#include <appbase/application.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/filesystem.hpp>
#include <boost/asio/signal_set.hpp>
#include <iostream>
#include <fstream>
namespace appbase {
namespace bpo = boost::program_options;
using bpo::options_description;
using bpo::variables_map;
using std::cout;
class application_impl {
public:
application_impl():_app_options("Application Options"){
}
const variables_map* _options = nullptr;
options_description _app_options;
options_description _cfg_options;
variables_map _args;
bfs::path _data_dir;
};
application::application()
:my(new application_impl()){
io_serv = std::make_shared<boost::asio::io_service>();
}
application::~application() { }
void application::startup() {
for (const auto& plugin : initialized_plugins)
plugin->startup();
}
application& application::instance( bool reset ) {
static application* _app = new application();
if( reset )
{
delete _app;
_app = new application();
}
return *_app;
}
application& app() { return application::instance(); }
application& reset() { return application::instance( true ); }
void application::set_program_options()
{
std::stringstream data_dir_ss;
data_dir_ss << "Directory containing configuration file config.ini. Default location: $HOME/." << app_name << " or CWD/. " << app_name;
std::stringstream plugins_ss;
for( auto& p : default_plugins )
{
plugins_ss << p << ' ';
}
options_description app_cfg_opts( "Application Config Options" );
options_description app_cli_opts( "Application Command Line Options" );
app_cfg_opts.add_options()
("plugin", bpo::value< vector<string> >()->composing()->default_value( default_plugins, plugins_ss.str() ), "Plugin(s) to enable, may be specified multiple times");
app_cli_opts.add_options()
("help,h", "Print this help message and exit.")
("version,v", "Print version information.")
("data-dir,d", bpo::value<bfs::path>(), data_dir_ss.str().c_str() )
("config,c", bpo::value<bfs::path>()->default_value( "config.ini" ), "Configuration file name relative to data-dir");
my->_cfg_options.add(app_cfg_opts);
my->_app_options.add(app_cfg_opts);
my->_app_options.add(app_cli_opts);
for(auto& plug : plugins) {
boost::program_options::options_description plugin_cli_opts("Command Line Options for " + plug.second->get_name());
boost::program_options::options_description plugin_cfg_opts("Config Options for " + plug.second->get_name());
plug.second->set_program_options(plugin_cli_opts, plugin_cfg_opts);
if(plugin_cfg_opts.options().size()) {
my->_app_options.add(plugin_cfg_opts);
my->_cfg_options.add(plugin_cfg_opts);
}
if(plugin_cli_opts.options().size())
my->_app_options.add(plugin_cli_opts);
}
}
bool application::initialize_impl(int argc, char** argv, vector<abstract_plugin*> autostart_plugins)
{
try
{
set_program_options();
bpo::store( bpo::parse_command_line( argc, argv, my->_app_options ), my->_args );
if( my->_args.count( "help" ) ) {
cout << my->_app_options << "\n";
return false;
}
if( my->_args.count( "version" ) )
{
cout << version_info << "\n";
return false;
}
bfs::path data_dir;
if( my->_args.count("data-dir") )
{
data_dir = my->_args["data-dir"].as<bfs::path>();
if( data_dir.is_relative() )
data_dir = bfs::current_path() / data_dir;
}
else
{
#ifdef WIN32
char* parent = getenv( "APPDATA" );
#else
char* parent = getenv( "HOME" );
#endif
if( parent != nullptr )
{
data_dir = std::string( parent );
}
else
{
data_dir = bfs::current_path();
}
std::stringstream app_dir;
app_dir << '.' << app_name;
data_dir = data_dir / app_dir.str();
#pragma message( "TODO: Remove this check for Steem release 0.20.1+" )
bfs::path old_dir = bfs::current_path() / "witness_node_data_dir";
if( bfs::exists( old_dir ) )
{
std::cerr << "The default data directory is now '" << data_dir.string() << "' instead of '" << old_dir.string() << "'.\n";
std::cerr << "Please move your data directory to '" << data_dir.string() << "' or specify '--data-dir=" << old_dir.string() <<
"' to continue using the current data directory.\n";
exit(1);
}
}
my->_data_dir = data_dir;
bfs::path config_file_name = data_dir / "config.ini";
if( my->_args.count( "config" ) ) {
auto config_file_name = my->_args["config"].as<bfs::path>();
if( config_file_name.is_relative() )
config_file_name = data_dir / config_file_name;
}
if(!bfs::exists(config_file_name)) {
write_default_config(config_file_name);
}
bpo::store(bpo::parse_config_file< char >( config_file_name.make_preferred().string().c_str(),
my->_cfg_options, true ), my->_args );
if(my->_args.count("plugin") > 0)
{
auto plugins = my->_args.at("plugin").as<std::vector<std::string>>();
for(auto& arg : plugins)
{
vector<string> names;
boost::split(names, arg, boost::is_any_of(" \t,"));
for(const std::string& name : names)
get_plugin(name).initialize(my->_args);
}
}
for (const auto& plugin : autostart_plugins)
if (plugin != nullptr && plugin->get_state() == abstract_plugin::registered)
plugin->initialize(my->_args);
bpo::notify(my->_args);
return true;
}
catch (const boost::program_options::error& e)
{
std::cerr << "Error parsing command line: " << e.what() << "\n";
return false;
}
}
void application::shutdown() {
for(auto ritr = running_plugins.rbegin();
ritr != running_plugins.rend(); ++ritr) {
(*ritr)->shutdown();
}
for(auto ritr = running_plugins.rbegin();
ritr != running_plugins.rend(); ++ritr) {
plugins.erase((*ritr)->get_name());
}
running_plugins.clear();
initialized_plugins.clear();
plugins.clear();
}
void application::quit() {
io_serv->stop();
}
void application::exec() {
/** To avoid killing process by broken pipe and continue regular app shutdown.
* Useful for usecase: `steemd | tee steemd.log` and pressing Ctrl+C
**/
signal(SIGPIPE, SIG_IGN);
std::shared_ptr<boost::asio::signal_set> sigint_set(new boost::asio::signal_set(*io_serv, SIGINT));
sigint_set->async_wait([sigint_set,this](const boost::system::error_code& err, int num) {
quit();
sigint_set->cancel();
});
std::shared_ptr<boost::asio::signal_set> sigterm_set(new boost::asio::signal_set(*io_serv, SIGTERM));
sigterm_set->async_wait([sigterm_set,this](const boost::system::error_code& err, int num) {
quit();
sigterm_set->cancel();
});
io_serv->run();
shutdown(); /// perform synchronous shutdown
}
void application::write_default_config(const bfs::path& cfg_file) {
if(!bfs::exists(cfg_file.parent_path()))
bfs::create_directories(cfg_file.parent_path());
std::ofstream out_cfg( bfs::path(cfg_file).make_preferred().string());
for(const boost::shared_ptr<bpo::option_description> od : my->_cfg_options.options())
{
if(!od->description().empty())
out_cfg << "# " << od->description() << "\n";
boost::any store;
if(!od->semantic()->apply_default(store))
out_cfg << "# " << od->long_name() << " = \n";
else
{
auto example = od->format_parameter();
if( example.empty() )
{
// This is a boolean switch
out_cfg << od->long_name() << " = " << "false\n";
}
else if( example.length() <= 7 )
{
// The string is formatted "arg"
out_cfg << "# " << od->long_name() << " = \n";
}
else
{
// The string is formatted "arg (=<interesting part>)"
example.erase(0, 6);
example.erase(example.length()-1);
out_cfg << od->long_name() << " = " << example << "\n";
}
}
out_cfg << "\n";
}
out_cfg.close();
}
abstract_plugin* application::find_plugin( const string& name )const
{
auto itr = plugins.find( name );
if( itr == plugins.end() )
{
return nullptr;
}
return itr->second.get();
}
abstract_plugin& application::get_plugin(const string& name)const {
auto ptr = find_plugin(name);
if(!ptr)
BOOST_THROW_EXCEPTION(std::runtime_error("unable to find plugin: " + name));
return *ptr;
}
bfs::path application::data_dir()const
{
return my->_data_dir;
}
void application::add_program_options( const options_description& cli, const options_description& cfg )
{
my->_app_options.add( cli );
my->_app_options.add( cfg );
my->_cfg_options.add( cfg );
}
const variables_map& application::get_args() const
{
return my->_args;
}
} /// namespace appbase