Skip to content

Commit

Permalink
logdvmstate flush DB to disk (#3083)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bushstar committed Oct 4, 2024
1 parent 898b86a commit 290f266
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions src/dfi/rpc_accounts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3300,22 +3300,23 @@ UniValue logdvmstate(const JSONRPCRequest &request) {
}
.Check(request);

const auto fileSize = request.params[0].isNull() ? 1 : request.params[0].get_int64();
if (fileSize <= 0) {
throw JSONRPCError(RPC_INVALID_PARAMETER, "Size must be more then zero");
}

LOCK(cs_main);

// Flush any pending changes to the DB. Not always written to disk.
pcustomcsview->Flush();
pcustomcsDB->Flush();

// Get the CDBWrapper instance from CCustomCSView
auto db = pcustomcsview->GetStorage().GetStorageLevelDB()->GetDB();

// Create a CDBIterator
auto pcursor = db->NewIterator(leveldb::ReadOptions());

const auto fileSize = request.params[0].isNull() ? 1 : request.params[0].get_int64();
if (fileSize <= 0) {
throw JSONRPCError(RPC_INVALID_PARAMETER, "Size must be more then zero");
}

const size_t MAX_FILE_SIZE = fileSize * 1024 * 1048576; // 1MB = 1048576 bytes

fs::path dumpsDir = GetDataDir() / "dumps";
Expand Down Expand Up @@ -3358,6 +3359,10 @@ UniValue logdvmstate(const JSONRPCRequest &request) {

// Iterate over all key-value pairs
while (pcursor->Valid()) {
if (ShutdownRequested()) {
break;
}

// Get the key and value slices
auto keySlice = pcursor->GetKey();
auto valueSlice = pcursor->GetValue();
Expand Down

0 comments on commit 290f266

Please sign in to comment.