GCC Code Coverage Report


Directory: cvmfs/
File: cvmfs/path_filters/relaxed_path_filter.cc
Date: 2026-08-02 02:40:19
Exec Total Coverage
Lines: 45 46 97.8%
Branches: 33 46 71.7%

Line Branch Exec Source
1 /**
2 * This file is part of the CernVM File System.
3 */
4
5 #include "path_filters/relaxed_path_filter.h"
6
7 #include <cstdio>
8 #include <string>
9
10 using namespace catalog; // NOLINT
11
12 39 RelaxedPathFilter *RelaxedPathFilter::Create(const std::string &dirtab_path) {
13
1/2
✓ Branch 2 taken 39 times.
✗ Branch 3 not taken.
39 RelaxedPathFilter *dt = new RelaxedPathFilter();
14 39 dt->Open(dirtab_path);
15 39 return dt;
16 }
17
18
19 1313 bool RelaxedPathFilter::IsMatching(const std::string &path) const {
20 1313 bool has_positive_match = Dirtab::IsMatching(path);
21
2/2
✓ Branch 0 taken 793 times.
✓ Branch 1 taken 520 times.
1313 if (!has_positive_match) {
22
1/2
✓ Branch 1 taken 793 times.
✗ Branch 2 not taken.
793 std::string current_path = path;
23
2/2
✓ Branch 1 taken 1209 times.
✓ Branch 2 taken 312 times.
1521 while (current_path.length() > 0) {
24 1209 const size_t new_length = current_path.find_last_of("/");
25
1/2
✓ Branch 1 taken 1209 times.
✗ Branch 2 not taken.
1209 current_path = current_path.substr(0, new_length);
26
3/4
✓ Branch 1 taken 1209 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 481 times.
✓ Branch 4 taken 728 times.
1209 if (exact_dirtab_.IsMatching(current_path)) {
27 481 has_positive_match = true;
28 481 break;
29 }
30 } // walk through sub paths
31 793 }
32
33
4/4
✓ Branch 0 taken 1001 times.
✓ Branch 1 taken 312 times.
✓ Branch 3 taken 780 times.
✓ Branch 4 taken 221 times.
1313 return has_positive_match && !IsOpposing(path);
34 }
35
36
37 1638 bool RelaxedPathFilter::IsOpposing(const std::string &path) const {
38
3/4
✓ Branch 1 taken 1638 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 169 times.
✓ Branch 4 taken 1469 times.
1638 if (Dirtab::IsOpposing(path))
39 169 return true;
40
41
1/2
✓ Branch 1 taken 1469 times.
✗ Branch 2 not taken.
1469 std::string current_path = path;
42
2/2
✓ Branch 1 taken 3445 times.
✓ Branch 2 taken 1378 times.
4823 while (current_path.length() > 0) {
43 3445 const size_t new_length = current_path.find_last_of("/");
44
1/2
✓ Branch 1 taken 3445 times.
✗ Branch 2 not taken.
3445 current_path = current_path.substr(0, new_length);
45
3/4
✓ Branch 1 taken 3445 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 91 times.
✓ Branch 4 taken 3354 times.
3445 if (Dirtab::IsOpposing(current_path)) {
46 91 return true;
47 }
48 }
49
50 1378 return false;
51 1469 }
52
53
54 234 bool RelaxedPathFilter::Parse(const std::string &dirtab) {
55 234 return Dirtab::Parse(dirtab) & exact_dirtab_.Parse(dirtab);
56 }
57
58 39 bool RelaxedPathFilter::Parse(FILE *dirtab_file) {
59 39 bool result = Dirtab::Parse(dirtab_file);
60 39 rewind(dirtab_file);
61 39 result &= exact_dirtab_.Parse(dirtab_file);
62 39 return result;
63 }
64
65
66 676 bool RelaxedPathFilter::ParsePathspec(const std::string &pathspec_str,
67 bool negation) {
68
2/2
✓ Branch 0 taken 208 times.
✓ Branch 1 taken 468 times.
676 if (negation) {
69
1/2
✓ Branch 1 taken 208 times.
✗ Branch 2 not taken.
208 return Dirtab::ParsePathspec(pathspec_str, true);
70 }
71 468 bool success = true;
72
1/2
✓ Branch 1 taken 468 times.
✗ Branch 2 not taken.
468 std::string current_pathspec_str(pathspec_str);
73
2/2
✓ Branch 1 taken 949 times.
✓ Branch 2 taken 468 times.
1417 while (current_pathspec_str.length() > 0) {
74
2/4
✓ Branch 1 taken 949 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 949 times.
949 if (!Dirtab::ParsePathspec(current_pathspec_str, false))
75 success = false;
76 949 const size_t new_length = current_pathspec_str.find_last_of("/");
77
1/2
✓ Branch 1 taken 949 times.
✗ Branch 2 not taken.
949 current_pathspec_str = current_pathspec_str.substr(0, new_length);
78 }
79
80 468 return success;
81 468 }
82