Instead of lengthy blurbs, switch to single-line, machine-readable standardized (https://spdx.dev) license identifiers. The Linux kernel switched long ago, so there is strong precedent. Three cases are handled: AGPL-only, Apache-only, and dual licensed. For the latter case, I chose (AGPL-3.0-or-later and Apache-2.0), reasoning that our changes are extensive enough to apply our license. The changes we applied mechanically with a script, except to licenses/README.md. Closes #9937
172 lines
4.6 KiB
C++
172 lines
4.6 KiB
C++
/*
|
|
*
|
|
* Modified by ScyllaDB
|
|
* Copyright (C) 2015-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: (AGPL-3.0-or-later and Apache-2.0)
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "utils/serialization.hh"
|
|
#include "gms/heart_beat_state.hh"
|
|
#include "gms/application_state.hh"
|
|
#include "gms/versioned_value.hh"
|
|
#include <optional>
|
|
#include <chrono>
|
|
|
|
namespace gms {
|
|
|
|
/**
|
|
* This abstraction represents both the HeartBeatState and the ApplicationState in an EndpointState
|
|
* instance. Any state for a given endpoint can be retrieved from this instance.
|
|
*/
|
|
class endpoint_state {
|
|
public:
|
|
using clk = seastar::lowres_system_clock;
|
|
private:
|
|
heart_beat_state _heart_beat_state;
|
|
std::map<application_state, versioned_value> _application_state;
|
|
/* fields below do not get serialized */
|
|
clk::time_point _update_timestamp;
|
|
bool _is_alive;
|
|
bool _is_normal = false;
|
|
|
|
public:
|
|
bool operator==(const endpoint_state& other) const {
|
|
return _heart_beat_state == other._heart_beat_state &&
|
|
_application_state == other._application_state &&
|
|
_update_timestamp == other._update_timestamp &&
|
|
_is_alive == other._is_alive;
|
|
}
|
|
|
|
endpoint_state() noexcept
|
|
: _heart_beat_state(0)
|
|
, _update_timestamp(clk::now())
|
|
, _is_alive(true) {
|
|
update_is_normal();
|
|
}
|
|
|
|
endpoint_state(heart_beat_state initial_hb_state) noexcept
|
|
: _heart_beat_state(initial_hb_state)
|
|
, _update_timestamp(clk::now())
|
|
, _is_alive(true) {
|
|
update_is_normal();
|
|
}
|
|
|
|
endpoint_state(heart_beat_state&& initial_hb_state,
|
|
const std::map<application_state, versioned_value>& application_state)
|
|
: _heart_beat_state(std::move(initial_hb_state))
|
|
, _application_state(application_state)
|
|
, _update_timestamp(clk::now())
|
|
, _is_alive(true) {
|
|
update_is_normal();
|
|
}
|
|
|
|
// Valid only on shard 0
|
|
heart_beat_state& get_heart_beat_state() noexcept {
|
|
return _heart_beat_state;
|
|
}
|
|
|
|
// Valid only on shard 0
|
|
const heart_beat_state& get_heart_beat_state() const noexcept {
|
|
return _heart_beat_state;
|
|
}
|
|
|
|
void set_heart_beat_state_and_update_timestamp(heart_beat_state hbs) noexcept {
|
|
update_timestamp();
|
|
_heart_beat_state = hbs;
|
|
}
|
|
|
|
const versioned_value* get_application_state_ptr(application_state key) const noexcept;
|
|
|
|
/**
|
|
* TODO replace this with operations that don't expose private state
|
|
*/
|
|
// @Deprecated
|
|
std::map<application_state, versioned_value>& get_application_state_map() noexcept {
|
|
return _application_state;
|
|
}
|
|
|
|
const std::map<application_state, versioned_value>& get_application_state_map() const noexcept {
|
|
return _application_state;
|
|
}
|
|
|
|
void add_application_state(application_state key, versioned_value value) {
|
|
_application_state[key] = std::move(value);
|
|
update_is_normal();
|
|
}
|
|
|
|
void add_application_state(const endpoint_state& es) {
|
|
_application_state = es._application_state;
|
|
update_is_normal();
|
|
}
|
|
|
|
/* getters and setters */
|
|
/**
|
|
* @return System.nanoTime() when state was updated last time.
|
|
*
|
|
* Valid only on shard 0.
|
|
*/
|
|
clk::time_point get_update_timestamp() const noexcept {
|
|
return _update_timestamp;
|
|
}
|
|
|
|
void update_timestamp() noexcept {
|
|
_update_timestamp = clk::now();
|
|
}
|
|
|
|
bool is_alive() const noexcept {
|
|
return _is_alive;
|
|
}
|
|
|
|
void set_alive(bool alive) noexcept {
|
|
_is_alive = alive;
|
|
}
|
|
|
|
void mark_alive() noexcept {
|
|
set_alive(true);
|
|
}
|
|
|
|
void mark_dead() noexcept {
|
|
set_alive(false);
|
|
}
|
|
|
|
std::string_view get_status() const noexcept {
|
|
constexpr std::string_view empty = "";
|
|
auto* app_state = get_application_state_ptr(application_state::STATUS);
|
|
if (!app_state) {
|
|
return empty;
|
|
}
|
|
const auto& value = app_state->value;
|
|
if (value.empty()) {
|
|
return empty;
|
|
}
|
|
auto pos = value.find(',');
|
|
if (pos == sstring::npos) {
|
|
return std::string_view(value);
|
|
}
|
|
return std::string_view(value.c_str(), pos);
|
|
}
|
|
|
|
bool is_shutdown() const noexcept {
|
|
return get_status() == versioned_value::SHUTDOWN;
|
|
}
|
|
|
|
bool is_normal() const noexcept {
|
|
return _is_normal;
|
|
}
|
|
|
|
void update_is_normal() noexcept {
|
|
_is_normal = get_status() == versioned_value::STATUS_NORMAL;
|
|
}
|
|
|
|
bool is_cql_ready() const noexcept;
|
|
|
|
friend std::ostream& operator<<(std::ostream& os, const endpoint_state& x);
|
|
};
|
|
|
|
} // gms
|