A class for interfacing placeholders and regular expressions.
More...
#include <PatternUtility.hpp>
A class for interfacing placeholders and regular expressions.
- Note
- placeholders should be separated by literals, otherwise regex will probably not capture them as you'd expect. BAD example:
pattern: "<placeholder_1><placeholder_2>"
string: "abcdefg"
result:
"<placeholder_1>" : "abcdef"
"<placeholder_2>" : "g"
CORRECT example: pattern: "<placeholder_1>d<placeholder_2>"
string: "abcdefg"
result:
"<placeholder_1>" : "abc"
"<placeholder_2>" : "efg"
◆ MatchType
using MatchType = std::map<std::string,std::vector<std::string> > |
◆ PathType
◆ PlaceholderGroupMap
◆ PlaceholderMap
◆ PlaceholderPattern() [1/4]
◆ PlaceholderPattern() [2/4]
Construct from a placeholder pattern and its associated map.
- Parameters
-
rPattern | Pattern string with placeholders. |
rPlaceholderMap | Pairs of placeholders and their corresponding regex strings. Example: {{"<name>", ".+"}, {"<identifier>", "[0-9]+"}}
|
- Warning
- The corresponding regexes must be bare, not containing groups (checked) or position constraints such as line begin or end modifiers (not checked).
◆ PlaceholderPattern() [3/4]
◆ PlaceholderPattern() [4/4]
◆ ~PlaceholderPattern()
◆ Apply()
Substitute values in the stored pattern.
Return a copy of the pattern that has its placeholders replaced with the corresponding values specified in the input map.
- Parameters
-
rPlaceholderValueMap | string - string map associating values to placeholders {"palceholder" : "placeholder_value"}
|
◆ GetPatternString()
Ref< const std::string > GetPatternString |
( |
| ) |
const |
Get the pattern with placeholders.
◆ GetPlaceholderMap()
Get a map of all placeholders and their associated regex representations.
◆ GetRegex()
Ref< const std::regex > GetRegex |
( |
| ) |
const |
Get the regex for the input pattern.
◆ GetRegexString()
Ref< const std::string > GetRegexString |
( |
| ) |
const |
Get the string representation of the regex.
◆ Glob()
template<class TOutputIterator >
void Glob |
( |
TOutputIterator |
it | ) |
const |
Collect all file/directory paths that match the pattern.
- Template Parameters
-
TOutputIterator | output iterator with value type constructible from PathType. |
- Note
- the search begins from the filesystem root if the pattern is an absolute path, otherwise it begins from
cwd
.
◆ IsAMatch()
bool IsAMatch |
( |
Ref< const std::string > |
rString | ) |
const |
Check whether a string satisfies the pattern.
◆ IsConst()
Return true if the input pattern contains no placeholders.
◆ KRATOS_CLASS_POINTER_DEFINITION()
◆ Match()
Find all placeholders' values in the input string.
- Parameters
-
rString | String matching the input pattern. |
- Returns
- Map associating a vector of strings, i.e. the values of placeholders in the input string, to the placeholders.
- Note
- The returned placeholder values appear in the same order they do in the input pattern.
◆ operator=() [1/2]
◆ operator=() [2/2]
The documentation for this class was generated from the following file: