Coverage Report

Created: 2026-09-14 06:43

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/CMake/Source/cmGccDepfileReader.cxx
Line
Count
Source
1
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
2
   file LICENSE.rst or https://cmake.org/licensing for details.  */
3
#include "cmGccDepfileReader.h"
4
5
#include <utility>
6
#include <vector>
7
8
#include <cm/optional>
9
10
#include "cmGccDepfileLexerHelper.h"
11
#include "cmStringAlgorithms.h"
12
#include "cmSystemTools.h"
13
14
cm::optional<cmGccDepfileContent> cmReadGccDepfile(
15
  char const* filePath, std::string const& prefix,
16
  GccDepfilePrependPaths prependPaths)
17
5.72k
{
18
5.72k
  cmGccDepfileLexerHelper helper;
19
5.72k
  if (!helper.readFile(filePath)) {
20
60
    return cm::nullopt;
21
60
  }
22
5.66k
  auto deps = cm::make_optional(std::move(helper).extractContent());
23
24
105k
  for (auto& dep : *deps) {
25
114k
    for (auto& rule : dep.rules) {
26
114k
      if (prependPaths == GccDepfilePrependPaths::All && !prefix.empty() &&
27
0
          !cmSystemTools::FileIsFullPath(rule)) {
28
0
        rule = cmStrCat(prefix, '/', rule);
29
0
      }
30
114k
      if (cmSystemTools::FileIsFullPath(rule)) {
31
105k
        rule = cmSystemTools::CollapseFullPath(rule);
32
105k
      }
33
114k
      cmSystemTools::ConvertToLongPath(rule);
34
114k
    }
35
105k
    for (auto& path : dep.paths) {
36
36.7k
      if (!prefix.empty() && !cmSystemTools::FileIsFullPath(path)) {
37
0
        path = cmStrCat(prefix, '/', path);
38
0
      }
39
36.7k
      if (cmSystemTools::FileIsFullPath(path)) {
40
2.99k
        path = cmSystemTools::CollapseFullPath(path);
41
2.99k
      }
42
36.7k
      cmSystemTools::ConvertToLongPath(path);
43
36.7k
    }
44
105k
  }
45
46
5.66k
  return deps;
47
5.72k
}