diff options
Diffstat (limited to 'source/Commands/CommandObjectLog.cpp')
-rw-r--r-- | source/Commands/CommandObjectLog.cpp | 99 |
1 files changed, 33 insertions, 66 deletions
diff --git a/source/Commands/CommandObjectLog.cpp b/source/Commands/CommandObjectLog.cpp index 8e29cd5223b02..ca6b39c0ebfa7 100644 --- a/source/Commands/CommandObjectLog.cpp +++ b/source/Commands/CommandObjectLog.cpp @@ -7,12 +7,11 @@ // //===----------------------------------------------------------------------===// -#include "CommandObjectLog.h" - // C Includes // C++ Includes // Other libraries and framework includes // Project includes +#include "CommandObjectLog.h" #include "lldb/Interpreter/Args.h" #include "lldb/Core/Debugger.h" #include "lldb/Host/FileSpec.h" @@ -23,24 +22,20 @@ #include "lldb/Core/Stream.h" #include "lldb/Core/StreamFile.h" #include "lldb/Core/Timer.h" - #include "lldb/Core/Debugger.h" #include "lldb/Host/StringConvert.h" #include "lldb/Interpreter/CommandInterpreter.h" #include "lldb/Interpreter/CommandReturnObject.h" - #include "lldb/Symbol/LineTable.h" #include "lldb/Symbol/ObjectFile.h" #include "lldb/Symbol/SymbolFile.h" #include "lldb/Symbol/SymbolVendor.h" - #include "lldb/Target/Process.h" #include "lldb/Target/Target.h" using namespace lldb; using namespace lldb_private; - class CommandObjectLogEnable : public CommandObjectParsed { public: @@ -48,13 +43,12 @@ public: // Constructors and Destructors //------------------------------------------------------------------ CommandObjectLogEnable(CommandInterpreter &interpreter) : - CommandObjectParsed (interpreter, - "log enable", - "Enable logging for a single log channel.", - NULL), + CommandObjectParsed(interpreter, + "log enable", + "Enable logging for a single log channel.", + nullptr), m_options (interpreter) { - CommandArgumentEntry arg1; CommandArgumentEntry arg2; CommandArgumentData channel_arg; @@ -77,9 +71,7 @@ public: m_arguments.push_back (arg2); } - ~CommandObjectLogEnable() override - { - } + ~CommandObjectLogEnable() override = default; Options * GetOptions () override @@ -112,7 +104,6 @@ public: class CommandOptions : public Options { public: - CommandOptions (CommandInterpreter &interpreter) : Options (interpreter), log_file (), @@ -120,10 +111,7 @@ public: { } - - ~CommandOptions () override - { - } + ~CommandOptions () override = default; Error SetOptionValue (uint32_t option_idx, const char *option_arg) override @@ -211,17 +199,17 @@ protected: OptionDefinition CommandObjectLogEnable::CommandOptions::g_option_table[] = { -{ LLDB_OPT_SET_1, false, "file", 'f', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeFilename, "Set the destination file to log to."}, -{ LLDB_OPT_SET_1, false, "threadsafe", 't', OptionParser::eNoArgument, NULL, NULL, 0, eArgTypeNone, "Enable thread safe logging to avoid interweaved log lines." }, -{ LLDB_OPT_SET_1, false, "verbose", 'v', OptionParser::eNoArgument, NULL, NULL, 0, eArgTypeNone, "Enable verbose logging." }, -{ LLDB_OPT_SET_1, false, "debug", 'g', OptionParser::eNoArgument, NULL, NULL, 0, eArgTypeNone, "Enable debug logging." }, -{ LLDB_OPT_SET_1, false, "sequence", 's', OptionParser::eNoArgument, NULL, NULL, 0, eArgTypeNone, "Prepend all log lines with an increasing integer sequence id." }, -{ LLDB_OPT_SET_1, false, "timestamp", 'T', OptionParser::eNoArgument, NULL, NULL, 0, eArgTypeNone, "Prepend all log lines with a timestamp." }, -{ LLDB_OPT_SET_1, false, "pid-tid", 'p', OptionParser::eNoArgument, NULL, NULL, 0, eArgTypeNone, "Prepend all log lines with the process and thread ID that generates the log line." }, -{ LLDB_OPT_SET_1, false, "thread-name",'n', OptionParser::eNoArgument, NULL, NULL, 0, eArgTypeNone, "Prepend all log lines with the thread name for the thread that generates the log line." }, -{ LLDB_OPT_SET_1, false, "stack", 'S', OptionParser::eNoArgument, NULL, NULL, 0, eArgTypeNone, "Append a stack backtrace to each log line." }, -{ LLDB_OPT_SET_1, false, "append", 'a', OptionParser::eNoArgument, NULL, NULL, 0, eArgTypeNone, "Append to the log file instead of overwriting." }, -{ 0, false, NULL, 0, 0, NULL, NULL, 0, eArgTypeNone, NULL } +{ LLDB_OPT_SET_1, false, "file", 'f', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeFilename, "Set the destination file to log to."}, +{ LLDB_OPT_SET_1, false, "threadsafe", 't', OptionParser::eNoArgument, nullptr, nullptr, 0, eArgTypeNone, "Enable thread safe logging to avoid interweaved log lines." }, +{ LLDB_OPT_SET_1, false, "verbose", 'v', OptionParser::eNoArgument, nullptr, nullptr, 0, eArgTypeNone, "Enable verbose logging." }, +{ LLDB_OPT_SET_1, false, "debug", 'g', OptionParser::eNoArgument, nullptr, nullptr, 0, eArgTypeNone, "Enable debug logging." }, +{ LLDB_OPT_SET_1, false, "sequence", 's', OptionParser::eNoArgument, nullptr, nullptr, 0, eArgTypeNone, "Prepend all log lines with an increasing integer sequence id." }, +{ LLDB_OPT_SET_1, false, "timestamp", 'T', OptionParser::eNoArgument, nullptr, nullptr, 0, eArgTypeNone, "Prepend all log lines with a timestamp." }, +{ LLDB_OPT_SET_1, false, "pid-tid", 'p', OptionParser::eNoArgument, nullptr, nullptr, 0, eArgTypeNone, "Prepend all log lines with the process and thread ID that generates the log line." }, +{ LLDB_OPT_SET_1, false, "thread-name",'n', OptionParser::eNoArgument, nullptr, nullptr, 0, eArgTypeNone, "Prepend all log lines with the thread name for the thread that generates the log line." }, +{ LLDB_OPT_SET_1, false, "stack", 'S', OptionParser::eNoArgument, nullptr, nullptr, 0, eArgTypeNone, "Append a stack backtrace to each log line." }, +{ LLDB_OPT_SET_1, false, "append", 'a', OptionParser::eNoArgument, nullptr, nullptr, 0, eArgTypeNone, "Append to the log file instead of overwriting." }, +{ 0, false, nullptr, 0, 0, nullptr, nullptr, 0, eArgTypeNone, nullptr } }; class CommandObjectLogDisable : public CommandObjectParsed @@ -231,10 +219,10 @@ public: // Constructors and Destructors //------------------------------------------------------------------ CommandObjectLogDisable(CommandInterpreter &interpreter) : - CommandObjectParsed (interpreter, - "log disable", - "Disable one or more log channel categories.", - NULL) + CommandObjectParsed(interpreter, + "log disable", + "Disable one or more log channel categories.", + nullptr) { CommandArgumentEntry arg1; CommandArgumentEntry arg2; @@ -258,9 +246,7 @@ public: m_arguments.push_back (arg2); } - ~CommandObjectLogDisable() override - { - } + ~CommandObjectLogDisable() override = default; protected: bool @@ -310,10 +296,10 @@ public: // Constructors and Destructors //------------------------------------------------------------------ CommandObjectLogList(CommandInterpreter &interpreter) : - CommandObjectParsed (interpreter, - "log list", - "List the log categories for one or more log channels. If none specified, lists them all.", - NULL) + CommandObjectParsed(interpreter, + "log list", + "List the log categories for one or more log channels. If none specified, lists them all.", + nullptr) { CommandArgumentEntry arg; CommandArgumentData channel_arg; @@ -329,9 +315,7 @@ public: m_arguments.push_back (arg); } - ~CommandObjectLogList() override - { - } + ~CommandObjectLogList() override = default; protected: bool @@ -392,9 +376,7 @@ public: { } - ~CommandObjectLogTimer() override - { - } + ~CommandObjectLogTimer() override = default; protected: bool @@ -429,7 +411,6 @@ protected: Timer::ResetCategoryTimes (); result.SetStatus(eReturnStatusSuccessFinishResult); } - } else if (argc == 2) { @@ -470,14 +451,9 @@ protected: } }; -//---------------------------------------------------------------------- -// CommandObjectLog constructor -//---------------------------------------------------------------------- -CommandObjectLog::CommandObjectLog(CommandInterpreter &interpreter) : - CommandObjectMultiword (interpreter, - "log", - "A set of commands for operating on logs.", - "log <command> [<command-options>]") +CommandObjectLog::CommandObjectLog(CommandInterpreter &interpreter) + : CommandObjectMultiword(interpreter, "log", "Commands controlling LLDB internal logging.", + "log <subcommand> [<command-options>]") { LoadSubCommand ("enable", CommandObjectSP (new CommandObjectLogEnable (interpreter))); LoadSubCommand ("disable", CommandObjectSP (new CommandObjectLogDisable (interpreter))); @@ -485,13 +461,4 @@ CommandObjectLog::CommandObjectLog(CommandInterpreter &interpreter) : LoadSubCommand ("timers", CommandObjectSP (new CommandObjectLogTimer (interpreter))); } -//---------------------------------------------------------------------- -// Destructor -//---------------------------------------------------------------------- -CommandObjectLog::~CommandObjectLog() -{ -} - - - - +CommandObjectLog::~CommandObjectLog() = default; |