polybar-dwm/src/components/parser.cpp

308 lines
7.8 KiB
C++
Raw Normal View History

#include <cassert>
2016-11-02 19:22:45 +00:00
#include "components/parser.hpp"
2016-11-21 14:07:00 +00:00
#include "components/types.hpp"
#include "events/signal.hpp"
#include "events/signal_emitter.hpp"
#include "settings.hpp"
2016-12-26 08:40:15 +00:00
#include "utils/color.hpp"
2017-01-11 02:07:28 +00:00
#include "utils/factory.hpp"
#include "utils/file.hpp"
2016-11-02 19:22:45 +00:00
#include "utils/math.hpp"
#include "utils/memory.hpp"
2016-11-02 19:22:45 +00:00
#include "utils/string.hpp"
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-11-02 19:22:45 +00:00
using namespace signals::parser;
/**
* Create instance
*/
parser::make_type parser::make() {
return factory_util::unique<parser>(signal_emitter::make());
}
/**
* Construct parser instance
*/
parser::parser(signal_emitter& emitter) : m_sig(emitter) {}
2016-11-21 14:07:00 +00:00
2016-11-02 19:22:45 +00:00
/**
* Process input string
2016-11-02 19:22:45 +00:00
*/
void parser::parse(const bar_settings& bar, string data) {
2016-12-14 04:17:18 +00:00
while (!data.empty()) {
size_t pos{string::npos};
2016-11-25 12:55:15 +00:00
if (data.compare(0, 2, "%{") == 0 && (pos = data.find('}')) != string::npos) {
codeblock(data.substr(2, pos - 2), bar);
2016-11-02 19:22:45 +00:00
data.erase(0, pos + 1);
2016-12-14 04:17:18 +00:00
} else if ((pos = data.find("%{")) != string::npos) {
2016-11-02 19:22:45 +00:00
data.erase(0, text(data.substr(0, pos)));
2016-12-14 04:17:18 +00:00
} else {
data.erase(0, text(data.substr(0)));
2016-11-02 19:22:45 +00:00
}
}
2016-11-25 03:10:26 +00:00
if (!m_actions.empty()) {
throw unclosed_actionblocks(to_string(m_actions.size()) + " unclosed action block(s)");
}
2016-11-02 19:22:45 +00:00
}
/**
* Process contents within tag blocks, i.e: %{...}
2016-11-02 19:22:45 +00:00
*/
void parser::codeblock(string&& data, const bar_settings& bar) {
2016-11-02 19:22:45 +00:00
size_t pos;
while (data.length()) {
data = string_util::ltrim(move(data), ' ');
2016-11-02 19:22:45 +00:00
2016-11-25 12:55:15 +00:00
if (data.empty()) {
2016-11-02 19:22:45 +00:00
break;
2016-11-25 12:55:15 +00:00
}
2016-11-02 19:22:45 +00:00
char tag{data[0]};
2016-11-02 19:22:45 +00:00
string value;
// Remove the tag
data.erase(0, 1);
2016-11-25 12:55:15 +00:00
if ((pos = data.find_first_of(" }")) != string::npos) {
2016-11-02 19:22:45 +00:00
value = data.substr(0, pos);
2016-11-25 12:55:15 +00:00
} else {
2016-11-02 19:22:45 +00:00
value = data;
2016-11-25 12:55:15 +00:00
}
2016-11-02 19:22:45 +00:00
switch (tag) {
case 'B':
m_sig.emit(change_background{parse_color(value, bar.background)});
2016-11-02 19:22:45 +00:00
break;
case 'F':
m_sig.emit(change_foreground{parse_color(value, bar.foreground)});
break;
case 'T':
m_sig.emit(change_font{parse_fontindex(value)});
2016-11-02 19:22:45 +00:00
break;
case 'U':
m_sig.emit(change_underline{parse_color(value, bar.underline.color)});
m_sig.emit(change_overline{parse_color(value, bar.overline.color)});
2016-11-02 19:22:45 +00:00
break;
case 'u':
m_sig.emit(change_underline{parse_color(value, bar.underline.color)});
2016-11-02 19:22:45 +00:00
break;
case 'o':
m_sig.emit(change_overline{parse_color(value, bar.overline.color)});
break;
case 'R':
m_sig.emit(change_background{parse_color(value, bar.foreground)});
m_sig.emit(change_foreground{parse_color(value, bar.background)});
2016-11-02 19:22:45 +00:00
break;
case 'O':
m_sig.emit(offset_pixel{static_cast<int16_t>(std::atoi(value.c_str()))});
2016-11-02 19:22:45 +00:00
break;
case 'l':
m_sig.emit(change_alignment{alignment::LEFT});
2016-11-02 19:22:45 +00:00
break;
case 'c':
m_sig.emit(change_alignment{alignment::CENTER});
2016-11-02 19:22:45 +00:00
break;
case 'r':
m_sig.emit(change_alignment{alignment::RIGHT});
2016-11-02 19:22:45 +00:00
break;
case '+':
m_sig.emit(attribute_set{parse_attr(value[0])});
2016-11-02 19:22:45 +00:00
break;
case '-':
m_sig.emit(attribute_unset{parse_attr(value[0])});
break;
case '!':
m_sig.emit(attribute_toggle{parse_attr(value[0])});
2016-11-02 19:22:45 +00:00
break;
case 'A':
if (isdigit(data[0]) || data[0] == ':') {
2016-12-14 04:17:18 +00:00
value = parse_action_cmd(data.substr(data[0] != ':' ? 1 : 0));
2016-11-02 19:22:45 +00:00
mousebtn btn = parse_action_btn(data);
m_actions.push_back(static_cast<int>(btn));
m_sig.emit(action_begin{action{btn, value}});
2016-11-02 19:22:45 +00:00
// make sure we strip the correct length (btn+wrapping colons)
2016-11-25 12:55:15 +00:00
if (value[0] != ':') {
2016-11-02 19:22:45 +00:00
value += "0";
2016-11-25 12:55:15 +00:00
}
2016-11-02 19:22:45 +00:00
value += "::";
} else if (!m_actions.empty()) {
m_sig.emit(action_end{parse_action_btn(value)});
2016-11-02 19:22:45 +00:00
m_actions.pop_back();
}
break;
default:
2016-11-25 03:10:26 +00:00
throw unrecognized_token("Unrecognized token '" + string{tag} + "'");
2016-11-02 19:22:45 +00:00
}
2016-11-25 12:55:15 +00:00
if (!data.empty()) {
2016-11-02 19:22:45 +00:00
data.erase(0, !value.empty() ? value.length() : 1);
2016-11-25 12:55:15 +00:00
}
2016-11-02 19:22:45 +00:00
}
}
/**
* Process text contents
2016-11-02 19:22:45 +00:00
*/
2016-12-14 04:17:18 +00:00
size_t parser::text(string&& data) {
#ifdef DEBUG_WHITESPACE
string::size_type p;
while ((p = data.find(' ')) != string::npos) {
data.replace(p, 1, "-"s);
}
#endif
const uint8_t* utf{reinterpret_cast<const uint8_t*>(&data[0])};
2016-11-02 19:22:45 +00:00
2016-12-21 22:22:02 +00:00
// clang-format off
if (utf[0] < 0x80) {
size_t pos{0};
// grab consecutive ascii chars
while (utf[pos] && utf[pos] < 0x80) {
packet pkt{};
size_t limit{memory_util::countof(pkt.data)};
size_t len{0};
while (len + 1 < limit && utf[pos] && utf[pos] < 0x80) {
pkt.data[len++] = utf[pos++];
}
if (!len) {
break;
}
pkt.length = len;
m_sig.emit(write_text_string{move(pkt)});
2016-11-02 19:22:45 +00:00
}
if (pos > 0) {
return pos;
2016-11-25 12:55:15 +00:00
}
2016-12-21 22:22:02 +00:00
2016-11-02 19:22:45 +00:00
} else if ((utf[0] & 0xe0) == 0xc0) { // 2 byte utf-8 sequence
2016-12-21 22:22:02 +00:00
m_sig.emit(write_text_unicode{static_cast<uint16_t>(((utf[0] & 0x1f) << 6) | (utf[1] & 0x3f))});
2016-11-02 19:22:45 +00:00
return 2;
} else if ((utf[0] & 0xf0) == 0xe0) { // 3 byte utf-8 sequence
2016-12-21 22:22:02 +00:00
m_sig.emit(write_text_unicode{static_cast<uint16_t>(((utf[0] & 0x0f) << 12) | ((utf[1] & 0x3f) << 6) | (utf[2] & 0x3f))});
2016-11-02 19:22:45 +00:00
return 3;
} else if ((utf[0] & 0xf8) == 0xf0) { // 4 byte utf-8 sequence
2016-12-21 22:22:02 +00:00
// m_sig.emit(write_text_unicode{((utf[0] & 0x07) << 18) | ((utf[1] & 0x3f) << 12) | ((utf[2] & 0x3f) << 6) | (utf[3] & 0x3f)});
m_sig.emit(write_text_unicode{static_cast<uint16_t>(0xfffd)});
2016-11-02 19:22:45 +00:00
return 4;
} else if ((utf[0] & 0xfc) == 0xf8) { // 5 byte utf-8 sequence
2016-12-21 22:22:02 +00:00
// m_sig.emit(write_text_unicode{((utf[0] & 0x03) << 24) | ((utf[1] & 0x3f) << 18) | ((utf[2] & 0x3f) << 12) | ((utf[3] & 0x3f) << 6) | (utf[4] & 0x3f)});
m_sig.emit(write_text_unicode{static_cast<uint16_t>(0xfffd)});
2016-11-02 19:22:45 +00:00
return 5;
} else if ((utf[0] & 0xfe) == 0xfc) { // 6 byte utf-8 sequence
2016-12-21 22:22:02 +00:00
// m_sig.emit(write_text_unicode{((utf[0] & 0x01) << 30) | ((utf[1] & 0x3f) << 24) | ((utf[2] & 0x3f) << 18) | ((utf[3] & 0x3f) << 12) | ((utf[4] & 0x3f) << 6) | (utf[5] & 0x3f)});
m_sig.emit(write_text_unicode{static_cast<uint16_t>(0xfffd)});
2016-11-02 19:22:45 +00:00
return 6;
}
2016-12-21 22:22:02 +00:00
// clang-format on
if (utf[0] < 0x80) {
m_sig.emit(write_text_ascii{utf[0]});
2016-11-02 19:22:45 +00:00
}
return 1;
2016-11-02 19:22:45 +00:00
}
/**
* Process color hex string and convert it to the correct value
2016-11-02 19:22:45 +00:00
*/
2016-12-14 04:17:18 +00:00
uint32_t parser::parse_color(const string& s, uint32_t fallback) {
2016-11-21 14:07:00 +00:00
uint32_t color{0};
2016-11-25 12:55:15 +00:00
if (s.empty() || s[0] == '-' || (color = color_util::parse(s, fallback)) == fallback) {
2016-11-02 19:22:45 +00:00
return fallback;
2016-11-25 12:55:15 +00:00
}
2016-11-21 14:07:00 +00:00
return color_util::premultiply_alpha(color);
2016-11-02 19:22:45 +00:00
}
/**
* Process font index and convert it to the correct value
2016-11-02 19:22:45 +00:00
*/
2016-12-20 14:09:11 +00:00
uint8_t parser::parse_fontindex(const string& s) {
if (s.empty() || s[0] == '-') {
2016-12-20 14:09:11 +00:00
return 0;
2016-11-21 14:07:00 +00:00
}
try {
2016-11-25 12:55:15 +00:00
return std::stoul(s, nullptr, 10);
2016-11-21 14:07:00 +00:00
} catch (const std::invalid_argument& err) {
2016-12-20 14:09:11 +00:00
return 0;
2016-11-21 14:07:00 +00:00
}
2016-11-02 19:22:45 +00:00
}
/**
* Process attribute token and convert it to the correct value
2016-11-02 19:22:45 +00:00
*/
attribute parser::parse_attr(const char attr) {
switch (attr) {
2016-11-02 19:22:45 +00:00
case 'o':
return attribute::OVERLINE;
2016-11-02 19:22:45 +00:00
case 'u':
return attribute::UNDERLINE;
default:
2016-11-25 03:10:26 +00:00
throw unrecognized_token("Unrecognized attribute '" + string{attr} + "'");
2016-11-02 19:22:45 +00:00
}
}
/**
* Process action button token and convert it to the correct value
2016-11-02 19:22:45 +00:00
*/
2016-12-14 04:17:18 +00:00
mousebtn parser::parse_action_btn(const string& data) {
2016-11-25 12:55:15 +00:00
if (data[0] == ':') {
2016-11-02 19:22:45 +00:00
return mousebtn::LEFT;
2016-11-25 12:55:15 +00:00
} else if (isdigit(data[0])) {
2016-11-02 19:22:45 +00:00
return static_cast<mousebtn>(data[0] - '0');
2016-11-25 12:55:15 +00:00
} else if (!m_actions.empty()) {
2016-11-02 19:22:45 +00:00
return static_cast<mousebtn>(m_actions.back());
2016-11-25 12:55:15 +00:00
} else {
2016-11-02 19:22:45 +00:00
return mousebtn::NONE;
2016-11-25 12:55:15 +00:00
}
2016-11-02 19:22:45 +00:00
}
/**
* Process action command string
2016-11-02 19:22:45 +00:00
*/
2016-12-14 04:17:18 +00:00
string parser::parse_action_cmd(string&& data) {
if (data[0] != ':') {
2016-11-21 14:07:00 +00:00
return "";
2016-11-25 12:55:15 +00:00
}
2016-12-14 04:17:18 +00:00
size_t end{1};
while ((end = data.find(':', end)) != string::npos && data[end - 1] == '\\') {
end++;
}
2016-12-14 04:17:18 +00:00
if (end == string::npos) {
2016-11-21 14:07:00 +00:00
return "";
2016-11-25 12:55:15 +00:00
}
2016-12-14 04:17:18 +00:00
return data.substr(1, end - 1);
2016-11-02 19:22:45 +00:00
}
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END