/* * Copyright (C) 2021-present ScyllaDB */ /* * SPDX-License-Identifier: AGPL-3.0-or-later */ #pragma once #include #include #include #include #include "schema/schema_fwd.hh" #include "seastarx.hh" namespace data_dictionary { struct storage_options { struct local { std::filesystem::path dir; static constexpr std::string_view name = "LOCAL"; static local from_map(const std::map&); std::map to_map() const; bool operator==(const local&) const = default; }; struct s3 { sstring bucket; sstring endpoint; std::variant location; static constexpr std::string_view name = "S3"; static s3 from_map(const std::map&); std::map to_map() const; bool operator==(const s3&) const = default; }; using value_type = std::variant; value_type value = local{}; storage_options() = default; bool is_local_type() const noexcept; std::string_view type_string() const; std::map to_map() const; bool can_update_to(const storage_options& new_options); static value_type from_map(std::string_view type, std::map values); storage_options append_to_s3_prefix(const sstring& s) const; }; inline storage_options make_local_options(std::filesystem::path dir) { storage_options so; so.value = data_dictionary::storage_options::local { .dir = std::move(dir) }; return so; } } // namespace data_dictionary template <> struct fmt::formatter { constexpr auto parse(format_parse_context& ctx) { return ctx.begin(); } auto format(const data_dictionary::storage_options&, fmt::format_context& ctx) const -> decltype(ctx.out()); };