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
44 lines
1.2 KiB
C++
44 lines
1.2 KiB
C++
/*
|
|
* Copyright (C) 2017-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <seastar/core/sstring.hh>
|
|
#include <seastar/core/print.hh>
|
|
#include "seastarx.hh"
|
|
#include <systemd/sd-daemon.h>
|
|
#include "log.hh"
|
|
|
|
extern logger startlog;
|
|
|
|
class supervisor {
|
|
public:
|
|
static constexpr auto systemd_ready_msg = "READY=1";
|
|
/** A systemd status message has a format <status message prefix>=<message> */
|
|
static constexpr auto systemd_status_msg_prefix = "STATUS";
|
|
public:
|
|
/**
|
|
* @brief Notify the Supervisor with the given message.
|
|
* @param msg message to notify the Supervisor with
|
|
* @param ready set to TRUE when scylla service becomes ready
|
|
*/
|
|
static inline void notify(sstring msg, bool ready = false) {
|
|
startlog.info("{}", msg);
|
|
try_notify_systemd(msg, ready);
|
|
}
|
|
|
|
private:
|
|
static inline void try_notify_systemd(sstring msg, bool ready) {
|
|
if (ready) {
|
|
sd_notify(0, format("{}\n{}={}\n", systemd_ready_msg, systemd_status_msg_prefix, msg).c_str());
|
|
} else {
|
|
sd_notify(0, format("{}={}\n", systemd_status_msg_prefix, msg).c_str());
|
|
}
|
|
}
|
|
};
|