-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstd_regex.C
67 lines (61 loc) · 1.43 KB
/
std_regex.C
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include "std_regex.H"
#include "args.H"
#include "error.H"
#include <stddef.h>
#include <string.h>
namespace {
std::regex::flag_type grammarFromString(std::string const & grammar)
{
if (grammar.empty() || grammar == "extended") {
return std::regex::extended;
}
else if (grammar == "ECMAScript") {
return std::regex::ECMAScript;
}
else if (grammar == "basic") {
return std::regex::basic;
}
else if (grammar == "awk") {
return std::regex::awk;
}
else if (grammar == "grep") {
return std::regex::grep;
}
else if (grammar == "egrep") {
return std::regex::egrep;
}
else {
// Fall-back is extended
return std::regex::extended;
}
}
}
Regex::Regex(String const & r, std::string const & grammar)
: _valid(false)
{
auto flags = grammarFromString(grammar);
try {
if (r.noCase()) {
flags |= std::regex::icase;
}
_preg = std::regex(r, flags);
_valid = true;
}
catch (std::regex_error const& ex) {
throw Error(ex.what());
}
}
Regex::~Regex() = default;
bool Regex::match(std::string const & s, Match * pmatch) const
{
bool rval = false;
if (_valid) {
if (pmatch != nullptr) {
rval = std::regex_search(s, pmatch->smatch(), _preg);
}
else {
rval = std::regex_search(s, _preg);
}
}
return rval;
}