278 lines
10 KiB
C++
278 lines
10 KiB
C++
#include "client.hpp"
|
|
#include <fmt/ostream.h>
|
|
#include <spdlog/spdlog.h>
|
|
#include <fstream>
|
|
#include <iostream>
|
|
#include "util/clara.hpp"
|
|
#include "util/json.hpp"
|
|
|
|
waybar::Client *waybar::Client::inst() {
|
|
static auto c = new Client();
|
|
return c;
|
|
}
|
|
|
|
const std::string waybar::Client::getValidPath(const std::vector<std::string> &paths) const {
|
|
wordexp_t p;
|
|
|
|
for (const std::string &path : paths) {
|
|
if (wordexp(path.c_str(), &p, 0) == 0) {
|
|
if (access(*p.we_wordv, F_OK) == 0) {
|
|
std::string result = *p.we_wordv;
|
|
wordfree(&p);
|
|
return result;
|
|
}
|
|
wordfree(&p);
|
|
}
|
|
}
|
|
|
|
return std::string();
|
|
}
|
|
|
|
void waybar::Client::handleGlobal(void *data, struct wl_registry *registry, uint32_t name,
|
|
const char *interface, uint32_t version) {
|
|
auto client = static_cast<Client *>(data);
|
|
if (strcmp(interface, zwlr_layer_shell_v1_interface.name) == 0) {
|
|
client->layer_shell = static_cast<struct zwlr_layer_shell_v1 *>(
|
|
wl_registry_bind(registry, name, &zwlr_layer_shell_v1_interface, version));
|
|
} else if (strcmp(interface, zxdg_output_manager_v1_interface.name) == 0 &&
|
|
version >= ZXDG_OUTPUT_V1_NAME_SINCE_VERSION) {
|
|
client->xdg_output_manager = static_cast<struct zxdg_output_manager_v1 *>(wl_registry_bind(
|
|
registry, name, &zxdg_output_manager_v1_interface, ZXDG_OUTPUT_V1_NAME_SINCE_VERSION));
|
|
} else if (strcmp(interface, zwp_idle_inhibit_manager_v1_interface.name) == 0) {
|
|
client->idle_inhibit_manager = static_cast<struct zwp_idle_inhibit_manager_v1 *>(
|
|
wl_registry_bind(registry, name, &zwp_idle_inhibit_manager_v1_interface, 1));
|
|
}
|
|
}
|
|
|
|
void waybar::Client::handleGlobalRemove(void * data, struct wl_registry * /*registry*/,
|
|
uint32_t name) {
|
|
// Nothing here
|
|
}
|
|
|
|
void waybar::Client::handleOutput(struct waybar_output &output) {
|
|
static const struct zxdg_output_v1_listener xdgOutputListener = {
|
|
.logical_position = [](void *, struct zxdg_output_v1 *, int32_t, int32_t) {},
|
|
.logical_size = [](void *, struct zxdg_output_v1 *, int32_t, int32_t) {},
|
|
.done = [](void *, struct zxdg_output_v1 *) {},
|
|
.name = &handleOutputName,
|
|
.description = [](void *, struct zxdg_output_v1 *, const char *) {},
|
|
};
|
|
// owned by output->monitor; no need to destroy
|
|
auto wl_output = gdk_wayland_monitor_get_wl_output(output.monitor->gobj());
|
|
output.xdg_output.reset(zxdg_output_manager_v1_get_xdg_output(xdg_output_manager, wl_output));
|
|
zxdg_output_v1_add_listener(output.xdg_output.get(), &xdgOutputListener, &output);
|
|
}
|
|
|
|
bool waybar::Client::isValidOutput(const Json::Value &config, struct waybar_output &output) {
|
|
if (config["output"].isArray()) {
|
|
for (auto const &output_conf : config["output"]) {
|
|
if (output_conf.isString() && output_conf.asString() == output.name) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
} else if (config["output"].isString()) {
|
|
auto config_output_name = config["output"].asString();
|
|
if (!config_output_name.empty()) {
|
|
if (config_output_name.substr(0, 1) == "!") {
|
|
return config_output_name.substr(1) != output.name;
|
|
}
|
|
return config_output_name == output.name;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
struct waybar::waybar_output &waybar::Client::getOutput(void *addr) {
|
|
auto it = std::find_if(
|
|
outputs_.begin(), outputs_.end(), [&addr](const auto &output) { return &output == addr; });
|
|
if (it == outputs_.end()) {
|
|
throw std::runtime_error("Unable to find valid output");
|
|
}
|
|
return *it;
|
|
}
|
|
|
|
std::vector<Json::Value> waybar::Client::getOutputConfigs(struct waybar_output &output) {
|
|
std::vector<Json::Value> configs;
|
|
if (config_.isArray()) {
|
|
for (auto const &config : config_) {
|
|
if (config.isObject() && isValidOutput(config, output)) {
|
|
configs.push_back(config);
|
|
}
|
|
}
|
|
} else if (isValidOutput(config_, output)) {
|
|
configs.push_back(config_);
|
|
}
|
|
return configs;
|
|
}
|
|
|
|
void waybar::Client::handleOutputName(void * data, struct zxdg_output_v1 * /*xdg_output*/,
|
|
const char *name) {
|
|
auto client = waybar::Client::inst();
|
|
try {
|
|
auto &output = client->getOutput(data);
|
|
output.name = name;
|
|
spdlog::debug("Output detected: {} ({} {})",
|
|
name,
|
|
output.monitor->get_manufacturer(),
|
|
output.monitor->get_model());
|
|
auto configs = client->getOutputConfigs(output);
|
|
if (configs.empty()) {
|
|
output.xdg_output.reset();
|
|
} else {
|
|
wl_display_roundtrip(client->wl_display);
|
|
for (const auto &config : configs) {
|
|
client->bars.emplace_back(std::make_unique<Bar>(&output, config));
|
|
Glib::RefPtr<Gdk::Screen> screen = client->bars.back()->window.get_screen();
|
|
client->style_context_->add_provider_for_screen(
|
|
screen, client->css_provider_, GTK_STYLE_PROVIDER_PRIORITY_USER);
|
|
}
|
|
}
|
|
} catch (const std::exception &e) {
|
|
std::cerr << e.what() << std::endl;
|
|
}
|
|
}
|
|
|
|
void waybar::Client::handleMonitorAdded(Glib::RefPtr<Gdk::Monitor> monitor) {
|
|
auto &output = outputs_.emplace_back();
|
|
output.monitor = monitor;
|
|
handleOutput(output);
|
|
}
|
|
|
|
void waybar::Client::handleMonitorRemoved(Glib::RefPtr<Gdk::Monitor> monitor) {
|
|
spdlog::debug("Output removed: {} {}", monitor->get_manufacturer(), monitor->get_model());
|
|
for (auto it = bars.begin(); it != bars.end();) {
|
|
if ((*it)->output->monitor == monitor) {
|
|
auto output_name = (*it)->output->name;
|
|
(*it)->window.close();
|
|
it = bars.erase(it);
|
|
spdlog::info("Bar removed from output: {}", output_name);
|
|
} else {
|
|
++it;
|
|
}
|
|
}
|
|
outputs_.remove_if([&monitor](const auto &output) { return output.monitor == monitor; });
|
|
}
|
|
|
|
std::tuple<const std::string, const std::string> waybar::Client::getConfigs(
|
|
const std::string &config, const std::string &style) const {
|
|
auto config_file = config.empty() ? getValidPath({
|
|
"$XDG_CONFIG_HOME/waybar/config",
|
|
"$HOME/.config/waybar/config",
|
|
"$HOME/waybar/config",
|
|
SYSCONFDIR "/xdg/waybar/config",
|
|
"./resources/config",
|
|
})
|
|
: config;
|
|
auto css_file = style.empty() ? getValidPath({
|
|
"$XDG_CONFIG_HOME/waybar/style.css",
|
|
"$HOME/.config/waybar/style.css",
|
|
"$HOME/waybar/style.css",
|
|
SYSCONFDIR "/xdg/waybar/style.css",
|
|
"./resources/style.css",
|
|
})
|
|
: style;
|
|
if (css_file.empty() || config_file.empty()) {
|
|
throw std::runtime_error("Missing required resources files");
|
|
}
|
|
spdlog::info("Resources files: {}, {}", config_file, css_file);
|
|
return {config_file, css_file};
|
|
}
|
|
|
|
auto waybar::Client::setupConfig(const std::string &config_file) -> void {
|
|
std::ifstream file(config_file);
|
|
if (!file.is_open()) {
|
|
throw std::runtime_error("Can't open config file");
|
|
}
|
|
std::string str((std::istreambuf_iterator<char>(file)), std::istreambuf_iterator<char>());
|
|
util::JsonParser parser;
|
|
config_ = parser.parse(str);
|
|
}
|
|
|
|
auto waybar::Client::setupCss(const std::string &css_file) -> void {
|
|
css_provider_ = Gtk::CssProvider::create();
|
|
style_context_ = Gtk::StyleContext::create();
|
|
|
|
// Load our css file, wherever that may be hiding
|
|
if (!css_provider_->load_from_path(css_file)) {
|
|
throw std::runtime_error("Can't open style file");
|
|
}
|
|
}
|
|
|
|
void waybar::Client::bindInterfaces() {
|
|
registry = wl_display_get_registry(wl_display);
|
|
static const struct wl_registry_listener registry_listener = {
|
|
.global = handleGlobal,
|
|
.global_remove = handleGlobalRemove,
|
|
};
|
|
wl_registry_add_listener(registry, ®istry_listener, this);
|
|
wl_display_roundtrip(wl_display);
|
|
if (layer_shell == nullptr || xdg_output_manager == nullptr) {
|
|
throw std::runtime_error("Failed to acquire required resources.");
|
|
}
|
|
// add existing outputs and subscribe to updates
|
|
for (auto i = 0; i < gdk_display->get_n_monitors(); ++i) {
|
|
auto monitor = gdk_display->get_monitor(i);
|
|
handleMonitorAdded(monitor);
|
|
}
|
|
gdk_display->signal_monitor_added().connect(sigc::mem_fun(*this, &Client::handleMonitorAdded));
|
|
gdk_display->signal_monitor_removed().connect(
|
|
sigc::mem_fun(*this, &Client::handleMonitorRemoved));
|
|
}
|
|
|
|
int waybar::Client::main(int argc, char *argv[]) {
|
|
bool show_help = false;
|
|
bool show_version = false;
|
|
std::string config;
|
|
std::string style;
|
|
std::string bar_id;
|
|
std::string log_level;
|
|
auto cli = clara::detail::Help(show_help) |
|
|
clara::detail::Opt(show_version)["-v"]["--version"]("Show version") |
|
|
clara::detail::Opt(config, "config")["-c"]["--config"]("Config path") |
|
|
clara::detail::Opt(style, "style")["-s"]["--style"]("Style path") |
|
|
clara::detail::Opt(
|
|
log_level,
|
|
"trace|debug|info|warning|error|critical|off")["-l"]["--log-level"]("Log level") |
|
|
clara::detail::Opt(bar_id, "id")["-b"]["--bar"]("Bar id");
|
|
auto res = cli.parse(clara::detail::Args(argc, argv));
|
|
if (!res) {
|
|
spdlog::error("Error in command line: {}", res.errorMessage());
|
|
return 1;
|
|
}
|
|
if (show_help) {
|
|
std::cout << cli << std::endl;
|
|
return 0;
|
|
}
|
|
if (show_version) {
|
|
std::cout << "Waybar v" << VERSION << std::endl;
|
|
return 0;
|
|
}
|
|
if (!log_level.empty()) {
|
|
spdlog::set_level(spdlog::level::from_str(log_level));
|
|
}
|
|
gtk_app = Gtk::Application::create(argc, argv, "fr.arouillard.waybar");
|
|
gdk_display = Gdk::Display::get_default();
|
|
if (!gdk_display) {
|
|
throw std::runtime_error("Can't find display");
|
|
}
|
|
if (!GDK_IS_WAYLAND_DISPLAY(gdk_display->gobj())) {
|
|
throw std::runtime_error("Bar need to run under Wayland");
|
|
}
|
|
wl_display = gdk_wayland_display_get_wl_display(gdk_display->gobj());
|
|
auto [config_file, css_file] = getConfigs(config, style);
|
|
setupConfig(config_file);
|
|
setupCss(css_file);
|
|
bindInterfaces();
|
|
gtk_app->hold();
|
|
gtk_app->run();
|
|
bars.clear();
|
|
zxdg_output_manager_v1_destroy(xdg_output_manager);
|
|
zwlr_layer_shell_v1_destroy(layer_shell);
|
|
zwp_idle_inhibit_manager_v1_destroy(idle_inhibit_manager);
|
|
wl_registry_destroy(registry);
|
|
wl_display_disconnect(wl_display);
|
|
return 0;
|
|
}
|