163 lines
5.6 KiB
C++
163 lines
5.6 KiB
C++
#include "modules/systemd_failed_units.hpp"
|
|
|
|
#include <giomm/dbusproxy.h>
|
|
#include <glibmm/variant.h>
|
|
#include <spdlog/spdlog.h>
|
|
|
|
#include <cstdint>
|
|
|
|
static const unsigned UPDATE_DEBOUNCE_TIME_MS = 1000;
|
|
|
|
namespace waybar::modules {
|
|
|
|
SystemdFailedUnits::SystemdFailedUnits(const std::string& id, const Json::Value& config)
|
|
: ALabel(config, "systemd-failed-units", id, "{nr_failed} failed", 1),
|
|
hide_on_ok(true),
|
|
update_pending(false),
|
|
nr_failed_system(0),
|
|
nr_failed_user(0),
|
|
nr_failed(0),
|
|
last_status() {
|
|
if (config["hide-on-ok"].isBool()) {
|
|
hide_on_ok = config["hide-on-ok"].asBool();
|
|
}
|
|
if (config["format-ok"].isString()) {
|
|
format_ok = config["format-ok"].asString();
|
|
} else {
|
|
format_ok = format_;
|
|
}
|
|
|
|
/* Default to enable both "system" and "user". */
|
|
if (!config["system"].isBool() || config["system"].asBool()) {
|
|
system_proxy = Gio::DBus::Proxy::create_for_bus_sync(
|
|
Gio::DBus::BusType::BUS_TYPE_SYSTEM, "org.freedesktop.systemd1",
|
|
"/org/freedesktop/systemd1", "org.freedesktop.DBus.Properties");
|
|
if (!system_proxy) {
|
|
throw std::runtime_error("Unable to connect to systemwide systemd DBus!");
|
|
}
|
|
system_proxy->signal_signal().connect(sigc::mem_fun(*this, &SystemdFailedUnits::notify_cb));
|
|
}
|
|
if (!config["user"].isBool() || config["user"].asBool()) {
|
|
user_proxy = Gio::DBus::Proxy::create_for_bus_sync(
|
|
Gio::DBus::BusType::BUS_TYPE_SESSION, "org.freedesktop.systemd1",
|
|
"/org/freedesktop/systemd1", "org.freedesktop.DBus.Properties");
|
|
if (!user_proxy) {
|
|
throw std::runtime_error("Unable to connect to user systemd DBus!");
|
|
}
|
|
user_proxy->signal_signal().connect(sigc::mem_fun(*this, &SystemdFailedUnits::notify_cb));
|
|
}
|
|
|
|
updateData();
|
|
/* Always update for the first time. */
|
|
dp.emit();
|
|
}
|
|
|
|
SystemdFailedUnits::~SystemdFailedUnits() {
|
|
if (system_proxy) system_proxy.reset();
|
|
if (user_proxy) user_proxy.reset();
|
|
}
|
|
|
|
auto SystemdFailedUnits::notify_cb(const Glib::ustring& sender_name,
|
|
const Glib::ustring& signal_name,
|
|
const Glib::VariantContainerBase& arguments) -> void {
|
|
if (signal_name == "PropertiesChanged" && !update_pending) {
|
|
update_pending = true;
|
|
/* The fail count may fluctuate due to restarting. */
|
|
Glib::signal_timeout().connect_once(sigc::mem_fun(*this, &SystemdFailedUnits::updateData),
|
|
UPDATE_DEBOUNCE_TIME_MS);
|
|
}
|
|
}
|
|
|
|
void SystemdFailedUnits::RequestSystemState() {
|
|
auto load = [](const char* kind, Glib::RefPtr<Gio::DBus::Proxy>& proxy) -> std::string {
|
|
try {
|
|
if (!proxy) return "unknown";
|
|
auto parameters = Glib::VariantContainerBase(
|
|
g_variant_new("(ss)", "org.freedesktop.systemd1.Manager", "SystemState"));
|
|
Glib::VariantContainerBase data = proxy->call_sync("Get", parameters);
|
|
if (data && data.is_of_type(Glib::VariantType("(v)"))) {
|
|
Glib::VariantBase variant;
|
|
g_variant_get(const_cast<GVariant*>(data.gobj()), "(v)", &variant);
|
|
if (variant && variant.is_of_type(Glib::VARIANT_TYPE_STRING)) {
|
|
return g_variant_get_string(const_cast<GVariant*>(variant.gobj()), NULL);
|
|
}
|
|
}
|
|
} catch (Glib::Error& e) {
|
|
spdlog::error("Failed to get {} state: {}", kind, e.what().c_str());
|
|
}
|
|
return "unknown";
|
|
};
|
|
|
|
system_state = load("systemwide", system_proxy);
|
|
user_state = load("user", user_proxy);
|
|
if (system_state == "running" && user_state == "running")
|
|
overall_state = "ok";
|
|
else
|
|
overall_state = "degraded";
|
|
}
|
|
|
|
void SystemdFailedUnits::RequestFailedUnits() {
|
|
auto load = [](const char* kind, Glib::RefPtr<Gio::DBus::Proxy>& proxy) -> uint32_t {
|
|
try {
|
|
if (!proxy) return 0;
|
|
auto parameters = Glib::VariantContainerBase(
|
|
g_variant_new("(ss)", "org.freedesktop.systemd1.Manager", "NFailedUnits"));
|
|
Glib::VariantContainerBase data = proxy->call_sync("Get", parameters);
|
|
if (data && data.is_of_type(Glib::VariantType("(v)"))) {
|
|
Glib::VariantBase variant;
|
|
g_variant_get(const_cast<GVariant*>(data.gobj()), "(v)", &variant);
|
|
if (variant && variant.is_of_type(Glib::VARIANT_TYPE_UINT32)) {
|
|
return g_variant_get_uint32(const_cast<GVariant*>(variant.gobj()));
|
|
}
|
|
}
|
|
} catch (Glib::Error& e) {
|
|
spdlog::error("Failed to get {} failed units: {}", kind, e.what().c_str());
|
|
}
|
|
return 0;
|
|
};
|
|
|
|
nr_failed_system = load("systemwide", system_proxy);
|
|
nr_failed_user = load("user", user_proxy);
|
|
nr_failed = nr_failed_system + nr_failed_user;
|
|
}
|
|
|
|
void SystemdFailedUnits::updateData() {
|
|
update_pending = false;
|
|
|
|
RequestSystemState();
|
|
if (overall_state == "degraded") RequestFailedUnits();
|
|
|
|
dp.emit();
|
|
}
|
|
|
|
auto SystemdFailedUnits::update() -> void {
|
|
if (last_status == overall_state) return;
|
|
|
|
// Hide if needed.
|
|
if (overall_state == "ok" && hide_on_ok) {
|
|
event_box_.set_visible(false);
|
|
return;
|
|
}
|
|
|
|
event_box_.set_visible(true);
|
|
|
|
// Set state class.
|
|
if (!last_status.empty() && label_.get_style_context()->has_class(last_status)) {
|
|
label_.get_style_context()->remove_class(last_status);
|
|
}
|
|
if (!label_.get_style_context()->has_class(overall_state)) {
|
|
label_.get_style_context()->add_class(overall_state);
|
|
}
|
|
|
|
last_status = overall_state;
|
|
|
|
label_.set_markup(fmt::format(
|
|
fmt::runtime(nr_failed == 0 ? format_ok : format_), fmt::arg("nr_failed", nr_failed),
|
|
fmt::arg("nr_failed_system", nr_failed_system), fmt::arg("nr_failed_user", nr_failed_user),
|
|
fmt::arg("system_state", system_state), fmt::arg("user_state", user_state),
|
|
fmt::arg("overall_state", overall_state)));
|
|
ALabel::update();
|
|
}
|
|
|
|
} // namespace waybar::modules
|