aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_core
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-02-04 18:09:45 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-02-04 18:09:45 +0000
commit05bfb51d3ec548695af15fb6d4178e298c696425 (patch)
treea0064f96b563f85cf03ad539ac95c1abf2e0ae61 /src/cryptonote_core
parentMerge pull request #636 (diff)
downloadmonero-05bfb51d3ec548695af15fb6d4178e298c696425.tar.xz
core: move the db lock to the data directory
Locking just one db turns out to not have been a good idea, since the pool and p2p state fdles have to be used anyway. Also ensure the directory exists before tring to lock.
Diffstat (limited to 'src/cryptonote_core')
-rw-r--r--src/cryptonote_core/cryptonote_core.cpp18
1 files changed, 10 insertions, 8 deletions
diff --git a/src/cryptonote_core/cryptonote_core.cpp b/src/cryptonote_core/cryptonote_core.cpp
index 8d50e8bfd..2479931be 100644
--- a/src/cryptonote_core/cryptonote_core.cpp
+++ b/src/cryptonote_core/cryptonote_core.cpp
@@ -267,7 +267,16 @@ namespace cryptonote
boost::filesystem::path folder(m_config_folder);
if (m_fakechain)
folder /= "fake";
- //
+
+ // make sure the data directory exists, and try to lock it
+ CHECK_AND_ASSERT_MES (boost::filesystem::exists(folder) || boost::filesystem::create_directories(folder), false,
+ std::string("Failed to create directory ").append(folder.string()).c_str());
+ if (!lock_db_directory (folder))
+ {
+ LOG_ERROR ("Failed to lock " << folder);
+ return false;
+ }
+
// check for blockchain.bin
try
{
@@ -313,13 +322,6 @@ namespace cryptonote
folder /= db->get_db_name();
LOG_PRINT_L0("Loading blockchain from folder " << folder.string() << " ...");
- if (!lock_db_directory (folder))
- {
- LOG_ERROR ("Failed to lock " << folder);
- delete db;
- return false;
- }
-
const std::string filename = folder.string();
// temporarily default to fastest:async:1000
blockchain_db_sync_mode sync_mode = db_async;