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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
|
//===-- CommandObjectReproducer.cpp -----------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "CommandObjectReproducer.h"
#include "lldb/Utility/Reproducer.h"
#include "lldb/Interpreter/CommandInterpreter.h"
#include "lldb/Interpreter/CommandReturnObject.h"
#include "lldb/Interpreter/OptionArgParser.h"
#include "lldb/Interpreter/OptionGroupBoolean.h"
using namespace lldb;
using namespace lldb_private;
static void AppendErrorToResult(llvm::Error e, CommandReturnObject &result) {
std::string error_str = llvm::toString(std::move(e));
result.AppendErrorWithFormat("%s", error_str.c_str());
}
class CommandObjectReproducerCaptureEnable : public CommandObjectParsed {
public:
CommandObjectReproducerCaptureEnable(CommandInterpreter &interpreter)
: CommandObjectParsed(interpreter, "reproducer capture enable",
"Enable gathering information for reproducer",
nullptr) {}
~CommandObjectReproducerCaptureEnable() override = default;
protected:
bool DoExecute(Args &command, CommandReturnObject &result) override {
if (!command.empty()) {
result.AppendErrorWithFormat("'%s' takes no arguments",
m_cmd_name.c_str());
return false;
}
if (auto e = m_interpreter.GetDebugger().SetReproducerCapture(true)) {
AppendErrorToResult(std::move(e), result);
return false;
}
result.SetStatus(eReturnStatusSuccessFinishNoResult);
return result.Succeeded();
}
};
class CommandObjectReproducerCaptureDisable : public CommandObjectParsed {
public:
CommandObjectReproducerCaptureDisable(CommandInterpreter &interpreter)
: CommandObjectParsed(interpreter, "reproducer capture enable",
"Disable gathering information for reproducer",
nullptr) {}
~CommandObjectReproducerCaptureDisable() override = default;
protected:
bool DoExecute(Args &command, CommandReturnObject &result) override {
if (!command.empty()) {
result.AppendErrorWithFormat("'%s' takes no arguments",
m_cmd_name.c_str());
return false;
}
if (auto e = m_interpreter.GetDebugger().SetReproducerCapture(false)) {
AppendErrorToResult(std::move(e), result);
return false;
}
result.SetStatus(eReturnStatusSuccessFinishNoResult);
return result.Succeeded();
}
};
class CommandObjectReproducerGenerate : public CommandObjectParsed {
public:
CommandObjectReproducerGenerate(CommandInterpreter &interpreter)
: CommandObjectParsed(interpreter, "reproducer generate",
"Generate reproducer on disk.", nullptr) {}
~CommandObjectReproducerGenerate() override = default;
protected:
bool DoExecute(Args &command, CommandReturnObject &result) override {
if (!command.empty()) {
result.AppendErrorWithFormat("'%s' takes no arguments",
m_cmd_name.c_str());
return false;
}
auto &r = repro::Reproducer::Instance();
if (auto generator = r.GetGenerator()) {
generator->Keep();
} else {
result.AppendErrorWithFormat("Unable to get the reproducer generator");
return false;
}
result.GetOutputStream()
<< "Reproducer written to '" << r.GetReproducerPath() << "'\n";
result.SetStatus(eReturnStatusSuccessFinishResult);
return result.Succeeded();
}
};
class CommandObjectReproducerReplay : public CommandObjectParsed {
public:
CommandObjectReproducerReplay(CommandInterpreter &interpreter)
: CommandObjectParsed(interpreter, "reproducer replay",
"Replay a reproducer.", nullptr) {
CommandArgumentEntry arg1;
CommandArgumentData path_arg;
// Define the first (and only) variant of this arg.
path_arg.arg_type = eArgTypePath;
path_arg.arg_repetition = eArgRepeatPlain;
// There is only one variant this argument could be; put it into the
// argument entry.
arg1.push_back(path_arg);
// Push the data for the first argument into the m_arguments vector.
m_arguments.push_back(arg1);
}
~CommandObjectReproducerReplay() override = default;
protected:
bool DoExecute(Args &command, CommandReturnObject &result) override {
if (command.empty()) {
result.AppendErrorWithFormat(
"'%s' takes a single argument: the reproducer path",
m_cmd_name.c_str());
return false;
}
auto &r = repro::Reproducer::Instance();
if (auto e = r.SetReplayReproducer(true)) {
std::string error_str = llvm::toString(std::move(e));
result.AppendErrorWithFormat("%s", error_str.c_str());
return false;
}
if (auto loader = r.GetLoader()) {
const char *repro_path = command.GetArgumentAtIndex(0);
if (auto e = loader->LoadIndex(FileSpec(repro_path))) {
std::string error_str = llvm::toString(std::move(e));
result.AppendErrorWithFormat("Unable to load reproducer: %s",
error_str.c_str());
return false;
}
} else {
result.AppendErrorWithFormat("Unable to get the reproducer loader");
return false;
}
result.SetStatus(eReturnStatusSuccessFinishNoResult);
return result.Succeeded();
}
};
class CommandObjectReproducerCapture : public CommandObjectMultiword {
private:
public:
CommandObjectReproducerCapture(CommandInterpreter &interpreter)
: CommandObjectMultiword(
interpreter, "reproducer capture",
"Manage gathering of information needed to generate a reproducer.",
NULL) {
LoadSubCommand(
"enable",
CommandObjectSP(new CommandObjectReproducerCaptureEnable(interpreter)));
LoadSubCommand("disable",
CommandObjectSP(
new CommandObjectReproducerCaptureDisable(interpreter)));
}
~CommandObjectReproducerCapture() {}
};
CommandObjectReproducer::CommandObjectReproducer(
CommandInterpreter &interpreter)
: CommandObjectMultiword(interpreter, "reproducer",
"Commands controlling LLDB reproducers.",
"log <subcommand> [<command-options>]") {
LoadSubCommand("capture", CommandObjectSP(new CommandObjectReproducerCapture(
interpreter)));
LoadSubCommand(
"generate",
CommandObjectSP(new CommandObjectReproducerGenerate(interpreter)));
LoadSubCommand("replay", CommandObjectSP(
new CommandObjectReproducerReplay(interpreter)));
}
CommandObjectReproducer::~CommandObjectReproducer() = default;
|