mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
STVar: optimized storage for STObject (RIPD-825):
This introduces the STVar container, capable of holding any STBase-derived class and implementing a "small string" optimization. STObject is changed to store std::vector<STVar> instead of boost::ptr_vector<STBase>. This eliminates a significant number of needless dynamic memory allocations and deallocations during transaction processing when ledger entries are deserialized. It comes at the expense of larger overall storage requirements for STObject.
This commit is contained in:
@@ -44,9 +44,19 @@ public:
|
||||
{
|
||||
;
|
||||
}
|
||||
static std::unique_ptr<STBase> deserialize (SerialIter& sit, SField::ref name)
|
||||
|
||||
STAccount (SerialIter& sit, SField::ref name);
|
||||
|
||||
STBase*
|
||||
copy (std::size_t n, void* buf) const override
|
||||
{
|
||||
return std::unique_ptr<STBase> (construct (sit, name));
|
||||
return emplace(n, buf, *this);
|
||||
}
|
||||
|
||||
STBase*
|
||||
move (std::size_t n, void* buf) override
|
||||
{
|
||||
return emplace(n, buf, std::move(*this));
|
||||
}
|
||||
|
||||
SerializedTypeID getSType () const override
|
||||
@@ -76,12 +86,6 @@ public:
|
||||
|
||||
bool isValueH160 () const;
|
||||
|
||||
std::unique_ptr<STBase>
|
||||
duplicate () const override
|
||||
{
|
||||
return std::make_unique<STAccount>(*this);
|
||||
}
|
||||
|
||||
private:
|
||||
static STAccount* construct (SerialIter&, SField::ref);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user