forked from ua-parser/uap-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPattern.cpp
60 lines (46 loc) · 1.29 KB
/
Pattern.cpp
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
#include "Pattern.h"
#include "MakeUnique.h"
namespace uap_cpp {
Pattern::Pattern() : groupCount_(0) {}
Pattern::Pattern(const std::string& pattern, bool case_sensitive)
: groupCount_(0) {
assign(pattern, case_sensitive);
}
void Pattern::assign(const std::string& pattern, bool case_sensitive) {
// Add parentheses around expression for capture group 0
std::string pattern_with_zero_group = "(" + pattern + ")";
re2::RE2::Options options;
options.set_case_sensitive(case_sensitive);
regex_ = uap_cpp::make_unique<re2::RE2>(pattern_with_zero_group, options);
groupCount_ = regex_->NumberOfCapturingGroups();
if (groupCount_ > Match::MAX_MATCHES) {
groupCount_ = Match::MAX_MATCHES;
}
}
bool Pattern::match(const std::string& s, Match& m) const {
if (regex_ && re2::RE2::PartialMatchN(s, *regex_, m.argPtrs_, groupCount_)) {
m.count_ = groupCount_;
return true;
}
m.count_ = 0;
return false;
}
Match::Match() {
for (size_t i = 0; i < MAX_MATCHES; i++) {
args_[i] = &strings_[i];
argPtrs_[i] = &args_[i];
}
}
size_t Match::size() const {
return count_;
}
namespace {
std::string empty_string;
}
const std::string& Match::get(size_t index) const {
if (index > count_) {
return empty_string;
}
return strings_[index];
}
} // namespace uap_cpp