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:
Vinnie Falco
2015-03-19 16:17:35 -07:00
parent 4c5308da8d
commit 99c2fac143
30 changed files with 956 additions and 748 deletions

View File

@@ -26,7 +26,8 @@
#include <beast/cxx14/memory.h> // <memory>
#include <string>
#include <typeinfo>
#include <utility>
#include <beast/cxx14/type_traits.h> // <type_traits>
namespace ripple {
// VFALCO TODO fix this restriction on copy assignment.
@@ -70,6 +71,20 @@ public:
bool operator== (const STBase& t) const;
bool operator!= (const STBase& t) const;
virtual
STBase*
copy (std::size_t n, void* buf) const
{
return emplace(n, buf, *this);
}
virtual
STBase*
move (std::size_t n, void* buf)
{
return emplace(n, buf, std::move(*this));
}
template <class D>
D&
downcast()
@@ -130,27 +145,23 @@ public:
void
addFieldID (Serializer& s) const;
static
std::unique_ptr <STBase>
deserialize (SField::ref name);
virtual
std::unique_ptr<STBase>
duplicate () const
{
return std::make_unique<STBase>(*fName);
}
protected:
SField::ptr fName;
template <class T>
static
STBase*
emplace(std::size_t n, void* buf, T&& val)
{
using U = std::decay_t<T>;
if (sizeof(U) > n)
return new U(std::forward<T>(val));
return new(buf) U(std::forward<T>(val));
}
};
//------------------------------------------------------------------------------
STBase* new_clone (const STBase& s);
void delete_clone (const STBase* s);
std::ostream& operator<< (std::ostream& out, const STBase& t);
} // ripple