28#include "lldb/Host/Config.h"
43#include "llvm/ADT/STLExtras.h"
44#include "llvm/ADT/StringRef.h"
45#include "llvm/Support/Error.h"
46#include "llvm/Support/ErrorExtras.h"
47#include "llvm/Support/FileSystem.h"
48#include "llvm/Support/FormatAdapters.h"
67#define LLDBSwigPyInit PyInit__lldb
71#define LLDB_USE_PYTHON_SET_INTERRUPT 0
73#define LLDB_USE_PYTHON_SET_INTERRUPT 1
90struct InitializePythonRAII {
92 InitializePythonRAII() {
95 if (!Py_IsInitialized()) {
96#ifdef LLDB_USE_LIBEDIT_READLINE_COMPAT_MODULE
99 PyImport_AppendInittab(
"readline", initlldb_readline);
106#if LLDB_EMBED_PYTHON_HOME
108 PyConfig_InitPythonConfig(&config);
110 static std::string g_python_home = []() -> std::string {
111 if (llvm::sys::path::is_absolute(LLDB_PYTHON_HOME))
112 return LLDB_PYTHON_HOME;
114 FileSpec spec = HostInfo::GetShlibDir();
120 if (!g_python_home.empty()) {
121 PyConfig_SetBytesString(&config, &config.home, g_python_home.c_str());
124 config.install_signal_handlers = 0;
125 Py_InitializeFromConfig(&config);
126 PyConfig_Clear(&config);
132 PyGILState_STATE gil_state = PyGILState_Ensure();
133 if (gil_state != PyGILState_UNLOCKED)
136 m_was_already_initialized =
true;
137 m_gil_state = gil_state;
139 GetLog(LLDBLog::Script),
"Ensured PyGILState. Previous state = {0}",
140 m_gil_state == PyGILState_UNLOCKED ?
"unlocked" :
"locked");
143 ~InitializePythonRAII() {
144 if (m_was_already_initialized) {
146 "Releasing PyGILState. Returning to state = {0}",
147 m_gil_state == PyGILState_UNLOCKED ?
"unlocked"
149 PyGILState_Release(m_gil_state);
157 PyGILState_STATE m_gil_state = PyGILState_UNLOCKED;
158 bool m_was_already_initialized =
false;
161#if LLDB_USE_PYTHON_SET_INTERRUPT
164struct RestoreSignalHandlerScope {
166 struct sigaction m_prev_handler;
168 RestoreSignalHandlerScope(
int signal_code) : m_signal_code(signal_code) {
170 std::memset(&m_prev_handler, 0,
sizeof(m_prev_handler));
172 struct sigaction *new_handler =
nullptr;
173 int signal_err = ::sigaction(m_signal_code, new_handler, &m_prev_handler);
174 lldbassert(signal_err == 0 &&
"sigaction failed to read handler");
176 ~RestoreSignalHandlerScope() {
177 int signal_err = ::sigaction(m_signal_code, &m_prev_handler,
nullptr);
178 lldbassert(signal_err == 0 &&
"sigaction failed to restore old handler");
186 auto style = llvm::sys::path::Style::posix;
188 llvm::StringRef path_ref(path.begin(), path.size());
189 auto rbegin = llvm::sys::path::rbegin(path_ref, style);
190 auto rend = llvm::sys::path::rend(path_ref);
191 auto framework = std::find(rbegin, rend,
"LLDB.framework");
192 if (framework == rend) {
196 path.resize(framework - rend);
197 llvm::sys::path::append(path, style,
"LLDB.framework",
"Resources",
"Python");
205 llvm::sys::path::remove_filename(path);
206 llvm::sys::path::append(path, LLDB_PYTHON_RELATIVE_LIBDIR);
211 std::replace(path.begin(), path.end(),
'\\',
'/');
217 FileSpec spec = HostInfo::GetShlibDir();
220 llvm::SmallString<64> path;
223#if defined(__APPLE__)
238def main(lldb_python_dir, python_exe_relative_path):
240 "lldb-pythonpath": lldb_python_dir,
241 "language": "python",
242 "prefix": sys.prefix,
243 "executable": os.path.join(sys.prefix, python_exe_relative_path)
253 if (!python_dir_spec)
261 return info_json.CreateStructuredDictionary();
276 llvm::StringRef libdir = LLDB_PYTHON_RELATIVE_LIBDIR;
277 for (
auto it = llvm::sys::path::begin(libdir),
278 end = llvm::sys::path::end(libdir);
292 return "Embedded Python interpreter";
300 setenv(
"PYTHONMALLOC",
"malloc",
true);
303 HostInfo::SetSharedLibraryDirectoryHelper(
336 "Ensured PyGILState. Previous state = {0}",
337 m_GILState == PyGILState_UNLOCKED ?
"unlocked" :
"locked");
359 "Releasing PyGILState. Returning to state = {0}",
360 m_GILState == PyGILState_UNLOCKED ?
"unlocked" :
"locked");
399 "run_one_line (%s, 'import copy, keyword, os, re, sys, uuid, lldb')",
407 "run_one_line (%s, 'from importlib import reload as reload_module')",
417 "run_one_line (%s, 'import lldb.formatters, lldb.formatters.cpp')",
422 run_string.
Printf(
"run_one_line (%s, 'import lldb.embedded_interpreter; from "
423 "lldb.embedded_interpreter import run_python_interpreter; "
424 "from lldb.embedded_interpreter import run_one_line')",
429 run_string.
Printf(
"run_one_line (%s, 'lldb.debugger_unique_id = %" PRIu64
441 auto gil_state = PyGILState_Ensure();
443 PyGILState_Release(gil_state);
448 const char *instructions =
nullptr;
454 instructions = R
"(Enter your Python command(s). Type 'DONE' to end.
455def function (frame, bp_loc, internal_dict):
456 """frame: the lldb.SBFrame for the location at which you stopped
457 bp_loc: an lldb.SBBreakpointLocation for the breakpoint location information
458 internal_dict: an LLDB support object not to be used"""
462 instructions =
"Enter your Python command(s). Type 'DONE' to end.\n";
466 if (instructions && interactive) {
478 bool batch_mode =
m_debugger.GetCommandInterpreter().GetBatchCommandMode();
484 std::vector<std::reference_wrapper<BreakpointOptions>> *bp_options_vec =
485 (std::vector<std::reference_wrapper<BreakpointOptions>> *)
487 for (BreakpointOptions &bp_options : *bp_options_vec) {
489 auto data_up = std::make_unique<CommandDataPython>();
492 data_up->user_source.SplitIntoLines(data);
495 data_up->script_source,
499 auto baton_sp = std::make_shared<BreakpointOptions::CommandBaton>(
501 bp_options.SetCallback(
503 }
else if (!batch_mode) {
505 LockedStreamFile locked_stream = error_sp->Lock();
506 locked_stream.
Printf(
"Warning: No command attached to breakpoint.\n");
513 WatchpointOptions *wp_options =
515 auto data_up = std::make_unique<WatchpointOptions::CommandData>();
516 data_up->user_source.SplitIntoLines(data);
519 data_up->script_source,
522 std::make_shared<WatchpointOptions::CommandBaton>(std::move(data_up));
525 }
else if (!batch_mode) {
527 LockedStreamFile locked_stream = error_sp->Lock();
528 locked_stream.
Printf(
"Warning: No command attached to breakpoint.\n");
538 return std::make_shared<ScriptInterpreterPythonImpl>(debugger);
544 log->
PutCString(
"ScriptInterpreterPythonImpl::LeaveSession()");
547 RunSimpleString(
"lldb.debugger = None; lldb.target = None; lldb.process "
548 "= None; lldb.thread = None; lldb.frame = None");
555 if (PyThreadState_GetDict()) {
557 if (sys_module_dict.
IsValid()) {
580 if (!file_sp || !*file_sp) {
584 File &file = *file_sp;
594 "ScriptInterpreterPythonImpl::SetStdHandle failed to wrap "
600 save_file = sys_module_dict.
GetItemForKey(PythonString(py_name));
615 "ScriptInterpreterPythonImpl::EnterSession(on_entry_flags=0x%" PRIx16
616 ") session is already active, returning without doing anything",
623 "ScriptInterpreterPythonImpl::EnterSession(on_entry_flags=0x%" PRIx16
")",
631 run_string.
Printf(
"run_one_line (%s, 'lldb.debugger_unique_id = %" PRIu64,
634 "; lldb.debugger = lldb.SBDebugger.FindDebuggerWithID (%" PRIu64
")",
636 run_string.
PutCString(
"; lldb.target = lldb.debugger.GetSelectedTarget()");
637 run_string.
PutCString(
"; lldb.process = lldb.target.GetProcess()");
638 run_string.
PutCString(
"; lldb.thread = lldb.process.GetSelectedThread ()");
639 run_string.
PutCString(
"; lldb.frame = lldb.thread.GetSelectedFrame ()");
644 run_string.
Printf(
"run_one_line (%s, 'lldb.debugger_unique_id = %" PRIu64,
647 "; lldb.debugger = lldb.SBDebugger.FindDebuggerWithID (%" PRIu64
")",
656 if (sys_module_dict.
IsValid()) {
659 if (!in_sp || !out_sp || !err_sp || !*in_sp || !*out_sp || !*err_sp)
660 m_debugger.AdoptTopIOHandlerFilesIfInvalid(top_in_sp, top_out_sp,
685 if (PyErr_Occurred())
706 PyModule_GetDict(main_module.
get()));
707 if (!main_dict.IsValid())
723llvm::Expected<unsigned>
725 const llvm::StringRef &callable_name) {
726 if (callable_name.empty()) {
727 return llvm::createStringError(llvm::inconvertibleErrorCode(),
728 "called with empty callable name.");
735 callable_name, dict);
737 return llvm::createStringError(llvm::inconvertibleErrorCode(),
738 "can't find callable: %s",
739 callable_name.str().c_str());
741 llvm::Expected<PythonCallable::ArgInfo> arg_info = pfunc.GetArgInfo();
743 return arg_info.takeError();
744 return arg_info.
get().max_positional_args;
748 uint32_t &functions_counter,
749 const void *name_token =
nullptr) {
752 if (!base_name_wanted)
753 return std::string();
756 sstr.
Printf(
"%s_%d", base_name_wanted, functions_counter++);
758 sstr.
Printf(
"%s_%p", base_name_wanted, name_token);
768 PyImport_AddModule(
"lldb.embedded_interpreter"));
769 if (!module.IsValid())
773 PyModule_GetDict(module.get()));
774 if (!module_dict.IsValid())
778 module_dict.GetItemForKey(
PythonString(
"run_one_line"));
780 module_dict.GetItemForKey(
PythonString(
"g_run_one_line_str"));
787 std::string command_str = command.str();
792 if (!command.empty()) {
799 llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>>
802 if (!io_redirect_or_error) {
805 "failed to redirect I/O: {0}\n",
806 llvm::fmt_consume(io_redirect_or_error.takeError()));
808 llvm::consumeError(io_redirect_or_error.takeError());
814 bool success =
false;
840 Py_BuildValue(
"(Os)", session_dict.
get(), command_str.c_str()));
866 command_str.c_str());
872 result->
AppendError(
"empty command passed to python\n");
897#if LLDB_USE_PYTHON_SET_INTERRUPT
905 PyErr_SetInterrupt();
916 PyThreadState *state = PyThreadState_Get();
920 long tid = PyThread_get_thread_ident();
921 PyThreadState_Swap(state);
922 int num_threads = PyThreadState_SetAsyncExc(tid, PyExc_KeyboardInterrupt);
924 "ScriptInterpreterPythonImpl::Interrupt() sending "
925 "PyExc_KeyboardInterrupt (tid = %li, num_threads = %i)...",
931 "ScriptInterpreterPythonImpl::Interrupt() python code not running, "
941 llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>>
945 if (!io_redirect_or_error) {
946 llvm::consumeError(io_redirect_or_error.takeError());
970 Expected<PythonObject> maybe_py_return =
973 if (!maybe_py_return) {
974 llvm::handleAllErrors(
975 maybe_py_return.takeError(),
978 if (options.GetMaskoutErrors()) {
979 if (E.Matches(PyExc_SyntaxError)) {
985 [](
const llvm::ErrorInfoBase &E) {});
989 PythonObject py_return = std::move(maybe_py_return.get());
992 switch (return_type) {
993 case eScriptReturnTypeCharPtr:
995 const char format[3] =
"s#";
996 return PyArg_Parse(py_return.
get(), format, (
char **)ret_value);
998 case eScriptReturnTypeCharStrOrNone:
1001 const char format[3] =
"z";
1002 return PyArg_Parse(py_return.
get(), format, (
char **)ret_value);
1004 case eScriptReturnTypeBool: {
1005 const char format[2] =
"b";
1006 return PyArg_Parse(py_return.
get(), format, (
bool *)ret_value);
1008 case eScriptReturnTypeShortInt: {
1009 const char format[2] =
"h";
1010 return PyArg_Parse(py_return.
get(), format, (
short *)ret_value);
1012 case eScriptReturnTypeShortIntUnsigned: {
1013 const char format[2] =
"H";
1014 return PyArg_Parse(py_return.
get(), format, (
unsigned short *)ret_value);
1016 case eScriptReturnTypeInt: {
1017 const char format[2] =
"i";
1018 return PyArg_Parse(py_return.
get(), format, (
int *)ret_value);
1020 case eScriptReturnTypeIntUnsigned: {
1021 const char format[2] =
"I";
1022 return PyArg_Parse(py_return.
get(), format, (
unsigned int *)ret_value);
1024 case eScriptReturnTypeLongInt: {
1025 const char format[2] =
"l";
1026 return PyArg_Parse(py_return.
get(), format, (
long *)ret_value);
1028 case eScriptReturnTypeLongIntUnsigned: {
1029 const char format[2] =
"k";
1030 return PyArg_Parse(py_return.
get(), format, (
unsigned long *)ret_value);
1032 case eScriptReturnTypeLongLong: {
1033 const char format[2] =
"L";
1034 return PyArg_Parse(py_return.
get(), format, (
long long *)ret_value);
1036 case eScriptReturnTypeLongLongUnsigned: {
1037 const char format[2] =
"K";
1038 return PyArg_Parse(py_return.
get(), format,
1039 (
unsigned long long *)ret_value);
1041 case eScriptReturnTypeFloat: {
1042 const char format[2] =
"f";
1043 return PyArg_Parse(py_return.
get(), format, (
float *)ret_value);
1045 case eScriptReturnTypeDouble: {
1046 const char format[2] =
"d";
1047 return PyArg_Parse(py_return.
get(), format, (
double *)ret_value);
1049 case eScriptReturnTypeChar: {
1050 const char format[2] =
"c";
1051 return PyArg_Parse(py_return.
get(), format, (
char *)ret_value);
1053 case eScriptReturnTypeOpaqueObject: {
1054 *((PyObject **)ret_value) = py_return.
release();
1058 llvm_unreachable(
"Fully covered switch!");
1064 if (in_string ==
nullptr)
1067 llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>>
1071 if (!io_redirect_or_error)
1074 ScriptInterpreterIORedirect &io_redirect = **io_redirect_or_error;
1094 Expected<PythonObject> return_value =
1097 if (!return_value) {
1099 llvm::handleErrors(return_value.takeError(), [&](PythonException &E) {
1100 llvm::Error error = llvm::createStringError(
1101 llvm::inconvertibleErrorCode(), E.ReadBacktrace());
1102 if (!options.GetMaskoutErrors())
1113 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec,
1116 m_debugger.GetCommandInterpreter().GetPythonCommandsFromIOHandler(
1117 " ", *
this, &bp_options_vec);
1123 m_debugger.GetCommandInterpreter().GetPythonCommandsFromIOHandler(
1124 " ", *
this, wp_options);
1132 std::string function_signature = function_name;
1134 llvm::Expected<unsigned> maybe_args =
1138 "could not get num args: %s",
1139 llvm::toString(maybe_args.takeError()).c_str());
1142 size_t max_args = *maybe_args;
1144 bool uses_extra_args =
false;
1145 if (max_args >= 4) {
1146 uses_extra_args =
true;
1147 function_signature +=
"(frame, bp_loc, extra_args, internal_dict)";
1148 }
else if (max_args >= 3) {
1149 if (extra_args_sp) {
1151 "cannot pass extra_args to a three argument callback");
1154 uses_extra_args =
false;
1155 function_signature +=
"(frame, bp_loc, internal_dict)";
1158 "function, %s can only take %zu",
1159 function_name, max_args);
1164 extra_args_sp, uses_extra_args,
1171 std::unique_ptr<BreakpointOptions::CommandData> &cmd_data_up) {
1174 cmd_data_up->script_source,
1181 std::make_shared<BreakpointOptions::CommandBaton>(std::move(cmd_data_up));
1191 false, is_callback);
1199 auto data_up = std::make_unique<CommandDataPython>(extra_args_sp);
1205 data_up->user_source.SplitIntoLines(command_body_text);
1207 data_up->user_source, data_up->script_source, uses_extra_args,
1209 if (
error.Success()) {
1211 std::make_shared<BreakpointOptions::CommandBaton>(std::move(data_up));
1222 auto data_up = std::make_unique<WatchpointOptions::CommandData>();
1229 data_up->user_source.AppendString(user_input);
1230 data_up->script_source.assign(user_input);
1233 data_up->user_source, data_up->script_source, is_callback)) {
1235 std::make_shared<WatchpointOptions::CommandBaton>(std::move(data_up));
1244 std::string function_def_string(function_def.
CopyList());
1246 function_def_string.c_str());
1257 int num_lines = input.
GetSize();
1258 if (num_lines == 0) {
1263 if (!signature || *signature == 0) {
1269 StringList auto_generated_function;
1272 " global_dict = globals()");
1274 " new_keys = internal_dict.keys()");
1277 " old_keys = global_dict.keys()");
1279 " global_dict.update(internal_dict)");
1286 if (num_lines == 1) {
1292 "ScriptInterpreterPythonImpl::GenerateFunction(is_callback="
1293 "true) = ERROR: python function is multiline.");
1297 " __return_val = None");
1299 " def __user_code():");
1303 for (
int i = 0; i < num_lines; ++i) {
1309 " __return_val = __user_code()");
1313 " for key in new_keys:");
1316 " if key in old_keys:");
1319 " internal_dict[key] = global_dict[key]");
1321 " elif key in global_dict:");
1324 " del global_dict[key]");
1327 " return __return_val");
1336 StringList &user_input, std::string &output,
const void *name_token) {
1337 static uint32_t num_created_functions = 0;
1342 if (user_input.
GetSize() == 0)
1348 std::string auto_generated_function_name(
1350 num_created_functions, name_token));
1351 sstr.
Printf(
"def %s (valobj, internal_dict):",
1352 auto_generated_function_name.c_str());
1359 output.assign(auto_generated_function_name);
1364 StringList &user_input, std::string &output) {
1365 static uint32_t num_created_functions = 0;
1370 if (user_input.
GetSize() == 0)
1374 "lldb_autogen_python_cmd_alias_func", num_created_functions));
1376 sstr.
Printf(
"def %s (debugger, args, exe_ctx, result, internal_dict):",
1377 auto_generated_function_name.c_str());
1384 output.assign(auto_generated_function_name);
1389 StringList &user_input, std::string &output,
const void *name_token) {
1390 static uint32_t num_created_classes = 0;
1392 int num_lines = user_input.
GetSize();
1396 if (user_input.
GetSize() == 0)
1402 "lldb_autogen_python_type_synth_class", num_created_classes, name_token));
1408 sstr.
Printf(
"class %s:", auto_generated_class_name.c_str());
1414 for (
int i = 0; i < num_lines; ++i) {
1428 output.assign(auto_generated_class_name);
1434 if (class_name ==
nullptr || class_name[0] ==
'\0')
1450 if (!os_plugin_object_sp)
1458 (PyObject *)generic->GetValue());
1460 if (!implementor.IsAllocated())
1465 implementor.get(), frame_sp));
1468 if (PyErr_Occurred()) {
1472 if (py_return.
get()) {
1475 for (
size_t i = 0; i < result_list.GetSize(); i++) {
1476 PyObject *item = result_list.GetItemAtIndex(i).get();
1482 result->Append(valobj_sp);
1494 if (!os_plugin_object_sp)
1502 (PyObject *)generic->GetValue());
1504 if (!implementor.IsAllocated())
1511 if (PyErr_Occurred()) {
1520 return std::make_unique<ScriptedProcessPythonInterface>(*
this);
1525 return std::make_shared<ScriptedStopHookPythonInterface>(*
this);
1530 return std::make_shared<ScriptedHookPythonInterface>(*
this);
1535 return std::make_shared<ScriptedBreakpointPythonInterface>(*
this);
1540 return std::make_shared<ScriptedThreadPythonInterface>(*
this);
1545 return std::make_shared<ScriptedFramePythonInterface>(*
this);
1550 return std::make_shared<ScriptedFrameProviderPythonInterface>(*
this);
1555 return std::make_shared<ScriptedThreadPlanPythonInterface>(*
this);
1560 return std::make_shared<OperatingSystemPythonInterface>(*
this);
1566 void *ptr =
const_cast<void *
>(obj.
GetPointer());
1569 if (!py_obj.IsValid() || py_obj.IsNone())
1571 return py_obj.CreateStructuredObject();
1584 LoadScriptOptions load_script_options =
1585 LoadScriptOptions().SetInitSession(
true).SetSilent(
false);
1596 if (!plugin_module_sp || !target || !setting_name || !setting_name[0])
1604 TargetSP target_sp(target->shared_from_this());
1607 generic->GetValue(), setting_name, target_sp);
1624 if (class_name ==
nullptr || class_name[0] ==
'\0')
1640 if (!python_interpreter)
1656 if (class_name ==
nullptr || class_name[0] ==
'\0')
1659 if (!debugger_sp.get())
1675 const char *oneliner, std::string &output,
const void *name_token) {
1682 const char *oneliner, std::string &output,
const void *name_token) {
1689 StringList &user_input, std::string &output,
bool has_extra_args,
1691 static uint32_t num_created_functions = 0;
1695 if (user_input.
GetSize() == 0) {
1701 "lldb_autogen_python_bp_callback_func_", num_created_functions));
1703 sstr.
Printf(
"def %s (frame, bp_loc, extra_args, internal_dict):",
1704 auto_generated_function_name.c_str());
1706 sstr.
Printf(
"def %s (frame, bp_loc, internal_dict):",
1707 auto_generated_function_name.c_str());
1710 if (!
error.Success())
1714 output.assign(auto_generated_function_name);
1719 StringList &user_input, std::string &output,
bool is_callback) {
1720 static uint32_t num_created_functions = 0;
1724 if (user_input.
GetSize() == 0)
1728 "lldb_autogen_python_wp_callback_func_", num_created_functions));
1729 sstr.
Printf(
"def %s (frame, wp, internal_dict):",
1730 auto_generated_function_name.c_str());
1736 output.assign(auto_generated_function_name);
1747 if (!valobj.get()) {
1748 retval.assign(
"<no object>");
1752 void *old_callee =
nullptr;
1754 if (callee_wrapper_sp) {
1755 generic = callee_wrapper_sp->GetAsGeneric();
1757 old_callee =
generic->GetValue();
1759 void *new_callee = old_callee;
1762 if (python_function_name && *python_function_name) {
1769 static Timer::Category func_cat(
"LLDBSwigPythonCallTypeScript");
1770 Timer scoped_timer(func_cat,
"LLDBSwigPythonCallTypeScript");
1773 &new_callee, options_sp, retval);
1777 retval.assign(
"<no function name>");
1781 if (new_callee && old_callee != new_callee) {
1784 callee_wrapper_sp = std::make_shared<StructuredPythonObject>(
1785 PythonObject(PyRefType::Borrowed,
static_cast<PyObject *
>(new_callee)));
1792 const char *python_function_name,
TypeImplSP type_impl_sp) {
1802 CommandDataPython *bp_option_data = (CommandDataPython *)baton;
1803 const char *python_function_name = bp_option_data->script_source.c_str();
1818 if (!python_interpreter)
1821 if (python_function_name && python_function_name[0]) {
1824 if (breakpoint_sp) {
1826 breakpoint_sp->FindLocationByID(break_loc_id));
1828 if (stop_frame_sp && bp_loc_sp) {
1829 bool ret_val =
true;
1834 Expected<bool> maybe_ret_val =
1836 python_function_name,
1838 bp_loc_sp, bp_option_data->m_extra_args);
1840 if (!maybe_ret_val) {
1842 llvm::handleAllErrors(
1843 maybe_ret_val.takeError(),
1845 *debugger.GetAsyncErrorStream() << E.ReadBacktrace();
1847 [&](
const llvm::ErrorInfoBase &E) {
1848 *debugger.GetAsyncErrorStream() << E.message();
1852 ret_val = maybe_ret_val.get();
1868 const char *python_function_name = wp_option_data->
script_source.c_str();
1883 if (!python_interpreter)
1886 if (python_function_name && python_function_name[0]) {
1890 if (stop_frame_sp && wp_sp) {
1891 bool ret_val =
true;
1897 python_function_name,
1912 if (!implementor_sp)
1917 auto *implementor =
static_cast<PyObject *
>(
generic->GetValue());
1934 if (!implementor_sp)
1940 auto *implementor =
static_cast<PyObject *
>(
generic->GetValue());
1948 PyObject *child_ptr =
1950 if (child_ptr !=
nullptr && child_ptr != Py_None) {
1953 if (sb_value_ptr ==
nullptr)
1954 Py_XDECREF(child_ptr);
1959 Py_XDECREF(child_ptr);
1968 if (!implementor_sp)
1969 return llvm::createStringErrorV(
"type has no child named '{0}'",
1974 return llvm::createStringErrorV(
"type has no child named '{0}'",
1976 auto *implementor =
static_cast<PyObject *
>(
generic->GetValue());
1978 return llvm::createStringErrorV(
"type has no child named '{0}'",
1991 return llvm::createStringErrorV(
"type has no child named '{0}'",
1998 bool ret_val =
false;
2000 if (!implementor_sp)
2006 auto *implementor =
static_cast<PyObject *
>(
generic->GetValue());
2022 bool ret_val =
false;
2024 if (!implementor_sp)
2030 auto *implementor =
static_cast<PyObject *
>(
generic->GetValue());
2048 if (!implementor_sp)
2054 auto *implementor =
static_cast<PyObject *
>(
generic->GetValue());
2061 PyObject *child_ptr =
2063 if (child_ptr !=
nullptr && child_ptr != Py_None) {
2066 if (sb_value_ptr ==
nullptr)
2067 Py_XDECREF(child_ptr);
2072 Py_XDECREF(child_ptr);
2084 if (!implementor_sp)
2087 StructuredData::Generic *
generic = implementor_sp->GetAsGeneric();
2091 PythonObject implementor(PyRefType::Borrowed,
2092 (PyObject *)generic->GetValue());
2093 if (!implementor.IsAllocated())
2096 llvm::Expected<PythonObject> expected_py_return =
2097 implementor.CallMethod(
"get_type_name");
2099 if (!expected_py_return) {
2100 llvm::consumeError(expected_py_return.takeError());
2104 PythonObject py_return = std::move(expected_py_return.get());
2113 const char *impl_function,
Process *process, std::string &output,
2120 if (!impl_function || !impl_function[0]) {
2138 const char *impl_function,
Thread *thread, std::string &output,
2144 if (!impl_function || !impl_function[0]) {
2151 if (std::optional<std::string> result =
2154 thread->shared_from_this())) {
2155 output = std::move(*result);
2163 const char *impl_function,
Target *target, std::string &output,
2170 if (!impl_function || !impl_function[0]) {
2176 TargetSP target_sp(target->shared_from_this());
2188 const char *impl_function,
StackFrame *frame, std::string &output,
2194 if (!impl_function || !impl_function[0]) {
2201 if (std::optional<std::string> result =
2204 frame->shared_from_this())) {
2205 output = std::move(*result);
2213 const char *impl_function,
ValueObject *value, std::string &output,
2220 if (!impl_function || !impl_function[0]) {
2236uint64_t
replace_all(std::string &str,
const std::string &oldStr,
2237 const std::string &newStr) {
2239 uint64_t matches = 0;
2240 while ((pos = str.find(oldStr, pos)) != std::string::npos) {
2242 str.replace(pos, oldStr.length(), newStr);
2243 pos += newStr.length();
2252 namespace fs = llvm::sys::fs;
2253 namespace path = llvm::sys::path;
2259 if (!pathname || !pathname[0]) {
2264 llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>>
2268 if (!io_redirect_or_error) {
2273 ScriptInterpreterIORedirect &io_redirect = **io_redirect_or_error;
2285 auto ExtendSysPath = [&](std::string directory) -> llvm::Error {
2286 if (directory.empty()) {
2287 return llvm::createStringError(
"invalid directory name");
2294 StreamString command_stream;
2295 command_stream.
Printf(
"if not (sys.path.__contains__('%s')):\n "
2296 "sys.path.insert(1,'%s');\n\n",
2297 directory.c_str(), directory.c_str());
2298 bool syspath_retval =
2300 if (!syspath_retval)
2301 return llvm::createStringError(
"Python sys.path handling failed");
2303 return llvm::Error::success();
2306 std::string module_name(pathname);
2307 bool possible_package =
false;
2309 if (extra_search_dir) {
2310 if (llvm::Error e = ExtendSysPath(extra_search_dir.
GetPath())) {
2315 FileSpec module_file(pathname);
2319 std::error_code ec = status(module_file.GetPath(), st);
2321 if (ec || st.type() == fs::file_type::status_error ||
2322 st.type() == fs::file_type::type_unknown ||
2323 st.type() == fs::file_type::file_not_found) {
2326 if (strchr(pathname,
'\\') || strchr(pathname,
'/')) {
2332 possible_package =
true;
2333 }
else if (is_directory(st) || is_regular_file(st)) {
2334 if (module_file.GetDirectory().IsEmpty()) {
2336 "invalid directory name '{0}'", pathname);
2340 ExtendSysPath(module_file.GetDirectory().GetCString())) {
2344 module_name = module_file.GetFilename().GetCString();
2347 "no known way to import this module specification");
2353 llvm::StringRef extension = llvm::sys::path::extension(module_name);
2354 if (!extension.empty()) {
2355 if (extension ==
".py")
2356 module_name.resize(module_name.length() - 3);
2357 else if (extension ==
".pyc")
2358 module_name.resize(module_name.length() - 4);
2361 if (!possible_package && module_name.find(
'.') != llvm::StringRef::npos) {
2363 "Python does not allow dots in module names: %s", module_name.c_str());
2367 if (module_name.find(
'-') != llvm::StringRef::npos) {
2369 "Python discourages dashes in module names: %s", module_name.c_str());
2374 StreamString command_stream;
2375 command_stream.
Clear();
2376 command_stream.
Printf(
"sys.modules.__contains__('%s')", module_name.c_str());
2377 bool does_contain =
false;
2385 const bool was_imported_globally = does_contain_executed && does_contain;
2386 const bool was_imported_locally =
2392 command_stream.
Clear();
2394 if (was_imported_globally || was_imported_locally) {
2395 if (!was_imported_locally)
2396 command_stream.
Printf(
"import %s ; reload_module(%s)",
2397 module_name.c_str(), module_name.c_str());
2399 command_stream.
Printf(
"reload_module(%s)", module_name.c_str());
2401 command_stream.
Printf(
"import %s", module_name.c_str());
2418 command_stream.
Clear();
2419 command_stream.
Printf(
"%s", module_name.c_str());
2420 void *module_pyobj =
nullptr;
2426 *module_sp = std::make_shared<StructuredPythonObject>(PythonObject(
2427 PyRefType::Owned,
static_cast<PyObject *
>(module_pyobj)));
2440 if (!word || !word[0])
2443 llvm::StringRef word_sr(word);
2447 if (word_sr.find(
'"') != llvm::StringRef::npos ||
2448 word_sr.find(
'\'') != llvm::StringRef::npos)
2452 command_stream.
Printf(
"keyword.iskeyword('%s')", word);
2467 : m_debugger_sp(debugger_sp), m_synch_wanted(synchro),
2468 m_old_asynch(debugger_sp->GetAsyncExecution()) {
2477 m_debugger_sp->SetAsyncExecution(m_old_asynch);
2481 const char *impl_function, llvm::StringRef args,
2485 if (!impl_function) {
2493 if (!debugger_sp.get()) {
2498 bool ret_val =
false;
2508 std::string args_str = args.str();
2511 cmd_retobj, exe_ctx_ref_sp);
2528 if (!impl_obj_sp || !impl_obj_sp->IsValid()) {
2536 if (!debugger_sp.get()) {
2541 bool ret_val =
false;
2551 std::string args_str = args.str();
2553 static_cast<PyObject *
>(impl_obj_sp->GetValue()), debugger_sp,
2554 args_str.c_str(), cmd_retobj, exe_ctx_ref_sp);
2571 if (!impl_obj_sp || !impl_obj_sp->IsValid()) {
2579 if (!debugger_sp.get()) {
2584 bool ret_val =
false;
2596 for (
const Args::ArgEntry &entry : args) {
2597 args_arr_sp->AddStringItem(entry.ref());
2599 StructuredDataImpl args_impl(args_arr_sp);
2602 static_cast<PyObject *
>(impl_obj_sp->GetValue()), debugger_sp,
2603 args_impl, cmd_retobj, exe_ctx_ref_sp);
2615std::optional<std::string>
2618 if (!impl_obj_sp || !impl_obj_sp->IsValid())
2619 return std::nullopt;
2623 if (!debugger_sp.get())
2624 return std::nullopt;
2626 std::optional<std::string> ret_val;
2635 std::string command;
2638 static_cast<PyObject *
>(impl_obj_sp->GetValue()), command);
2646 size_t args_pos,
size_t char_in_arg) {
2648 if (!impl_obj_sp || !impl_obj_sp->IsValid())
2649 return completion_dict_sp;
2655 completion_dict_sp =
2657 static_cast<PyObject *
>(impl_obj_sp->GetValue()), args, args_pos,
2660 return completion_dict_sp;
2666 size_t char_in_arg) {
2668 if (!impl_obj_sp || !impl_obj_sp->IsValid())
2669 return completion_dict_sp;
2677 static_cast<PyObject *
>(impl_obj_sp->GetValue()), long_option,
2680 return completion_dict_sp;
2687 std::string &dest) {
2690 if (!item || !*item)
2693 std::string command(item);
2694 command +=
".__doc__";
2698 char *result_ptr =
nullptr;
2704 dest.assign(result_ptr);
2709 str_stream <<
"Function " << item
2710 <<
" was not found. Containing module might be missing.";
2726 (PyObject *)cmd_obj_sp->GetValue());
2728 if (!implementor.IsAllocated())
2731 llvm::Expected<PythonObject> expected_py_return =
2732 implementor.CallMethod(
"get_short_help");
2734 if (!expected_py_return) {
2735 llvm::consumeError(expected_py_return.takeError());
2739 PythonObject py_return = std::move(expected_py_return.get());
2743 llvm::StringRef return_data(py_string.GetString());
2744 dest.assign(return_data.data(), return_data.size());
2753 uint32_t result = 0;
2757 static char callee_name[] =
"get_flags";
2763 (PyObject *)cmd_obj_sp->GetValue());
2769 PyObject_GetAttrString(implementor.
get(), callee_name));
2771 if (PyErr_Occurred())
2777 if (PyCallable_Check(pmeth.
get()) == 0) {
2778 if (PyErr_Occurred())
2783 if (PyErr_Occurred())
2790 if (PyErr_Occurred()) {
2807 static char callee_name[] =
"get_options_definition";
2813 (PyObject *)cmd_obj_sp->GetValue());
2819 PyObject_GetAttrString(implementor.
get(), callee_name));
2821 if (PyErr_Occurred())
2827 if (PyCallable_Check(pmeth.
get()) == 0) {
2828 if (PyErr_Occurred())
2833 if (PyErr_Occurred())
2840 if (PyErr_Occurred()) {
2855 static char callee_name[] =
"get_args_definition";
2860 PythonObject implementor(PyRefType::Borrowed,
2861 (PyObject *)cmd_obj_sp->GetValue());
2866 PythonObject pmeth(PyRefType::Owned,
2867 PyObject_GetAttrString(implementor.
get(), callee_name));
2869 if (PyErr_Occurred())
2875 if (PyCallable_Check(pmeth.
get()) == 0) {
2876 if (PyErr_Occurred())
2881 if (PyErr_Occurred())
2888 if (PyErr_Occurred()) {
2901 static char callee_name[] =
"option_parsing_started";
2906 PythonObject implementor(PyRefType::Borrowed,
2907 (PyObject *)cmd_obj_sp->GetValue());
2912 PythonObject pmeth(PyRefType::Owned,
2913 PyObject_GetAttrString(implementor.
get(), callee_name));
2915 if (PyErr_Occurred())
2921 if (PyCallable_Check(pmeth.
get()) == 0) {
2922 if (PyErr_Occurred())
2927 if (PyErr_Occurred())
2935 if (PyErr_Occurred()) {
2944 llvm::StringRef long_option, llvm::StringRef value) {
2949 static char callee_name[] =
"set_option_value";
2954 PythonObject implementor(PyRefType::Borrowed,
2955 (PyObject *)cmd_obj_sp->GetValue());
2960 PythonObject pmeth(PyRefType::Owned,
2961 PyObject_GetAttrString(implementor.
get(), callee_name));
2963 if (PyErr_Occurred())
2969 if (PyCallable_Check(pmeth.
get()) == 0) {
2970 if (PyErr_Occurred())
2975 if (PyErr_Occurred())
2980 exe_ctx_ref_sp = std::make_shared<ExecutionContextRef>(exe_ctx);
2984 implementor.
CallMethod(callee_name, ctx_ref_obj,
2985 long_option.str().c_str(), value.str().c_str())));
2988 if (PyErr_Occurred()) {
3006 (PyObject *)cmd_obj_sp->GetValue());
3011 llvm::Expected<PythonObject> expected_py_return =
3014 if (!expected_py_return) {
3015 llvm::consumeError(expected_py_return.takeError());
3019 PythonObject py_return = std::move(expected_py_return.get());
3021 bool got_string =
false;
3023 PythonString str(PyRefType::Borrowed, py_return.
get());
3024 llvm::StringRef str_data(str.GetString());
3025 dest.assign(str_data.data(), str_data.size());
3032std::unique_ptr<ScriptInterpreterLocker>
3034 std::unique_ptr<ScriptInterpreterLocker> py_lock(
new Locker(
3047 InitializePythonRAII initialize_guard;
3063 if (
FileSpec file_spec = HostInfo::GetShlibDir())
3067 "lldb.embedded_interpreter; from "
3068 "lldb.embedded_interpreter import run_python_interpreter; "
3069 "from lldb.embedded_interpreter import run_one_line");
3071#if LLDB_USE_PYTHON_SET_INTERRUPT
3075 RestoreSignalHandlerScope save_sigint(SIGINT);
3083 " def signal_handler(sig, frame):\n"
3084 " raise KeyboardInterrupt()\n"
3085 " signal.signal(signal.SIGINT, signal_handler);\n"
3086 "lldb_setup_sigint_handler();\n"
3087 "del lldb_setup_sigint_handler\n");
3093 std::string statement;
3095 statement.assign(
"sys.path.insert(0,\"");
3096 statement.append(path);
3097 statement.append(
"\")");
3099 statement.assign(
"sys.path.append(\"");
3100 statement.append(path);
3101 statement.append(
"\")");
static llvm::raw_ostream & error(Stream &strm)
#define LLDB_LOG(log,...)
The LLDB_LOG* macros defined below are the way to emit log messages.
#define LLDB_LOGF(log,...)
#define LLDB_LOG_ERROR(log, error,...)
#define LLDB_LOG_VERBOSE(log,...)
ScriptInterpreterPythonImpl::Locker Locker
#define LLDB_PLUGIN_DEFINE(PluginName)
PyObject * PyInit__lldb(void)
static std::string GenerateUniqueName(const char *base_name_wanted, uint32_t &functions_counter, const void *name_token=nullptr)
static ScriptInterpreterPythonImpl * GetPythonInterpreter(Debugger &debugger)
static const char python_exe_relative_path[]
uint64_t replace_all(std::string &str, const std::string &oldStr, const std::string &newStr)
static const char GetInterpreterInfoScript[]
#define LLDB_SCOPED_TIMER()
A command line argument class.
bool GetQuotedCommandString(std::string &command) const
"lldb/Breakpoint/BreakpointOptions.h" Class that manages the options on a breakpoint or breakpoint lo...
void SetCallback(BreakpointHitCallback callback, const lldb::BatonSP &baton_sp, bool synchronous=false)
Adds a callback to the breakpoint option set.
bool GetInteractive() const
void AppendError(llvm::StringRef in_string)
void AppendErrorWithFormat(const char *format,...) __attribute__((format(printf
lldb::ReturnStatus GetStatus() const
void AppendErrorWithFormatv(const char *format, Args &&...args)
A uniqued constant string class.
A class to manage flag bits.
void RunIOHandlerAsync(const lldb::IOHandlerSP &reader_sp, bool cancel_top_handler=true)
Run the given IO handler and return immediately.
ScriptInterpreter * GetScriptInterpreter(bool can_create=true, std::optional< lldb::ScriptLanguage > language={})
bool GetSetLLDBGlobals() const
bool GetMaskoutErrors() const
ExecuteScriptOptions & SetMaskoutErrors(bool maskout)
ExecuteScriptOptions & SetSetLLDBGlobals(bool set)
ExecuteScriptOptions & SetEnableIO(bool enable)
Execution context objects refer to objects in the execution of the program that is being debugged.
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
const lldb::StackFrameSP & GetFrameSP() const
Get accessor to get the frame shared pointer.
Target * GetTargetPtr() const
Returns a pointer to the target object.
void AppendPathComponent(llvm::StringRef component)
void SetDirectory(ConstString directory)
Directory string set accessor.
bool RemoveLastPathComponent()
Removes the last path component by replacing the current path with its parent.
size_t GetPath(char *path, size_t max_path_length, bool denormalize=true) const
Extract the full path to the file.
llvm::StringRef GetFileNameExtension() const
Extract the extension of the file.
Status ResolveSymbolicLink(const FileSpec &src, FileSpec &dst)
static FileSystem & Instance()
void Resolve(llvm::SmallVectorImpl< char > &path, bool force_make_absolute=false)
Resolve path to make it canonical.
bool IsValid() const override
IsValid.
virtual Status Flush()
Flush the current stream.
lldb::LockableStreamFileSP GetErrorStreamFileSP()
lldb::LockableStreamFileSP GetOutputStreamFileSP()
bool GetInitSession() const
void PutCString(const char *cstr)
static bool RegisterPlugin(llvm::StringRef name, llvm::StringRef description, ABICreateInstance create_callback)
static bool UnregisterPlugin(ABICreateInstance create_callback)
A plug-in interface definition class for debugging a process.
lldb::FileSP GetOutputFile() const
lldb::FileSP GetErrorFile() const
void Flush()
Flush our output and error file handles.
lldb::FileSP GetInputFile() const
static llvm::Expected< std::unique_ptr< ScriptInterpreterIORedirect > > Create(bool enable_io, Debugger &debugger, CommandReturnObject *result)
Create an IO redirect.
ScriptInterpreterLocker()=default
bool DoInitSession(uint16_t on_entry_flags, lldb::FileSP in, lldb::FileSP out, lldb::FileSP err)
Locker(ScriptInterpreterPythonImpl *py_interpreter, uint16_t on_entry=AcquireLock|InitSession, uint16_t on_leave=FreeLock|TearDownSession, lldb::FileSP in=nullptr, lldb::FileSP out=nullptr, lldb::FileSP err=nullptr)
PyGILState_STATE m_GILState
ScriptInterpreterPythonImpl * m_python_interpreter
ScriptedCommandSynchronicity m_synch_wanted
SynchronicityHandler(lldb::DebuggerSP, ScriptedCommandSynchronicity)
lldb::DebuggerSP m_debugger_sp
bool GenerateTypeScriptFunction(StringList &input, std::string &output, const void *name_token=nullptr) override
Status GenerateFunction(const char *signature, const StringList &input, bool is_callback) override
bool GenerateScriptAliasFunction(StringList &input, std::string &output) override
lldb_private::Status ExecuteMultipleLines(const char *in_string, const ExecuteScriptOptions &options=ExecuteScriptOptions()) override
bool IsReservedWord(const char *word) override
bool ShouldHide(const StructuredData::ObjectSP &implementor, lldb::StackFrameSP frame_sp) override
python::PythonObject m_run_one_line_function
python::PythonObject m_saved_stderr
bool GenerateWatchpointCommandCallbackData(StringList &input, std::string &output, bool is_callback) override
friend class IOHandlerPythonInterpreter
bool Interrupt() override
ScriptInterpreterPythonImpl(Debugger &debugger)
StructuredData::DictionarySP HandleOptionArgumentCompletionForScriptedCommand(StructuredData::GenericSP impl_obj_sp, llvm::StringRef &long_options, size_t char_in_arg) override
bool RunScriptBasedParsedCommand(StructuredData::GenericSP impl_obj_sp, Args &args, ScriptedCommandSynchronicity synchronicity, lldb_private::CommandReturnObject &cmd_retobj, Status &error, const lldb_private::ExecutionContext &exe_ctx) override
void OptionParsingStartedForCommandObject(StructuredData::GenericSP cmd_obj_sp) override
bool GetLongHelpForCommandObject(StructuredData::GenericSP cmd_obj_sp, std::string &dest) override
lldb::ScriptedStopHookInterfaceSP CreateScriptedStopHookInterface() override
Status SetBreakpointCommandCallbackFunction(BreakpointOptions &bp_options, const char *function_name, StructuredData::ObjectSP extra_args_sp) override
Set a script function as the callback for the breakpoint.
lldb::ScriptedThreadInterfaceSP CreateScriptedThreadInterface() override
static bool BreakpointCallbackFunction(void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id, lldb::user_id_t break_loc_id)
std::string m_dictionary_name
StructuredData::DictionarySP GetDynamicSettings(StructuredData::ObjectSP plugin_module_sp, Target *target, const char *setting_name, lldb_private::Status &error) override
void CollectDataForWatchpointCommandCallback(WatchpointOptions *wp_options, CommandReturnObject &result) override
StructuredData::DictionarySP HandleArgumentCompletionForScriptedCommand(StructuredData::GenericSP impl_obj_sp, std::vector< llvm::StringRef > &args, size_t args_pos, size_t char_in_arg) override
bool RunScriptBasedCommand(const char *impl_function, llvm::StringRef args, ScriptedCommandSynchronicity synchronicity, lldb_private::CommandReturnObject &cmd_retobj, Status &error, const lldb_private::ExecutionContext &exe_ctx) override
python::PythonModule & GetMainModule()
lldb::ScriptedFrameProviderInterfaceSP CreateScriptedFrameProviderInterface() override
std::optional< std::string > GetRepeatCommandForScriptedCommand(StructuredData::GenericSP impl_obj_sp, Args &args) override
python::PythonObject m_saved_stdin
Status SetBreakpointCommandCallback(BreakpointOptions &bp_options, const char *callback_body, bool is_callback) override
Set the callback body text into the callback for the breakpoint.
PyThreadState * GetThreadState()
StructuredData::ObjectSP GetArgumentsForCommandObject(StructuredData::GenericSP cmd_obj_sp) override
bool EnterSession(uint16_t on_entry_flags, lldb::FileSP in, lldb::FileSP out, lldb::FileSP err)
void SetWatchpointCommandCallback(WatchpointOptions *wp_options, const char *user_input, bool is_callback) override
Set a one-liner as the callback for the watchpoint.
lldb::ValueObjectSP GetSyntheticValue(const StructuredData::ObjectSP &implementor) override
std::unique_ptr< ScriptInterpreterLocker > AcquireInterpreterLock() override
void CollectDataForBreakpointCommandCallback(std::vector< std::reference_wrapper< BreakpointOptions > > &bp_options_vec, CommandReturnObject &result) override
python::PythonDictionary m_session_dict
uint32_t IsExecutingPython()
bool UpdateSynthProviderInstance(const StructuredData::ObjectSP &implementor) override
static void AddToSysPath(AddLocation location, std::string path)
python::PythonDictionary & GetSessionDictionary()
bool MightHaveChildrenSynthProviderInstance(const StructuredData::ObjectSP &implementor) override
bool LoadScriptingModule(const char *filename, const LoadScriptOptions &options, lldb_private::Status &error, StructuredData::ObjectSP *module_sp=nullptr, FileSpec extra_search_dir={}, lldb::TargetSP loaded_into_target_sp={}) override
StructuredData::GenericSP CreateFrameRecognizer(const char *class_name) override
ConstString GetSyntheticTypeName(const StructuredData::ObjectSP &implementor) override
Status GenerateBreakpointCommandCallbackData(StringList &input, std::string &output, bool has_extra_args, bool is_callback) override
PyThreadState * m_command_thread_state
lldb::OperatingSystemInterfaceSP CreateOperatingSystemInterface() override
bool SetOptionValueForCommandObject(StructuredData::GenericSP cmd_obj_sp, ExecutionContext *exe_ctx, llvm::StringRef long_option, llvm::StringRef value) override
python::PythonObject m_saved_stdout
llvm::Expected< uint32_t > GetIndexOfChildWithName(const StructuredData::ObjectSP &implementor, const char *child_name) override
bool FormatterCallbackFunction(const char *function_name, lldb::TypeImplSP type_impl_sp) override
void ExecuteInterpreterLoop() override
Status ExportFunctionDefinitionToInterpreter(StringList &function_def) override
StructuredData::ObjectSP CreateSyntheticScriptedProvider(const char *class_name, lldb::ValueObjectSP valobj) override
bool ExecuteOneLine(llvm::StringRef command, CommandReturnObject *result, const ExecuteScriptOptions &options=ExecuteScriptOptions()) override
bool GetDocumentationForItem(const char *item, std::string &dest) override
In Python, a special attribute doc contains the docstring for an object (function,...
lldb::ScriptedHookInterfaceSP CreateScriptedHookInterface() override
uint32_t GetFlagsForCommandObject(StructuredData::GenericSP cmd_obj_sp) override
void IOHandlerInputComplete(IOHandler &io_handler, std::string &data) override
Called when a line or lines have been retrieved.
void IOHandlerActivated(IOHandler &io_handler, bool interactive) override
bool GetScriptedSummary(const char *function_name, lldb::ValueObjectSP valobj, StructuredData::ObjectSP &callee_wrapper_sp, const TypeSummaryOptions &options, std::string &retval) override
lldb::ScriptedFrameInterfaceSP CreateScriptedFrameInterface() override
lldb::ScriptedProcessInterfaceUP CreateScriptedProcessInterface() override
StructuredData::GenericSP CreateScriptCommandObject(const char *class_name) override
bool m_pty_secondary_is_open
python::PythonDictionary m_sys_module_dict
size_t CalculateNumChildren(const StructuredData::ObjectSP &implementor, uint32_t max) override
bool ExecuteOneLineWithReturn(llvm::StringRef in_string, ScriptInterpreter::ScriptReturnType return_type, void *ret_value, const ExecuteScriptOptions &options=ExecuteScriptOptions()) override
lldb::ScriptedBreakpointInterfaceSP CreateScriptedBreakpointInterface() override
bool RunScriptFormatKeyword(const char *impl_function, Process *process, std::string &output, Status &error) override
python::PythonDictionary & GetSysModuleDictionary()
bool SetStdHandle(lldb::FileSP file, const char *py_name, python::PythonObject &save_file, const char *mode)
bool GetEmbeddedInterpreterModuleObjects()
lldb::ValueObjectSP GetChildAtIndex(const StructuredData::ObjectSP &implementor, uint32_t idx) override
bool GenerateTypeSynthClass(StringList &input, std::string &output, const void *name_token=nullptr) override
StructuredData::ObjectSP CreateStructuredDataFromScriptObject(ScriptObject obj) override
StructuredData::ObjectSP GetOptionsForCommandObject(StructuredData::GenericSP cmd_obj_sp) override
StructuredData::ObjectSP LoadPluginModule(const FileSpec &file_spec, lldb_private::Status &error) override
bool GetShortHelpForCommandObject(StructuredData::GenericSP cmd_obj_sp, std::string &dest) override
python::PythonModule m_main_module
llvm::Expected< unsigned > GetMaxPositionalArgumentsForCallable(const llvm::StringRef &callable_name) override
python::PythonObject m_run_one_line_str_global
static bool WatchpointCallbackFunction(void *baton, StoppointCallbackContext *context, lldb::user_id_t watch_id)
~ScriptInterpreterPythonImpl() override
static lldb::ScriptInterpreterSP CreateInstance(Debugger &debugger)
lldb::ValueObjectListSP GetRecognizedArguments(const StructuredData::ObjectSP &implementor, lldb::StackFrameSP frame_sp) override
lldb::ScriptedThreadPlanInterfaceSP CreateScriptedThreadPlanInterface() override
ActiveIOHandler m_active_io_handler
Abstract interface for the Python script interpreter.
static void ComputePythonDir(llvm::SmallVectorImpl< char > &path)
static llvm::StringRef GetPluginNameStatic()
static void ComputePythonDirForApple(llvm::SmallVectorImpl< char > &path)
ScriptInterpreterPython(Debugger &debugger)
static llvm::StringRef GetPluginDescriptionStatic()
StructuredData::DictionarySP GetInterpreterInfo() override
static FileSpec GetPythonDir()
static void SharedLibraryDirectoryHelper(FileSpec &this_file)
@ eScriptReturnTypeOpaqueObject
@ eScriptReturnTypeCharStrOrNone
const void * GetPointer() const
This base class provides an interface to stack frames.
static Status FromErrorStringWithFormat(const char *format,...) __attribute__((format(printf
static Status FromErrorString(const char *str)
static Status static Status FromErrorStringWithFormatv(const char *format, Args &&...args)
static Status FromError(llvm::Error error)
Avoid using this in new code. Migrate APIs to llvm::Expected instead.
bool Success() const
Test for success condition.
General Outline: When we hit a breakpoint we need to package up whatever information is needed to eva...
ExecutionContextRef exe_ctx_ref
void Flush() override
Flush the stream.
const char * GetData() const
llvm::StringRef GetString() const
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
size_t PutCString(llvm::StringRef cstr)
Output a C string to the stream.
std::string CopyList(const char *item_preamble=nullptr, const char *items_sep="\n") const
size_t SplitIntoLines(const std::string &lines)
void AppendString(const std::string &s)
const char * GetStringAtIndex(size_t idx) const
std::shared_ptr< Generic > GenericSP
std::shared_ptr< Dictionary > DictionarySP
std::shared_ptr< Object > ObjectSP
std::shared_ptr< Array > ArraySP
lldb::BreakpointSP GetBreakpointByID(lldb::break_id_t break_id)
Debugger & GetDebugger() const
WatchpointList & GetWatchpointList()
lldb::ValueObjectSP GetSP()
lldb::WatchpointSP FindByID(lldb::watch_id_t watchID) const
Returns a shared pointer to the watchpoint with id watchID, const version.
"lldb/Breakpoint/WatchpointOptions.h" Class that manages the options on a watchpoint.
void SetCallback(WatchpointHitCallback callback, const lldb::BatonSP &baton_sp, bool synchronous=false)
Adds a callback to the watchpoint option set.
StructuredData::DictionarySP CreateStructuredDictionary() const
PythonObject GetItemForKey(const PythonObject &key) const
void SetItemForKey(const PythonObject &key, const PythonObject &value)
static llvm::Expected< PythonFile > FromFile(File &file, const char *mode=nullptr)
static PythonModule MainModule()
PythonDictionary GetDictionary() const
static llvm::Expected< PythonModule > Import(const llvm::Twine &name)
PythonObject ResolveName(llvm::StringRef name) const
StructuredData::ObjectSP CreateStructuredObject() const
static PythonObject ResolveNameWithDictionary(llvm::StringRef name, const PythonDictionary &dict)
llvm::Expected< PythonObject > GetAttribute(const llvm::Twine &name) const
llvm::Expected< PythonObject > CallMethod(const char *name, const T &... t) const
static bool Check(PyObject *py_obj)
static PyObject * LLDBSwigPython_GetRecognizedArguments(PyObject *implementor, const lldb::StackFrameSP &frame_sp)
static bool LLDBSWIGPythonRunScriptKeywordValue(const char *python_function_name, const char *session_dictionary_name, const lldb::ValueObjectSP &value, std::string &output)
static bool LLDBSwigPythonCallParsedCommandObject(PyObject *implementor, lldb::DebuggerSP debugger, StructuredDataImpl &args_impl, lldb_private::CommandReturnObject &cmd_retobj, lldb::ExecutionContextRefSP exe_ctx_ref_sp)
static bool LLDBSwigPythonCallTypeScript(const char *python_function_name, const void *session_dictionary, const lldb::ValueObjectSP &valobj_sp, void **pyfunct_wrapper, const lldb::TypeSummaryOptionsSP &options_sp, std::string &retval)
static void * LLDBSWIGPython_GetDynamicSetting(void *module, const char *setting, const lldb::TargetSP &target_sp)
static lldb::ValueObjectSP LLDBSWIGPython_GetValueObjectSPFromSBValue(void *data)
static std::optional< std::string > LLDBSWIGPythonRunScriptKeywordThread(const char *python_function_name, const char *session_dictionary_name, lldb::ThreadSP thread)
static StructuredData::DictionarySP LLDBSwigPythonHandleArgumentCompletionForScriptedCommand(PyObject *implementor, std::vector< llvm::StringRef > &args_impl, size_t args_pos, size_t pos_in_arg)
static bool LLDBSwigPythonCallCommand(const char *python_function_name, const char *session_dictionary_name, lldb::DebuggerSP debugger, const char *args, lldb_private::CommandReturnObject &cmd_retobj, lldb::ExecutionContextRefSP exe_ctx_ref_sp)
static PyObject * LLDBSwigPython_GetValueSynthProviderInstance(PyObject *implementor)
static bool LLDBSwigPython_UpdateSynthProviderInstance(PyObject *implementor)
static StructuredData::DictionarySP LLDBSwigPythonHandleOptionArgumentCompletionForScriptedCommand(PyObject *implementor, llvm::StringRef &long_option, size_t pos_in_arg)
static bool LLDBSWIGPythonRunScriptKeywordTarget(const char *python_function_name, const char *session_dictionary_name, const lldb::TargetSP &target, std::string &output)
static uint32_t LLDBSwigPython_GetIndexOfChildWithName(PyObject *implementor, const char *child_name)
static std::optional< std::string > LLDBSwigPythonGetRepeatCommandForScriptedCommand(PyObject *implementor, std::string &command)
static std::optional< std::string > LLDBSWIGPythonRunScriptKeywordFrame(const char *python_function_name, const char *session_dictionary_name, lldb::StackFrameSP frame)
static PyObject * LLDBSwigPython_GetChildAtIndex(PyObject *implementor, uint32_t idx)
static bool LLDBSWIGPythonRunScriptKeywordProcess(const char *python_function_name, const char *session_dictionary_name, const lldb::ProcessSP &process, std::string &output)
static bool LLDBSwigPythonFormatterCallbackFunction(const char *python_function_name, const char *session_dictionary_name, lldb::TypeImplSP type_impl_sp)
static bool LLDBSwigPythonCallModuleInit(const char *python_module_name, const char *session_dictionary_name, lldb::DebuggerSP debugger)
static python::PythonObject LLDBSwigPythonCreateSyntheticProvider(const char *python_class_name, const char *session_dictionary_name, const lldb::ValueObjectSP &valobj_sp)
static bool LLDBSwigPythonWatchpointCallbackFunction(const char *python_function_name, const char *session_dictionary_name, const lldb::StackFrameSP &sb_frame, const lldb::WatchpointSP &sb_wp)
static python::PythonObject LLDBSWIGPython_CreateFrameRecognizer(const char *python_class_name, const char *session_dictionary_name)
static size_t LLDBSwigPython_CalculateNumChildren(PyObject *implementor, uint32_t max)
static PythonObject ToSWIGWrapper(std::unique_ptr< lldb::SBValue > value_sb)
static bool LLDBSwigPythonCallCommandObject(PyObject *implementor, lldb::DebuggerSP debugger, const char *args, lldb_private::CommandReturnObject &cmd_retobj, lldb::ExecutionContextRefSP exe_ctx_ref_sp)
static bool LLDBSwigPython_MightHaveChildrenSynthProviderInstance(PyObject *implementor)
static bool LLDBSwigPythonCallModuleNewTarget(const char *python_module_name, const char *session_dictionary_name, lldb::TargetSP target)
static python::PythonObject LLDBSwigPythonCreateCommandObject(const char *python_class_name, const char *session_dictionary_name, lldb::DebuggerSP debugger_sp)
static bool LLDBSwigPython_ShouldHide(PyObject *implementor, const lldb::StackFrameSP &frame_sp)
static llvm::Expected< bool > LLDBSwigPythonBreakpointCallbackFunction(const char *python_function_name, const char *session_dictionary_name, const lldb::StackFrameSP &sb_frame, const lldb::BreakpointLocationSP &sb_bp_loc, const lldb_private::StructuredDataImpl &args_impl)
llvm::Expected< T > As(llvm::Expected< PythonObject > &&obj)
T unwrapOrSetPythonException(llvm::Expected< T > expected)
T unwrapIgnoringErrors(llvm::Expected< T > expected)
llvm::Expected< PythonObject > runStringMultiLine(const llvm::Twine &string, const PythonDictionary &globals, const PythonDictionary &locals)
int RunSimpleString(const char *str)
llvm::Expected< long long > As< long long >(llvm::Expected< PythonObject > &&obj)
void * LLDBSWIGPython_CastPyObjectToSBValue(PyObject *data)
llvm::Expected< bool > As< bool >(llvm::Expected< PythonObject > &&obj)
llvm::Expected< PythonObject > runStringOneLine(const llvm::Twine &string, const PythonDictionary &globals, const PythonDictionary &locals)
A class that represents a running process on the host machine.
Log * GetLog(Cat mask)
Retrieve the Log object for the channel associated with the given log enum.
ScriptedCommandSynchronicity
@ eScriptedCommandSynchronicityAsynchronous
@ eScriptedCommandSynchronicitySynchronous
@ eScriptedCommandSynchronicityCurrentValue
std::shared_ptr< lldb_private::ScriptedHookInterface > ScriptedHookInterfaceSP
std::shared_ptr< lldb_private::ScriptedStopHookInterface > ScriptedStopHookInterfaceSP
std::shared_ptr< lldb_private::StackFrame > StackFrameSP
std::shared_ptr< lldb_private::BreakpointLocation > BreakpointLocationSP
std::shared_ptr< lldb_private::IOHandler > IOHandlerSP
std::shared_ptr< lldb_private::ScriptInterpreter > ScriptInterpreterSP
std::shared_ptr< lldb_private::ScriptedThreadPlanInterface > ScriptedThreadPlanInterfaceSP
std::shared_ptr< lldb_private::ValueObject > ValueObjectSP
std::shared_ptr< lldb_private::TypeSummaryOptions > TypeSummaryOptionsSP
std::shared_ptr< lldb_private::OperatingSystemInterface > OperatingSystemInterfaceSP
std::shared_ptr< lldb_private::Breakpoint > BreakpointSP
std::shared_ptr< lldb_private::ScriptedBreakpointInterface > ScriptedBreakpointInterfaceSP
std::shared_ptr< lldb_private::ScriptedThreadInterface > ScriptedThreadInterfaceSP
std::shared_ptr< lldb_private::ValueObjectList > ValueObjectListSP
std::shared_ptr< lldb_private::Debugger > DebuggerSP
std::shared_ptr< lldb_private::Watchpoint > WatchpointSP
std::shared_ptr< lldb_private::ScriptedFrameProviderInterface > ScriptedFrameProviderInterfaceSP
std::shared_ptr< lldb_private::LockableStreamFile > LockableStreamFileSP
std::shared_ptr< lldb_private::TypeImpl > TypeImplSP
std::shared_ptr< lldb_private::Target > TargetSP
std::shared_ptr< lldb_private::File > FileSP
std::unique_ptr< lldb_private::ScriptedProcessInterface > ScriptedProcessInterfaceUP
std::shared_ptr< lldb_private::ScriptedFrameInterface > ScriptedFrameInterfaceSP
std::shared_ptr< lldb_private::ExecutionContextRef > ExecutionContextRefSP
lldb::user_id_t GetID() const
Get accessor for the user ID.
std::string script_source