diff options
author | Thomas Winget <tewinget@gmail.com> | 2015-03-13 21:39:27 -0400 |
---|---|---|
committer | Thomas Winget <tewinget@gmail.com> | 2015-03-13 21:39:27 -0400 |
commit | eee3ee70730bc3bf7874e5f22139a55dac3a2cdd (patch) | |
tree | e36c6344d008e2112d3593ff318ca6733f3b6e50 /src/blockchain_db/blockchain_db.h | |
parent | Fixed includes in BlockchainDB unit tests (diff) | |
download | monero-eee3ee70730bc3bf7874e5f22139a55dac3a2cdd.tar.xz |
BlockchainDB implementations have names now
In order to make things more general, BlockchainDB now has get_db_name()
which should return a string with the "name" of that type of db.
This "name" will be the subfolder name that holds that db type's files
within the monero folder.
Small bugfix: blockchain_converter was not correctly appending this in
the prior hard-coded-string implementation of the subfolder data
directory concept.
Diffstat (limited to 'src/blockchain_db/blockchain_db.h')
-rw-r--r-- | src/blockchain_db/blockchain_db.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/blockchain_db/blockchain_db.h b/src/blockchain_db/blockchain_db.h index 2a7fa8f82..d2b4a07a7 100644 --- a/src/blockchain_db/blockchain_db.h +++ b/src/blockchain_db/blockchain_db.h @@ -343,6 +343,9 @@ public: // get all files used by this db (if any) virtual std::vector<std::string> get_filenames() const = 0; + // return the name of the folder the db's file(s) should reside in + virtual std::string get_db_name() const = 0; + // FIXME: these are just for functionality mocking, need to implement // RAII-friendly and multi-read one-write friendly locking mechanism |