StormByte-String 1.0.0
C++26 string module of the StormByte suite
 
Loading...
Searching...
No Matches
serializable.hxx
Go to the documentation of this file.
1/*
2 * Copyright (C) 2024-2026 David C. Manuelda (StormBytePP)
3 *
4 * This file is part of StormByte-String.
5 *
6 * StormByte-String original source is dual-licensed:
7 *
8 * 1. GNU Lesser General Public License v3.0 (or later)
9 * You may redistribute and/or modify this file under the terms of the
10 * GNU Lesser General Public License as published by the Free Software
11 * Foundation, either version 3 of the License, or (at your option)
12 * any later version.
13 *
14 * 2. Commercial license
15 * Alternatively, this file may be used under the terms of a commercial
16 * license agreement with the copyright holder
17 * (David C. Manuelda <StormByte@gmail.com>).
18 *
19 * Both licenses apply only to original StormByte-String source in this
20 * repository. They do not cover other StormByte modules or any third-party
21 * material shipped with this repository (including everything under
22 * thirdparty/, and in particular the bundled StormByte Base tree),
23 * which remains under its own license.
24 *
25 * Neither license grants any patent rights. Any patent licenses required
26 * to use this software or third-party components must be obtained separately
27 * from the patent holders.
28 *
29 * StormByte-String is distributed in the hope that it will be useful,
30 * but WITHOUT ANY WARRANTY; without even the implied warranty of
31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
32 * GNU Lesser General Public License for more details.
33 *
34 * You should have received a copy of the GNU Lesser General Public License
35 * version 3 along with StormByte-String. If not, see
36 * <https://www.gnu.org/licenses/lgpl-3.0.html>.
37 *
38 * SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-StormByte-Commercial
39 */
40
41#pragma once
42
47
48#include <span>
49#include <vector>
50
55namespace StormByte {
60 namespace Detail {
68 template<>
69 struct Codec<String::String> {
75 static STORMBYTE_STRING_PUBLIC std::size_t Size(const String::String& data) noexcept;
76
82 static STORMBYTE_STRING_PUBLIC std::vector<std::byte> Write(const String::String& data) noexcept;
83
89 static STORMBYTE_STRING_PUBLIC Expected<String::String, DeserializeError> Read(std::span<const std::byte> data) noexcept;
90 };
91
99 template<>
100 struct Codec<String::WString> {
106 static STORMBYTE_STRING_PUBLIC std::size_t Size(const String::WString& data) noexcept;
107
113 static STORMBYTE_STRING_PUBLIC std::vector<std::byte> Write(const String::WString& data) noexcept;
114
120 static STORMBYTE_STRING_PUBLIC Expected<String::WString, DeserializeError> Read(std::span<const std::byte> data) noexcept;
121 };
122 }
123
128}
Owned UTF-8 text composed of StormByte::CString.
Definition string.hxx:92
Wide counterpart of String.
Definition wstring.hxx:91
Root namespace of the StormByte suite.
std::conditional_t< Type::Reference< T >, std::expected< std::reference_wrapper< std::remove_reference_t< T > >, std::shared_ptr< E > >, std::expected< T, std::shared_ptr< E > > > Expected
String module: owned UTF-8 and wide text on top of StormByte::CString / StormByte::WCString.
static std::vector< std::byte > Write(const String::String &data) noexcept
Encodes data.
static Expected< String::String, DeserializeError > Read(std::span< const std::byte > data) noexcept
Decodes a StormByte::String::String from the start of data.
static std::size_t Size(const String::String &data) noexcept
Serialized size of data.
static Expected< String::WString, DeserializeError > Read(std::span< const std::byte > data) noexcept
Decodes a StormByte::String::WString from the start of data.
static std::size_t Size(const String::WString &data) noexcept
Serialized size of data.
static std::vector< std::byte > Write(const String::WString &data) noexcept
Encodes data.
#define STORMBYTE_STRING_PUBLIC
Definition visibility.h:53