1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-11-11 13:50:56 -05:00
polybar/include/components/parser.hpp

53 lines
1.3 KiB
C++
Raw Normal View History

2016-06-14 23:32:35 -04:00
#pragma once
#include <stack>
2016-06-14 23:32:35 -04:00
#include "common.hpp"
2016-11-25 07:55:15 -05:00
#include "errors.hpp"
2016-06-14 23:32:35 -04:00
2016-11-19 00:22:44 -05:00
POLYBAR_NS
2016-06-14 23:32:35 -04:00
class signal_emitter;
2017-01-19 05:11:28 -05:00
enum class attribute;
enum class mousebtn;
struct bar_settings;
2016-11-21 09:07:00 -05:00
2016-11-24 22:10:26 -05:00
DEFINE_ERROR(parser_error);
DEFINE_CHILD_ERROR(unrecognized_token, parser_error);
DEFINE_CHILD_ERROR(unrecognized_attribute, parser_error);
DEFINE_CHILD_ERROR(unclosed_actionblocks, parser_error);
2016-06-14 23:32:35 -04:00
class parser {
public:
using make_type = unique_ptr<parser>;
static make_type make();
public:
explicit parser(signal_emitter& emitter);
void parse(const bar_settings& bar, string data);
2016-06-14 23:32:35 -04:00
protected:
void codeblock(string&& data, const bar_settings& bar);
2016-12-13 23:17:18 -05:00
size_t text(string&& data);
unsigned int parse_color(std::stack<unsigned int>& color_stack, string& value, unsigned int fallback);
unsigned int parse_color_string(const string& s, unsigned int fallback = 0);
int parse_fontindex(const string& value);
2016-11-25 07:55:15 -05:00
attribute parse_attr(const char attr);
2016-12-13 23:17:18 -05:00
mousebtn parse_action_btn(const string& data);
string parse_action_cmd(string&& data);
2016-06-14 23:32:35 -04:00
private:
signal_emitter& m_sig;
2016-06-14 23:32:35 -04:00
vector<int> m_actions;
unique_ptr<parser> m_parser;
std::stack<unsigned int> m_fg;
std::stack<unsigned int> m_bg;
std::stack<unsigned int> m_ul;
std::stack<unsigned int> m_ol;
std::stack<int> m_fonts;
2016-06-14 23:32:35 -04:00
};
2016-11-19 00:22:44 -05:00
POLYBAR_NS_END