2010-06-09 00:52:24 +08:00
|
|
|
//===-- CommandObjectScript.cpp ---------------------------------*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2010-06-09 00:52:24 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "CommandObjectScript.h"
|
|
|
|
|
2011-07-24 08:14:56 +08:00
|
|
|
|
|
|
|
#include "lldb/Core/Debugger.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2013-01-29 07:47:25 +08:00
|
|
|
#include "lldb/DataFormatters/DataVisualization.h"
|
|
|
|
|
|
|
|
#include "lldb/Interpreter/CommandInterpreter.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Interpreter/CommandReturnObject.h"
|
|
|
|
#include "lldb/Interpreter/ScriptInterpreter.h"
|
2018-04-18 02:53:35 +08:00
|
|
|
#include "lldb/Utility/Args.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
|
|
// CommandObjectScript
|
|
|
|
|
2016-07-15 06:03:10 +08:00
|
|
|
CommandObjectScript::CommandObjectScript(CommandInterpreter &interpreter,
|
|
|
|
ScriptLanguage script_lang)
|
|
|
|
: CommandObjectRaw(
|
|
|
|
interpreter, "script",
|
|
|
|
"Invoke the script interpreter with provided code and display any "
|
|
|
|
"results. Start the interactive interpreter if no code is supplied.",
|
|
|
|
"script [<script-code>]") {}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
CommandObjectScript::~CommandObjectScript() {}
|
|
|
|
|
2018-07-13 06:28:52 +08:00
|
|
|
bool CommandObjectScript::DoExecute(llvm::StringRef command,
|
2010-06-09 00:52:24 +08:00
|
|
|
CommandReturnObject &result) {
|
2013-02-20 06:34:01 +08:00
|
|
|
#ifdef LLDB_DISABLE_PYTHON
|
|
|
|
// if we ever support languages other than Python this simple #ifdef won't
|
|
|
|
// work
|
2013-02-21 07:51:13 +08:00
|
|
|
result.AppendError("your copy of LLDB does not support scripting.");
|
2013-02-20 06:34:01 +08:00
|
|
|
result.SetStatus(eReturnStatusFailed);
|
|
|
|
return false;
|
|
|
|
#else
|
|
|
|
if (m_interpreter.GetDebugger().GetScriptLanguage() ==
|
|
|
|
lldb::eScriptLanguageNone) {
|
|
|
|
result.AppendError(
|
|
|
|
"the script-lang setting is set to none - scripting not available");
|
2010-06-09 00:52:24 +08:00
|
|
|
result.SetStatus(eReturnStatusFailed);
|
2012-10-13 01:34:26 +08:00
|
|
|
return false;
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2019-04-27 06:43:16 +08:00
|
|
|
ScriptInterpreter *script_interpreter = GetDebugger().GetScriptInterpreter();
|
2010-07-31 06:33:14 +08:00
|
|
|
|
2014-04-20 08:31:37 +08:00
|
|
|
if (script_interpreter == nullptr) {
|
2011-01-09 04:28:42 +08:00
|
|
|
result.AppendError("no script interpreter");
|
2010-07-31 06:33:14 +08:00
|
|
|
result.SetStatus(eReturnStatusFailed);
|
2013-02-20 06:34:01 +08:00
|
|
|
return false;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2011-08-18 06:13:59 +08:00
|
|
|
DataVisualization::ForceUpdate(); // script might change Python code we use
|
|
|
|
// for formatting.. make sure we keep up to
|
|
|
|
// date with it
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2018-07-13 06:28:52 +08:00
|
|
|
if (command.empty()) {
|
2011-01-14 08:29:16 +08:00
|
|
|
script_interpreter->ExecuteInterpreterLoop();
|
2010-07-31 06:33:14 +08:00
|
|
|
result.SetStatus(eReturnStatusSuccessFinishNoResult);
|
2010-06-09 00:52:24 +08:00
|
|
|
return result.Succeeded();
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
|
2010-07-31 06:33:14 +08:00
|
|
|
// We can do better when reporting the status of one-liner script execution.
|
2012-10-31 08:01:26 +08:00
|
|
|
if (script_interpreter->ExecuteOneLine(command, &result))
|
2010-07-31 06:33:14 +08:00
|
|
|
result.SetStatus(eReturnStatusSuccessFinishNoResult);
|
2016-09-07 04:57:50 +08:00
|
|
|
else
|
2010-07-31 06:33:14 +08:00
|
|
|
result.SetStatus(eReturnStatusFailed);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
return result.Succeeded();
|
2013-02-20 06:34:01 +08:00
|
|
|
#endif
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|