LLDB mainline
CommandObjectLog.cpp
Go to the documentation of this file.
1//===-- CommandObjectLog.cpp ----------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "CommandObjectLog.h"
10#include "lldb/Core/Debugger.h"
18#include "lldb/Utility/Args.h"
20#include "lldb/Utility/Log.h"
21#include "lldb/Utility/Stream.h"
22#include "lldb/Utility/Timer.h"
23
24using namespace lldb;
25using namespace lldb_private;
26
27#define LLDB_OPTIONS_log_enable
28#include "CommandOptions.inc"
29
30#define LLDB_OPTIONS_log_dump
31#include "CommandOptions.inc"
32
33/// Common completion logic for log enable/disable.
35 size_t arg_index = request.GetCursorIndex();
36 if (arg_index == 0) { // We got: log enable/disable x[tab]
37 for (llvm::StringRef channel : Log::ListChannels())
38 request.TryCompleteCurrentArg(channel);
39 } else if (arg_index >= 1) { // We got: log enable/disable channel x[tab]
40 llvm::StringRef channel = request.GetParsedLine().GetArgumentAtIndex(0);
42 channel, [&request](llvm::StringRef name, llvm::StringRef desc) {
43 request.TryCompleteCurrentArg(name, desc);
44 });
45 }
46}
47
49public:
50 // Constructors and Destructors
52 : CommandObjectParsed(interpreter, "log enable",
53 "Enable logging for a single log channel.",
54 nullptr) {
57 CommandArgumentData channel_arg;
58 CommandArgumentData category_arg;
59
60 // Define the first (and only) variant of this arg.
61 channel_arg.arg_type = eArgTypeLogChannel;
62 channel_arg.arg_repetition = eArgRepeatPlain;
63
64 // There is only one variant this argument could be; put it into the
65 // argument entry.
66 arg1.push_back(channel_arg);
67
68 category_arg.arg_type = eArgTypeLogCategory;
69 category_arg.arg_repetition = eArgRepeatPlus;
70
71 arg2.push_back(category_arg);
72
73 // Push the data for the first argument into the m_arguments vector.
74 m_arguments.push_back(arg1);
75 m_arguments.push_back(arg2);
76 }
77
78 ~CommandObjectLogEnable() override = default;
79
80 Options *GetOptions() override { return &m_options; }
81
82 class CommandOptions : public Options {
83 public:
84 CommandOptions() = default;
85
86 ~CommandOptions() override = default;
87
88 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
89 ExecutionContext *execution_context) override {
91 const int short_option = m_getopt_table[option_idx].val;
92
93 switch (short_option) {
94 case 'f':
95 log_file.SetFile(option_arg, FileSpec::Style::native);
97 break;
98 case 'h':
100 option_arg, GetDefinitions()[option_idx].enum_values, 0, error);
101 if (!error.Success())
103 "unrecognized value for log handler '{0}'", option_arg);
104 break;
105 case 'b':
106 return buffer_size.SetValueFromString(option_arg,
108 case 'v':
110 break;
111 case 's':
113 break;
114 case 'T':
116 break;
117 case 'p':
119 break;
120 case 'n':
122 break;
123 case 'S':
125 break;
126 case 'a':
128 break;
129 case 'F':
131 break;
132 default:
133 llvm_unreachable("Unimplemented option");
134 }
135
136 return error;
137 }
138
139 void OptionParsingStarting(ExecutionContext *execution_context) override {
140 log_file.Clear();
143 log_options = 0;
144 }
145
146 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
147 return llvm::ArrayRef(g_log_enable_options);
148 }
149
153 uint32_t log_options = 0;
154 };
155
156 void
158 OptionElementVector &opt_element_vector) override {
159 CompleteEnableDisable(request);
160 }
161
162protected:
163 void DoExecute(Args &args, CommandReturnObject &result) override {
164 if (args.GetArgumentCount() < 2) {
166 "%s takes a log channel and one or more log types.\n",
167 m_cmd_name.c_str());
168 return;
169 }
170
173 result.AppendError(
174 "the circular buffer handler requires a non-zero buffer size.\n");
175 return;
176 }
177
181 result.AppendError("a buffer size can only be specified for the circular "
182 "and stream buffer handler.\n");
183 return;
184 }
185
187 result.AppendError(
188 "a file name can only be specified for the stream handler.\n");
189 return;
190 }
191
192 // Store into a std::string since we're about to shift the channel off.
193 const std::string channel = std::string(args[0].ref());
194 args.Shift(); // Shift off the channel
195 char log_file[PATH_MAX];
197 m_options.log_file.GetPath(log_file, sizeof(log_file));
198 else
199 log_file[0] = '\0';
200
201 std::string error;
202 llvm::raw_string_ostream error_stream(error);
203 bool success = GetDebugger().EnableLog(
204 channel, args.GetArgumentArrayRef(), log_file, m_options.log_options,
206 error_stream);
207 result.GetErrorStream() << error;
208
209 if (success)
211 else
213 }
214
216};
217
219public:
220 // Constructors and Destructors
222 : CommandObjectParsed(interpreter, "log disable",
223 "Disable one or more log channel categories.",
224 nullptr) {
227 CommandArgumentData channel_arg;
228 CommandArgumentData category_arg;
229
230 // Define the first (and only) variant of this arg.
231 channel_arg.arg_type = eArgTypeLogChannel;
232 channel_arg.arg_repetition = eArgRepeatPlain;
233
234 // There is only one variant this argument could be; put it into the
235 // argument entry.
236 arg1.push_back(channel_arg);
237
238 category_arg.arg_type = eArgTypeLogCategory;
239 category_arg.arg_repetition = eArgRepeatPlus;
240
241 arg2.push_back(category_arg);
242
243 // Push the data for the first argument into the m_arguments vector.
244 m_arguments.push_back(arg1);
245 m_arguments.push_back(arg2);
246 }
247
248 ~CommandObjectLogDisable() override = default;
249
250 void
252 OptionElementVector &opt_element_vector) override {
253 CompleteEnableDisable(request);
254 }
255
256protected:
257 void DoExecute(Args &args, CommandReturnObject &result) override {
258 if (args.empty()) {
260 "%s takes a log channel and one or more log types.\n",
261 m_cmd_name.c_str());
262 return;
263 }
264
265 const std::string channel = std::string(args[0].ref());
266 args.Shift(); // Shift off the channel
267 if (channel == "all") {
270 } else {
271 std::string error;
272 llvm::raw_string_ostream error_stream(error);
274 error_stream))
276 result.GetErrorStream() << error;
277 }
278 }
279};
280
282public:
283 // Constructors and Destructors
285 : CommandObjectParsed(interpreter, "log list",
286 "List the log categories for one or more log "
287 "channels. If none specified, lists them all.",
288 nullptr) {
290 }
291
292 ~CommandObjectLogList() override = default;
293
294 void
296 OptionElementVector &opt_element_vector) override {
297 for (llvm::StringRef channel : Log::ListChannels())
298 request.TryCompleteCurrentArg(channel);
299 }
300
301protected:
302 void DoExecute(Args &args, CommandReturnObject &result) override {
303 std::string output;
304 llvm::raw_string_ostream output_stream(output);
305 if (args.empty()) {
306 Log::ListAllLogChannels(output_stream);
308 } else {
309 bool success = true;
310 for (const auto &entry : args.entries())
311 success =
312 success && Log::ListChannelCategories(entry.ref(), output_stream);
313 if (success)
315 }
316 result.GetOutputStream() << output;
317 }
318};
320public:
322 : CommandObjectParsed(interpreter, "log dump",
323 "dump circular buffer logs", nullptr) {
325 }
326
327 ~CommandObjectLogDump() override = default;
328
329 Options *GetOptions() override { return &m_options; }
330
331 class CommandOptions : public Options {
332 public:
333 CommandOptions() = default;
334
335 ~CommandOptions() override = default;
336
337 Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg,
338 ExecutionContext *execution_context) override {
340 const int short_option = m_getopt_table[option_idx].val;
341
342 switch (short_option) {
343 case 'f':
344 log_file.SetFile(option_arg, FileSpec::Style::native);
346 break;
347 default:
348 llvm_unreachable("Unimplemented option");
349 }
350
351 return error;
352 }
353
354 void OptionParsingStarting(ExecutionContext *execution_context) override {
355 log_file.Clear();
356 }
357
358 llvm::ArrayRef<OptionDefinition> GetDefinitions() override {
359 return llvm::ArrayRef(g_log_dump_options);
360 }
361
363 };
364
365 void
367 OptionElementVector &opt_element_vector) override {
368 CompleteEnableDisable(request);
369 }
370
371protected:
372 void DoExecute(Args &args, CommandReturnObject &result) override {
373 if (args.empty()) {
375 "%s takes a log channel and one or more log types.\n",
376 m_cmd_name.c_str());
377 return;
378 }
379
380 std::unique_ptr<llvm::raw_ostream> stream_up;
381 if (m_options.log_file) {
385 llvm::Expected<FileUP> file = FileSystem::Instance().Open(
386 m_options.log_file, flags, lldb::eFilePermissionsFileDefault, false);
387 if (!file) {
388 result.AppendErrorWithFormat("Unable to open log file '%s': %s",
389 m_options.log_file.GetPath().c_str(),
390 llvm::toString(file.takeError()).c_str());
391 return;
392 }
393 stream_up = std::make_unique<llvm::raw_fd_ostream>(
394 (*file)->GetDescriptor(), /*shouldClose=*/true);
395 } else {
396 stream_up = std::make_unique<llvm::raw_fd_ostream>(
397 GetDebugger().GetOutputFile().GetDescriptor(), /*shouldClose=*/false);
398 }
399
400 const std::string channel = std::string(args[0].ref());
401 std::string error;
402 llvm::raw_string_ostream error_stream(error);
403 if (Log::DumpLogChannel(channel, *stream_up, error_stream)) {
405 } else {
407 result.GetErrorStream() << error;
408 }
409 }
410
412};
413
415public:
416 // Constructors and Destructors
418 : CommandObjectParsed(interpreter, "log timers enable",
419 "enable LLDB internal performance timers",
420 "log timers enable <depth>") {
422 }
423
424 ~CommandObjectLogTimerEnable() override = default;
425
426protected:
427 void DoExecute(Args &args, CommandReturnObject &result) override {
429
430 if (args.GetArgumentCount() == 0) {
433 } else if (args.GetArgumentCount() == 1) {
434 uint32_t depth;
435 if (args[0].ref().consumeInteger(0, depth)) {
436 result.AppendError(
437 "Could not convert enable depth to an unsigned integer.");
438 } else {
441 }
442 }
443
444 if (!result.Succeeded()) {
445 result.AppendError("Missing subcommand");
446 result.AppendErrorWithFormat("Usage: %s\n", m_cmd_syntax.c_str());
447 }
448 }
449};
450
452public:
453 // Constructors and Destructors
455 : CommandObjectParsed(interpreter, "log timers disable",
456 "disable LLDB internal performance timers",
457 nullptr) {}
458
459 ~CommandObjectLogTimerDisable() override = default;
460
461protected:
462 void DoExecute(Args &args, CommandReturnObject &result) override {
466
467 if (!result.Succeeded()) {
468 result.AppendError("Missing subcommand");
469 result.AppendErrorWithFormat("Usage: %s\n", m_cmd_syntax.c_str());
470 }
471 }
472};
473
475public:
476 // Constructors and Destructors
478 : CommandObjectParsed(interpreter, "log timers dump",
479 "dump LLDB internal performance timers", nullptr) {}
480
481 ~CommandObjectLogTimerDump() override = default;
482
483protected:
484 void DoExecute(Args &args, CommandReturnObject &result) override {
487
488 if (!result.Succeeded()) {
489 result.AppendError("Missing subcommand");
490 result.AppendErrorWithFormat("Usage: %s\n", m_cmd_syntax.c_str());
491 }
492 }
493};
494
496public:
497 // Constructors and Destructors
499 : CommandObjectParsed(interpreter, "log timers reset",
500 "reset LLDB internal performance timers", nullptr) {
501 }
502
503 ~CommandObjectLogTimerReset() override = default;
504
505protected:
506 void DoExecute(Args &args, CommandReturnObject &result) override {
509
510 if (!result.Succeeded()) {
511 result.AppendError("Missing subcommand");
512 result.AppendErrorWithFormat("Usage: %s\n", m_cmd_syntax.c_str());
513 }
514 }
515};
516
518public:
519 // Constructors and Destructors
521 : CommandObjectParsed(interpreter, "log timers increment",
522 "increment LLDB internal performance timers",
523 "log timers increment <bool>") {
525 }
526
528
529 void
531 OptionElementVector &opt_element_vector) override {
532 request.TryCompleteCurrentArg("true");
533 request.TryCompleteCurrentArg("false");
534 }
535
536protected:
537 void DoExecute(Args &args, CommandReturnObject &result) override {
539
540 if (args.GetArgumentCount() == 1) {
541 bool success;
542 bool increment =
543 OptionArgParser::ToBoolean(args[0].ref(), false, &success);
544
545 if (success) {
546 Timer::SetQuiet(!increment);
548 } else
549 result.AppendError("Could not convert increment value to boolean.");
550 }
551
552 if (!result.Succeeded()) {
553 result.AppendError("Missing subcommand");
554 result.AppendErrorWithFormat("Usage: %s\n", m_cmd_syntax.c_str());
555 }
556 }
557};
558
560public:
562 : CommandObjectMultiword(interpreter, "log timers",
563 "Enable, disable, dump, and reset LLDB internal "
564 "performance timers.",
565 "log timers < enable <depth> | disable | dump | "
566 "increment <bool> | reset >") {
568 new CommandObjectLogTimerEnable(interpreter)));
570 interpreter)));
571 LoadSubCommand("dump",
574 "reset", CommandObjectSP(new CommandObjectLogTimerReset(interpreter)));
576 "increment",
578 }
579
580 ~CommandObjectLogTimer() override = default;
581};
582
584 : CommandObjectMultiword(interpreter, "log",
585 "Commands controlling LLDB internal logging.",
586 "log <subcommand> [<command-options>]") {
587 LoadSubCommand("enable",
588 CommandObjectSP(new CommandObjectLogEnable(interpreter)));
589 LoadSubCommand("disable",
590 CommandObjectSP(new CommandObjectLogDisable(interpreter)));
591 LoadSubCommand("list",
592 CommandObjectSP(new CommandObjectLogList(interpreter)));
593 LoadSubCommand("dump",
594 CommandObjectSP(new CommandObjectLogDump(interpreter)));
595 LoadSubCommand("timers",
596 CommandObjectSP(new CommandObjectLogTimer(interpreter)));
597}
598
static void CompleteEnableDisable(CompletionRequest &request)
Common completion logic for log enable/disable.
static llvm::raw_ostream & error(Stream &strm)
#define LLDB_LOG_OPTION_PREPEND_FILE_FUNCTION
Definition: Log.h:43
#define LLDB_LOG_OPTION_APPEND
Definition: Log.h:42
#define LLDB_LOG_OPTION_BACKTRACE
Definition: Log.h:41
#define LLDB_LOG_OPTION_PREPEND_TIMESTAMP
Definition: Log.h:38
#define LLDB_LOG_OPTION_PREPEND_PROC_AND_THREAD
Definition: Log.h:39
#define LLDB_LOG_OPTION_PREPEND_SEQUENCE
Definition: Log.h:37
#define LLDB_LOG_OPTION_VERBOSE
Definition: Log.h:36
#define LLDB_LOG_OPTION_PREPEND_THREAD_NAME
Definition: Log.h:40
void HandleArgumentCompletion(CompletionRequest &request, OptionElementVector &opt_element_vector) override
The default version handles argument definitions that have only one argument type,...
void DoExecute(Args &args, CommandReturnObject &result) override
CommandObjectLogDisable(CommandInterpreter &interpreter)
~CommandObjectLogDisable() override=default
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context) override
Set the value of an option.
void OptionParsingStarting(ExecutionContext *execution_context) override
llvm::ArrayRef< OptionDefinition > GetDefinitions() override
CommandObjectLogDump(CommandInterpreter &interpreter)
Options * GetOptions() override
~CommandObjectLogDump() override=default
void DoExecute(Args &args, CommandReturnObject &result) override
void HandleArgumentCompletion(CompletionRequest &request, OptionElementVector &opt_element_vector) override
The default version handles argument definitions that have only one argument type,...
llvm::ArrayRef< OptionDefinition > GetDefinitions() override
void OptionParsingStarting(ExecutionContext *execution_context) override
Status SetOptionValue(uint32_t option_idx, llvm::StringRef option_arg, ExecutionContext *execution_context) override
Set the value of an option.
void HandleArgumentCompletion(CompletionRequest &request, OptionElementVector &opt_element_vector) override
The default version handles argument definitions that have only one argument type,...
Options * GetOptions() override
CommandObjectLogEnable(CommandInterpreter &interpreter)
~CommandObjectLogEnable() override=default
void DoExecute(Args &args, CommandReturnObject &result) override
CommandObjectLogList(CommandInterpreter &interpreter)
void DoExecute(Args &args, CommandReturnObject &result) override
~CommandObjectLogList() override=default
void HandleArgumentCompletion(CompletionRequest &request, OptionElementVector &opt_element_vector) override
The default version handles argument definitions that have only one argument type,...
CommandObjectLogTimerDisable(CommandInterpreter &interpreter)
void DoExecute(Args &args, CommandReturnObject &result) override
~CommandObjectLogTimerDisable() override=default
~CommandObjectLogTimerDump() override=default
CommandObjectLogTimerDump(CommandInterpreter &interpreter)
void DoExecute(Args &args, CommandReturnObject &result) override
~CommandObjectLogTimerEnable() override=default
CommandObjectLogTimerEnable(CommandInterpreter &interpreter)
void DoExecute(Args &args, CommandReturnObject &result) override
CommandObjectLogTimerIncrement(CommandInterpreter &interpreter)
void DoExecute(Args &args, CommandReturnObject &result) override
~CommandObjectLogTimerIncrement() override=default
void HandleArgumentCompletion(CompletionRequest &request, OptionElementVector &opt_element_vector) override
The default version handles argument definitions that have only one argument type,...
CommandObjectLogTimerReset(CommandInterpreter &interpreter)
~CommandObjectLogTimerReset() override=default
void DoExecute(Args &args, CommandReturnObject &result) override
CommandObjectLogTimer(CommandInterpreter &interpreter)
~CommandObjectLogTimer() override=default
A command line argument class.
Definition: Args.h:33
llvm::ArrayRef< const char * > GetArgumentArrayRef() const
Gets the argument as an ArrayRef.
Definition: Args.h:173
void Shift()
Shifts the first argument C string value of the array off the argument array.
Definition: Args.cpp:295
size_t GetArgumentCount() const
Gets the number of arguments left in this command object.
Definition: Args.h:120
llvm::ArrayRef< ArgEntry > entries() const
Definition: Args.h:132
const char * GetArgumentAtIndex(size_t idx) const
Gets the NULL terminated C string argument pointer for the argument at index idx.
Definition: Args.cpp:273
bool empty() const
Definition: Args.h:122
CommandObjectLog(CommandInterpreter &interpreter)
bool LoadSubCommand(llvm::StringRef cmd_name, const lldb::CommandObjectSP &command_obj) override
std::vector< CommandArgumentData > CommandArgumentEntry
void AddSimpleArgumentList(lldb::CommandArgumentType arg_type, ArgumentRepetitionType repetition_type=eArgRepeatPlain)
std::vector< CommandArgumentEntry > m_arguments
void void AppendError(llvm::StringRef in_string)
void SetStatus(lldb::ReturnStatus status)
void AppendErrorWithFormat(const char *format,...) __attribute__((format(printf
"lldb/Utility/ArgCompletionRequest.h"
const Args & GetParsedLine() const
void TryCompleteCurrentArg(llvm::StringRef completion, llvm::StringRef description="")
Adds a possible completion string if the completion would complete the current argument.
bool EnableLog(llvm::StringRef channel, llvm::ArrayRef< const char * > categories, llvm::StringRef log_file, uint32_t log_options, size_t buffer_size, LogHandlerKind log_handler_kind, llvm::raw_ostream &error_stream)
Definition: Debugger.cpp:1668
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
A file utility class.
Definition: FileSpec.h:56
void SetFile(llvm::StringRef path, Style style)
Change the file specified with a new path.
Definition: FileSpec.cpp:174
size_t GetPath(char *path, size_t max_path_length, bool denormalize=true) const
Extract the full path to the file.
Definition: FileSpec.cpp:367
void Clear()
Clears the object state.
Definition: FileSpec.cpp:259
void Resolve(llvm::SmallVectorImpl< char > &path)
Resolve path to make it canonical.
int Open(const char *path, int flags, int mode=0600)
Wraps ::open in a platform-independent way.
static FileSystem & Instance()
@ eOpenOptionWriteOnly
Definition: File.h:52
@ eOpenOptionCanCreate
Definition: File.h:56
@ eOpenOptionTruncate
Definition: File.h:57
static bool DisableLogChannel(llvm::StringRef channel, llvm::ArrayRef< const char * > categories, llvm::raw_ostream &error_stream)
Definition: Log.cpp:251
static void ListAllLogChannels(llvm::raw_ostream &stream)
Definition: Log.cpp:316
static bool DumpLogChannel(llvm::StringRef channel, llvm::raw_ostream &output_stream, llvm::raw_ostream &error_stream)
Definition: Log.cpp:267
static bool ListChannelCategories(llvm::StringRef channel, llvm::raw_ostream &stream)
Definition: Log.cpp:283
static void DisableAllLogChannels()
Definition: Log.cpp:294
static void ForEachChannelCategory(llvm::StringRef channel, llvm::function_ref< void(llvm::StringRef, llvm::StringRef)> lambda)
Calls the given lambda for every category in the given channel.
Definition: Log.cpp:299
static std::vector< llvm::StringRef > ListChannels()
Returns the list of log channels.
Definition: Log.cpp:309
Status SetValueFromString(llvm::StringRef value, VarSetOperationType op=eVarSetOperationAssign) override
A command line option parsing protocol class.
Definition: Options.h:58
std::vector< Option > m_getopt_table
Definition: Options.h:198
An error handling class.
Definition: Status.h:118
static Status static Status FromErrorStringWithFormatv(const char *format, Args &&...args)
Definition: Status.h:151
static void ResetCategoryTimes()
Definition: Timer.cpp:130
static void SetQuiet(bool value)
Definition: Timer.cpp:58
static void SetDisplayDepth(uint32_t depth)
Definition: Timer.cpp:111
static void DumpCategoryTimes(Stream &s)
Definition: Timer.cpp:138
#define UINT32_MAX
Definition: lldb-defines.h:19
A class that represents a running process on the host machine.
std::vector< OptionArgElement > OptionElementVector
Definition: Options.h:43
Definition: SBAddress.h:15
std::shared_ptr< lldb_private::CommandObject > CommandObjectSP
Definition: lldb-forward.h:333
@ eReturnStatusFailed
@ eReturnStatusSuccessFinishResult
@ eReturnStatusSuccessFinishNoResult
@ eArgTypeLogCategory
@ eArgTypeLogChannel
Used to build individual command argument lists.
Definition: CommandObject.h:95
static int64_t ToOptionEnum(llvm::StringRef s, const OptionEnumValues &enum_values, int32_t fail_value, Status &error)
static bool ToBoolean(llvm::StringRef s, bool fail_value, bool *success_ptr)
#define PATH_MAX