mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-20 10:38:42 +01:00
dbwrapper: Use DataStream for batch operations
This commit is contained in:
parent
fd69ffbbfb
commit
5c2b3cd4b8
@ -4,7 +4,6 @@
|
||||
|
||||
#include <dbwrapper.h>
|
||||
|
||||
#include <clientversion.h>
|
||||
#include <logging.h>
|
||||
#include <random.h>
|
||||
#include <serialize.h>
|
||||
@ -156,9 +155,9 @@ struct CDBBatch::WriteBatchImpl {
|
||||
leveldb::WriteBatch batch;
|
||||
};
|
||||
|
||||
CDBBatch::CDBBatch(const CDBWrapper& _parent) : parent(_parent),
|
||||
m_impl_batch{std::make_unique<CDBBatch::WriteBatchImpl>()},
|
||||
ssValue(SER_DISK, CLIENT_VERSION){};
|
||||
CDBBatch::CDBBatch(const CDBWrapper& _parent)
|
||||
: parent{_parent},
|
||||
m_impl_batch{std::make_unique<CDBBatch::WriteBatchImpl>()} {};
|
||||
|
||||
CDBBatch::~CDBBatch() = default;
|
||||
|
||||
@ -168,7 +167,7 @@ void CDBBatch::Clear()
|
||||
size_estimate = 0;
|
||||
}
|
||||
|
||||
void CDBBatch::WriteImpl(Span<const std::byte> key, CDataStream& ssValue)
|
||||
void CDBBatch::WriteImpl(Span<const std::byte> key, DataStream& ssValue)
|
||||
{
|
||||
leveldb::Slice slKey(CharCast(key.data()), key.size());
|
||||
ssValue.Xor(dbwrapper_private::GetObfuscateKey(parent));
|
||||
|
@ -80,11 +80,11 @@ private:
|
||||
const std::unique_ptr<WriteBatchImpl> m_impl_batch;
|
||||
|
||||
DataStream ssKey{};
|
||||
CDataStream ssValue;
|
||||
DataStream ssValue{};
|
||||
|
||||
size_t size_estimate{0};
|
||||
|
||||
void WriteImpl(Span<const std::byte> key, CDataStream& ssValue);
|
||||
void WriteImpl(Span<const std::byte> key, DataStream& ssValue);
|
||||
void EraseImpl(Span<const std::byte> key);
|
||||
|
||||
public:
|
||||
|
Loading…
Reference in New Issue
Block a user