2016-06-14 23:32:35 -04:00
|
|
|
#pragma once
|
2017-01-10 21:07:28 -05:00
|
|
|
|
2016-12-13 12:24:01 -05:00
|
|
|
#include <unordered_map>
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
#include "common.hpp"
|
|
|
|
#include "components/logger.hpp"
|
2016-11-25 07:55:15 -05:00
|
|
|
#include "errors.hpp"
|
2017-01-19 20:25:54 -05:00
|
|
|
#include "settings.hpp"
|
2016-11-20 17:04:31 -05:00
|
|
|
#include "utils/env.hpp"
|
2016-12-19 16:01:37 -05:00
|
|
|
#include "utils/file.hpp"
|
2016-06-14 23:32:35 -04:00
|
|
|
#include "utils/string.hpp"
|
2017-01-26 11:17:02 -05:00
|
|
|
#if WITH_XRM
|
2016-11-02 15:22:45 -04:00
|
|
|
#include "x11/xresources.hpp"
|
2017-01-19 20:25:54 -05:00
|
|
|
#endif
|
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
|
|
|
|
|
|
|
DEFINE_ERROR(value_error);
|
|
|
|
DEFINE_ERROR(key_error);
|
|
|
|
|
config_parser: Introduce stricter syntax conventions (#1377)
This is the next step to merge #1237 in stages.
Currently there are barely any restrictions on how the config can be
written. This causes things like config files with DOS line endings to
not be parsed properly (#1366) because polybar splits by `\n` and when
parsing section headers, it can't deal with the `\r` at the end of the
line and thus doesn't recognize any section headers.
With this PR we introduce some rules as to what characters are allowed
in section names and keys.
Note: When talking about spaces I refer to any character for which
`isspace()` returns `true`.
The rules are as follows:
* A section name or a key name cannot contain any spaces as well as any
of there characters:`"'=;#[](){}:.$\%`
* Spaces at the beginning and end of lines are always ignored when
parsing
* Comment lines start with `;` or `#` and last for the whole line. The
whole line will be ignored by the parser. You cannot start a comment at
the end of a line.
* Section headers have the following form `[HEADER_NAME]`
* Key-value lines look like this:
`KEY_NAME{SPACES}={SPACES}VALUE_STRING` where `{SPACES}` represents any
number of spaces. `VALUE_STRING` can contain any characters. If it is
*surrounded* with double quotes (`"`), those quotes will be removed,
this can be used to add spaces to the beginning or end of the value
* Empty lines are lines with only spaces in them
* If the line has any other form, it is a syntax error
This will introduce the following breaking changes because of how
underdefined the config syntax was before:
* `key = ""` will get treated as an empty string instead of the literal
* string `""`
* Any section or key name with forbidden characters will now be syntax
errors.
* Certain strings will be forbidden as section names: `self`, `root`,
* `BAR`. Because they have a special meaning inside references and so a
* section `[root]` can never be referenced.
This replaces the current parser implementation with a new more robust
one that will later be expanded to also check for dependency cycles and
allow for values that contain references mixed with other strings.
This PR also now expands the config paths given over the command line so
that `--config=~/.config/polybar/config` resolves properly.
Closes #1032
Closes #1694
* config_parser: Add skeleton with tests
First step in the config_parser develoment. Only tests functions that
are easily testable without many outside dependencies. Integration tests
will follow.
* config_parser: Implement parse_header
* config_parser: Implement get_line_type
* feat(string): Add trim functions with predicate
Not only trimming based on single character matching but based on a
freely specifiable predicate. Will be used to trim all spaces (based on
isspace)
* config_parser: Implement parse_key
* config_parser: Implement parse_line for valid lines
* config_parser: Throw exception on invalid lines
* config_parser: Remove line_no and file_index from parse_line
Cleaner to let the caller catch and fill in the line number and file
path
* string: Clear up misleading description of trim
Before, trim would remove all characters that *didn't* match the
predicate and thus the predicate isspace wouldn't work correctly. But
because we used the inverse (isnospace_pred) it all worked out, but if
the function was used with any other function, it wouldn't have given
the desired output
* config_parser: Implement parse_file
* config_parser: Switch operation to config_parser
This changes the way the config is invoked. Now main.cpp creates a
config_parser object which then returns the singleton config object from
the parse method. Subsequent calls to config::make will return the
already created config object as before
The config_parser does not yet have all the functionality of the old
parser: `inherit` directives are not yet resolved. Other than that all
the old functionality is implemented (creating sectionmap and applying
include-file)
Any sort of dependency detection (except for include-file) are still
missing
* config: Move xrm initialization to constructor
config_parser handles the detection of xrdb references and passes that
info to the config object.
This finally allows us to delete the config::parse_file function because
everything in it has been implemented (except for xrdb detection and
file error handling)
* refactor(config_parser): Cleanup
* config_parser: Set config data after initialization
Looks much cleaner this way
* config_parser: Expand include-file paths
* config_parser: Init xrm if the config uses %{xrdb references
* config_parser: Use same type of maps as in old impl
Polybar has some weird, not yet fixed, inheriting behaviour and it
changes depending on the order in which the config stores its data.
Using the same type of maps ensures that the behaviour stays the same.
* refactor(config_parser): Clearer invalid name error message
* config_parser: Don't allow reserved section names
Sections with the names 'self', 'BAR', 'root' could never be referenced
because those strings have a special meaning inside references
* config_parser: Handle inherit directives
This uses the old copy_inherited function, so this still suffers from
crashes if there are cyclic dependencies.
This also fixes the behaviour where any key that starts with 'inherit'
would be treated as an inherit directive
* config_parser: Clearer dependency cycle error message
* refactor(config_parser): Handle file errors when parsing
This removes the need to check if the file exists separately
* fix(config): expand config file path
Now paths using ~ and environment variables can be used as the config
path
* fix(config): Properly recognize xrdb references
* config_parser: Make messages more informative
* doc(config): Improve commenting
Comments now describe what the config_parser actually does instead of
what it will do.
We also now follow the rule that single line comments inside functions
should use `//` comments
* refactor: Move else on same line as curly braces
* fix(config_parser): Don't duplicate paths in `files`
* refactor(config_parser): Use else if for clarity
* fix(config): Undefined behavior in syntax_error
Before the custom what() method produced undefined behavior because the
returned string became invalid once the function returned.
* refactor(config): descriptive name for useless lines
is_valid could easily be confused as meaning syntactically invalid
without it being clarified in a comment
* refactor(config): Use separate strings instead of key_value
Takes just as much space and is much better to read
* fix(config_parser): TestCase -> TestSuite and fix macro call
Ref: #1644
* config_parser: use const string& in method args
* config_parser: Improve comments
* config_parser: Incorporate review comments
2019-08-06 13:41:31 -04:00
|
|
|
using valuemap_t = std::unordered_map<string, string>;
|
|
|
|
using sectionmap_t = std::map<string, valuemap_t>;
|
|
|
|
using file_list = vector<string>;
|
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
class config {
|
|
|
|
public:
|
2016-12-09 03:40:46 -05:00
|
|
|
using make_type = const config&;
|
2016-12-09 05:32:41 -05:00
|
|
|
static make_type make(string path = "", string bar = "");
|
2016-12-01 01:54:45 -05:00
|
|
|
|
config_parser: Introduce stricter syntax conventions (#1377)
This is the next step to merge #1237 in stages.
Currently there are barely any restrictions on how the config can be
written. This causes things like config files with DOS line endings to
not be parsed properly (#1366) because polybar splits by `\n` and when
parsing section headers, it can't deal with the `\r` at the end of the
line and thus doesn't recognize any section headers.
With this PR we introduce some rules as to what characters are allowed
in section names and keys.
Note: When talking about spaces I refer to any character for which
`isspace()` returns `true`.
The rules are as follows:
* A section name or a key name cannot contain any spaces as well as any
of there characters:`"'=;#[](){}:.$\%`
* Spaces at the beginning and end of lines are always ignored when
parsing
* Comment lines start with `;` or `#` and last for the whole line. The
whole line will be ignored by the parser. You cannot start a comment at
the end of a line.
* Section headers have the following form `[HEADER_NAME]`
* Key-value lines look like this:
`KEY_NAME{SPACES}={SPACES}VALUE_STRING` where `{SPACES}` represents any
number of spaces. `VALUE_STRING` can contain any characters. If it is
*surrounded* with double quotes (`"`), those quotes will be removed,
this can be used to add spaces to the beginning or end of the value
* Empty lines are lines with only spaces in them
* If the line has any other form, it is a syntax error
This will introduce the following breaking changes because of how
underdefined the config syntax was before:
* `key = ""` will get treated as an empty string instead of the literal
* string `""`
* Any section or key name with forbidden characters will now be syntax
errors.
* Certain strings will be forbidden as section names: `self`, `root`,
* `BAR`. Because they have a special meaning inside references and so a
* section `[root]` can never be referenced.
This replaces the current parser implementation with a new more robust
one that will later be expanded to also check for dependency cycles and
allow for values that contain references mixed with other strings.
This PR also now expands the config paths given over the command line so
that `--config=~/.config/polybar/config` resolves properly.
Closes #1032
Closes #1694
* config_parser: Add skeleton with tests
First step in the config_parser develoment. Only tests functions that
are easily testable without many outside dependencies. Integration tests
will follow.
* config_parser: Implement parse_header
* config_parser: Implement get_line_type
* feat(string): Add trim functions with predicate
Not only trimming based on single character matching but based on a
freely specifiable predicate. Will be used to trim all spaces (based on
isspace)
* config_parser: Implement parse_key
* config_parser: Implement parse_line for valid lines
* config_parser: Throw exception on invalid lines
* config_parser: Remove line_no and file_index from parse_line
Cleaner to let the caller catch and fill in the line number and file
path
* string: Clear up misleading description of trim
Before, trim would remove all characters that *didn't* match the
predicate and thus the predicate isspace wouldn't work correctly. But
because we used the inverse (isnospace_pred) it all worked out, but if
the function was used with any other function, it wouldn't have given
the desired output
* config_parser: Implement parse_file
* config_parser: Switch operation to config_parser
This changes the way the config is invoked. Now main.cpp creates a
config_parser object which then returns the singleton config object from
the parse method. Subsequent calls to config::make will return the
already created config object as before
The config_parser does not yet have all the functionality of the old
parser: `inherit` directives are not yet resolved. Other than that all
the old functionality is implemented (creating sectionmap and applying
include-file)
Any sort of dependency detection (except for include-file) are still
missing
* config: Move xrm initialization to constructor
config_parser handles the detection of xrdb references and passes that
info to the config object.
This finally allows us to delete the config::parse_file function because
everything in it has been implemented (except for xrdb detection and
file error handling)
* refactor(config_parser): Cleanup
* config_parser: Set config data after initialization
Looks much cleaner this way
* config_parser: Expand include-file paths
* config_parser: Init xrm if the config uses %{xrdb references
* config_parser: Use same type of maps as in old impl
Polybar has some weird, not yet fixed, inheriting behaviour and it
changes depending on the order in which the config stores its data.
Using the same type of maps ensures that the behaviour stays the same.
* refactor(config_parser): Clearer invalid name error message
* config_parser: Don't allow reserved section names
Sections with the names 'self', 'BAR', 'root' could never be referenced
because those strings have a special meaning inside references
* config_parser: Handle inherit directives
This uses the old copy_inherited function, so this still suffers from
crashes if there are cyclic dependencies.
This also fixes the behaviour where any key that starts with 'inherit'
would be treated as an inherit directive
* config_parser: Clearer dependency cycle error message
* refactor(config_parser): Handle file errors when parsing
This removes the need to check if the file exists separately
* fix(config): expand config file path
Now paths using ~ and environment variables can be used as the config
path
* fix(config): Properly recognize xrdb references
* config_parser: Make messages more informative
* doc(config): Improve commenting
Comments now describe what the config_parser actually does instead of
what it will do.
We also now follow the rule that single line comments inside functions
should use `//` comments
* refactor: Move else on same line as curly braces
* fix(config_parser): Don't duplicate paths in `files`
* refactor(config_parser): Use else if for clarity
* fix(config): Undefined behavior in syntax_error
Before the custom what() method produced undefined behavior because the
returned string became invalid once the function returned.
* refactor(config): descriptive name for useless lines
is_valid could easily be confused as meaning syntactically invalid
without it being clarified in a comment
* refactor(config): Use separate strings instead of key_value
Takes just as much space and is much better to read
* fix(config_parser): TestCase -> TestSuite and fix macro call
Ref: #1644
* config_parser: use const string& in method args
* config_parser: Improve comments
* config_parser: Incorporate review comments
2019-08-06 13:41:31 -04:00
|
|
|
explicit config(const logger& logger, string&& path = "", string&& bar = "")
|
|
|
|
: m_log(logger), m_file(move(path)), m_barname(move(bar)){};
|
2016-06-14 23:32:35 -04:00
|
|
|
|
config_parser: Introduce stricter syntax conventions (#1377)
This is the next step to merge #1237 in stages.
Currently there are barely any restrictions on how the config can be
written. This causes things like config files with DOS line endings to
not be parsed properly (#1366) because polybar splits by `\n` and when
parsing section headers, it can't deal with the `\r` at the end of the
line and thus doesn't recognize any section headers.
With this PR we introduce some rules as to what characters are allowed
in section names and keys.
Note: When talking about spaces I refer to any character for which
`isspace()` returns `true`.
The rules are as follows:
* A section name or a key name cannot contain any spaces as well as any
of there characters:`"'=;#[](){}:.$\%`
* Spaces at the beginning and end of lines are always ignored when
parsing
* Comment lines start with `;` or `#` and last for the whole line. The
whole line will be ignored by the parser. You cannot start a comment at
the end of a line.
* Section headers have the following form `[HEADER_NAME]`
* Key-value lines look like this:
`KEY_NAME{SPACES}={SPACES}VALUE_STRING` where `{SPACES}` represents any
number of spaces. `VALUE_STRING` can contain any characters. If it is
*surrounded* with double quotes (`"`), those quotes will be removed,
this can be used to add spaces to the beginning or end of the value
* Empty lines are lines with only spaces in them
* If the line has any other form, it is a syntax error
This will introduce the following breaking changes because of how
underdefined the config syntax was before:
* `key = ""` will get treated as an empty string instead of the literal
* string `""`
* Any section or key name with forbidden characters will now be syntax
errors.
* Certain strings will be forbidden as section names: `self`, `root`,
* `BAR`. Because they have a special meaning inside references and so a
* section `[root]` can never be referenced.
This replaces the current parser implementation with a new more robust
one that will later be expanded to also check for dependency cycles and
allow for values that contain references mixed with other strings.
This PR also now expands the config paths given over the command line so
that `--config=~/.config/polybar/config` resolves properly.
Closes #1032
Closes #1694
* config_parser: Add skeleton with tests
First step in the config_parser develoment. Only tests functions that
are easily testable without many outside dependencies. Integration tests
will follow.
* config_parser: Implement parse_header
* config_parser: Implement get_line_type
* feat(string): Add trim functions with predicate
Not only trimming based on single character matching but based on a
freely specifiable predicate. Will be used to trim all spaces (based on
isspace)
* config_parser: Implement parse_key
* config_parser: Implement parse_line for valid lines
* config_parser: Throw exception on invalid lines
* config_parser: Remove line_no and file_index from parse_line
Cleaner to let the caller catch and fill in the line number and file
path
* string: Clear up misleading description of trim
Before, trim would remove all characters that *didn't* match the
predicate and thus the predicate isspace wouldn't work correctly. But
because we used the inverse (isnospace_pred) it all worked out, but if
the function was used with any other function, it wouldn't have given
the desired output
* config_parser: Implement parse_file
* config_parser: Switch operation to config_parser
This changes the way the config is invoked. Now main.cpp creates a
config_parser object which then returns the singleton config object from
the parse method. Subsequent calls to config::make will return the
already created config object as before
The config_parser does not yet have all the functionality of the old
parser: `inherit` directives are not yet resolved. Other than that all
the old functionality is implemented (creating sectionmap and applying
include-file)
Any sort of dependency detection (except for include-file) are still
missing
* config: Move xrm initialization to constructor
config_parser handles the detection of xrdb references and passes that
info to the config object.
This finally allows us to delete the config::parse_file function because
everything in it has been implemented (except for xrdb detection and
file error handling)
* refactor(config_parser): Cleanup
* config_parser: Set config data after initialization
Looks much cleaner this way
* config_parser: Expand include-file paths
* config_parser: Init xrm if the config uses %{xrdb references
* config_parser: Use same type of maps as in old impl
Polybar has some weird, not yet fixed, inheriting behaviour and it
changes depending on the order in which the config stores its data.
Using the same type of maps ensures that the behaviour stays the same.
* refactor(config_parser): Clearer invalid name error message
* config_parser: Don't allow reserved section names
Sections with the names 'self', 'BAR', 'root' could never be referenced
because those strings have a special meaning inside references
* config_parser: Handle inherit directives
This uses the old copy_inherited function, so this still suffers from
crashes if there are cyclic dependencies.
This also fixes the behaviour where any key that starts with 'inherit'
would be treated as an inherit directive
* config_parser: Clearer dependency cycle error message
* refactor(config_parser): Handle file errors when parsing
This removes the need to check if the file exists separately
* fix(config): expand config file path
Now paths using ~ and environment variables can be used as the config
path
* fix(config): Properly recognize xrdb references
* config_parser: Make messages more informative
* doc(config): Improve commenting
Comments now describe what the config_parser actually does instead of
what it will do.
We also now follow the rule that single line comments inside functions
should use `//` comments
* refactor: Move else on same line as curly braces
* fix(config_parser): Don't duplicate paths in `files`
* refactor(config_parser): Use else if for clarity
* fix(config): Undefined behavior in syntax_error
Before the custom what() method produced undefined behavior because the
returned string became invalid once the function returned.
* refactor(config): descriptive name for useless lines
is_valid could easily be confused as meaning syntactically invalid
without it being clarified in a comment
* refactor(config): Use separate strings instead of key_value
Takes just as much space and is much better to read
* fix(config_parser): TestCase -> TestSuite and fix macro call
Ref: #1644
* config_parser: use const string& in method args
* config_parser: Improve comments
* config_parser: Incorporate review comments
2019-08-06 13:41:31 -04:00
|
|
|
const string& filepath() const;
|
2016-12-13 23:12:15 -05:00
|
|
|
string section() const;
|
|
|
|
|
config_parser: Introduce stricter syntax conventions (#1377)
This is the next step to merge #1237 in stages.
Currently there are barely any restrictions on how the config can be
written. This causes things like config files with DOS line endings to
not be parsed properly (#1366) because polybar splits by `\n` and when
parsing section headers, it can't deal with the `\r` at the end of the
line and thus doesn't recognize any section headers.
With this PR we introduce some rules as to what characters are allowed
in section names and keys.
Note: When talking about spaces I refer to any character for which
`isspace()` returns `true`.
The rules are as follows:
* A section name or a key name cannot contain any spaces as well as any
of there characters:`"'=;#[](){}:.$\%`
* Spaces at the beginning and end of lines are always ignored when
parsing
* Comment lines start with `;` or `#` and last for the whole line. The
whole line will be ignored by the parser. You cannot start a comment at
the end of a line.
* Section headers have the following form `[HEADER_NAME]`
* Key-value lines look like this:
`KEY_NAME{SPACES}={SPACES}VALUE_STRING` where `{SPACES}` represents any
number of spaces. `VALUE_STRING` can contain any characters. If it is
*surrounded* with double quotes (`"`), those quotes will be removed,
this can be used to add spaces to the beginning or end of the value
* Empty lines are lines with only spaces in them
* If the line has any other form, it is a syntax error
This will introduce the following breaking changes because of how
underdefined the config syntax was before:
* `key = ""` will get treated as an empty string instead of the literal
* string `""`
* Any section or key name with forbidden characters will now be syntax
errors.
* Certain strings will be forbidden as section names: `self`, `root`,
* `BAR`. Because they have a special meaning inside references and so a
* section `[root]` can never be referenced.
This replaces the current parser implementation with a new more robust
one that will later be expanded to also check for dependency cycles and
allow for values that contain references mixed with other strings.
This PR also now expands the config paths given over the command line so
that `--config=~/.config/polybar/config` resolves properly.
Closes #1032
Closes #1694
* config_parser: Add skeleton with tests
First step in the config_parser develoment. Only tests functions that
are easily testable without many outside dependencies. Integration tests
will follow.
* config_parser: Implement parse_header
* config_parser: Implement get_line_type
* feat(string): Add trim functions with predicate
Not only trimming based on single character matching but based on a
freely specifiable predicate. Will be used to trim all spaces (based on
isspace)
* config_parser: Implement parse_key
* config_parser: Implement parse_line for valid lines
* config_parser: Throw exception on invalid lines
* config_parser: Remove line_no and file_index from parse_line
Cleaner to let the caller catch and fill in the line number and file
path
* string: Clear up misleading description of trim
Before, trim would remove all characters that *didn't* match the
predicate and thus the predicate isspace wouldn't work correctly. But
because we used the inverse (isnospace_pred) it all worked out, but if
the function was used with any other function, it wouldn't have given
the desired output
* config_parser: Implement parse_file
* config_parser: Switch operation to config_parser
This changes the way the config is invoked. Now main.cpp creates a
config_parser object which then returns the singleton config object from
the parse method. Subsequent calls to config::make will return the
already created config object as before
The config_parser does not yet have all the functionality of the old
parser: `inherit` directives are not yet resolved. Other than that all
the old functionality is implemented (creating sectionmap and applying
include-file)
Any sort of dependency detection (except for include-file) are still
missing
* config: Move xrm initialization to constructor
config_parser handles the detection of xrdb references and passes that
info to the config object.
This finally allows us to delete the config::parse_file function because
everything in it has been implemented (except for xrdb detection and
file error handling)
* refactor(config_parser): Cleanup
* config_parser: Set config data after initialization
Looks much cleaner this way
* config_parser: Expand include-file paths
* config_parser: Init xrm if the config uses %{xrdb references
* config_parser: Use same type of maps as in old impl
Polybar has some weird, not yet fixed, inheriting behaviour and it
changes depending on the order in which the config stores its data.
Using the same type of maps ensures that the behaviour stays the same.
* refactor(config_parser): Clearer invalid name error message
* config_parser: Don't allow reserved section names
Sections with the names 'self', 'BAR', 'root' could never be referenced
because those strings have a special meaning inside references
* config_parser: Handle inherit directives
This uses the old copy_inherited function, so this still suffers from
crashes if there are cyclic dependencies.
This also fixes the behaviour where any key that starts with 'inherit'
would be treated as an inherit directive
* config_parser: Clearer dependency cycle error message
* refactor(config_parser): Handle file errors when parsing
This removes the need to check if the file exists separately
* fix(config): expand config file path
Now paths using ~ and environment variables can be used as the config
path
* fix(config): Properly recognize xrdb references
* config_parser: Make messages more informative
* doc(config): Improve commenting
Comments now describe what the config_parser actually does instead of
what it will do.
We also now follow the rule that single line comments inside functions
should use `//` comments
* refactor: Move else on same line as curly braces
* fix(config_parser): Don't duplicate paths in `files`
* refactor(config_parser): Use else if for clarity
* fix(config): Undefined behavior in syntax_error
Before the custom what() method produced undefined behavior because the
returned string became invalid once the function returned.
* refactor(config): descriptive name for useless lines
is_valid could easily be confused as meaning syntactically invalid
without it being clarified in a comment
* refactor(config): Use separate strings instead of key_value
Takes just as much space and is much better to read
* fix(config_parser): TestCase -> TestSuite and fix macro call
Ref: #1644
* config_parser: use const string& in method args
* config_parser: Improve comments
* config_parser: Incorporate review comments
2019-08-06 13:41:31 -04:00
|
|
|
/**
|
|
|
|
* \brief Instruct the config to connect to the xresource manager
|
|
|
|
*/
|
|
|
|
void use_xrm();
|
|
|
|
|
|
|
|
void set_sections(sectionmap_t sections);
|
|
|
|
|
|
|
|
void set_included(file_list included);
|
|
|
|
|
2016-11-25 07:55:15 -05:00
|
|
|
void warn_deprecated(const string& section, const string& key, string replacement) const;
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-29 09:53:32 -05:00
|
|
|
/**
|
|
|
|
* Returns true if a given parameter exists
|
|
|
|
*/
|
2016-12-13 12:24:01 -05:00
|
|
|
bool has(const string& section, const string& key) const {
|
|
|
|
auto it = m_sections.find(section);
|
|
|
|
return it != m_sections.end() && it->second.find(key) != it->second.end();
|
2016-11-29 09:53:32 -05:00
|
|
|
}
|
|
|
|
|
2017-01-13 14:03:08 -05:00
|
|
|
/**
|
|
|
|
* Set parameter value
|
|
|
|
*/
|
|
|
|
void set(const string& section, const string& key, string&& value) {
|
|
|
|
auto it = m_sections.find(section);
|
|
|
|
if (it == m_sections.end()) {
|
|
|
|
valuemap_t values;
|
|
|
|
values[key] = value;
|
|
|
|
m_sections[section] = move(values);
|
|
|
|
}
|
|
|
|
auto it2 = it->second.find(key);
|
|
|
|
if ((it2 = it->second.find(key)) == it->second.end()) {
|
|
|
|
it2 = it->second.emplace_hint(it2, key, value);
|
|
|
|
} else {
|
|
|
|
it2->second = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
/**
|
|
|
|
* Get parameter for the current bar by name
|
|
|
|
*/
|
2016-12-30 17:32:05 -05:00
|
|
|
template <typename T = string>
|
2016-12-13 12:24:01 -05:00
|
|
|
T get(const string& key) const {
|
2016-12-13 23:12:15 -05:00
|
|
|
return get<T>(section(), key);
|
2016-06-14 23:32:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get value of a variable by section and parameter name
|
|
|
|
*/
|
2016-12-30 17:32:05 -05:00
|
|
|
template <typename T = string>
|
2016-12-13 12:24:01 -05:00
|
|
|
T get(const string& section, const string& key) const {
|
2016-12-15 11:13:15 -05:00
|
|
|
auto it = m_sections.find(section);
|
2020-10-06 12:22:10 -04:00
|
|
|
if (it == m_sections.end()) {
|
|
|
|
throw key_error("Missing section \"" + section + "\"");
|
|
|
|
}
|
|
|
|
if (it->second.find(key) == it->second.end()) {
|
2017-01-26 14:10:33 -05:00
|
|
|
throw key_error("Missing parameter \"" + section + "." + key + "\"");
|
2016-12-13 12:24:01 -05:00
|
|
|
}
|
2016-12-15 11:13:15 -05:00
|
|
|
return dereference<T>(section, key, it->second.at(key), convert<T>(string{it->second.at(key)}));
|
2016-06-14 23:32:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get value of a variable by section and parameter name
|
|
|
|
* with a default value in case the parameter isn't defined
|
|
|
|
*/
|
2016-12-30 17:32:05 -05:00
|
|
|
template <typename T = string>
|
2016-12-13 12:24:01 -05:00
|
|
|
T get(const string& section, const string& key, const T& default_value) const {
|
2016-12-15 11:13:15 -05:00
|
|
|
try {
|
|
|
|
string string_value{get<string>(section, key)};
|
2016-12-15 14:57:03 -05:00
|
|
|
T result{convert<T>(string{string_value})};
|
2016-12-15 11:13:15 -05:00
|
|
|
return dereference<T>(move(section), move(key), move(string_value), move(result));
|
|
|
|
} catch (const key_error& err) {
|
2016-12-13 12:24:01 -05:00
|
|
|
return default_value;
|
2019-10-27 18:19:36 -04:00
|
|
|
} catch (const value_error& err) {
|
|
|
|
m_log.err("Invalid value for \"%s.%s\", using default value (reason: %s)", section, key, err.what());
|
|
|
|
return default_value;
|
2016-12-13 12:24:01 -05:00
|
|
|
}
|
2016-06-14 23:32:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get list of values for the current bar by name
|
|
|
|
*/
|
2016-12-30 17:32:05 -05:00
|
|
|
template <typename T = string>
|
2016-12-13 12:24:01 -05:00
|
|
|
vector<T> get_list(const string& key) const {
|
2016-12-13 23:12:15 -05:00
|
|
|
return get_list<T>(section(), key);
|
2016-06-14 23:32:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get list of values by section and parameter name
|
|
|
|
*/
|
2016-12-30 17:32:05 -05:00
|
|
|
template <typename T = string>
|
2016-12-13 12:24:01 -05:00
|
|
|
vector<T> get_list(const string& section, const string& key) const {
|
2016-12-15 11:13:15 -05:00
|
|
|
vector<T> results;
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
try {
|
|
|
|
string string_value{get<string>(section, key + "-" + to_string(results.size()))};
|
2016-12-15 14:57:03 -05:00
|
|
|
T value{convert<T>(string{string_value})};
|
2016-12-15 11:13:15 -05:00
|
|
|
|
|
|
|
if (!string_value.empty()) {
|
|
|
|
results.emplace_back(dereference<T>(section, key, move(string_value), move(value)));
|
|
|
|
} else {
|
|
|
|
results.emplace_back(move(value));
|
|
|
|
}
|
|
|
|
} catch (const key_error& err) {
|
|
|
|
break;
|
2016-12-13 12:24:01 -05:00
|
|
|
}
|
2016-06-14 23:32:35 -04:00
|
|
|
}
|
|
|
|
|
2016-12-15 11:13:15 -05:00
|
|
|
if (results.empty()) {
|
2017-01-26 14:10:33 -05:00
|
|
|
throw key_error("Missing parameter \"" + section + "." + key + "-0\"");
|
2016-12-15 11:13:15 -05:00
|
|
|
}
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-12-15 11:13:15 -05:00
|
|
|
return results;
|
2016-06-14 23:32:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get list of values by section and parameter name
|
|
|
|
* with a default list in case the list isn't defined
|
|
|
|
*/
|
2016-12-30 17:32:05 -05:00
|
|
|
template <typename T = string>
|
2016-12-13 12:24:01 -05:00
|
|
|
vector<T> get_list(const string& section, const string& key, const vector<T>& default_value) const {
|
2016-12-15 11:13:15 -05:00
|
|
|
vector<T> results;
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
try {
|
|
|
|
string string_value{get<string>(section, key + "-" + to_string(results.size()))};
|
2016-12-15 14:57:03 -05:00
|
|
|
T value{convert<T>(string{string_value})};
|
2016-12-15 11:13:15 -05:00
|
|
|
|
|
|
|
if (!string_value.empty()) {
|
|
|
|
results.emplace_back(dereference<T>(section, key, move(string_value), move(value)));
|
|
|
|
} else {
|
|
|
|
results.emplace_back(move(value));
|
|
|
|
}
|
|
|
|
} catch (const key_error& err) {
|
|
|
|
break;
|
2019-10-27 18:19:36 -04:00
|
|
|
} catch (const value_error& err) {
|
|
|
|
m_log.err("Invalid value in list \"%s.%s\", using list as-is (reason: %s)", section, key, err.what());
|
|
|
|
return default_value;
|
2016-12-13 12:24:01 -05:00
|
|
|
}
|
2016-06-14 23:32:35 -04:00
|
|
|
}
|
|
|
|
|
2016-12-15 11:13:15 -05:00
|
|
|
if (!results.empty()) {
|
|
|
|
return results;
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
return default_value;
|
2016-06-14 23:32:35 -04:00
|
|
|
}
|
|
|
|
|
2016-12-13 23:12:15 -05:00
|
|
|
/**
|
|
|
|
* Attempt to load value using the deprecated key name. If successful show a
|
|
|
|
* warning message. If it fails load the value using the new key and given
|
|
|
|
* fallback value
|
|
|
|
*/
|
2016-12-30 17:32:05 -05:00
|
|
|
template <typename T = string>
|
2016-12-13 23:12:15 -05:00
|
|
|
T deprecated(const string& section, const string& old, const string& newkey, const T& fallback) const {
|
|
|
|
try {
|
|
|
|
T value{get<T>(section, old)};
|
|
|
|
warn_deprecated(section, old, newkey);
|
|
|
|
return value;
|
|
|
|
} catch (const key_error& err) {
|
|
|
|
return get<T>(section, newkey, fallback);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-11-04 10:08:54 -05:00
|
|
|
* \see deprecated<T>
|
2016-12-13 23:12:15 -05:00
|
|
|
*/
|
2016-12-30 17:32:05 -05:00
|
|
|
template <typename T = string>
|
2016-12-13 23:12:15 -05:00
|
|
|
T deprecated_list(const string& section, const string& old, const string& newkey, const vector<T>& fallback) const {
|
|
|
|
try {
|
|
|
|
vector<T> value{get_list<T>(section, old)};
|
|
|
|
warn_deprecated(section, old, newkey);
|
|
|
|
return value;
|
|
|
|
} catch (const key_error& err) {
|
|
|
|
return get_list<T>(section, newkey, fallback);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
protected:
|
2016-12-13 12:24:01 -05:00
|
|
|
void copy_inherited();
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
T convert(string&& value) const;
|
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
/**
|
2016-11-18 11:40:16 -05:00
|
|
|
* Dereference value reference
|
2016-06-14 23:32:35 -04:00
|
|
|
*/
|
|
|
|
template <typename T>
|
2016-12-14 14:14:31 -05:00
|
|
|
T dereference(const string& section, const string& key, const string& var, const T& fallback) const {
|
2016-11-18 11:40:16 -05:00
|
|
|
if (var.substr(0, 2) != "${" || var.substr(var.length() - 1) != "}") {
|
2016-12-13 12:24:01 -05:00
|
|
|
return fallback;
|
2016-11-18 11:40:16 -05:00
|
|
|
}
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-18 11:40:16 -05:00
|
|
|
auto path = var.substr(2, var.length() - 3);
|
|
|
|
size_t pos;
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-12-13 12:24:01 -05:00
|
|
|
if (path.compare(0, 4, "env:") == 0) {
|
2017-01-19 20:25:54 -05:00
|
|
|
return dereference_env<T>(path.substr(4));
|
2016-12-13 12:24:01 -05:00
|
|
|
} else if (path.compare(0, 5, "xrdb:") == 0) {
|
2017-01-19 20:25:54 -05:00
|
|
|
return dereference_xrdb<T>(path.substr(5));
|
2016-12-19 16:01:37 -05:00
|
|
|
} else if (path.compare(0, 5, "file:") == 0) {
|
2017-01-19 20:25:54 -05:00
|
|
|
return dereference_file<T>(path.substr(5));
|
2016-11-18 11:40:16 -05:00
|
|
|
} else if ((pos = path.find(".")) != string::npos) {
|
2016-11-19 13:18:28 -05:00
|
|
|
return dereference_local<T>(path.substr(0, pos), path.substr(pos + 1), section);
|
2016-11-18 11:40:16 -05:00
|
|
|
} else {
|
2017-01-26 14:10:33 -05:00
|
|
|
throw value_error("Invalid reference defined at \"" + section + "." + key + "\"");
|
2016-06-14 23:32:35 -04:00
|
|
|
}
|
2016-11-18 11:40:16 -05:00
|
|
|
}
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-18 11:40:16 -05:00
|
|
|
/**
|
|
|
|
* Dereference local value reference defined using:
|
|
|
|
* ${root.key}
|
2017-01-26 13:33:14 -05:00
|
|
|
* ${root.key:fallback}
|
2016-11-18 11:40:16 -05:00
|
|
|
* ${self.key}
|
2017-01-26 13:33:14 -05:00
|
|
|
* ${self.key:fallback}
|
2016-11-18 11:40:16 -05:00
|
|
|
* ${section.key}
|
2017-01-26 13:33:14 -05:00
|
|
|
* ${section.key:fallback}
|
2016-11-18 11:40:16 -05:00
|
|
|
*/
|
|
|
|
template <typename T>
|
2016-12-13 12:24:01 -05:00
|
|
|
T dereference_local(string section, const string& key, const string& current_section) const {
|
|
|
|
if (section == "BAR") {
|
2016-12-15 11:13:15 -05:00
|
|
|
m_log.warn("${BAR.key} is deprecated. Use ${root.key} instead");
|
2016-12-13 12:24:01 -05:00
|
|
|
}
|
2016-10-19 03:16:08 -04:00
|
|
|
|
2016-12-13 23:12:15 -05:00
|
|
|
section = string_util::replace(section, "BAR", this->section(), 0, 3);
|
|
|
|
section = string_util::replace(section, "root", this->section(), 0, 4);
|
2016-11-19 13:18:28 -05:00
|
|
|
section = string_util::replace(section, "self", current_section, 0, 4);
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-12-15 11:13:15 -05:00
|
|
|
try {
|
2016-12-15 14:57:03 -05:00
|
|
|
string string_value{get<string>(section, key)};
|
|
|
|
T result{convert<T>(string{string_value})};
|
|
|
|
return dereference<T>(string(section), move(key), move(string_value), move(result));
|
2016-12-15 11:13:15 -05:00
|
|
|
} catch (const key_error& err) {
|
2017-01-26 13:33:14 -05:00
|
|
|
size_t pos;
|
|
|
|
if ((pos = key.find(':')) != string::npos) {
|
|
|
|
string fallback = key.substr(pos + 1);
|
2017-01-26 14:10:33 -05:00
|
|
|
m_log.info("The reference ${%s.%s} does not exist, using defined fallback value \"%s\"", section,
|
|
|
|
key.substr(0, pos), fallback);
|
2017-01-26 13:33:14 -05:00
|
|
|
return convert<T>(move(fallback));
|
|
|
|
}
|
|
|
|
throw value_error("The reference ${" + section + "." + key + "} does not exist (no fallback set)");
|
2016-12-13 12:24:01 -05:00
|
|
|
}
|
2016-11-18 11:40:16 -05:00
|
|
|
}
|
2016-10-19 03:16:08 -04:00
|
|
|
|
2016-11-18 11:40:16 -05:00
|
|
|
/**
|
|
|
|
* Dereference environment variable reference defined using:
|
|
|
|
* ${env:key}
|
|
|
|
* ${env:key:fallback value}
|
|
|
|
*/
|
|
|
|
template <typename T>
|
2017-01-19 20:25:54 -05:00
|
|
|
T dereference_env(string var) const {
|
2016-11-18 11:40:16 -05:00
|
|
|
size_t pos;
|
2017-01-19 20:25:54 -05:00
|
|
|
string env_default;
|
2019-07-01 17:33:01 -04:00
|
|
|
/*
|
|
|
|
* This is needed because with only the string we cannot distinguish
|
|
|
|
* between an empty string as default and not default
|
|
|
|
*/
|
|
|
|
bool has_default = false;
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2017-01-26 13:33:14 -05:00
|
|
|
if ((pos = var.find(':')) != string::npos) {
|
2016-12-14 14:14:31 -05:00
|
|
|
env_default = var.substr(pos + 1);
|
2019-07-01 17:33:01 -04:00
|
|
|
has_default = true;
|
2016-11-18 11:40:16 -05:00
|
|
|
var.erase(pos);
|
|
|
|
}
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2019-07-01 17:33:01 -04:00
|
|
|
if (env_util::has(var)) {
|
|
|
|
string env_value{env_util::get(var)};
|
2017-01-19 20:31:55 -05:00
|
|
|
m_log.info("Environment var reference ${%s} found (value=%s)", var, env_value);
|
2016-12-14 14:14:31 -05:00
|
|
|
return convert<T>(move(env_value));
|
2019-07-01 17:33:01 -04:00
|
|
|
} else if (has_default) {
|
2017-01-19 20:31:55 -05:00
|
|
|
m_log.info("Environment var ${%s} is undefined, using defined fallback value \"%s\"", var, env_default);
|
|
|
|
return convert<T>(move(env_default));
|
2016-12-13 12:24:01 -05:00
|
|
|
} else {
|
2017-01-19 20:31:55 -05:00
|
|
|
throw value_error(sstream() << "Environment var ${" << var << "} does not exist (no fallback set)");
|
2016-12-13 12:24:01 -05:00
|
|
|
}
|
2016-11-18 11:40:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Dereference X resource db value defined using:
|
|
|
|
* ${xrdb:key}
|
|
|
|
* ${xrdb:key:fallback value}
|
|
|
|
*/
|
|
|
|
template <typename T>
|
2017-01-19 20:25:54 -05:00
|
|
|
T dereference_xrdb(string var) const {
|
2016-11-18 11:40:16 -05:00
|
|
|
size_t pos;
|
2017-01-26 11:17:02 -05:00
|
|
|
#if not WITH_XRM
|
2017-01-26 15:34:38 -05:00
|
|
|
m_log.warn("No built-in support to dereference ${xrdb:%s} references (requires `xcb-util-xrm`)", var);
|
2017-01-26 13:33:14 -05:00
|
|
|
if ((pos = var.find(':')) != string::npos) {
|
2017-01-26 11:17:02 -05:00
|
|
|
return convert<T>(var.substr(pos + 1));
|
2017-01-19 20:25:54 -05:00
|
|
|
}
|
2017-01-26 11:17:02 -05:00
|
|
|
return convert<T>("");
|
2017-01-19 20:25:54 -05:00
|
|
|
#else
|
|
|
|
if (!m_xrm) {
|
|
|
|
throw application_error("xrm is not initialized");
|
|
|
|
}
|
2016-11-18 11:40:16 -05:00
|
|
|
|
2017-01-19 20:25:54 -05:00
|
|
|
string fallback;
|
2019-07-01 17:33:01 -04:00
|
|
|
bool has_fallback = false;
|
2017-01-26 13:33:14 -05:00
|
|
|
if ((pos = var.find(':')) != string::npos) {
|
2017-01-19 20:25:54 -05:00
|
|
|
fallback = var.substr(pos + 1);
|
2019-07-01 17:33:01 -04:00
|
|
|
has_fallback = true;
|
2017-01-19 20:25:54 -05:00
|
|
|
var.erase(pos);
|
2016-11-18 11:40:16 -05:00
|
|
|
}
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2017-01-19 20:25:54 -05:00
|
|
|
try {
|
|
|
|
auto value = m_xrm->require<string>(var.c_str());
|
|
|
|
m_log.info("Found matching X resource \"%s\" (value=%s)", var, value);
|
|
|
|
return convert<T>(move(value));
|
|
|
|
} catch (const xresource_error& err) {
|
2019-07-01 17:33:01 -04:00
|
|
|
if (has_fallback) {
|
2020-04-21 18:14:02 -04:00
|
|
|
m_log.info("%s, using defined fallback value \"%s\"", err.what(), fallback);
|
2017-01-19 20:25:54 -05:00
|
|
|
return convert<T>(move(fallback));
|
|
|
|
}
|
|
|
|
throw value_error(sstream() << err.what() << " (no fallback set)");
|
|
|
|
}
|
|
|
|
#endif
|
2016-06-14 23:32:35 -04:00
|
|
|
}
|
|
|
|
|
2016-12-19 16:01:37 -05:00
|
|
|
/**
|
|
|
|
* Dereference file reference by reading its contents
|
|
|
|
* ${file:/absolute/file/path}
|
2017-01-19 20:31:55 -05:00
|
|
|
* ${file:/absolute/file/path:fallback value}
|
2016-12-19 16:01:37 -05:00
|
|
|
*/
|
|
|
|
template <typename T>
|
2017-01-19 20:25:54 -05:00
|
|
|
T dereference_file(string var) const {
|
|
|
|
size_t pos;
|
|
|
|
string fallback;
|
2019-07-01 17:33:01 -04:00
|
|
|
bool has_fallback = false;
|
2017-01-26 13:33:14 -05:00
|
|
|
if ((pos = var.find(':')) != string::npos) {
|
2017-01-19 20:25:54 -05:00
|
|
|
fallback = var.substr(pos + 1);
|
2019-07-01 17:33:01 -04:00
|
|
|
has_fallback = true;
|
2017-01-19 20:25:54 -05:00
|
|
|
var.erase(pos);
|
2016-12-19 16:01:37 -05:00
|
|
|
}
|
2017-09-04 17:00:35 -04:00
|
|
|
var = file_util::expand(var);
|
2016-12-19 16:01:37 -05:00
|
|
|
|
2017-01-19 20:31:55 -05:00
|
|
|
if (file_util::exists(var)) {
|
|
|
|
m_log.info("File reference \"%s\" found", var);
|
|
|
|
return convert<T>(string_util::trim(file_util::contents(var), '\n'));
|
2019-07-01 17:33:01 -04:00
|
|
|
} else if (has_fallback) {
|
2020-04-21 18:14:02 -04:00
|
|
|
m_log.info("File reference \"%s\" not found, using defined fallback value \"%s\"", var, fallback);
|
2017-01-19 20:31:55 -05:00
|
|
|
return convert<T>(move(fallback));
|
|
|
|
} else {
|
|
|
|
throw value_error(sstream() << "The file \"" << var << "\" does not exist (no fallback set)");
|
|
|
|
}
|
2016-12-19 16:01:37 -05:00
|
|
|
}
|
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
private:
|
2016-12-15 11:13:15 -05:00
|
|
|
const logger& m_log;
|
2016-06-14 23:32:35 -04:00
|
|
|
string m_file;
|
2016-12-13 23:12:15 -05:00
|
|
|
string m_barname;
|
2016-12-14 21:30:41 -05:00
|
|
|
sectionmap_t m_sections{};
|
config_parser: Introduce stricter syntax conventions (#1377)
This is the next step to merge #1237 in stages.
Currently there are barely any restrictions on how the config can be
written. This causes things like config files with DOS line endings to
not be parsed properly (#1366) because polybar splits by `\n` and when
parsing section headers, it can't deal with the `\r` at the end of the
line and thus doesn't recognize any section headers.
With this PR we introduce some rules as to what characters are allowed
in section names and keys.
Note: When talking about spaces I refer to any character for which
`isspace()` returns `true`.
The rules are as follows:
* A section name or a key name cannot contain any spaces as well as any
of there characters:`"'=;#[](){}:.$\%`
* Spaces at the beginning and end of lines are always ignored when
parsing
* Comment lines start with `;` or `#` and last for the whole line. The
whole line will be ignored by the parser. You cannot start a comment at
the end of a line.
* Section headers have the following form `[HEADER_NAME]`
* Key-value lines look like this:
`KEY_NAME{SPACES}={SPACES}VALUE_STRING` where `{SPACES}` represents any
number of spaces. `VALUE_STRING` can contain any characters. If it is
*surrounded* with double quotes (`"`), those quotes will be removed,
this can be used to add spaces to the beginning or end of the value
* Empty lines are lines with only spaces in them
* If the line has any other form, it is a syntax error
This will introduce the following breaking changes because of how
underdefined the config syntax was before:
* `key = ""` will get treated as an empty string instead of the literal
* string `""`
* Any section or key name with forbidden characters will now be syntax
errors.
* Certain strings will be forbidden as section names: `self`, `root`,
* `BAR`. Because they have a special meaning inside references and so a
* section `[root]` can never be referenced.
This replaces the current parser implementation with a new more robust
one that will later be expanded to also check for dependency cycles and
allow for values that contain references mixed with other strings.
This PR also now expands the config paths given over the command line so
that `--config=~/.config/polybar/config` resolves properly.
Closes #1032
Closes #1694
* config_parser: Add skeleton with tests
First step in the config_parser develoment. Only tests functions that
are easily testable without many outside dependencies. Integration tests
will follow.
* config_parser: Implement parse_header
* config_parser: Implement get_line_type
* feat(string): Add trim functions with predicate
Not only trimming based on single character matching but based on a
freely specifiable predicate. Will be used to trim all spaces (based on
isspace)
* config_parser: Implement parse_key
* config_parser: Implement parse_line for valid lines
* config_parser: Throw exception on invalid lines
* config_parser: Remove line_no and file_index from parse_line
Cleaner to let the caller catch and fill in the line number and file
path
* string: Clear up misleading description of trim
Before, trim would remove all characters that *didn't* match the
predicate and thus the predicate isspace wouldn't work correctly. But
because we used the inverse (isnospace_pred) it all worked out, but if
the function was used with any other function, it wouldn't have given
the desired output
* config_parser: Implement parse_file
* config_parser: Switch operation to config_parser
This changes the way the config is invoked. Now main.cpp creates a
config_parser object which then returns the singleton config object from
the parse method. Subsequent calls to config::make will return the
already created config object as before
The config_parser does not yet have all the functionality of the old
parser: `inherit` directives are not yet resolved. Other than that all
the old functionality is implemented (creating sectionmap and applying
include-file)
Any sort of dependency detection (except for include-file) are still
missing
* config: Move xrm initialization to constructor
config_parser handles the detection of xrdb references and passes that
info to the config object.
This finally allows us to delete the config::parse_file function because
everything in it has been implemented (except for xrdb detection and
file error handling)
* refactor(config_parser): Cleanup
* config_parser: Set config data after initialization
Looks much cleaner this way
* config_parser: Expand include-file paths
* config_parser: Init xrm if the config uses %{xrdb references
* config_parser: Use same type of maps as in old impl
Polybar has some weird, not yet fixed, inheriting behaviour and it
changes depending on the order in which the config stores its data.
Using the same type of maps ensures that the behaviour stays the same.
* refactor(config_parser): Clearer invalid name error message
* config_parser: Don't allow reserved section names
Sections with the names 'self', 'BAR', 'root' could never be referenced
because those strings have a special meaning inside references
* config_parser: Handle inherit directives
This uses the old copy_inherited function, so this still suffers from
crashes if there are cyclic dependencies.
This also fixes the behaviour where any key that starts with 'inherit'
would be treated as an inherit directive
* config_parser: Clearer dependency cycle error message
* refactor(config_parser): Handle file errors when parsing
This removes the need to check if the file exists separately
* fix(config): expand config file path
Now paths using ~ and environment variables can be used as the config
path
* fix(config): Properly recognize xrdb references
* config_parser: Make messages more informative
* doc(config): Improve commenting
Comments now describe what the config_parser actually does instead of
what it will do.
We also now follow the rule that single line comments inside functions
should use `//` comments
* refactor: Move else on same line as curly braces
* fix(config_parser): Don't duplicate paths in `files`
* refactor(config_parser): Use else if for clarity
* fix(config): Undefined behavior in syntax_error
Before the custom what() method produced undefined behavior because the
returned string became invalid once the function returned.
* refactor(config): descriptive name for useless lines
is_valid could easily be confused as meaning syntactically invalid
without it being clarified in a comment
* refactor(config): Use separate strings instead of key_value
Takes just as much space and is much better to read
* fix(config_parser): TestCase -> TestSuite and fix macro call
Ref: #1644
* config_parser: use const string& in method args
* config_parser: Improve comments
* config_parser: Incorporate review comments
2019-08-06 13:41:31 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Absolute path of all files that were parsed in the process of parsing the
|
|
|
|
* config (Path of the main config file also included)
|
|
|
|
*/
|
|
|
|
file_list m_included;
|
2017-01-26 11:17:02 -05:00
|
|
|
#if WITH_XRM
|
2017-01-19 20:25:54 -05:00
|
|
|
unique_ptr<xresource_manager> m_xrm;
|
|
|
|
#endif
|
2016-06-14 23:32:35 -04:00
|
|
|
};
|
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS_END
|