blob: e0150dc1bfbb625ee203d837da36bc49aae6e758 (
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
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmMakefileProfilingData.h"
#include <chrono>
#include <stdexcept>
#include <vector>
#include <cm3p/json/value.h>
#include <cm3p/json/writer.h>
#include "cmsys/FStream.hxx"
#include "cmsys/SystemInformation.hxx"
#include "cmListFileCache.h"
#include "cmStringAlgorithms.h"
#include "cmSystemTools.h"
cmMakefileProfilingData::cmMakefileProfilingData(
const std::string& profileStream)
{
std::ios::openmode omode = std::ios::out | std::ios::trunc;
this->ProfileStream.open(profileStream.c_str(), omode);
Json::StreamWriterBuilder wbuilder;
this->JsonWriter =
std::unique_ptr<Json::StreamWriter>(wbuilder.newStreamWriter());
if (!this->ProfileStream.good()) {
throw std::runtime_error(std::string("Unable to open: ") + profileStream);
}
this->ProfileStream << "[";
};
cmMakefileProfilingData::~cmMakefileProfilingData() noexcept
{
if (this->ProfileStream.good()) {
try {
this->ProfileStream << "]";
this->ProfileStream.close();
} catch (...) {
cmSystemTools::Error("Error writing profiling output!");
}
}
}
void cmMakefileProfilingData::StartEntry(const cmListFileFunction& lff,
cmListFileContext const& lfc)
{
/* Do not try again if we previously failed to write to output. */
if (!this->ProfileStream.good()) {
return;
}
try {
if (this->ProfileStream.tellp() > 1) {
this->ProfileStream << ",";
}
cmsys::SystemInformation info;
Json::Value v;
v["ph"] = "B";
v["name"] = lff.Name.Original;
v["cat"] = "cmake";
v["ts"] = Json::Value::UInt64(
std::chrono::duration_cast<std::chrono::microseconds>(
std::chrono::steady_clock::now().time_since_epoch())
.count());
v["pid"] = static_cast<int>(info.GetProcessId());
v["tid"] = 0;
Json::Value argsValue;
if (!lff.Arguments.empty()) {
std::string args;
for (const auto& a : lff.Arguments) {
args += (args.empty() ? "" : " ") + a.Value;
}
argsValue["functionArgs"] = args;
}
argsValue["location"] = lfc.FilePath + ":" + std::to_string(lfc.Line);
v["args"] = argsValue;
this->JsonWriter->write(v, &this->ProfileStream);
} catch (std::ios_base::failure& fail) {
cmSystemTools::Error(
cmStrCat("Failed to write to profiling output: ", fail.what()));
} catch (...) {
cmSystemTools::Error("Error writing profiling output!");
}
}
void cmMakefileProfilingData::StopEntry()
{
/* Do not try again if we previously failed to write to output. */
if (!this->ProfileStream.good()) {
return;
}
try {
this->ProfileStream << ",";
cmsys::SystemInformation info;
Json::Value v;
v["ph"] = "E";
v["ts"] = Json::Value::UInt64(
std::chrono::duration_cast<std::chrono::microseconds>(
std::chrono::steady_clock::now().time_since_epoch())
.count());
v["pid"] = static_cast<int>(info.GetProcessId());
v["tid"] = 0;
this->JsonWriter->write(v, &this->ProfileStream);
} catch (std::ios_base::failure& fail) {
cmSystemTools::Error(
cmStrCat("Failed to write to profiling output:", fail.what()));
} catch (...) {
cmSystemTools::Error("Error writing profiling output!");
}
}
|