Waybar/src/modules/sway/window.cpp

62 lines
1.8 KiB
C++
Raw Normal View History

2018-08-15 18:17:17 +00:00
#include "modules/sway/window.hpp"
#include "modules/sway/ipc/client.hpp"
waybar::modules::sway::Window::Window(Bar &bar, Json::Value config)
: ALabel(std::move(config)), bar_(bar)
2018-08-15 18:17:17 +00:00
{
2018-08-16 12:29:41 +00:00
label_.set_name("window");
std::string socketPath = getSocketPath();
ipcfd_ = ipcOpenSocket(socketPath);
ipc_eventfd_ = ipcOpenSocket(socketPath);
2018-08-15 18:17:17 +00:00
const char *subscribe = "[ \"window\" ]";
uint32_t len = strlen(subscribe);
2018-08-16 12:29:41 +00:00
ipcSingleCommand(ipc_eventfd_, IPC_SUBSCRIBE, subscribe, &len);
getFocusedWindow();
thread_ = [this] {
2018-08-15 18:17:17 +00:00
try {
2018-08-16 12:29:41 +00:00
auto res = ipcRecvResponse(ipc_eventfd_);
auto parsed = parser_.parse(res.payload);
if ((parsed["change"] == "focus" || parsed["change"] == "title")
&& parsed["container"]["focused"].asBool()) {
2018-08-16 12:29:41 +00:00
window_ = parsed["container"]["name"].asString();
Glib::signal_idle().connect_once(sigc::mem_fun(*this, &Window::update));
}
2018-08-15 18:17:17 +00:00
} catch (const std::exception& e) {
std::cerr << e.what() << std::endl;
}
};
}
auto waybar::modules::sway::Window::update() -> void
{
2018-08-16 12:29:41 +00:00
label_.set_text(window_);
label_.set_tooltip_text(window_);
2018-08-15 18:17:17 +00:00
}
2018-08-16 12:29:41 +00:00
std::string waybar::modules::sway::Window::getFocusedNode(Json::Value nodes)
2018-08-15 18:17:17 +00:00
{
for (auto &node : nodes) {
2018-08-16 12:29:41 +00:00
if (node["focused"].asBool()) {
2018-08-15 18:17:17 +00:00
return node["name"].asString();
2018-08-16 12:29:41 +00:00
}
auto res = getFocusedNode(node["nodes"]);
if (!res.empty()) {
2018-08-15 18:17:17 +00:00
return res;
2018-08-16 12:29:41 +00:00
}
2018-08-15 18:17:17 +00:00
}
return std::string();
}
2018-08-16 12:29:41 +00:00
void waybar::modules::sway::Window::getFocusedWindow()
2018-08-15 18:17:17 +00:00
{
try {
uint32_t len = 0;
2018-08-16 12:29:41 +00:00
auto res = ipcSingleCommand(ipcfd_, IPC_GET_TREE, nullptr, &len);
auto parsed = parser_.parse(res);
window_ = getFocusedNode(parsed["nodes"]);
2018-08-15 18:17:17 +00:00
Glib::signal_idle().connect_once(sigc::mem_fun(*this, &Window::update));
} catch (const std::exception &e) {
std::cerr << e.what() << std::endl;
}
}