summaryrefslogtreecommitdiff
path: root/src/Context.cpp
blob: 578997269661904243e604fba25c12688bde4430 (plain)
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
// Copyright (C) 2020 Joel Rosdahl and other contributors
//
// See doc/AUTHORS.adoc for a complete list of contributors.
//
// This program is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by the Free
// Software Foundation; either version 3 of the License, or (at your option)
// any later version.
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
// more details.
//
// You should have received a copy of the GNU General Public License along with
// this program; if not, write to the Free Software Foundation, Inc., 51
// Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

#include "Context.hpp"

#include "Counters.hpp"
#include "SignalHandler.hpp"
#include "Util.hpp"
#include "hashutil.hpp"
#include "logging.hpp"
#include "stats.hpp"

#include <algorithm>
#include <string>
#include <vector>

using nonstd::string_view;

Context::Context()
  : actual_cwd(Util::get_actual_cwd()),
    apparent_cwd(Util::get_apparent_cwd(actual_cwd))
#ifdef INODE_CACHE_SUPPORTED
    ,
    inode_cache(config)
#endif
{
}

Context::~Context()
{
  stats_flush(this);
  unlink_pending_tmp_files();

  // Dump log buffer last to not lose any logs.
  if (config.debug()) {
    std::string path = fmt::format("{}.ccache-log", args_info.output_obj);
    cc_dump_debug_log_buffer(path.c_str());
  }
}

void
Context::set_manifest_name(const Digest& name)
{
  m_manifest_name = name;
  set_path_and_stats_file(
    name, ".manifest", m_manifest_path, m_manifest_stats_file);
}

void
Context::set_result_name(const Digest& name)
{
  m_result_name = name;
  set_path_and_stats_file(name, ".result", m_result_path, m_result_stats_file);
}

const std::string&
Context::stats_file() const
{
  if (m_result_stats_file.empty()) {
    // An empty m_result_stats_file means that set_result_name hasn't been
    // called yet, so we just choose one of stats files in the 16
    // subdirectories.
    m_result_stats_file = fmt::format(
      "{}/{:x}/stats", config.cache_dir(), hash_from_int(getpid()) % 16);
  }
  return m_result_stats_file;
}

void
Context::set_path_and_stats_file(const Digest& name,
                                 string_view suffix,
                                 std::string& path_var,
                                 std::string& stats_file_var) const
{
  std::string name_string = name.to_string();
  path_var = Util::get_path_in_cache(
    config.cache_dir(), config.cache_dir_levels(), name_string, suffix);
  stats_file_var =
    fmt::format("{}/{}/stats", config.cache_dir(), name_string[0]);
}

void
Context::register_pending_tmp_file(const std::string& path)
{
  SignalHandlerBlocker signal_handler_blocker;

  m_pending_tmp_files.push_back(path);
}

void
Context::unlink_pending_tmp_files_signal_safe()
{
  for (const std::string& path : m_pending_tmp_files) {
    // Don't call Util::unlink_tmp since its cc_log calls aren't signal safe.
    unlink(path.c_str());
  }
  // Don't clear m_pending_tmp_files since this method must be signal safe.
}

void
Context::unlink_pending_tmp_files()
{
  SignalHandlerBlocker signal_handler_blocker;

  for (const std::string& path : m_pending_tmp_files) {
    Util::unlink_tmp(path, Util::UnlinkLog::ignore_failure);
  }
  m_pending_tmp_files.clear();
}

void
Context::set_ignore_options(const std::vector<std::string>& options)
{
  for (const std::string& option : options) {
    size_t n_wildcards = std::count(option.cbegin(), option.cend(), '*');
    if (n_wildcards == 0 || (n_wildcards == 1 && option.back() == '*')) {
      m_ignore_options.push_back(option);
    } else {
      cc_log("Skipping malformed ignore_options item: %s", option.c_str());
      continue;
    }
  }
}