Drop the AGPL license in favor of a source-available license. See the blog post [1] for details. [1] https://www.scylladb.com/2024/12/18/why-were-moving-to-a-source-available-license/
40 lines
967 B
C++
40 lines
967 B
C++
/*
|
|
*
|
|
* Modified by ScyllaDB
|
|
* Copyright (C) 2015-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: (LicenseRef-ScyllaDB-Source-Available-1.0 and Apache-2.0)
|
|
*/
|
|
|
|
#include "locator/snitch_base.hh"
|
|
#include "gms/application_state.hh"
|
|
#include "utils/class_registrator.hh"
|
|
|
|
namespace locator {
|
|
|
|
gms::application_state_map snitch_base::get_app_states() const {
|
|
return {
|
|
{gms::application_state::DC, gms::versioned_value::datacenter(_my_dc)},
|
|
{gms::application_state::RACK, gms::versioned_value::rack(_my_rack)},
|
|
};
|
|
}
|
|
|
|
snitch_ptr::snitch_ptr(const snitch_config cfg)
|
|
{
|
|
i_endpoint_snitch::ptr_type s;
|
|
try {
|
|
s = create_object<i_endpoint_snitch>(cfg.name, cfg);
|
|
} catch (no_such_class& e) {
|
|
i_endpoint_snitch::logger().error("Can't create snitch {}: not supported", cfg.name);
|
|
throw;
|
|
} catch (...) {
|
|
throw;
|
|
}
|
|
s->set_backreference(*this);
|
|
_ptr = std::move(s);
|
|
}
|
|
|
|
} // namespace locator
|