Electroneum
blockchain_db.h
Go to the documentation of this file.
1 // Copyrights(c) 2017-2019, The Electroneum Project
2 // Copyrights(c) 2014-2017, 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 #ifndef BLOCKCHAIN_DB_H
30 #define BLOCKCHAIN_DB_H
31 
32 #pragma once
33 
34 #include <list>
35 #include <string>
36 #include <exception>
37 #include <boost/program_options.hpp>
38 #include "common/command_line.h"
39 #include "crypto/hash.h"
44 
101 namespace cryptonote
102 {
103 
105 typedef std::pair<crypto::hash, uint64_t> tx_out_index;
106 
110 
111 #pragma pack(push, 1)
112 
117 {
119  uint64_t unlock_time;
120  uint64_t height;
122 };
123 #pragma pack(pop)
124 
125 #pragma pack(push, 1)
126 struct tx_data_t
127 {
128  uint64_t tx_id;
129  uint64_t unlock_time;
130  uint64_t block_id;
131 };
132 #pragma pack(pop)
133 
138 {
141  uint64_t blob_size;
142  uint64_t fee;
145  uint64_t receive_time;
147  // 112 bytes
148  uint8_t kept_by_block;
149  uint8_t relayed;
150  uint8_t do_not_relay;
151 
152  uint8_t padding[77]; // till 192 bytes
153 };
154 
155 #define DBF_SAFE 1
156 #define DBF_FAST 2
157 #define DBF_FASTEST 4
158 #define DBF_RDONLY 8
159 #define DBF_SALVAGE 0x10
160 
161 /***********************************
162  * Exception Definitions
163  ***********************************/
164 
168 class DB_EXCEPTION : public std::exception
169 {
170  private:
171  std::string m;
172 
173  protected:
174  DB_EXCEPTION(const char *s) : m(s) { }
175 
176  public:
177  virtual ~DB_EXCEPTION() { }
178 
179  const char* what() const throw()
180  {
181  return m.c_str();
182  }
183 };
184 
188 class DB_ERROR : public DB_EXCEPTION
189 {
190  public:
191  DB_ERROR() : DB_EXCEPTION("Generic DB Error") { }
192  DB_ERROR(const char* s) : DB_EXCEPTION(s) { }
193 };
194 
199 {
200  public:
201  DB_ERROR_TXN_START() : DB_EXCEPTION("DB Error in starting txn") { }
202  DB_ERROR_TXN_START(const char* s) : DB_EXCEPTION(s) { }
203 };
204 
209 {
210  public:
211  DB_OPEN_FAILURE() : DB_EXCEPTION("Failed to open the db") { }
212  DB_OPEN_FAILURE(const char* s) : DB_EXCEPTION(s) { }
213 };
214 
219 {
220  public:
221  DB_CREATE_FAILURE() : DB_EXCEPTION("Failed to create the db") { }
222  DB_CREATE_FAILURE(const char* s) : DB_EXCEPTION(s) { }
223 };
224 
229 {
230  public:
231  DB_SYNC_FAILURE() : DB_EXCEPTION("Failed to sync the db") { }
232  DB_SYNC_FAILURE(const char* s) : DB_EXCEPTION(s) { }
233 };
234 
238 class BLOCK_DNE : public DB_EXCEPTION
239 {
240  public:
241  BLOCK_DNE() : DB_EXCEPTION("The block requested does not exist") { }
242  BLOCK_DNE(const char* s) : DB_EXCEPTION(s) { }
243 };
244 
249 {
250  public:
251  BLOCK_PARENT_DNE() : DB_EXCEPTION("The parent of the block does not exist") { }
252  BLOCK_PARENT_DNE(const char* s) : DB_EXCEPTION(s) { }
253 };
254 
259 {
260  public:
261  BLOCK_EXISTS() : DB_EXCEPTION("The block to be added already exists!") { }
262  BLOCK_EXISTS(const char* s) : DB_EXCEPTION(s) { }
263 };
264 
269 {
270  public:
271  BLOCK_INVALID() : DB_EXCEPTION("The block to be added did not pass validation!") { }
272  BLOCK_INVALID(const char* s) : DB_EXCEPTION(s) { }
273 };
274 
278 class TX_DNE : public DB_EXCEPTION
279 {
280  public:
281  TX_DNE() : DB_EXCEPTION("The transaction requested does not exist") { }
282  TX_DNE(const char* s) : DB_EXCEPTION(s) { }
283 };
284 
288 class TX_EXISTS : public DB_EXCEPTION
289 {
290  public:
291  TX_EXISTS() : DB_EXCEPTION("The transaction to be added already exists!") { }
292  TX_EXISTS(const char* s) : DB_EXCEPTION(s) { }
293 };
294 
298 class OUTPUT_DNE : public DB_EXCEPTION
299 {
300  public:
301  OUTPUT_DNE() : DB_EXCEPTION("The output requested does not exist!") { }
302  OUTPUT_DNE(const char* s) : DB_EXCEPTION(s) { }
303 };
304 
309 {
310  public:
311  OUTPUT_EXISTS() : DB_EXCEPTION("The output to be added already exists!") { }
312  OUTPUT_EXISTS(const char* s) : DB_EXCEPTION(s) { }
313 };
314 
319 {
320  public:
321  KEY_IMAGE_EXISTS() : DB_EXCEPTION("The spent key image to be added already exists!") { }
322  KEY_IMAGE_EXISTS(const char* s) : DB_EXCEPTION(s) { }
323 };
324 
325 /***********************************
326  * End of Exception Definitions
327  ***********************************/
328 
329 
343 {
344 private:
345  /*********************************************************************
346  * private virtual members
347  *********************************************************************/
348 
365  virtual void add_block( const block& blk
366  , const size_t& block_size
367  , const difficulty_type& cumulative_difficulty
368  , const uint64_t& coins_generated
369  , const crypto::hash& blk_hash
370  ) = 0;
371 
382  virtual void remove_block() = 0;
383 
403  virtual uint64_t add_transaction_data(const crypto::hash& blk_hash, const transaction& tx, const crypto::hash& tx_hash) = 0;
404 
421  virtual void remove_transaction_data(const crypto::hash& tx_hash, const transaction& tx) = 0;
422 
449  virtual uint64_t add_output(const crypto::hash& tx_hash, const tx_out& tx_output, const uint64_t& local_index, const uint64_t unlock_time, const rct::key *commitment) = 0;
450 
464  virtual void add_tx_amount_output_indices(const uint64_t tx_id, const std::vector<uint64_t>& amount_output_indices) = 0;
465 
476  virtual void add_spent_key(const crypto::key_image& k_image) = 0;
477 
488  virtual void remove_spent_key(const crypto::key_image& k_image) = 0;
489 
490 
491  /*********************************************************************
492  * private concrete members
493  *********************************************************************/
500  void pop_block();
501 
502  // helper function to remove transaction from blockchain
510  void remove_transaction(const crypto::hash& tx_hash);
511 
512  uint64_t num_calls = 0;
513  uint64_t time_blk_hash = 0;
514  uint64_t time_add_block1 = 0;
515  uint64_t time_add_transaction = 0;
516 
517 
518 protected:
519 
530  void add_transaction(const crypto::hash& blk_hash, const transaction& tx, const crypto::hash* tx_hash_ptr = NULL);
531 
532  mutable uint64_t time_tx_exists = 0;
533  uint64_t time_commit1 = 0;
534  bool m_auto_remove_logs = true;
535 
537 
538 public:
539 
543  virtual ~BlockchainDB() { };
544 
548  static void init_options(boost::program_options::options_description& desc);
549 
553  void reset_stats();
554 
561  void show_stats();
562 
586  virtual void open(const std::string& filename, const int db_flags = 0) = 0;
587 
593  bool is_open() const;
594 
605  virtual void close() = 0;
606 
618  virtual void sync() = 0;
619 
625  virtual void safesyncmode(const bool onoff) = 0;
626 
637  virtual void reset() = 0;
638 
648  virtual std::vector<std::string> get_filenames() const = 0;
649 
650  // return the name of the folder the db's file(s) should reside in
659  virtual std::string get_db_name() const = 0;
660 
661 
662  // FIXME: these are just for functionality mocking, need to implement
663  // RAII-friendly and multi-read one-write friendly locking mechanism
664  //
665  // acquire db lock
681  virtual bool lock() = 0;
682 
683  // release db lock
694  virtual void unlock() = 0;
695 
715  virtual bool batch_start(uint64_t batch_num_blocks=0, uint64_t batch_bytes=0) = 0;
716 
730  virtual void batch_stop() = 0;
731 
747  virtual void set_batch_transactions(bool) = 0;
748 
749  virtual void block_txn_start(bool readonly=false) = 0;
750  virtual void block_txn_stop() = 0;
751  virtual void block_txn_abort() = 0;
752 
753  virtual void set_hard_fork(HardFork* hf);
754 
755  // adds a block with the given metadata to the top of the blockchain, returns the new height
776  virtual uint64_t add_block( const block& blk
777  , const size_t& block_size
778  , const difficulty_type& cumulative_difficulty
779  , const uint64_t& coins_generated
780  , const std::vector<transaction>& txs
781  );
782 
791  virtual bool block_exists(const crypto::hash& h, uint64_t *height = NULL) const = 0;
792 
804  virtual cryptonote::blobdata get_block_blob(const crypto::hash& h) const = 0;
805 
817  virtual block get_block(const crypto::hash& h) const;
818 
830  virtual uint64_t get_block_height(const crypto::hash& h) const = 0;
831 
844  virtual block_header get_block_header(const crypto::hash& h) const = 0;
845 
858  virtual cryptonote::blobdata get_block_blob_from_height(const uint64_t& height) const = 0;
859 
870  virtual block get_block_from_height(const uint64_t& height) const;
871 
884  virtual uint64_t get_block_timestamp(const uint64_t& height) const = 0;
885 
893  virtual uint64_t get_top_block_timestamp() const = 0;
894 
907  virtual size_t get_block_size(const uint64_t& height) const = 0;
908 
921  virtual void set_block_cumulative_difficulty(uint64_t height, difficulty_type diff) = 0;
922 
935  virtual difficulty_type get_block_cumulative_difficulty(const uint64_t& height) const = 0;
936 
949  virtual difficulty_type get_block_difficulty(const uint64_t& height) const = 0;
950 
963  virtual uint64_t get_block_already_generated_coins(const uint64_t& height) const = 0;
964 
977  virtual crypto::hash get_block_hash_from_height(const uint64_t& height) const = 0;
978 
994  virtual std::vector<block> get_blocks_range(const uint64_t& h1, const uint64_t& h2) const = 0;
995 
1011  virtual std::vector<crypto::hash> get_hashes_range(const uint64_t& h1, const uint64_t& h2) const = 0;
1012 
1020  virtual crypto::hash top_block_hash() const = 0;
1021 
1029  virtual block get_top_block() const = 0;
1030 
1038  virtual uint64_t height() const = 0;
1039 
1040 
1061  virtual void pop_block(block& blk, std::vector<transaction>& txs);
1062 
1063 
1075  virtual bool tx_exists(const crypto::hash& h) const = 0;
1076  virtual bool tx_exists(const crypto::hash& h, uint64_t& tx_id) const = 0;
1077 
1078  // return unlock time of tx with hash <h>
1091  virtual uint64_t get_tx_unlock_time(const crypto::hash& h) const = 0;
1092 
1093  // return tx with hash <h>
1094  // throw if no such tx exists
1104  virtual transaction get_tx(const crypto::hash& h) const;
1105 
1115  virtual bool get_tx(const crypto::hash& h, transaction &tx) const;
1116 
1129  virtual bool get_tx_blob(const crypto::hash& h, cryptonote::blobdata &tx) const = 0;
1130 
1139  virtual uint64_t get_tx_count() const = 0;
1140 
1156  virtual std::vector<transaction> get_tx_list(const std::vector<crypto::hash>& hlist) const = 0;
1157 
1158  // returns height of block that contains transaction with hash <h>
1171  virtual uint64_t get_tx_block_height(const crypto::hash& h) const = 0;
1172 
1173  // returns the total number of outputs of amount <amount>
1187  virtual uint64_t get_num_outputs(const uint64_t& amount) const = 0;
1188 
1194  virtual uint64_t get_indexing_base() const { return 0; }
1195 
1212  virtual output_data_t get_output_key(const uint64_t& amount, const uint64_t& index) = 0;
1213 
1229  virtual output_data_t get_output_key(const uint64_t& global_index) const = 0;
1230 
1241  virtual tx_out_index get_output_tx_and_index_from_global(const uint64_t& index) const = 0;
1242 
1255  virtual tx_out_index get_output_tx_and_index(const uint64_t& amount, const uint64_t& index) const = 0;
1256 
1268  virtual void get_output_tx_and_index(const uint64_t& amount, const std::vector<uint64_t> &offsets, std::vector<tx_out_index> &indices) const = 0;
1269 
1281  virtual void get_output_key(const uint64_t &amount, const std::vector<uint64_t> &offsets, std::vector<output_data_t> &outputs, bool allow_partial = false) = 0;
1282 
1283  /*
1284  * FIXME: Need to check with git blame and ask what this does to
1285  * document it
1286  */
1287  virtual bool can_thread_bulk_indices() const = 0;
1288 
1303  virtual std::vector<uint64_t> get_tx_amount_output_indices(const uint64_t tx_id) const = 0;
1304 
1312  virtual bool has_key_image(const crypto::key_image& img) const = 0;
1313 
1319  virtual void add_txpool_tx(const transaction &tx, const txpool_tx_meta_t& details) = 0;
1320 
1327  virtual void update_txpool_tx(const crypto::hash &txid, const txpool_tx_meta_t& details) = 0;
1328 
1332  virtual uint64_t get_txpool_tx_count() const = 0;
1333 
1337  virtual bool txpool_has_tx(const crypto::hash &txid) const = 0;
1338 
1344  virtual void remove_txpool_tx(const crypto::hash& txid) = 0;
1345 
1354  virtual bool get_txpool_tx_meta(const crypto::hash& txid, txpool_tx_meta_t &meta) const = 0;
1355 
1364  virtual bool get_txpool_tx_blob(const crypto::hash& txid, cryptonote::blobdata &bd) const = 0;
1365 
1373  virtual cryptonote::blobdata get_txpool_tx_blob(const crypto::hash& txid) const = 0;
1374 
1388  virtual bool for_all_txpool_txes(std::function<bool(const crypto::hash&, const txpool_tx_meta_t&, const cryptonote::blobdata*)>, bool include_blob = false) const = 0;
1389 
1403  virtual bool for_all_key_images(std::function<bool(const crypto::key_image&)>) const = 0;
1404 
1423  virtual bool for_blocks_range(const uint64_t& h1, const uint64_t& h2, std::function<bool(uint64_t, const crypto::hash&, const cryptonote::block&)>) const = 0;
1424 
1441  virtual bool for_all_transactions(std::function<bool(const crypto::hash&, const cryptonote::transaction&)>) const = 0;
1442 
1460  virtual bool for_all_outputs(std::function<bool(uint64_t amount, const crypto::hash &tx_hash, size_t tx_idx)> f) const = 0;
1461 
1462 
1463  //
1464  // Hard fork related storage
1465  //
1466 
1473  virtual void set_hard_fork_version(uint64_t height, uint8_t version) = 0;
1474 
1482  virtual uint8_t get_hard_fork_version(uint64_t height) const = 0;
1483 
1484  virtual void set_validator_list(std::string, uint32_t expiration_date) = 0;
1485 
1486  virtual std::string get_validator_list() const = 0;
1487 
1491  virtual void check_hard_fork_info() = 0;
1492 
1496  virtual void drop_hard_fork_info() = 0;
1497 
1507  virtual std::map<uint64_t, std::tuple<uint64_t, uint64_t, uint64_t>> get_output_histogram(const std::vector<uint64_t> &amounts, bool unlocked, uint64_t recent_cutoff) const = 0;
1508 
1514  virtual bool is_read_only() const = 0;
1515 
1524  void set_auto_remove_logs(bool auto_remove) { m_auto_remove_logs = auto_remove; }
1525 
1526  bool m_open;
1527  mutable epee::critical_section m_synchronization_lock;
1528 
1529 }; // class BlockchainDB
1530 
1531 BlockchainDB *new_db(const std::string& db_type);
1532 
1533 } // namespace cryptonote
1534 
1535 #endif // BLOCKCHAIN_DB_H
DB_SYNC_FAILURE(const char *s)
Definition: blockchain_db.h:232
thrown when creating the BlockchainDB fails
Definition: blockchain_db.h:218
uint64_t tx_id
Definition: blockchain_db.h:128
DB_CREATE_FAILURE(const char *s)
Definition: blockchain_db.h:222
virtual void reset()=0
Remove everything from the BlockchainDB.
virtual std::string get_db_name() const =0
gets the name of the folder the BlockchainDB&#39;s file(s) should be in
Definition: blockchain_db.h:126
void reset_stats()
reset profiling stats
Definition: blockchain_db.cpp:302
OUTPUT_EXISTS(const char *s)
Definition: blockchain_db.h:312
virtual uint64_t get_indexing_base() const
return index of the first element (should be hidden, but isn&#39;t)
Definition: blockchain_db.h:1194
const char * what() const
Definition: blockchain_db.h:179
virtual void set_validator_list(std::string, uint32_t expiration_date)=0
virtual uint64_t add_output(const crypto::hash &tx_hash, const tx_out &tx_output, const uint64_t &local_index, const uint64_t unlock_time, const rct::key *commitment)=0
store an output
void pop_block()
private version of pop_block, for undoing if an add_block fails
Definition: blockchain_db.cpp:117
thrown when a transaction exists, but shouldn&#39;t, namely when adding a block
Definition: blockchain_db.h:288
virtual bool has_key_image(const crypto::key_image &img) const =0
check if a key image is stored as spent
virtual std::vector< uint64_t > get_tx_amount_output_indices(const uint64_t tx_id) const =0
gets output indices (amount-specific) for a transaction&#39;s outputs
thrown when opening the BlockchainDB fails
Definition: blockchain_db.h:208
virtual std::string get_validator_list() const =0
virtual void drop_hard_fork_info()=0
delete hard fork info from database
DB_ERROR()
Definition: blockchain_db.h:191
thrown when a spent key image exists, but shouldn&#39;t, namely when adding a block
Definition: blockchain_db.h:318
virtual crypto::hash get_block_hash_from_height(const uint64_t &height) const =0
fetch a block&#39;s hash
crypto::hash max_used_block_id
Definition: blockchain_db.h:139
DB_ERROR(const char *s)
Definition: blockchain_db.h:192
virtual uint64_t get_tx_count() const =0
fetches the total number of transactions ever
virtual uint64_t get_tx_block_height(const crypto::hash &h) const =0
fetches the height of a transaction&#39;s block
virtual uint64_t get_block_height(const crypto::hash &h) const =0
gets the height of the block with a given hash
Definition: cryptonote_basic.h:382
Definition: cryptonote_basic.h:365
virtual void add_tx_amount_output_indices(const uint64_t tx_id, const std::vector< uint64_t > &amount_output_indices)=0
store amount output indices for a tx&#39;s outputs
A base class for BlockchainDB exceptions.
Definition: blockchain_db.h:168
virtual std::vector< transaction > get_tx_list(const std::vector< crypto::hash > &hlist) const =0
fetches a list of transactions based on their hashes
virtual difficulty_type get_block_cumulative_difficulty(const uint64_t &height) const =0
fetch a block&#39;s cumulative difficulty
virtual void safesyncmode(const bool onoff)=0
toggle safe syncs for the DB
virtual void add_block(const block &blk, const size_t &block_size, const difficulty_type &cumulative_difficulty, const uint64_t &coins_generated, const crypto::hash &blk_hash)=0
add the block and metadata to the db
uint64_t blob_size
Definition: blockchain_db.h:141
thrown when a requested block does not exist
Definition: blockchain_db.h:238
const command_line::arg_descriptor< std::string > arg_db_sync_mode
Definition: blockchain_db.cpp:88
uint8_t do_not_relay
Definition: blockchain_db.h:150
virtual void unlock()=0
This function releases the BlockchainDB lock.
Definition: hardfork.h:39
DB_ERROR_TXN_START(const char *s)
Definition: blockchain_db.h:202
BLOCK_EXISTS(const char *s)
Definition: blockchain_db.h:262
virtual void set_hard_fork_version(uint64_t height, uint8_t version)=0
sets which hardfork version a height is on
virtual void add_spent_key(const crypto::key_image &k_image)=0
store a spent key
thrown when an output exists, but shouldn&#39;t, namely when adding a block
Definition: blockchain_db.h:308
virtual void remove_transaction_data(const crypto::hash &tx_hash, const transaction &tx)=0
remove data about a transaction
BLOCK_DNE()
Definition: blockchain_db.h:241
virtual transaction get_tx(const crypto::hash &h) const
fetches the transaction with the given hash
Definition: blockchain_db.cpp:294
virtual bool batch_start(uint64_t batch_num_blocks=0, uint64_t batch_bytes=0)=0
tells the BlockchainDB to start a new "batch" of blocks
uint64_t block_id
Definition: blockchain_db.h:130
virtual void sync()=0
sync the BlockchainDB with disk
virtual void remove_spent_key(const crypto::key_image &k_image)=0
remove a spent key
BLOCK_PARENT_DNE()
Definition: blockchain_db.h:251
virtual std::map< uint64_t, std::tuple< uint64_t, uint64_t, uint64_t > > get_output_histogram(const std::vector< uint64_t > &amounts, bool unlocked, uint64_t recent_cutoff) const =0
return a histogram of outputs on the blockchain
A generic BlockchainDB exception.
Definition: blockchain_db.h:188
virtual bool get_txpool_tx_blob(const crypto::hash &txid, cryptonote::blobdata &bd) const =0
get a txpool transaction&#39;s blob
uint64_t receive_time
Definition: blockchain_db.h:145
virtual crypto::hash top_block_hash() const =0
fetch the top block&#39;s hash
virtual std::vector< crypto::hash > get_hashes_range(const uint64_t &h1, const uint64_t &h2) const =0
fetch a list of block hashes
uint64_t num_calls
a performance metric
Definition: blockchain_db.h:512
virtual bool lock()=0
acquires the BlockchainDB lock
virtual bool for_all_transactions(std::function< bool(const crypto::hash &, const cryptonote::transaction &)>) const =0
runs a function over all transactions stored
KEY_IMAGE_EXISTS()
Definition: blockchain_db.h:321
TX_EXISTS()
Definition: blockchain_db.h:291
Holds cryptonote related classes and helpers.
Definition: db_bdb.cpp:225
virtual uint64_t get_block_already_generated_coins(const uint64_t &height) const =0
fetch a block&#39;s already generated coins
uint64_t fee
Definition: blockchain_db.h:142
virtual void block_txn_abort()=0
virtual void set_hard_fork(HardFork *hf)
Definition: blockchain_db.cpp:223
BLOCK_INVALID()
Definition: blockchain_db.h:271
virtual uint64_t get_top_block_timestamp() const =0
fetch the top block&#39;s timestamp
BlockchainDB * new_db(const std::string &db_type)
Definition: blockchain_db.cpp:99
virtual uint64_t height() const =0
fetch the current blockchain height
void add_transaction(const crypto::hash &blk_hash, const transaction &tx, const crypto::hash *tx_hash_ptr=NULL)
helper function for add_transactions, to add each individual transaction
Definition: blockchain_db.cpp:124
virtual ~BlockchainDB()
An empty destructor.
Definition: blockchain_db.h:543
virtual void close()=0
close the BlockchainDB
virtual void remove_txpool_tx(const crypto::hash &txid)=0
remove a txpool transaction
uint64_t time_add_transaction
a performance metric
Definition: blockchain_db.h:515
virtual bool tx_exists(const crypto::hash &h) const =0
check if a transaction with a given hash exists
virtual cryptonote::blobdata get_block_blob(const crypto::hash &h) const =0
fetches the block with the given hash
DB_OPEN_FAILURE(const char *s)
Definition: blockchain_db.h:212
virtual void set_batch_transactions(bool)=0
sets whether or not to batch transactions
bool is_open() const
Gets the current open/ready state of the BlockchainDB.
Definition: blockchain_db.cpp:242
crypto::public_key pubkey
the output&#39;s public key (for spend verification)
Definition: blockchain_db.h:118
uint64_t last_failed_height
Definition: blockchain_db.h:144
void set_auto_remove_logs(bool auto_remove)
set whether or not to automatically remove logs
Definition: blockchain_db.h:1524
Definition: rctTypes.h:82
virtual bool for_all_txpool_txes(std::function< bool(const crypto::hash &, const txpool_tx_meta_t &, const cryptonote::blobdata *)>, bool include_blob=false) const =0
runs a function over all txpool transactions
uint64_t last_relayed_time
Definition: blockchain_db.h:146
uint64_t unlock_time
Definition: blockchain_db.h:129
uint64_t height
the height of the block which created the output
Definition: blockchain_db.h:120
std::string m
Definition: blockchain_db.h:171
virtual uint64_t get_block_timestamp(const uint64_t &height) const =0
fetch a block&#39;s timestamp
thrown when there is an error starting a DB transaction
Definition: blockchain_db.h:198
virtual void block_txn_start(bool readonly=false)=0
virtual block get_block_from_height(const uint64_t &height) const
fetch a block by height
Definition: blockchain_db.cpp:263
virtual bool txpool_has_tx(const crypto::hash &txid) const =0
check whether a txid is in the txpool
virtual uint64_t add_transaction_data(const crypto::hash &blk_hash, const transaction &tx, const crypto::hash &tx_hash)=0
store the transaction and its metadata
const command_line::arg_descriptor< std::string > arg_db_type
Definition: blockchain_db.cpp:83
POD_CLASS public_key
Definition: crypto.h:65
virtual uint64_t get_tx_unlock_time(const crypto::hash &h) const =0
fetch a transaction&#39;s unlock time/height
virtual uint64_t get_num_outputs(const uint64_t &amount) const =0
fetches the number of outputs of a given amount
rct::key commitment
the output&#39;s amount commitment (for spend verification)
Definition: blockchain_db.h:121
virtual void batch_stop()=0
ends a batch transaction
DB_OPEN_FAILURE()
Definition: blockchain_db.h:211
virtual output_data_t get_output_key(const uint64_t &amount, const uint64_t &index)=0
get some of an output&#39;s data
virtual bool for_blocks_range(const uint64_t &h1, const uint64_t &h2, std::function< bool(uint64_t, const crypto::hash &, const cryptonote::block &)>) const =0
runs a function over a range of blocks
uint8_t version
Definition: blockchain.cpp:86
virtual ~DB_EXCEPTION()
Definition: blockchain_db.h:177
std::string blobdata
Definition: blobdatatype.h:36
thrown when a requested transaction does not exist
Definition: blockchain_db.h:278
uint64_t max_used_block_height
Definition: blockchain_db.h:143
BLOCK_DNE(const char *s)
Definition: blockchain_db.h:242
OUTPUT_EXISTS()
Definition: blockchain_db.h:311
virtual bool can_thread_bulk_indices() const =0
OUTPUT_DNE(const char *s)
Definition: blockchain_db.h:302
DB_EXCEPTION(const char *s)
Definition: blockchain_db.h:174
virtual void open(const std::string &filename, const int db_flags=0)=0
open a db, or create it if necessary.
KEY_IMAGE_EXISTS(const char *s)
Definition: blockchain_db.h:322
virtual void remove_block()=0
remove data about the top block
BLOCK_INVALID(const char *s)
Definition: blockchain_db.h:272
std::uint64_t difficulty_type
Definition: difficulty.h:41
void remove_transaction(const crypto::hash &tx_hash)
helper function to remove transaction from the blockchain
Definition: blockchain_db.cpp:247
virtual uint64_t get_txpool_tx_count() const =0
get the number of transactions in the txpool
static void init_options(boost::program_options::options_description &desc)
init command line options
Definition: blockchain_db.cpp:110
virtual void set_block_cumulative_difficulty(uint64_t height, difficulty_type diff)=0
sets a block&#39;s cumulative difficulty
virtual bool get_tx_blob(const crypto::hash &h, cryptonote::blobdata &tx) const =0
fetches the transaction blob with the given hash
POD_CLASS key_image
Definition: crypto.h:93
a struct containing txpool per transaction metadata
Definition: blockchain_db.h:137
DB_SYNC_FAILURE()
Definition: blockchain_db.h:231
TX_DNE(const char *s)
Definition: blockchain_db.h:282
TX_DNE()
Definition: blockchain_db.h:281
thrown when a block&#39;s parent does not exist (and it needed to)
Definition: blockchain_db.h:248
crypto::hash last_failed_id
Definition: blockchain_db.h:140
void show_stats()
show profiling stats
Definition: blockchain_db.cpp:312
bool m_auto_remove_logs
whether or not to automatically remove old logs
Definition: blockchain_db.h:534
DB_CREATE_FAILURE()
Definition: blockchain_db.h:221
virtual void add_txpool_tx(const transaction &tx, const txpool_tx_meta_t &details)=0
add a txpool transaction
TX_EXISTS(const char *s)
Definition: blockchain_db.h:292
const command_line::arg_descriptor< bool > arg_db_salvage
Definition: blockchain_db.cpp:93
virtual void check_hard_fork_info()=0
verify hard fork info in database
epee::critical_section m_synchronization_lock
A lock, currently for when BlockchainLMDB needs to resize the backing db file.
Definition: blockchain_db.h:1527
The BlockchainDB backing store interface declaration/contract.
Definition: blockchain_db.h:342
virtual bool for_all_key_images(std::function< bool(const crypto::key_image &)>) const =0
runs a function over all key images stored
virtual block_header get_block_header(const crypto::hash &h) const =0
fetch a block header
HardFork * m_hardfork
Definition: blockchain_db.h:536
virtual bool get_txpool_tx_meta(const crypto::hash &txid, txpool_tx_meta_t &meta) const =0
get a txpool transaction&#39;s metadata
uint64_t time_tx_exists
a performance metric
Definition: blockchain_db.h:532
uint8_t kept_by_block
Definition: blockchain_db.h:148
virtual difficulty_type get_block_difficulty(const uint64_t &height) const =0
fetch a block&#39;s difficulty
uint64_t time_blk_hash
a performance metric
Definition: blockchain_db.h:513
POD_CLASS hash
Definition: hash.h:46
virtual block get_block(const crypto::hash &h) const
fetches the block with the given hash
Definition: blockchain_db.cpp:273
virtual cryptonote::blobdata get_block_blob_from_height(const uint64_t &height) const =0
fetch a block blob by height
std::pair< crypto::hash, uint64_t > tx_out_index
Definition: blockchain_db.h:105
virtual bool block_exists(const crypto::hash &h, uint64_t *height=NULL) const =0
checks if a block exists
uint64_t time_add_block1
a performance metric
Definition: blockchain_db.h:514
uint8_t relayed
Definition: blockchain_db.h:149
virtual size_t get_block_size(const uint64_t &height) const =0
fetch a block&#39;s size
virtual void update_txpool_tx(const crypto::hash &txid, const txpool_tx_meta_t &details)=0
update a txpool transaction&#39;s metadata
virtual std::vector< std::string > get_filenames() const =0
get all files used by the BlockchainDB (if any)
OUTPUT_DNE()
Definition: blockchain_db.h:301
Definition: cryptonote_basic.h:149
BLOCK_PARENT_DNE(const char *s)
Definition: blockchain_db.h:252
uint8_t padding[77]
Definition: blockchain_db.h:152
uint64_t unlock_time
the output&#39;s unlock time (or height)
Definition: blockchain_db.h:119
thrown when a requested output does not exist
Definition: blockchain_db.h:298
thrown when a block exists, but shouldn&#39;t, namely when adding a block
Definition: blockchain_db.h:258
thrown when something is wrong with the block to be added
Definition: blockchain_db.h:268
virtual tx_out_index get_output_tx_and_index_from_global(const uint64_t &index) const =0
gets an output&#39;s tx hash and index
thrown when synchronizing the BlockchainDB to disk fails
Definition: blockchain_db.h:228
virtual block get_top_block() const =0
fetch the top block
a struct containing output metadata
Definition: blockchain_db.h:116
Definition: cryptonote_basic.h:198
virtual bool is_read_only() const =0
is BlockchainDB in read-only mode?
virtual std::vector< block > get_blocks_range(const uint64_t &h1, const uint64_t &h2) const =0
fetch a list of blocks
#define s(x, c)
Definition: aesb.c:46
virtual tx_out_index get_output_tx_and_index(const uint64_t &amount, const uint64_t &index) const =0
gets an output&#39;s tx hash and index
bool m_open
Whether or not the BlockchainDB is open/ready for use.
Definition: blockchain_db.h:1526
BLOCK_EXISTS()
Definition: blockchain_db.h:261
virtual void block_txn_stop()=0
uint64_t time_commit1
a performance metric
Definition: blockchain_db.h:533
virtual bool for_all_outputs(std::function< bool(uint64_t amount, const crypto::hash &tx_hash, size_t tx_idx)> f) const =0
runs a function over all outputs stored
virtual uint8_t get_hard_fork_version(uint64_t height) const =0
checks which hardfork version a height is on
DB_ERROR_TXN_START()
Definition: blockchain_db.h:201