mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-26 06:18:59 +00:00
LibSQL: Introduce Serializer as a mediator between Heap and client code
Classes reading and writing to the data heap would communicate directly with the Heap object, and transfer ByteBuffers back and forth with it. This makes things like caching and locking hard. Therefore all data persistence activity will be funneled through a Serializer object which in turn submits it to the Heap. Introducing this unfortunately resulted in a huge amount of churn, in which a number of smaller refactorings got caught up as well.
This commit is contained in:
parent
9e43508d30
commit
85a84b0794
Notes:
sideshowbarker
2024-07-18 05:26:05 +09:00
Author: https://github.com/JanDeVisser
Commit: 85a84b0794
Pull-request: https://github.com/SerenityOS/serenity/pull/8906
Reviewed-by: https://github.com/trflynn89 ✅
30 changed files with 995 additions and 780 deletions
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include <AK/String.h>
|
||||
#include <AK/StringBuilder.h>
|
||||
#include <LibSQL/Serialize.h>
|
||||
#include <LibSQL/Serializer.h>
|
||||
#include <LibSQL/Tuple.h>
|
||||
#include <LibSQL/TupleDescriptor.h>
|
||||
#include <LibSQL/Value.h>
|
||||
|
@ -31,44 +31,36 @@ Tuple::Tuple(NonnullRefPtr<TupleDescriptor> const& descriptor, u32 pointer)
|
|||
}
|
||||
}
|
||||
|
||||
Tuple::Tuple(NonnullRefPtr<TupleDescriptor> const& descriptor, ByteBuffer& buffer, size_t& offset)
|
||||
Tuple::Tuple(NonnullRefPtr<TupleDescriptor> const& descriptor, Serializer& serializer)
|
||||
: Tuple(descriptor)
|
||||
{
|
||||
deserialize(buffer, offset);
|
||||
deserialize(serializer);
|
||||
}
|
||||
|
||||
Tuple::Tuple(NonnullRefPtr<TupleDescriptor> const& descriptor, ByteBuffer& buffer)
|
||||
: Tuple(descriptor)
|
||||
void Tuple::deserialize(Serializer& serializer)
|
||||
{
|
||||
size_t offset = 0;
|
||||
deserialize(buffer, offset);
|
||||
}
|
||||
|
||||
void Tuple::deserialize(ByteBuffer& buffer, size_t& offset)
|
||||
{
|
||||
dbgln_if(SQL_DEBUG, "deserialize tuple at offset {}", offset);
|
||||
deserialize_from<u32>(buffer, offset, m_pointer);
|
||||
dbgln_if(SQL_DEBUG, "deserialize tuple at offset {}", serializer.offset());
|
||||
serializer.deserialize_to<u32>(m_pointer);
|
||||
dbgln_if(SQL_DEBUG, "pointer: {}", m_pointer);
|
||||
auto sz = serializer.deserialize<u32>();
|
||||
m_data.clear();
|
||||
for (auto& part : *m_descriptor) {
|
||||
m_data.append(Value::deserialize_from(buffer, offset));
|
||||
dbgln_if(SQL_DEBUG, "Deserialized element {} = {}", part.name, m_data.last().to_string());
|
||||
m_descriptor->clear();
|
||||
for (auto ix = 0u; ix < sz; ++ix) {
|
||||
m_descriptor->append(serializer.deserialize<TupleElementDescriptor>());
|
||||
m_data.append(serializer.deserialize<Value>());
|
||||
}
|
||||
}
|
||||
|
||||
void Tuple::serialize(ByteBuffer& buffer) const
|
||||
void Tuple::serialize(Serializer& serializer) const
|
||||
{
|
||||
VERIFY(m_descriptor->size() == m_data.size());
|
||||
dbgln_if(SQL_DEBUG, "Serializing tuple pointer {}", pointer());
|
||||
serialize_to<u32>(buffer, pointer());
|
||||
serializer.serialize<u32>(pointer());
|
||||
serializer.serialize<u32>((u32)m_descriptor->size());
|
||||
for (auto ix = 0u; ix < m_descriptor->size(); ix++) {
|
||||
auto& key_part = m_data[ix];
|
||||
if constexpr (SQL_DEBUG) {
|
||||
auto key_string = key_part.to_string();
|
||||
auto& key_part_definition = (*m_descriptor)[ix];
|
||||
dbgln("Serialized part {} = {}", key_part_definition.name, key_string);
|
||||
}
|
||||
key_part.serialize_to(buffer);
|
||||
serializer.serialize<TupleElementDescriptor>((*m_descriptor)[ix]);
|
||||
serializer.serialize<Value>(key_part);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -158,6 +150,18 @@ bool Tuple::is_compatible(Tuple const& other) const
|
|||
return true;
|
||||
}
|
||||
|
||||
size_t Tuple::length() const
|
||||
{
|
||||
size_t len = 2 * sizeof(u32);
|
||||
for (auto ix = 0u; ix < m_descriptor->size(); ix++) {
|
||||
auto& descriptor = (*m_descriptor)[ix];
|
||||
auto& value = m_data[ix];
|
||||
len += descriptor.length();
|
||||
len += value.length();
|
||||
}
|
||||
return len;
|
||||
}
|
||||
|
||||
String Tuple::to_string() const
|
||||
{
|
||||
StringBuilder builder;
|
||||
|
@ -186,7 +190,7 @@ void Tuple::copy_from(const Tuple& other)
|
|||
{
|
||||
if (*m_descriptor != *other.m_descriptor) {
|
||||
m_descriptor->clear();
|
||||
for (TupleElement const& part : *other.m_descriptor) {
|
||||
for (TupleElementDescriptor const& part : *other.m_descriptor) {
|
||||
m_descriptor->append(part);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue