Skip to content

Commit

Permalink
Implement Serializer class.
Browse files Browse the repository at this point in the history
  • Loading branch information
dchapyshev committed Dec 10, 2023
1 parent 9f46f64 commit d5e092f
Show file tree
Hide file tree
Showing 2 changed files with 118 additions and 0 deletions.
68 changes: 68 additions & 0 deletions source/base/memory/serializer.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
//
// Aspia Project
// Copyright (C) 2016-2023 Dmitry Chapyshev <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
//

#include "base/memory/serializer.h"

namespace base {

//--------------------------------------------------------------------------------------------------
Serializer::Serializer()
{
for (size_t i = 0; i < kPoolSize; ++i)
pool_[i].reserve(kBufferSize);
}

//--------------------------------------------------------------------------------------------------
Serializer::~Serializer() = default;

//--------------------------------------------------------------------------------------------------
base::ByteArray Serializer::serialize(const google::protobuf::MessageLite& message)
{
const size_t size = message.ByteSizeLong();
if (!size)
return base::ByteArray();

base::ByteArray buffer;

if (free_)
{
buffer = std::move(pool_[free_ - 1]);

if (buffer.capacity() < size)
buffer.reserve(size);

--free_;
}

buffer.resize(size);

message.SerializeWithCachedSizesToArray(buffer.data());
return buffer;
}

//--------------------------------------------------------------------------------------------------
void Serializer::addBuffer(base::ByteArray&& buffer)
{
if (free_ < kPoolSize)
{
pool_[free_] = std::move(buffer);
++free_;
}
}

} // namespace base
50 changes: 50 additions & 0 deletions source/base/memory/serializer.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
//
// Aspia Project
// Copyright (C) 2016-2023 Dmitry Chapyshev <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
//

#ifndef BASE_MEMORY_SERIALIZER_H
#define BASE_MEMORY_SERIALIZER_H

#include "base/macros_magic.h"
#include "base/memory/byte_array.h"

#include <array>

namespace base {

class Serializer
{
public:
Serializer();
~Serializer();

static constexpr size_t kPoolSize = 32;
static constexpr size_t kBufferSize = 1024;

base::ByteArray serialize(const google::protobuf::MessageLite& message);
void addBuffer(base::ByteArray&& buffer);

private:
std::array<base::ByteArray, kPoolSize> pool_;
size_t free_ = kPoolSize;

DISALLOW_COPY_AND_ASSIGN(Serializer);
};

} // namespace base

#endif // BASE_MEMORY_SERIALIZER_H

0 comments on commit d5e092f

Please sign in to comment.