GCC Code Coverage Report


Directory: cvmfs/
File: cvmfs/pathspec/pathspec_pattern.cc
Date: 2026-09-20 02:39:58
Exec Total Coverage
Lines: 136 138 98.6%
Branches: 134 182 73.6%

Line Branch Exec Source
1 /**
2 * This file is part of the CernVM File System.
3 */
4
5
6 #include "pathspec_pattern.h"
7
8 #include <cassert>
9
10 #include "pathspec/pathspec.h"
11
12 20280 PathspecElementPattern::PathspecElementPattern(
13 const std::string::const_iterator begin,
14 20280 const std::string::const_iterator &end)
15 20280 : valid_(true) {
16
1/2
✓ Branch 1 taken 20280 times.
✗ Branch 2 not taken.
20280 Parse(begin, end);
17 20280 }
18
19 63863 PathspecElementPattern::PathspecElementPattern(
20 63863 const PathspecElementPattern &other)
21 63863 : valid_(other.valid_) {
22
1/2
✓ Branch 2 taken 63863 times.
✗ Branch 3 not taken.
63863 subpatterns_.reserve(other.subpatterns_.size());
23 63863 SubPatterns::const_iterator i = other.subpatterns_.begin();
24 63863 const SubPatterns::const_iterator iend = other.subpatterns_.end();
25
2/2
✓ Branch 1 taken 69616 times.
✓ Branch 2 taken 63863 times.
133479 for (; i != iend; ++i) {
26
2/4
✓ Branch 2 taken 69616 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 69616 times.
✗ Branch 6 not taken.
69616 subpatterns_.push_back((*i)->Clone());
27 }
28 63863 }
29
30 329 PathspecElementPattern &PathspecElementPattern::operator=(
31 const PathspecElementPattern &other) {
32
1/2
✓ Branch 0 taken 329 times.
✗ Branch 1 not taken.
329 if (this != &other) {
33 329 valid_ = other.valid_;
34 329 subpatterns_.clear();
35
1/2
✓ Branch 2 taken 329 times.
✗ Branch 3 not taken.
329 subpatterns_.reserve(other.subpatterns_.size());
36 329 SubPatterns::const_iterator i = other.subpatterns_.begin();
37 329 const SubPatterns::const_iterator iend = other.subpatterns_.end();
38
2/2
✓ Branch 1 taken 517 times.
✓ Branch 2 taken 329 times.
846 for (; i != iend; ++i) {
39
2/4
✓ Branch 2 taken 517 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 517 times.
✗ Branch 6 not taken.
517 subpatterns_.push_back((*i)->Clone());
40 }
41 }
42
43 329 return *this;
44 }
45
46
47 84137 PathspecElementPattern::~PathspecElementPattern() {
48 84137 SubPatterns::const_iterator i = subpatterns_.begin();
49 84137 const SubPatterns::const_iterator iend = subpatterns_.end();
50
2/2
✓ Branch 2 taken 93315 times.
✓ Branch 3 taken 84137 times.
177452 for (; i != iend; ++i) {
51
1/2
✓ Branch 1 taken 93315 times.
✗ Branch 2 not taken.
93315 delete *i;
52 }
53 84137 subpatterns_.clear();
54 84137 }
55
56
57 20280 void PathspecElementPattern::Parse(const std::string::const_iterator &begin,
58 const std::string::const_iterator &end) {
59 20280 std::string::const_iterator i = begin;
60
2/2
✓ Branch 1 taken 23563 times.
✓ Branch 2 taken 20280 times.
43843 while (i != end) {
61
3/4
✓ Branch 2 taken 4561 times.
✓ Branch 3 taken 19002 times.
✓ Branch 5 taken 4561 times.
✗ Branch 6 not taken.
23563 SubPattern *next = (Pathspec::IsSpecialChar(*i)) ? ParseSpecialChar(end, &i)
62
1/2
✓ Branch 1 taken 19002 times.
✗ Branch 2 not taken.
19002 : ParsePlaintext(end, &i);
63
3/4
✓ Branch 1 taken 23563 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 46 times.
✓ Branch 4 taken 23517 times.
23563 if (next->IsEmpty()) {
64 46 valid_ = false;
65
1/2
✓ Branch 0 taken 46 times.
✗ Branch 1 not taken.
46 delete next;
66 } else {
67
1/2
✓ Branch 1 taken 23517 times.
✗ Branch 2 not taken.
23517 subpatterns_.push_back(next);
68 }
69 }
70 20280 }
71
72
73 19002 PathspecElementPattern::SubPattern *PathspecElementPattern::ParsePlaintext(
74 const std::string::const_iterator &end, std::string::const_iterator *i) {
75 19002 PlaintextSubPattern *pattern = new PlaintextSubPattern();
76 19002 bool next_is_escaped = false;
77
78
2/2
✓ Branch 1 taken 87115 times.
✓ Branch 2 taken 17751 times.
104866 while (*i < end) {
79
6/6
✓ Branch 2 taken 1860 times.
✓ Branch 3 taken 85255 times.
✓ Branch 4 taken 1251 times.
✓ Branch 5 taken 609 times.
✓ Branch 6 taken 1251 times.
✓ Branch 7 taken 85864 times.
87115 if (Pathspec::IsSpecialChar(**i) && !next_is_escaped) {
80 1251 break;
81 }
82
83
6/6
✓ Branch 1 taken 1075 times.
✓ Branch 2 taken 84789 times.
✓ Branch 3 taken 888 times.
✓ Branch 4 taken 187 times.
✓ Branch 5 taken 888 times.
✓ Branch 6 taken 84976 times.
85864 if (**i == Pathspec::kEscaper && !next_is_escaped) {
84 888 next_is_escaped = true;
85
2/2
✓ Branch 0 taken 1164 times.
✓ Branch 1 taken 83812 times.
84976 } else if (next_is_escaped) {
86
6/6
✓ Branch 2 taken 555 times.
✓ Branch 3 taken 609 times.
✓ Branch 5 taken 187 times.
✓ Branch 6 taken 368 times.
✓ Branch 7 taken 796 times.
✓ Branch 8 taken 368 times.
1164 if (Pathspec::IsSpecialChar(**i) || **i == Pathspec::kEscaper) {
87 796 pattern->AddChar(**i);
88 796 next_is_escaped = false;
89 } else {
90 368 valid_ = false;
91 }
92 } else {
93
1/2
✗ Branch 2 not taken.
✓ Branch 3 taken 83812 times.
83812 assert(!Pathspec::IsSpecialChar(**i));
94 83812 pattern->AddChar(**i);
95 }
96
97 85864 ++(*i);
98 }
99
100 19002 return pattern;
101 }
102
103 4561 PathspecElementPattern::SubPattern *PathspecElementPattern::ParseSpecialChar(
104 const std::string::const_iterator &end, std::string::const_iterator *i) {
105
1/2
✗ Branch 2 not taken.
✓ Branch 3 taken 4561 times.
4561 assert(Pathspec::IsSpecialChar(**i));
106 4561 const char chr = **i;
107 4561 ++(*i);
108
109
2/3
✓ Branch 0 taken 2716 times.
✓ Branch 1 taken 1845 times.
✗ Branch 2 not taken.
4561 switch (chr) {
110 2716 case Pathspec::kWildcard:
111 2716 return new WildcardSubPattern();
112 1845 case Pathspec::kPlaceholder:
113 1845 return new PlaceholderSubPattern();
114 ✗ default:
115 ✗ assert(false && "unrecognized special character");
116 }
117 }
118
119 13326 std::string PathspecElementPattern::GenerateRegularExpression(
120 const bool is_relaxed) const {
121 13326 std::string result;
122 13326 SubPatterns::const_iterator i = subpatterns_.begin();
123 13326 const SubPatterns::const_iterator iend = subpatterns_.end();
124
2/2
✓ Branch 1 taken 15974 times.
✓ Branch 2 taken 13326 times.
29300 for (; i != iend; ++i) {
125
2/4
✓ Branch 2 taken 15974 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 15974 times.
✗ Branch 6 not taken.
15974 result += (*i)->GenerateRegularExpression(is_relaxed);
126 }
127 26652 return result;
128 }
129
130 1594 std::string PathspecElementPattern::GenerateGlobString() const {
131 1594 std::string result;
132 1594 SubPatterns::const_iterator i = subpatterns_.begin();
133 1594 const SubPatterns::const_iterator iend = subpatterns_.end();
134
2/2
✓ Branch 1 taken 1873 times.
✓ Branch 2 taken 1594 times.
3467 for (; i != iend; ++i) {
135
2/4
✓ Branch 2 taken 1873 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 1873 times.
✗ Branch 6 not taken.
1873 result += (*i)->GenerateGlobString();
136 }
137 3188 return result;
138 }
139
140 4668 bool PathspecElementPattern::operator==(
141 const PathspecElementPattern &other) const {
142 4668 if (subpatterns_.size() != other.subpatterns_.size()
143
5/6
✓ Branch 0 taken 4208 times.
✓ Branch 1 taken 460 times.
✗ Branch 4 not taken.
✓ Branch 5 taken 4208 times.
✓ Branch 6 taken 460 times.
✓ Branch 7 taken 4208 times.
4668 || IsValid() != other.IsValid()) {
144 460 return false;
145 }
146
147 4208 SubPatterns::const_iterator i = subpatterns_.begin();
148 4208 const SubPatterns::const_iterator iend = subpatterns_.end();
149 4208 SubPatterns::const_iterator j = other.subpatterns_.begin();
150 4208 const SubPatterns::const_iterator jend = other.subpatterns_.end();
151
152
5/6
✓ Branch 3 taken 4852 times.
✓ Branch 4 taken 3165 times.
✓ Branch 6 taken 4852 times.
✗ Branch 7 not taken.
✓ Branch 8 taken 4852 times.
✓ Branch 9 taken 3165 times.
8017 for (; i != iend && j != jend; ++i, ++j) {
153
3/4
✓ Branch 3 taken 4852 times.
✗ Branch 4 not taken.
✓ Branch 5 taken 1043 times.
✓ Branch 6 taken 3809 times.
4852 if (!(*i)->Compare(*j)) {
154 1043 return false;
155 }
156 }
157
158 3165 return true;
159 }
160
161
162 //------------------------------------------------------------------------------
163
164
165 84608 void PathspecElementPattern::PlaintextSubPattern::AddChar(const char chr) {
166 84608 chars_.push_back(chr);
167 84608 }
168
169 std::string
170 13013 PathspecElementPattern::PlaintextSubPattern::GenerateRegularExpression(
171 const bool is_relaxed) const {
172 // Note: strict and relaxed regex are the same!
173 13013 std::string::const_iterator i = chars_.begin();
174 13013 const std::string::const_iterator iend = chars_.end();
175 13013 std::string regex;
176
2/2
✓ Branch 2 taken 61497 times.
✓ Branch 3 taken 13013 times.
74510 for (; i != iend; ++i) {
177
2/2
✓ Branch 2 taken 2613 times.
✓ Branch 3 taken 58884 times.
61497 if (IsSpecialRegexCharacter(*i)) {
178
1/2
✓ Branch 1 taken 2613 times.
✗ Branch 2 not taken.
2613 regex += "\\";
179 }
180
1/2
✓ Branch 2 taken 61497 times.
✗ Branch 3 not taken.
61497 regex += *i;
181 }
182 26026 return regex;
183 }
184
185
186 1687 std::string PathspecElementPattern::PlaintextSubPattern::GenerateGlobString()
187 const {
188 1687 std::string::const_iterator i = chars_.begin();
189 1687 const std::string::const_iterator iend = chars_.end();
190 1687 std::string glob_string;
191
2/2
✓ Branch 2 taken 8628 times.
✓ Branch 3 taken 1687 times.
10315 for (; i != iend; ++i) {
192
2/2
✓ Branch 2 taken 188 times.
✓ Branch 3 taken 8440 times.
8628 if (Pathspec::IsSpecialChar(*i)) {
193
1/2
✓ Branch 1 taken 188 times.
✗ Branch 2 not taken.
188 glob_string += "\\";
194 }
195
1/2
✓ Branch 2 taken 8628 times.
✗ Branch 3 not taken.
8628 glob_string += *i;
196 }
197 3374 return glob_string;
198 }
199
200 61497 bool PathspecElementPattern::PlaintextSubPattern::IsSpecialRegexCharacter(
201 const char chr) const {
202
8/8
✓ Branch 0 taken 59777 times.
✓ Branch 1 taken 94 times.
✓ Branch 2 taken 59636 times.
✓ Branch 3 taken 141 times.
✓ Branch 4 taken 59448 times.
✓ Branch 5 taken 188 times.
✓ Branch 6 taken 59354 times.
✓ Branch 7 taken 94 times.
59871 return (chr == '.' || chr == '\\' || chr == '*' || chr == '?' || chr == '['
203
10/10
✓ Branch 0 taken 59260 times.
✓ Branch 1 taken 94 times.
✓ Branch 2 taken 59213 times.
✓ Branch 3 taken 47 times.
✓ Branch 4 taken 59166 times.
✓ Branch 5 taken 47 times.
✓ Branch 6 taken 59119 times.
✓ Branch 7 taken 47 times.
✓ Branch 8 taken 59072 times.
✓ Branch 9 taken 47 times.
59354 || chr == ']' || chr == '(' || chr == ')' || chr == '{' || chr == '}'
204
8/8
✓ Branch 0 taken 59871 times.
✓ Branch 1 taken 1626 times.
✓ Branch 2 taken 59025 times.
✓ Branch 3 taken 47 times.
✓ Branch 4 taken 58978 times.
✓ Branch 5 taken 47 times.
✓ Branch 6 taken 94 times.
✓ Branch 7 taken 58884 times.
121368 || chr == '^' || chr == '$' || chr == '+');
205 }
206
207 3656 bool PathspecElementPattern::PlaintextSubPattern::Compare(
208 const SubPattern *other) const {
209
2/2
✓ Branch 1 taken 46 times.
✓ Branch 2 taken 3610 times.
3656 if (!other->IsPlaintext()) {
210 46 return false;
211 }
212
213 const PlaintextSubPattern
214
1/2
✓ Branch 0 taken 3610 times.
✗ Branch 1 not taken.
3610 *pt_other = dynamic_cast<const PlaintextSubPattern *>(other);
215
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3610 times.
3610 assert(pt_other != NULL);
216 3610 return chars_ == pt_other->chars_;
217 }
218
219
220 std::string
221 1984 PathspecElementPattern::WildcardSubPattern::GenerateRegularExpression(
222 const bool is_relaxed) const {
223 return (is_relaxed) ? std::string(".*")
224
14/27
✓ Branch 0 taken 640 times.
✓ Branch 1 taken 1344 times.
✓ Branch 4 taken 640 times.
✗ Branch 5 not taken.
✓ Branch 8 taken 1344 times.
✗ Branch 9 not taken.
✓ Branch 11 taken 1344 times.
✗ Branch 12 not taken.
✓ Branch 14 taken 1344 times.
✗ Branch 15 not taken.
✓ Branch 16 taken 1344 times.
✓ Branch 17 taken 640 times.
✗ Branch 18 not taken.
✓ Branch 19 taken 1344 times.
✓ Branch 20 taken 640 times.
✓ Branch 22 taken 1344 times.
✓ Branch 23 taken 640 times.
✓ Branch 25 taken 640 times.
✓ Branch 26 taken 1344 times.
✗ Branch 28 not taken.
✗ Branch 29 not taken.
✗ Branch 31 not taken.
✗ Branch 32 not taken.
✗ Branch 34 not taken.
✗ Branch 35 not taken.
✗ Branch 37 not taken.
✗ Branch 38 not taken.
3968 : std::string("[^") + Pathspec::kSeparator + "]*";
225 }
226
227
228 93 std::string PathspecElementPattern::WildcardSubPattern::GenerateGlobString()
229 const {
230
1/2
✓ Branch 2 taken 93 times.
✗ Branch 3 not taken.
93 return "*";
231 }
232
233
234 644 bool PathspecElementPattern::WildcardSubPattern::Compare(
235 const SubPattern *other) const {
236 644 return other->IsWildcard();
237 }
238
239
240 std::string
241 977 PathspecElementPattern::PlaceholderSubPattern::GenerateRegularExpression(
242 const bool is_relaxed) const {
243 // Note: strict and relaxed regex are the same!
244
3/6
✓ Branch 2 taken 977 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 977 times.
✗ Branch 6 not taken.
✓ Branch 8 taken 977 times.
✗ Branch 9 not taken.
1954 return std::string("[^") + Pathspec::kSeparator + "]";
245 }
246
247 93 std::string PathspecElementPattern::PlaceholderSubPattern::GenerateGlobString()
248 const {
249
1/2
✓ Branch 2 taken 93 times.
✗ Branch 3 not taken.
93 return "?";
250 }
251
252 552 bool PathspecElementPattern::PlaceholderSubPattern::Compare(
253 const SubPattern *other) const {
254 552 return other->IsPlaceholder();
255 }
256