BitShares-Core  7.0.2
BitShares blockchain node software and command-line wallet software
debug_witness.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 Cryptonomex, Inc., and contributors.
3  *
4  * The MIT License
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  */
24 #pragma once
25 
26 #include <graphene/app/plugin.hpp>
29 
30 #include <fc/thread/future.hpp>
31 #include <fc/container/flat.hpp>
32 
33 namespace graphene { namespace debug_witness_plugin {
34 
36 public:
37  using graphene::app::plugin::plugin;
38  ~debug_witness_plugin() override;
39 
40  std::string plugin_name()const override;
41 
43  boost::program_options::options_description &command_line_options,
44  boost::program_options::options_description &config_file_options
45  ) override;
46 
47  void plugin_initialize( const boost::program_options::variables_map& options ) override;
48  void plugin_startup() override;
49  void plugin_shutdown() override;
50 
51  void set_json_object_stream( const std::string& filename );
53 
54 private:
55  void cleanup();
56 
57  void on_changed_objects( const std::vector<graphene::db::object_id_type>& ids, const fc::flat_set<graphene::chain::account_id_type>& impacted_accounts );
58  void on_removed_objects( const std::vector<graphene::db::object_id_type>& ids, const std::vector<const graphene::db::object*> objs, const fc::flat_set<graphene::chain::account_id_type>& impacted_accounts );
59  void on_applied_block( const graphene::chain::signed_block& b );
60 
61  boost::program_options::variables_map _options;
62 
63  std::map<chain::public_key_type, fc::ecc::private_key, chain::pubkey_comparator> _private_keys;
64 
65  std::shared_ptr< std::ofstream > _json_object_stream;
66  boost::signals2::scoped_connection _applied_block_conn;
67  boost::signals2::scoped_connection _changed_objects_conn;
68  boost::signals2::scoped_connection _removed_objects_conn;
69 };
70 
71 } } //graphene::debug_witness_plugin
database.hpp
graphene::debug_witness_plugin::debug_witness_plugin
Definition: debug_witness.hpp:35
plugin.hpp
graphene::debug_witness_plugin::debug_witness_plugin::plugin_set_program_options
void plugin_set_program_options(boost::program_options::options_description &command_line_options, boost::program_options::options_description &config_file_options) override
Fill in command line parameters used by the plugin.
Definition: debug_witness.cpp:46
graphene::debug_witness_plugin::debug_witness_plugin::plugin_name
std::string plugin_name() const override
Get the name of the plugin.
Definition: debug_witness.cpp:58
graphene::debug_witness_plugin::debug_witness_plugin::plugin_shutdown
void plugin_shutdown() override
Cleanly shut down the plugin.
Definition: debug_witness.cpp:159
types.hpp
graphene::app::plugin
Definition: plugin.hpp:100
flat.hpp
graphene::debug_witness_plugin::debug_witness_plugin::flush_json_object_stream
void flush_json_object_stream()
Definition: debug_witness.cpp:153
future.hpp
fc::scoped_connection
boost::signals2::scoped_connection scoped_connection
Definition: signals.hpp:22
graphene::debug_witness_plugin::debug_witness_plugin::set_json_object_stream
void set_json_object_stream(const std::string &filename)
Definition: debug_witness.cpp:143
graphene::protocol::signed_block
Definition: block.hpp:64
graphene::debug_witness_plugin::debug_witness_plugin::plugin_startup
void plugin_startup() override
Begin normal runtime operations.
Definition: debug_witness.cpp:95
graphene::debug_witness_plugin::debug_witness_plugin::~debug_witness_plugin
~debug_witness_plugin() override
Definition: debug_witness.cpp:41
graphene::debug_witness_plugin::debug_witness_plugin::plugin_initialize
void plugin_initialize(const boost::program_options::variables_map &options) override
Perform early startup routines and register plugin indexes, callbacks, etc.
Definition: debug_witness.cpp:63
graphene
Definition: api.cpp:48