Coverage Report

Created: 2026-06-15 07:03

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.78k
{
18
5.78k
  cmGccDepfileLexerHelper helper;
19
5.78k
  if (!helper.readFile(filePath)) {
20
61
    return cm::nullopt;
21
61
  }
22
5.72k
  auto deps = cm::make_optional(std::move(helper).extractContent());
23
24
110k
  for (auto& dep : *deps) {
25
146k
    for (auto& rule : dep.rules) {
26
146k
      if (prependPaths == GccDepfilePrependPaths::All && !prefix.empty() &&
27
0
          !cmSystemTools::FileIsFullPath(rule)) {
28
0
        rule = cmStrCat(prefix, '/', rule);
29
0
      }
30
146k
      if (cmSystemTools::FileIsFullPath(rule)) {
31
111k
        rule = cmSystemTools::CollapseFullPath(rule);
32
111k
      }
33
146k
      cmSystemTools::ConvertToLongPath(rule);
34
146k
    }
35
110k
    for (auto& path : dep.paths) {
36
56.2k
      if (!prefix.empty() && !cmSystemTools::FileIsFullPath(path)) {
37
0
        path = cmStrCat(prefix, '/', path);
38
0
      }
39
56.2k
      if (cmSystemTools::FileIsFullPath(path)) {
40
5.24k
        path = cmSystemTools::CollapseFullPath(path);
41
5.24k
      }
42
56.2k
      cmSystemTools::ConvertToLongPath(path);
43
56.2k
    }
44
110k
  }
45
46
5.72k
  return deps;
47
5.78k
}