mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-23 08:12:08 +00:00
132 lines
3.7 KiB
C++
132 lines
3.7 KiB
C++
/*
|
|
* Modified by ScyllaDB
|
|
* Copyright (C) 2018-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: (LicenseRef-ScyllaDB-Source-Available-1.1 and Apache-2.0)
|
|
*/
|
|
#include "locator/production_snitch_base.hh"
|
|
#include "db/system_keyspace.hh"
|
|
#include "gms/gossiper.hh"
|
|
#include "message/messaging_service.hh"
|
|
#include "db/config.hh"
|
|
|
|
#include <boost/algorithm/string/trim.hpp>
|
|
#include <boost/algorithm/string/classification.hpp>
|
|
#include <boost/algorithm/string/split.hpp>
|
|
#include <seastar/core/file.hh>
|
|
|
|
namespace locator {
|
|
|
|
production_snitch_base::production_snitch_base(snitch_config cfg)
|
|
: snitch_base(cfg)
|
|
, allowed_property_keys({ dc_property_key,
|
|
rack_property_key,
|
|
prefer_local_property_key,
|
|
dc_suffix_property_key }) {
|
|
if (!cfg.properties_file_name.empty()) {
|
|
_prop_file_name = cfg.properties_file_name;
|
|
} else {
|
|
_prop_file_name = db::config::get_conf_sub(snitch_properties_filename).string();
|
|
}
|
|
}
|
|
|
|
|
|
sstring production_snitch_base::get_rack() const {
|
|
return _my_rack;
|
|
}
|
|
|
|
sstring production_snitch_base::get_datacenter() const {
|
|
return _my_dc;
|
|
}
|
|
|
|
void production_snitch_base::set_backreference(snitch_ptr& d) {
|
|
_backreference = &d;
|
|
}
|
|
|
|
void production_snitch_base::set_my_dc_and_rack(const sstring& new_dc, const sstring& new_rack) {
|
|
if (!new_dc.empty()) {
|
|
_my_dc = new_dc;
|
|
} else {
|
|
_my_dc = default_dc;
|
|
logger().warn("{} snitch attempted to set DC to an empty string, falling back to {}.", get_name(), default_dc);
|
|
}
|
|
|
|
if (!new_rack.empty()) {
|
|
_my_rack = new_rack;
|
|
} else {
|
|
_my_rack = default_rack;
|
|
logger().warn("{} snitch attempted to set rack to an empty string, falling back to {}.", get_name(), default_rack);
|
|
}
|
|
}
|
|
|
|
void production_snitch_base::set_prefer_local(bool prefer_local) {
|
|
_prefer_local = prefer_local;
|
|
}
|
|
|
|
future<> production_snitch_base::load_property_file() {
|
|
auto f = co_await open_file_dma(_prop_file_name, open_flags::ro);
|
|
auto s = co_await f.size();
|
|
auto tb = co_await f.dma_read_exactly<char>(0, s);
|
|
parse_property_file(std::string(tb.get(), s));
|
|
}
|
|
|
|
void production_snitch_base::parse_property_file(std::string contents) {
|
|
using namespace boost::algorithm;
|
|
|
|
std::string line;
|
|
std::istringstream istrm(contents);
|
|
std::vector<std::string> split_line;
|
|
_prop_values.clear();
|
|
|
|
while (std::getline(istrm, line)) {
|
|
trim(line);
|
|
|
|
// Skip comments or empty lines
|
|
if (!line.size() || line.at(0) == '#') {
|
|
continue;
|
|
}
|
|
|
|
split_line.clear();
|
|
split(split_line, line, is_any_of("="));
|
|
|
|
if (split_line.size() != 2) {
|
|
throw_bad_format(line);
|
|
}
|
|
|
|
auto key = split_line[0]; trim(key);
|
|
auto val = split_line[1]; trim(val);
|
|
|
|
if (val.empty() || !allowed_property_keys.contains(key)) {
|
|
throw_bad_format(line);
|
|
}
|
|
|
|
if (_prop_values.contains(key)) {
|
|
throw_double_declaration(key);
|
|
}
|
|
|
|
_prop_values[key] = val;
|
|
}
|
|
}
|
|
|
|
[[noreturn]]
|
|
void production_snitch_base::throw_double_declaration(const sstring& key) const {
|
|
logger().warn("double \"{}\" declaration in {}", key, _prop_file_name);
|
|
throw bad_property_file_error();
|
|
}
|
|
|
|
[[noreturn]]
|
|
void production_snitch_base::throw_bad_format(const sstring& line) const {
|
|
logger().warn("Bad format in properties file {}: {}", _prop_file_name, line);
|
|
throw bad_property_file_error();
|
|
}
|
|
|
|
[[noreturn]]
|
|
void production_snitch_base::throw_incomplete_file() const {
|
|
logger().warn("Property file {} is incomplete. Some obligatory fields are missing.", _prop_file_name);
|
|
throw bad_property_file_error();
|
|
}
|
|
|
|
} // namespace locator
|