mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-29 19:21:01 +00:00
After fcb8d040 ("treewide: use Software Package Data Exchange
(SPDX) license identifiers"), many dual-licensed files were
left with empty comments on top. Remove them to avoid visual
noise.
Closes #10562
176 lines
5.3 KiB
C++
176 lines
5.3 KiB
C++
/*
|
|
* Copyright (C) 2015-present ScyllaDB
|
|
*
|
|
* Modified by ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: (AGPL-3.0-or-later and Apache-2.0)
|
|
*/
|
|
|
|
#include <seastar/core/print.hh>
|
|
#include "cql3/statements/property_definitions.hh"
|
|
#include "exceptions/exceptions.hh"
|
|
|
|
namespace cql3 {
|
|
|
|
namespace statements {
|
|
|
|
property_definitions::property_definitions()
|
|
: _properties{}
|
|
{ }
|
|
|
|
void property_definitions::add_property(const sstring& name, sstring value) {
|
|
if (auto [ignored, added] = _properties.try_emplace(name, value); !added) {
|
|
throw exceptions::syntax_exception(format("Multiple definition for property '{}'", name));
|
|
}
|
|
}
|
|
|
|
void property_definitions::add_property(const sstring& name, const std::map<sstring, sstring>& value) {
|
|
if (auto [ignored, added] = _properties.try_emplace(name, value); !added) {
|
|
throw exceptions::syntax_exception(format("Multiple definition for property '{}'", name));
|
|
}
|
|
}
|
|
|
|
void property_definitions::validate(const std::set<sstring>& keywords, const std::set<sstring>& exts, const std::set<sstring>& obsolete) const {
|
|
for (auto&& kv : _properties) {
|
|
auto&& name = kv.first;
|
|
if (keywords.contains(name) || exts.contains(name)) {
|
|
continue;
|
|
}
|
|
if (obsolete.contains(name)) {
|
|
#if 0
|
|
logger.warn("Ignoring obsolete property {}", name);
|
|
#endif
|
|
} else {
|
|
throw exceptions::syntax_exception(format("Unknown property '{}'", name));
|
|
}
|
|
}
|
|
}
|
|
|
|
std::optional<sstring> property_definitions::get_simple(const sstring& name) const {
|
|
auto it = _properties.find(name);
|
|
if (it == _properties.end()) {
|
|
return std::nullopt;
|
|
}
|
|
try {
|
|
return std::get<sstring>(it->second);
|
|
} catch (const std::bad_variant_access& e) {
|
|
throw exceptions::syntax_exception(format("Invalid value for property '{}'. It should be a string", name));
|
|
}
|
|
}
|
|
|
|
std::optional<std::map<sstring, sstring>> property_definitions::get_map(const sstring& name) const {
|
|
auto it = _properties.find(name);
|
|
if (it == _properties.end()) {
|
|
return std::nullopt;
|
|
}
|
|
try {
|
|
return std::get<map_type>(it->second);
|
|
} catch (const std::bad_variant_access& e) {
|
|
throw exceptions::syntax_exception(format("Invalid value for property '{}'. It should be a map.", name));
|
|
}
|
|
}
|
|
|
|
bool property_definitions::has_property(const sstring& name) const {
|
|
return _properties.contains(name);
|
|
}
|
|
|
|
std::optional<property_definitions::value_type> property_definitions::get(const sstring& name) const {
|
|
if (auto it = _properties.find(name); it != _properties.end()) {
|
|
return it->second;
|
|
}
|
|
return std::nullopt;
|
|
}
|
|
|
|
sstring property_definitions::get_string(sstring key, sstring default_value) const {
|
|
auto value = get_simple(key);
|
|
if (value) {
|
|
return value.value();
|
|
} else {
|
|
return default_value;
|
|
}
|
|
}
|
|
|
|
// Return a property value, typed as a Boolean
|
|
bool property_definitions::get_boolean(sstring key, bool default_value) const {
|
|
auto value = get_simple(key);
|
|
if (value) {
|
|
std::string s{value.value()};
|
|
std::transform(s.begin(), s.end(), s.begin(), ::tolower);
|
|
return s == "1" || s == "true" || s == "yes";
|
|
} else {
|
|
return default_value;
|
|
}
|
|
}
|
|
|
|
// Return a property value, typed as a double
|
|
double property_definitions::get_double(sstring key, double default_value) const {
|
|
auto value = get_simple(key);
|
|
return to_double(key, value, default_value);
|
|
}
|
|
|
|
double property_definitions::to_double(sstring key, std::optional<sstring> value, double default_value) {
|
|
if (value) {
|
|
auto val = value.value();
|
|
try {
|
|
return std::stod(val);
|
|
} catch (const std::exception& e) {
|
|
throw exceptions::syntax_exception(format("Invalid double value {} for '{}'", val, key));
|
|
}
|
|
} else {
|
|
return default_value;
|
|
}
|
|
}
|
|
|
|
// Return a property value, typed as an Integer
|
|
int32_t property_definitions::get_int(sstring key, int32_t default_value) const {
|
|
auto value = get_simple(key);
|
|
return to_int(key, value, default_value);
|
|
}
|
|
|
|
int32_t property_definitions::to_int(sstring key, std::optional<sstring> value, int32_t default_value) {
|
|
if (value) {
|
|
auto val = value.value();
|
|
try {
|
|
return std::stoi(val);
|
|
} catch (const std::exception& e) {
|
|
throw exceptions::syntax_exception(format("Invalid integer value {} for '{}'", val, key));
|
|
}
|
|
} else {
|
|
return default_value;
|
|
}
|
|
}
|
|
|
|
long property_definitions::to_long(sstring key, std::optional<sstring> value, long default_value) {
|
|
if (value) {
|
|
auto val = value.value();
|
|
try {
|
|
return std::stol(val);
|
|
} catch (const std::exception& e) {
|
|
throw exceptions::syntax_exception(format("Invalid long value {} for '{}'", val, key));
|
|
}
|
|
} else {
|
|
return default_value;
|
|
}
|
|
}
|
|
|
|
void property_definitions::remove_from_map_if_exists(const sstring& name, const sstring& key) const
|
|
{
|
|
auto it = _properties.find(name);
|
|
if (it == _properties.end()) {
|
|
return;
|
|
}
|
|
try {
|
|
auto map = std::get<map_type>(it->second);
|
|
map.erase(key);
|
|
_properties[name] = map;
|
|
} catch (const std::bad_variant_access& e) {
|
|
throw exceptions::syntax_exception(format("Invalid value for property '{}'. It should be a map.", name));
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|