1
0

feat: finish binstore storage

This commit is contained in:
2025-12-12 23:23:02 +08:00
parent 6c9e23f628
commit 9369728759
2 changed files with 103 additions and 6 deletions

View File

@ -13,6 +13,12 @@ namespace yycc::carton::binstore::storage {
#pragma region Read and Write Helper Functions #pragma region Read and Write Helper Functions
static bool is_eof(std::istream& s) {
// Peek next value and check bit flag.
s.peek();
return s.eof();
}
static bool read_buffer(std::istream& s, void* buffer, size_t length) { static bool read_buffer(std::istream& s, void* buffer, size_t length) {
// Cast length // Cast length
auto rv_length = SAFECAST::try_to<std::streamsize>(length); auto rv_length = SAFECAST::try_to<std::streamsize>(length);
@ -51,6 +57,22 @@ namespace yycc::carton::binstore::storage {
return true; return true;
} }
static bool read_u8string(std::istream& s, std::u8string& strl) {
size_t length = 0;
if (!read_pod(s, length)) return false;
// Same reason for try-catch like ByteArray.
try {
strl.resize(length);
} catch (const std::exception&) {
return false;
}
// Read data into byte array.
read_buffer(s, strl.data(), length);
// Okey
return true;
}
static bool write_buffer(std::ostream& s, const void* buffer, size_t length) { static bool write_buffer(std::ostream& s, const void* buffer, size_t length) {
// Cast length // Cast length
auto rv_length = SAFECAST::try_to<std::streamsize>(length); auto rv_length = SAFECAST::try_to<std::streamsize>(length);
@ -78,6 +100,14 @@ namespace yycc::carton::binstore::storage {
return write_buffer(s, ba.get_data_ptr(), length); return write_buffer(s, ba.get_data_ptr(), length);
} }
static bool write_u8string(std::ostream& s, const std::u8string_view& sv) {
// Write length header.
auto length = sv.length();
if (!write_pod(s, length)) return false;
// Write body
return write_buffer(s, sv.data(), length);
}
#pragma endregion #pragma endregion
#pragma region Storage Class #pragma region Storage Class
@ -98,7 +128,56 @@ namespace yycc::carton::binstore::storage {
} }
TYPES::BinstoreResult<void> Storage::load(std::istream& s, LoadStrategy strategy) { TYPES::BinstoreResult<void> Storage::load(std::istream& s, LoadStrategy strategy) {
return TYPES::BinstoreResult<void>(); // Before loading, we need clear all stored raw data first.
this->raws.clear();
// Read identifier
TYPES::VersionIdentifier version;
if (!read_pod(s, version)) return std::unexpected(TYPES::BinstoreError::Io);
// Check identifier with strategy
{
bool ok_for_read = false;
auto expected_version = this->cfg.get_version();
switch (strategy) {
case LoadStrategy::OnlyCurrent:
ok_for_read = (version == expected_version);
break;
case LoadStrategy::MigrateOld:
ok_for_read = (version <= expected_version);
break;
case LoadStrategy::AcceptAll:
ok_for_read = true;
break;
}
if (!ok_for_read) return std::unexpected(TYPES::BinstoreError::BadVersion);
}
// Read settings one by one.
const auto& settings = this->cfg.get_settings();
while (!is_eof(s)) {
// Read setting name
std::u8string setting_name;
if (!read_u8string(s, setting_name)) return std::unexpected(TYPES::BinstoreError::Io);
// Read setting body
TYPES::ByteArray ba;
if (!read_byte_array(s, ba)) return std::unexpected(TYPES::BinstoreError::Io);
// Check whether there is such setting and its token.
auto token_finder = settings.find_name(setting_name);
// If no such name, skip this setting.
if (!token_finder.has_value()) continue;
auto token = token_finder.value();
// If there is duplicated entry, report error
if (this->raws.contains(token)) std::unexpected(TYPES::BinstoreError::DuplicatedAssign);
// Otherwise insert it
this->raws.emplace(token, std::move(ba));
}
// Okey
return {};
} }
TYPES::BinstoreResult<void> Storage::save_into_file(const std::filesystem::path& fpath) { TYPES::BinstoreResult<void> Storage::save_into_file(const std::filesystem::path& fpath) {
@ -113,7 +192,24 @@ namespace yycc::carton::binstore::storage {
} }
TYPES::BinstoreResult<void> Storage::save(std::ostream& s) { TYPES::BinstoreResult<void> Storage::save(std::ostream& s) {
return TYPES::BinstoreResult<void>(); // Write version identifier
auto version = this->cfg.get_version();
if (!write_pod(s, version)) return std::unexpected(TYPES::BinstoreError::Io);
// Write settings one by one
const auto& settings = this->cfg.get_settings();
for (const auto& [setting_token, setting_value] : this->raws) {
// Fetch setting name first
auto setting_name = settings.get_setting(setting_token).get_name();
// Write name
if (!write_u8string(s, setting_name)) return std::unexpected(TYPES::BinstoreError::Io);
// Write setting body
if (!write_byte_array(s, setting_value)) return std::unexpected(TYPES::BinstoreError::Io);
}
// Okey
return {};
} }
bool Storage::has_setting(TYPES::Token token) const { bool Storage::has_setting(TYPES::Token token) const {

View File

@ -9,6 +9,7 @@ namespace yycc::carton::binstore::types {
/// @brief All possible error kind occurs in this module. /// @brief All possible error kind occurs in this module.
enum class BinstoreError { enum class BinstoreError {
NoSuchSetting, ///< Given token is invalid for setting. NoSuchSetting, ///< Given token is invalid for setting.
DuplicatedAssign, ///< Duplicated setting entry in data.
BadVersion, ///< The version provided in given file or IO is rejected by version strategy. BadVersion, ///< The version provided in given file or IO is rejected by version strategy.
Io, ///< C++ IO error. Io, ///< C++ IO error.
}; };