1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-11-11 13:50:56 -05:00
polybar/src/modules/i3.cpp

235 lines
7 KiB
C++
Raw Normal View History

2016-11-02 15:22:45 -04:00
#include <sys/socket.h>
#include "drawtypes/iconset.hpp"
#include "drawtypes/label.hpp"
2016-11-30 12:23:11 -05:00
#include "modules/i3.hpp"
#include "utils/file.hpp"
2016-11-20 17:04:31 -05:00
#include "modules/meta/base.inl"
#include "modules/meta/event_module.inl"
2016-11-19 00:22:44 -05:00
POLYBAR_NS
2016-11-02 15:22:45 -04:00
namespace modules {
2016-11-20 17:04:31 -05:00
template class module<i3_module>;
template class event_module<i3_module>;
2016-11-30 12:23:11 -05:00
i3_module::workspace::operator bool() {
return label && *label;
}
2016-11-30 12:23:11 -05:00
void i3_module::setup() {
auto socket_path = i3ipc::get_socketpath();
if (!file_util::exists(socket_path)) {
throw module_error("Could not find socket: " + (socket_path.empty() ? "<empty>" : socket_path));
}
m_ipc = make_unique<i3ipc::connection>();
// Load configuration values
GET_CONFIG_VALUE(name(), m_click, "enable-click");
GET_CONFIG_VALUE(name(), m_scroll, "enable-scroll");
2016-11-02 15:22:45 -04:00
GET_CONFIG_VALUE(name(), m_indexsort, "index-sort");
GET_CONFIG_VALUE(name(), m_pinworkspaces, "pin-workspaces");
GET_CONFIG_VALUE(name(), m_strip_wsnumbers, "strip-wsnumbers");
GET_CONFIG_VALUE(name(), m_wsname_maxlen, "wsname-maxlen");
// Add formats and create components
2016-11-30 12:23:11 -05:00
m_formatter->add(DEFAULT_FORMAT, DEFAULT_TAGS, {TAG_LABEL_STATE, TAG_LABEL_MODE});
2016-11-02 15:22:45 -04:00
if (m_formatter->has(TAG_LABEL_STATE)) {
m_statelabels.insert(
2016-11-30 12:23:11 -05:00
make_pair(state::FOCUSED, load_optional_label(m_conf, name(), "label-focused", DEFAULT_WS_LABEL)));
m_statelabels.insert(
make_pair(state::UNFOCUSED, load_optional_label(m_conf, name(), "label-unfocused", DEFAULT_WS_LABEL)));
m_statelabels.insert(
make_pair(state::VISIBLE, load_optional_label(m_conf, name(), "label-visible", DEFAULT_WS_LABEL)));
m_statelabels.insert(
make_pair(state::URGENT, load_optional_label(m_conf, name(), "label-urgent", DEFAULT_WS_LABEL)));
}
if (m_formatter->has(TAG_LABEL_MODE)) {
m_modelabel = load_optional_label(m_conf, name(), "label-mode", "%mode%");
2016-11-02 15:22:45 -04:00
}
2016-11-25 07:55:15 -05:00
m_icons = make_shared<iconset>();
m_icons->add(DEFAULT_WS_ICON, make_shared<label>(m_conf.get<string>(name(), DEFAULT_WS_ICON, "")));
2016-11-02 15:22:45 -04:00
2016-11-25 07:55:15 -05:00
for (const auto& workspace : m_conf.get_list<string>(name(), "ws-icon", {})) {
2016-11-02 15:22:45 -04:00
auto vec = string_util::split(workspace, ';');
2016-11-25 07:55:15 -05:00
if (vec.size() == 2) {
m_icons->add(vec[0], make_shared<label>(vec[1]));
}
2016-11-02 15:22:45 -04:00
}
try {
2016-11-30 12:23:11 -05:00
if (m_modelabel) {
m_ipc->on_mode_event = [this](const i3ipc::mode_t& mode) {
m_modeactive = (mode.change != DEFAULT_MODE);
if (m_modeactive) {
m_modelabel->reset_tokens();
m_modelabel->replace_token("%mode%", mode.change);
}
};
}
m_ipc->subscribe(i3ipc::ET_WORKSPACE | i3ipc::ET_MODE);
} catch (const exception& err) {
2016-11-02 15:22:45 -04:00
throw module_error(err.what());
}
2016-11-30 12:23:11 -05:00
}
2016-11-02 15:22:45 -04:00
2016-11-30 12:23:11 -05:00
void i3_module::stop() {
2016-11-02 15:22:45 -04:00
try {
2016-11-30 12:23:11 -05:00
if (m_ipc) {
m_log.info("%s: Disconnecting from socket", name());
shutdown(m_ipc->get_event_socket_fd(), SHUT_RDWR);
shutdown(m_ipc->get_main_socket_fd(), SHUT_RDWR);
}
2016-11-02 15:22:45 -04:00
} catch (...) {
}
event_module::stop();
2016-11-30 12:23:11 -05:00
}
2016-11-02 15:22:45 -04:00
2016-11-30 12:23:11 -05:00
bool i3_module::has_event() {
try {
m_ipc->handle_event();
return true;
} catch (const exception& err) {
return false;
}
}
2016-11-02 15:22:45 -04:00
2016-11-30 12:23:11 -05:00
bool i3_module::update() {
2016-11-02 15:22:45 -04:00
m_workspaces.clear();
i3_util::connection_t ipc;
try {
auto workspaces = ipc.get_workspaces();
vector<shared_ptr<i3ipc::workspace_t>> sorted = workspaces;
string focused_output;
2016-11-30 12:23:11 -05:00
for (auto&& ws : workspaces) {
if (ws->focused) {
focused_output = ws->output;
2016-11-02 15:22:45 -04:00
break;
}
2016-11-25 07:55:15 -05:00
}
2016-11-02 15:22:45 -04:00
if (m_indexsort) {
using ws_t = shared_ptr<i3ipc::workspace_t>;
// clang-format off
sort(sorted.begin(), sorted.end(), [](ws_t ws1, ws_t ws2){
return ws1->num < ws2->num;
});
// clang-format on
}
2016-11-30 12:23:11 -05:00
for (auto&& ws : sorted) {
if (m_pinworkspaces && ws->output != m_bar.monitor->name) {
2016-11-02 15:22:45 -04:00
continue;
2016-11-25 07:55:15 -05:00
}
2016-11-02 15:22:45 -04:00
2016-11-30 12:23:11 -05:00
auto state = state::NONE;
if (ws->focused) {
state = state::FOCUSED;
} else if (ws->urgent) {
state = state::URGENT;
} else if (!ws->visible || (ws->visible && ws->output != focused_output)) {
state = state::UNFOCUSED;
2016-11-25 07:55:15 -05:00
} else {
2016-11-30 12:23:11 -05:00
state = state::VISIBLE;
2016-11-25 07:55:15 -05:00
}
2016-11-02 15:22:45 -04:00
2016-11-30 12:23:11 -05:00
string wsname{ws->name};
2016-11-02 15:22:45 -04:00
// Remove workspace numbers "0:"
2016-11-25 07:55:15 -05:00
if (m_strip_wsnumbers) {
wsname.erase(0, string_util::find_nth(wsname, 0, ":", 1) + 1);
2016-11-25 07:55:15 -05:00
}
2016-11-02 15:22:45 -04:00
// Trim leading and trailing whitespace
wsname = string_util::trim(wsname, ' ');
2016-11-02 15:22:45 -04:00
// Cap at configured max length
2016-11-25 07:55:15 -05:00
if (m_wsname_maxlen > 0 && wsname.length() > m_wsname_maxlen) {
2016-11-02 15:22:45 -04:00
wsname.erase(m_wsname_maxlen);
2016-11-25 07:55:15 -05:00
}
2016-11-02 15:22:45 -04:00
2016-11-30 12:23:11 -05:00
auto icon = m_icons->get(ws->name, DEFAULT_WS_ICON);
auto label = m_statelabels.find(state)->second->clone();
2016-11-02 15:22:45 -04:00
label->reset_tokens();
2016-11-30 12:23:11 -05:00
label->replace_token("%output%", ws->output);
2016-11-02 15:22:45 -04:00
label->replace_token("%name%", wsname);
label->replace_token("%icon%", icon->get());
2016-11-30 12:23:11 -05:00
label->replace_token("%index%", to_string(ws->num));
m_workspaces.emplace_back(make_unique<workspace>(ws->num, state, move(label)));
2016-11-02 15:22:45 -04:00
}
return true;
2016-11-30 12:23:11 -05:00
} catch (const exception& err) {
2016-11-02 15:22:45 -04:00
m_log.err("%s: %s", name(), err.what());
return false;
}
2016-11-30 12:23:11 -05:00
}
2016-11-02 15:22:45 -04:00
2016-11-30 12:23:11 -05:00
bool i3_module::build(builder* builder, const string& tag) const {
if (tag == TAG_LABEL_MODE && m_modeactive) {
builder->node(m_modelabel);
} else if (tag == TAG_LABEL_STATE && !m_workspaces.empty()) {
if (m_scroll) {
builder->cmd(mousebtn::SCROLL_DOWN, EVENT_SCROLL_DOWN);
builder->cmd(mousebtn::SCROLL_UP, EVENT_SCROLL_UP);
}
2016-11-02 15:22:45 -04:00
2016-11-30 12:23:11 -05:00
for (auto&& ws : m_workspaces) {
if (m_click) {
builder->cmd(mousebtn::LEFT, string{EVENT_CLICK} + to_string(ws->index));
builder->node(ws->label);
builder->cmd_close();
} else {
builder->node(ws->label);
}
}
2016-11-02 15:22:45 -04:00
2016-11-30 12:23:11 -05:00
if (m_scroll) {
builder->cmd_close();
builder->cmd_close();
}
2016-11-30 12:23:11 -05:00
} else {
return false;
}
return true;
2016-11-30 12:23:11 -05:00
}
2016-11-02 15:22:45 -04:00
2016-11-30 12:23:11 -05:00
bool i3_module::handle_event(string cmd) {
2016-11-25 07:55:15 -05:00
if (cmd.compare(0, 2, EVENT_PREFIX) != 0) {
2016-11-02 15:22:45 -04:00
return false;
2016-11-25 07:55:15 -05:00
}
2016-11-02 15:22:45 -04:00
try {
i3_util::connection_t ipc;
if (cmd.compare(0, strlen(EVENT_CLICK), EVENT_CLICK) == 0) {
m_log.info("%s: Sending workspace focus command to ipc handler", name());
ipc.send_command("workspace number " + cmd.substr(strlen(EVENT_CLICK)));
} else if (cmd.compare(0, strlen(EVENT_SCROLL_DOWN), EVENT_SCROLL_DOWN) == 0) {
m_log.info("%s: Sending workspace prev command to ipc handler", name());
ipc.send_command("workspace next_on_output");
} else if (cmd.compare(0, strlen(EVENT_SCROLL_UP), EVENT_SCROLL_UP) == 0) {
m_log.info("%s: Sending workspace next command to ipc handler", name());
ipc.send_command("workspace prev_on_output");
}
2016-11-30 12:23:11 -05:00
} catch (const exception& err) {
2016-11-02 15:22:45 -04:00
m_log.err("%s: %s", name(), err.what());
}
return true;
2016-11-30 12:23:11 -05:00
}
2016-11-02 15:22:45 -04:00
}
2016-11-19 00:22:44 -05:00
POLYBAR_NS_END