Waybar/src/modules/custom.cpp

187 lines
4.9 KiB
C++
Raw Normal View History

#include "modules/custom.hpp"
2019-05-18 23:44:45 +00:00
#include <spdlog/spdlog.h>
2019-04-18 15:52:00 +00:00
waybar::modules::Custom::Custom(const std::string& name, const Json::Value& config)
: ALabel(config, "{}"), name_(name), fp_(nullptr), pid_(-1) {
2018-12-18 16:30:54 +00:00
label_.set_name("custom-" + name_);
if (config_["exec"].isString()) {
if (interval_.count() > 0) {
delayWorker();
} else {
continuousWorker();
}
2018-09-18 21:15:37 +00:00
}
2018-12-18 16:30:54 +00:00
dp.emit();
2018-08-20 12:50:45 +00:00
}
2019-04-18 15:52:00 +00:00
waybar::modules::Custom::~Custom() {
if (pid_ != -1) {
kill(-pid_, 9);
pid_ = -1;
2018-12-08 11:58:47 +00:00
}
}
2019-04-18 15:52:00 +00:00
void waybar::modules::Custom::delayWorker() {
2018-11-23 10:57:37 +00:00
thread_ = [this] {
2018-08-18 15:27:40 +00:00
bool can_update = true;
2018-10-26 07:27:16 +00:00
if (config_["exec-if"].isString()) {
auto res = waybar::util::command::exec(config_["exec-if"].asString());
if (res.exit_code != 0) {
2018-08-18 15:27:40 +00:00
can_update = false;
2018-12-18 16:30:54 +00:00
event_box_.hide();
2018-08-18 15:27:40 +00:00
}
}
if (can_update) {
output_ = waybar::util::command::exec(config_["exec"].asString());
2018-08-20 12:50:45 +00:00
dp.emit();
2018-08-18 15:27:40 +00:00
}
2018-11-23 10:57:37 +00:00
thread_.sleep_for(interval_);
};
}
2019-04-18 15:52:00 +00:00
void waybar::modules::Custom::continuousWorker() {
2018-09-18 21:15:37 +00:00
auto cmd = config_["exec"].asString();
pid_ = -1;
fp_ = util::command::open(cmd, pid_);
2018-12-08 11:58:47 +00:00
if (!fp_) {
2018-09-18 21:15:37 +00:00
throw std::runtime_error("Unable to open " + cmd);
}
thread_ = [&] {
2019-04-18 15:52:00 +00:00
char* buff = nullptr;
2018-09-18 21:15:37 +00:00
size_t len = 0;
2018-12-08 11:58:47 +00:00
if (getline(&buff, &len, fp_) == -1) {
int exit_code = 1;
if (fp_) {
exit_code = WEXITSTATUS(util::command::close(fp_, pid_));
fp_ = nullptr;
}
2018-09-18 21:15:37 +00:00
thread_.stop();
if (exit_code != 0) {
2019-04-18 15:52:00 +00:00
output_ = {exit_code, ""};
dp.emit();
2019-05-18 23:44:45 +00:00
spdlog::error("{} stopped unexpectedly, is it endless?", name_);
}
2018-09-18 21:15:37 +00:00
return;
}
std::string output = buff;
// Remove last newline
2019-04-18 15:52:00 +00:00
if (!output.empty() && output[output.length() - 1] == '\n') {
output.erase(output.length() - 1);
2018-09-18 21:15:37 +00:00
}
2019-04-18 15:52:00 +00:00
output_ = {0, output};
2018-09-18 21:15:37 +00:00
dp.emit();
};
}
2019-04-18 15:52:00 +00:00
void waybar::modules::Custom::refresh(int sig /*signal*/) {
if (sig == SIGRTMIN + config_["signal"].asInt()) {
2019-03-18 17:46:44 +00:00
thread_.wake_up();
}
}
2019-05-18 14:07:55 +00:00
bool waybar::modules::Custom::handleScroll(GdkEventScroll* e) {
auto ret = ALabel::handleScroll(e);
thread_.wake_up();
return ret;
}
bool waybar::modules::Custom::handleToggle(GdkEventButton* const& e) {
auto ret = ALabel::handleToggle(e);
thread_.wake_up();
return ret;
}
2019-04-18 15:52:00 +00:00
auto waybar::modules::Custom::update() -> void {
// Hide label if output is empty
if (config_["exec"].isString() && (output_.out.empty() || output_.exit_code != 0)) {
2018-12-18 16:30:54 +00:00
event_box_.hide();
} else {
if (config_["return-type"].asString() == "json") {
parseOutputJson();
} else {
parseOutputRaw();
}
2019-04-18 15:52:00 +00:00
auto str = fmt::format(format_,
text_,
fmt::arg("alt", alt_),
fmt::arg("icon", getIcon(percentage_, alt_)),
fmt::arg("percentage", percentage_));
2018-11-21 19:49:09 +00:00
label_.set_markup(str);
2019-02-22 10:35:26 +00:00
if (tooltipEnabled()) {
if (text_ == tooltip_) {
label_.set_tooltip_text(str);
} else {
label_.set_tooltip_text(tooltip_);
}
}
2019-04-15 08:18:27 +00:00
auto classes = label_.get_style_context()->list_classes();
2019-04-18 15:52:00 +00:00
for (auto const& c : classes) {
2019-04-15 08:18:27 +00:00
label_.get_style_context()->remove_class(c);
}
2019-04-18 15:52:00 +00:00
for (auto const& c : class_) {
2019-04-15 08:18:27 +00:00
label_.get_style_context()->add_class(c);
}
2018-12-18 16:30:54 +00:00
event_box_.show();
}
}
2019-04-18 15:52:00 +00:00
void waybar::modules::Custom::parseOutputRaw() {
std::istringstream output(output_.out);
2019-04-18 15:52:00 +00:00
std::string line;
int i = 0;
while (getline(output, line)) {
if (i == 0) {
2019-03-01 16:02:50 +00:00
if (config_["escape"].isBool() && config_["escape"].asBool()) {
text_ = Glib::Markup::escape_text(line);
} else {
text_ = line;
}
tooltip_ = line;
2019-04-15 08:18:27 +00:00
class_.clear();
} else if (i == 1) {
tooltip_ = line;
} else if (i == 2) {
2019-04-15 08:18:27 +00:00
class_.push_back(line);
} else {
break;
}
i++;
}
}
2019-04-18 15:52:00 +00:00
void waybar::modules::Custom::parseOutputJson() {
std::istringstream output(output_.out);
2019-04-18 15:52:00 +00:00
std::string line;
2019-04-15 08:18:27 +00:00
class_.clear();
while (getline(output, line)) {
auto parsed = parser_.parse(line);
2019-03-01 16:02:50 +00:00
if (config_["escape"].isBool() && config_["escape"].asBool()) {
text_ = Glib::Markup::escape_text(parsed["text"].asString());
} else {
text_ = parsed["text"].asString();
}
if (config_["escape"].isBool() && config_["escape"].asBool()) {
alt_ = Glib::Markup::escape_text(parsed["alt"].asString());
} else {
alt_ = parsed["alt"].asString();
}
tooltip_ = parsed["tooltip"].asString();
2019-04-15 08:18:27 +00:00
if (parsed["class"].isString()) {
class_.push_back(parsed["class"].asString());
} else if (parsed["class"].isArray()) {
2019-04-18 15:52:00 +00:00
for (auto const& c : parsed["class"]) {
2019-04-15 08:18:27 +00:00
class_.push_back(c.asString());
}
}
2018-12-26 10:35:58 +00:00
if (!parsed["percentage"].asString().empty() && parsed["percentage"].isUInt()) {
percentage_ = parsed["percentage"].asUInt();
} else {
percentage_ = 0;
}
break;
}
}