refactor(custom): move continuous exec onto GLib command stream

Replace the custom module's continuous getline() worker with the new GLib-backed command stream helper.

This moves line delivery, child exit handling, and restart scheduling onto the main loop so continuous commands no longer depend on a blocking FILE* read inside SleeperThread.

The behavior is kept aligned with the old module semantics: stdout lines still emit updates, non-zero exits still surface as errors, and restart-interval still respawns the command.

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Austin Horstman
2026-07-04 08:41:35 -05:00
committed by Austin Horstman
parent 560f02509b
commit 5f4b96ad1d
2 changed files with 67 additions and 59 deletions
+7 -2
View File
@@ -3,10 +3,12 @@
#include <fmt/format.h>
#include <csignal>
#include <memory>
#include <string>
#include "AIconLabel.hpp"
#include "util/command.hpp"
#include "util/command_line_stream.hpp"
#include "util/json.hpp"
#include "util/sleeper_thread.hpp"
@@ -22,6 +24,9 @@ class Custom : public AIconLabel {
private:
void delayWorker();
void continuousWorker();
void startContinuousProcess(bool throw_on_failure);
void handleContinuousProcessExit(int exit_code);
void scheduleContinuousRestart();
void waitingWorker();
void parseOutputRaw();
void parseOutputJson();
@@ -42,10 +47,10 @@ class Custom : public AIconLabel {
const bool tooltip_format_enabled_;
std::vector<std::string> class_;
int percentage_;
FILE* fp_;
int pid_;
util::command::res output_;
util::JsonParser parser_;
std::unique_ptr<util::command::LineStream> continuous_stream_;
sigc::connection restart_connection_;
util::SleeperThread thread_;
};
+49 -46
View File
@@ -2,10 +2,9 @@
#include <spdlog/spdlog.h>
#include <stdexcept>
#include <utility>
#include "util/scope_guard.hpp"
waybar::modules::Custom::Custom(const std::string& name, const std::string& id,
const Json::Value& config, const std::string& output_name)
: AIconLabel(config, "custom-" + name, id, "{}"),
@@ -13,9 +12,7 @@ waybar::modules::Custom::Custom(const std::string& name, const std::string& id,
output_name_(output_name),
id_(id),
tooltip_format_enabled_{config_["tooltip-format"].isString()},
percentage_(0),
fp_(nullptr),
pid_(-1) {
percentage_(0) {
if (config.isNull()) {
spdlog::warn("There is no configuration for 'custom/{}', element will be hidden", name);
}
@@ -40,10 +37,9 @@ waybar::modules::Custom::Custom(const std::string& name, const std::string& id,
}
waybar::modules::Custom::~Custom() {
if (pid_ != -1) {
killpg(pid_, SIGTERM);
waitpid(pid_, NULL, 0);
pid_ = -1;
restart_connection_.disconnect();
if (continuous_stream_) {
continuous_stream_->stop();
}
}
@@ -80,57 +76,64 @@ void waybar::modules::Custom::delayWorker() {
}
void waybar::modules::Custom::continuousWorker() {
auto cmd = config_["exec"].asString();
pid_ = -1;
fp_ = util::command::open(cmd, pid_, output_name_);
if (!fp_) {
throw std::runtime_error("Unable to open " + cmd);
continuous_stream_ = std::make_unique<util::command::LineStream>(
output_name_,
[this](const std::string& output) {
output_ = {0, output};
dp.emit();
},
[this](int exit_code) { handleContinuousProcessExit(exit_code); });
startContinuousProcess(true);
}
thread_ = [this, cmd] {
char* buff = nullptr;
waybar::util::ScopeGuard buff_deleter([&buff]() {
if (buff) {
free(buff);
void waybar::modules::Custom::startContinuousProcess(bool throw_on_failure) {
const auto cmd = config_["exec"].asString();
try {
continuous_stream_->start(cmd);
} catch (const Glib::SpawnError& e) {
if (throw_on_failure) {
throw std::runtime_error("Unable to open " + cmd + ": " + e.what().raw());
}
});
size_t len = 0;
if (getline(&buff, &len, fp_) == -1) {
int exit_code = 1;
if (fp_) {
exit_code = WEXITSTATUS(util::command::close(fp_, pid_));
fp_ = nullptr;
output_ = {1, ""};
dp.emit();
spdlog::error("Unable to restart {}: {}", name_, e.what().raw());
scheduleContinuousRestart();
} catch (const std::exception& e) {
if (throw_on_failure) {
throw;
}
output_ = {1, ""};
dp.emit();
spdlog::error("Unable to restart {}: {}", name_, e.what());
scheduleContinuousRestart();
}
}
void waybar::modules::Custom::handleContinuousProcessExit(int exit_code) {
if (exit_code != 0) {
output_ = {exit_code, ""};
dp.emit();
spdlog::error("{} stopped unexpectedly, is it endless?", name_);
}
if (config_["restart-interval"].isNumeric() && config_["restart-interval"].asDouble() > 0) {
pid_ = -1;
thread_.sleep_for(std::chrono::milliseconds(
std::max(1L, // Minimum 1ms due to millisecond precision
static_cast<long>(config_["restart-interval"].asDouble() * 1000))));
fp_ = util::command::open(cmd, pid_, output_name_);
if (!fp_) {
throw std::runtime_error("Unable to open " + cmd);
scheduleContinuousRestart();
}
} else {
void waybar::modules::Custom::scheduleContinuousRestart() {
restart_connection_.disconnect();
if (!config_["restart-interval"].isNumeric() || config_["restart-interval"].asDouble() <= 0) {
// A non-positive restart-interval must not busy-respawn the script
// (that starves the GTK main loop); treat it as "do not restart".
thread_.stop();
return;
}
} else {
std::string output = buff;
// Remove last newline
if (!output.empty() && output[output.length() - 1] == '\n') {
output.erase(output.length() - 1);
}
output_ = {0, output};
dp.emit();
}
};
restart_connection_ = Glib::signal_timeout().connect(
[this] {
startContinuousProcess(false);
return false;
},
std::max(1U, static_cast<unsigned>(config_["restart-interval"].asDouble() * 1000)));
}
void waybar::modules::Custom::waitingWorker() {