2016-11-25 12:55:15 +00:00
|
|
|
#include <utility>
|
|
|
|
|
2016-11-02 19:22:45 +00:00
|
|
|
#include "drawtypes/label.hpp"
|
2016-12-09 08:02:47 +00:00
|
|
|
#include "utils/factory.hpp"
|
2017-01-13 19:03:08 +00:00
|
|
|
#include "utils/string.hpp"
|
2016-11-02 19:22:45 +00:00
|
|
|
|
2016-11-19 05:22:44 +00:00
|
|
|
POLYBAR_NS
|
2016-11-02 19:22:45 +00:00
|
|
|
|
|
|
|
namespace drawtypes {
|
|
|
|
string label::get() const {
|
|
|
|
return m_tokenized;
|
|
|
|
}
|
|
|
|
|
|
|
|
label::operator bool() {
|
2016-12-20 04:52:59 +00:00
|
|
|
return !m_tokenized.empty();
|
2016-11-02 19:22:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
label_t label::clone() {
|
2016-12-04 03:03:17 +00:00
|
|
|
vector<token> tokens;
|
|
|
|
if (!m_tokens.empty()) {
|
|
|
|
std::back_insert_iterator<decltype(tokens)> back_it(tokens);
|
|
|
|
std::copy(m_tokens.begin(), m_tokens.end(), back_it);
|
|
|
|
}
|
2016-12-09 08:02:47 +00:00
|
|
|
return factory_util::shared<label>(m_text, m_foreground, m_background, m_underline, m_overline, m_font, m_padding,
|
|
|
|
m_margin, m_maxlen, m_ellipsis, move(tokens));
|
2016-11-02 19:22:45 +00:00
|
|
|
}
|
|
|
|
|
2017-01-13 13:33:16 +00:00
|
|
|
void label::clear() {
|
|
|
|
m_tokenized.clear();
|
|
|
|
}
|
|
|
|
|
2016-11-02 19:22:45 +00:00
|
|
|
void label::reset_tokens() {
|
|
|
|
m_tokenized = m_text;
|
|
|
|
}
|
|
|
|
|
2017-01-13 19:03:08 +00:00
|
|
|
void label::reset_tokens(const string& tokenized) {
|
|
|
|
m_tokenized = tokenized;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool label::has_token(const string& token) const {
|
|
|
|
return m_tokenized.find(token) != string::npos;
|
2016-11-19 03:03:18 +00:00
|
|
|
}
|
|
|
|
|
2016-11-25 12:55:15 +00:00
|
|
|
void label::replace_token(const string& token, string replacement) {
|
|
|
|
if (!has_token(token)) {
|
2016-11-20 22:09:08 +00:00
|
|
|
return;
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
2016-11-20 22:09:08 +00:00
|
|
|
|
2016-12-04 03:03:17 +00:00
|
|
|
for (auto&& tok : m_tokens) {
|
|
|
|
if (token == tok.token) {
|
2017-02-14 19:39:07 +00:00
|
|
|
if (tok.max != 0_z && string_util::char_len(replacement) > tok.max) {
|
|
|
|
replacement = string_util::utf8_truncate(std::move(replacement), tok.max) + tok.suffix;
|
2016-12-31 03:32:11 +00:00
|
|
|
} else if (tok.min != 0_z && replacement.length() < tok.min) {
|
|
|
|
replacement.insert(0_z, tok.min - replacement.length(), ' ');
|
2016-12-04 03:03:17 +00:00
|
|
|
}
|
|
|
|
m_tokenized = string_util::replace_all(m_tokenized, token, move(replacement));
|
2017-01-13 19:03:08 +00:00
|
|
|
m_tokenized = string_util::replace_all(m_tokenized, token, move(replacement));
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
2016-11-22 02:35:30 +00:00
|
|
|
}
|
2016-11-02 19:22:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void label::replace_defined_values(const label_t& label) {
|
2016-11-25 12:55:15 +00:00
|
|
|
if (!label->m_foreground.empty()) {
|
2016-11-02 19:22:45 +00:00
|
|
|
m_foreground = label->m_foreground;
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
|
|
|
if (!label->m_background.empty()) {
|
2016-11-02 19:22:45 +00:00
|
|
|
m_background = label->m_background;
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
|
|
|
if (!label->m_underline.empty()) {
|
2016-11-02 19:22:45 +00:00
|
|
|
m_underline = label->m_underline;
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
|
|
|
if (!label->m_overline.empty()) {
|
2016-11-02 19:22:45 +00:00
|
|
|
m_overline = label->m_overline;
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
2016-11-30 21:17:52 +00:00
|
|
|
if (label->m_font != 0) {
|
|
|
|
m_font = label->m_font;
|
|
|
|
}
|
2016-12-31 03:32:11 +00:00
|
|
|
if (label->m_padding.left != 0U) {
|
2016-12-04 10:57:33 +00:00
|
|
|
m_padding.left = label->m_padding.left;
|
2016-11-30 21:17:52 +00:00
|
|
|
}
|
2016-12-31 03:32:11 +00:00
|
|
|
if (label->m_padding.right != 0U) {
|
2016-12-04 10:57:33 +00:00
|
|
|
m_padding.right = label->m_padding.right;
|
|
|
|
}
|
2016-12-31 03:32:11 +00:00
|
|
|
if (label->m_margin.left != 0U) {
|
2016-12-04 10:57:33 +00:00
|
|
|
m_margin.left = label->m_margin.left;
|
|
|
|
}
|
2016-12-31 03:32:11 +00:00
|
|
|
if (label->m_margin.right != 0U) {
|
2016-12-04 10:57:33 +00:00
|
|
|
m_margin.right = label->m_margin.right;
|
2016-11-30 21:17:52 +00:00
|
|
|
}
|
2016-12-31 03:32:11 +00:00
|
|
|
if (label->m_maxlen != 0_z) {
|
2016-11-30 21:17:52 +00:00
|
|
|
m_maxlen = label->m_maxlen;
|
|
|
|
m_ellipsis = label->m_ellipsis;
|
|
|
|
}
|
2016-11-02 19:22:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void label::copy_undefined(const label_t& label) {
|
2016-11-25 12:55:15 +00:00
|
|
|
if (m_foreground.empty() && !label->m_foreground.empty()) {
|
2016-11-02 19:22:45 +00:00
|
|
|
m_foreground = label->m_foreground;
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
|
|
|
if (m_background.empty() && !label->m_background.empty()) {
|
2016-11-02 19:22:45 +00:00
|
|
|
m_background = label->m_background;
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
|
|
|
if (m_underline.empty() && !label->m_underline.empty()) {
|
2016-11-02 19:22:45 +00:00
|
|
|
m_underline = label->m_underline;
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
|
|
|
if (m_overline.empty() && !label->m_overline.empty()) {
|
2016-11-02 19:22:45 +00:00
|
|
|
m_overline = label->m_overline;
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
|
|
|
if (m_font == 0 && label->m_font != 0) {
|
2016-11-02 19:22:45 +00:00
|
|
|
m_font = label->m_font;
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
2016-12-31 03:32:11 +00:00
|
|
|
if (m_padding.left == 0U && label->m_padding.left != 0U) {
|
2016-12-04 10:57:33 +00:00
|
|
|
m_padding.left = label->m_padding.left;
|
|
|
|
}
|
2016-12-31 03:32:11 +00:00
|
|
|
if (m_padding.right == 0U && label->m_padding.right != 0U) {
|
2016-12-04 10:57:33 +00:00
|
|
|
m_padding.right = label->m_padding.right;
|
|
|
|
}
|
2016-12-31 03:32:11 +00:00
|
|
|
if (m_margin.left == 0U && label->m_margin.left != 0U) {
|
2016-12-04 10:57:33 +00:00
|
|
|
m_margin.left = label->m_margin.left;
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
2016-12-31 03:32:11 +00:00
|
|
|
if (m_margin.right == 0U && label->m_margin.right != 0U) {
|
2016-12-04 10:57:33 +00:00
|
|
|
m_margin.right = label->m_margin.right;
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
2016-12-31 03:32:11 +00:00
|
|
|
if (m_maxlen == 0_z && label->m_maxlen != 0_z) {
|
2016-11-02 19:22:45 +00:00
|
|
|
m_maxlen = label->m_maxlen;
|
|
|
|
m_ellipsis = label->m_ellipsis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a label by loading values from the configuration
|
|
|
|
*/
|
2016-11-25 12:55:15 +00:00
|
|
|
label_t load_label(const config& conf, const string& section, string name, bool required, string def) {
|
2016-12-04 03:03:17 +00:00
|
|
|
vector<token> tokens;
|
2016-11-21 05:33:50 +00:00
|
|
|
size_t start, end, pos;
|
2016-11-20 22:09:08 +00:00
|
|
|
|
2016-12-14 05:51:07 +00:00
|
|
|
name = string_util::ltrim(string_util::rtrim(move(name), '>'), '<');
|
2016-11-02 19:22:45 +00:00
|
|
|
|
|
|
|
string text;
|
|
|
|
|
2016-12-15 08:29:14 +00:00
|
|
|
struct side_values padding {
|
|
|
|
}, margin{};
|
2016-12-04 10:57:33 +00:00
|
|
|
|
2016-11-25 12:55:15 +00:00
|
|
|
if (required) {
|
2016-12-30 22:32:05 +00:00
|
|
|
text = conf.get(section, name);
|
2016-11-25 12:55:15 +00:00
|
|
|
} else {
|
2016-12-30 22:32:05 +00:00
|
|
|
text = conf.get(section, name, move(def));
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
2016-11-02 19:22:45 +00:00
|
|
|
|
2016-12-04 16:28:57 +00:00
|
|
|
size_t len{text.size()};
|
|
|
|
|
|
|
|
if (len > 2 && text[0] == '"' && text[len - 1] == '"') {
|
|
|
|
text = text.substr(1, len - 2);
|
|
|
|
}
|
|
|
|
|
2016-12-04 10:57:33 +00:00
|
|
|
const auto get_left_right = [&](string key) {
|
2016-12-31 03:32:11 +00:00
|
|
|
auto value = conf.get(section, key, 0U);
|
2016-12-30 22:32:05 +00:00
|
|
|
auto left = conf.get(section, key + "-left", value);
|
|
|
|
auto right = conf.get(section, key + "-right", value);
|
2017-01-19 10:11:28 +00:00
|
|
|
return side_values{static_cast<unsigned short int>(left), static_cast<unsigned short int>(right)};
|
2016-12-04 10:57:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
padding = get_left_right(name + "-padding");
|
|
|
|
margin = get_left_right(name + "-margin");
|
|
|
|
|
2016-11-21 06:44:35 +00:00
|
|
|
string line{text};
|
|
|
|
|
2016-11-21 05:33:50 +00:00
|
|
|
while ((start = line.find('%')) != string::npos && (end = line.find('%', start + 1)) != string::npos) {
|
2016-12-04 03:03:17 +00:00
|
|
|
auto token_str = line.substr(start, end - start + 1);
|
2016-11-20 22:09:08 +00:00
|
|
|
|
2017-01-13 19:03:08 +00:00
|
|
|
// ignore false positives
|
|
|
|
// lemonbar tags %{...}
|
|
|
|
// trailing percentage signs %token%%
|
2017-01-17 14:38:28 +00:00
|
|
|
if (token_str.find_first_of("abcdefghijklmnopqrstuvwxyz") != 1) {
|
2017-01-13 19:03:08 +00:00
|
|
|
line.erase(0, end);
|
2016-11-21 05:33:50 +00:00
|
|
|
continue;
|
2016-11-22 22:10:35 +00:00
|
|
|
}
|
2016-11-21 05:33:50 +00:00
|
|
|
|
2016-11-22 22:10:35 +00:00
|
|
|
line.erase(start, end - start + 1);
|
2016-12-31 03:32:11 +00:00
|
|
|
tokens.emplace_back(token{token_str, 0_z, 0_z});
|
2016-12-04 03:03:17 +00:00
|
|
|
auto& token = tokens.back();
|
2016-11-21 05:33:50 +00:00
|
|
|
|
|
|
|
// find min delimiter
|
2016-12-04 03:03:17 +00:00
|
|
|
if ((pos = token_str.find(':')) == string::npos) {
|
2016-11-21 05:33:50 +00:00
|
|
|
continue;
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
2016-11-21 05:33:50 +00:00
|
|
|
|
|
|
|
// strip min/max specifiers from the label string token
|
2016-12-04 03:03:17 +00:00
|
|
|
token.token = token_str.substr(0, pos) + '%';
|
|
|
|
text = string_util::replace(text, token_str, token.token);
|
2016-11-20 22:09:08 +00:00
|
|
|
|
2016-11-21 05:33:50 +00:00
|
|
|
try {
|
2016-12-04 03:03:17 +00:00
|
|
|
token.min = std::stoul(&token_str[pos + 1], nullptr, 10);
|
2016-11-21 05:33:50 +00:00
|
|
|
} catch (const std::invalid_argument& err) {
|
|
|
|
continue;
|
2016-11-20 22:09:08 +00:00
|
|
|
}
|
2016-11-21 05:33:50 +00:00
|
|
|
|
|
|
|
// find max delimiter
|
2016-12-04 03:03:17 +00:00
|
|
|
if ((pos = token_str.find(':', pos + 1)) == string::npos) {
|
2016-11-21 05:33:50 +00:00
|
|
|
continue;
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
2016-11-21 05:33:50 +00:00
|
|
|
|
|
|
|
try {
|
2016-12-04 03:03:17 +00:00
|
|
|
token.max = std::stoul(&token_str[pos + 1], nullptr, 10);
|
2016-11-21 05:33:50 +00:00
|
|
|
} catch (const std::invalid_argument& err) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ignore max lengths less than min
|
2016-12-04 03:03:17 +00:00
|
|
|
if (token.max < token.min) {
|
2016-12-31 03:32:11 +00:00
|
|
|
token.max = 0_z;
|
2016-12-04 03:03:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// find suffix delimiter
|
|
|
|
if ((pos = token_str.find(':', pos + 1)) != string::npos) {
|
2017-01-13 19:03:08 +00:00
|
|
|
token.suffix = token_str.substr(pos + 1, token_str.size() - pos - 2);
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
2016-11-20 22:09:08 +00:00
|
|
|
}
|
2016-11-22 02:35:30 +00:00
|
|
|
|
2016-11-02 19:22:45 +00:00
|
|
|
// clang-format off
|
2016-12-09 08:02:47 +00:00
|
|
|
return factory_util::shared<label>(text,
|
2016-12-30 22:32:05 +00:00
|
|
|
conf.get(section, name + "-foreground", ""s),
|
|
|
|
conf.get(section, name + "-background", ""s),
|
|
|
|
conf.get(section, name + "-underline", ""s),
|
|
|
|
conf.get(section, name + "-overline", ""s),
|
|
|
|
conf.get(section, name + "-font", 0),
|
2016-12-04 10:57:33 +00:00
|
|
|
padding,
|
|
|
|
margin,
|
2016-12-30 22:32:05 +00:00
|
|
|
conf.get(section, name + "-maxlen", 0_z),
|
|
|
|
conf.get(section, name + "-ellipsis", true),
|
2016-12-04 03:03:17 +00:00
|
|
|
move(tokens));
|
2016-11-02 19:22:45 +00:00
|
|
|
// clang-format on
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a label by loading optional values from the configuration
|
|
|
|
*/
|
|
|
|
label_t load_optional_label(const config& conf, string section, string name, string def) {
|
2016-11-25 12:55:15 +00:00
|
|
|
return load_label(conf, move(section), move(name), false, move(def));
|
2016-11-02 19:22:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create an icon by loading values from the configuration
|
|
|
|
*/
|
|
|
|
icon_t load_icon(const config& conf, string section, string name, bool required, string def) {
|
2016-11-25 12:55:15 +00:00
|
|
|
return load_label(conf, move(section), move(name), required, move(def));
|
2016-11-02 19:22:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create an icon by loading optional values from the configuration
|
|
|
|
*/
|
|
|
|
icon_t load_optional_icon(const config& conf, string section, string name, string def) {
|
2016-11-25 12:55:15 +00:00
|
|
|
return load_icon(conf, move(section), move(name), false, move(def));
|
2016-11-02 19:22:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-19 05:22:44 +00:00
|
|
|
POLYBAR_NS_END
|