#include "lldb/Target/StructuredDataPlugin.h"
#include "lldb/Core/Debugger.h"
#include "lldb/Interpreter/CommandInterpreter.h"
#include "lldb/Interpreter/CommandObjectMultiword.h"
using namespace lldb;
using namespace lldb_private;
namespace {
class CommandStructuredData : public CommandObjectMultiword {
public:
CommandStructuredData(CommandInterpreter &interpreter)
: CommandObjectMultiword(interpreter, "structured-data",
"Parent for per-plugin structured data commands",
"plugin structured-data <plugin>") {}
~CommandStructuredData() override = default;
};
}
StructuredDataPlugin::StructuredDataPlugin(const ProcessWP &process_wp)
: PluginInterface(), m_process_wp(process_wp) {}
StructuredDataPlugin::~StructuredDataPlugin() = default;
bool StructuredDataPlugin::GetEnabled(llvm::StringRef type_name) const {
return true;
}
ProcessSP StructuredDataPlugin::GetProcess() const {
return m_process_wp.lock();
}
void StructuredDataPlugin::InitializeBasePluginForDebugger(Debugger &debugger) {
auto &interpreter = debugger.GetCommandInterpreter();
if (!interpreter.GetCommandObject("plugin structured-data")) {
auto parent_command =
debugger.GetCommandInterpreter().GetCommandObject("plugin");
if (!parent_command)
return;
auto command_name = "structured-data";
auto command_sp = CommandObjectSP(new CommandStructuredData(interpreter));
parent_command->LoadSubCommand(command_name, command_sp);
}
}
void StructuredDataPlugin::ModulesDidLoad(Process &process,
ModuleList &module_list) {
}