42#include "llvm/ADT/STLExtras.h"
43#include "llvm/ADT/StringRef.h"
44#include "llvm/Support/Error.h"
45#include "llvm/Support/FileSystem.h"
46#include "llvm/Support/FormatAdapters.h"
65#define LLDBSwigPyInit PyInit__lldb
69#define LLDB_USE_PYTHON_SET_INTERRUPT 0
71#define LLDB_USE_PYTHON_SET_INTERRUPT 1
88struct InitializePythonRAII {
90 InitializePythonRAII() {
93 if (!Py_IsInitialized()) {
94#ifdef LLDB_USE_LIBEDIT_READLINE_COMPAT_MODULE
97 PyImport_AppendInittab(
"readline", initlldb_readline);
104#if LLDB_EMBED_PYTHON_HOME
106 PyConfig_InitPythonConfig(&config);
108 static std::string g_python_home = []() -> std::string {
109 if (llvm::sys::path::is_absolute(LLDB_PYTHON_HOME))
110 return LLDB_PYTHON_HOME;
112 FileSpec spec = HostInfo::GetShlibDir();
118 if (!g_python_home.empty()) {
119 PyConfig_SetBytesString(&config, &config.home, g_python_home.c_str());
122 config.install_signal_handlers = 0;
123 Py_InitializeFromConfig(&config);
124 PyConfig_Clear(&config);
130 PyGILState_STATE gil_state = PyGILState_Ensure();
131 if (gil_state != PyGILState_UNLOCKED)
134 m_was_already_initialized =
true;
135 m_gil_state = gil_state;
137 "Ensured PyGILState. Previous state = {0}",
138 m_gil_state == PyGILState_UNLOCKED ?
"unlocked" :
"locked");
141 ~InitializePythonRAII() {
142 if (m_was_already_initialized) {
144 "Releasing PyGILState. Returning to state = {0}",
145 m_gil_state == PyGILState_UNLOCKED ?
"unlocked" :
"locked");
146 PyGILState_Release(m_gil_state);
154 PyGILState_STATE m_gil_state = PyGILState_UNLOCKED;
155 bool m_was_already_initialized =
false;
158#if LLDB_USE_PYTHON_SET_INTERRUPT
161struct RestoreSignalHandlerScope {
163 struct sigaction m_prev_handler;
165 RestoreSignalHandlerScope(
int signal_code) : m_signal_code(signal_code) {
167 std::memset(&m_prev_handler, 0,
sizeof(m_prev_handler));
169 struct sigaction *new_handler =
nullptr;
170 int signal_err = ::sigaction(m_signal_code, new_handler, &m_prev_handler);
171 lldbassert(signal_err == 0 &&
"sigaction failed to read handler");
173 ~RestoreSignalHandlerScope() {
174 int signal_err = ::sigaction(m_signal_code, &m_prev_handler,
nullptr);
175 lldbassert(signal_err == 0 &&
"sigaction failed to restore old handler");
183 auto style = llvm::sys::path::Style::posix;
185 llvm::StringRef path_ref(path.begin(), path.size());
186 auto rbegin = llvm::sys::path::rbegin(path_ref, style);
187 auto rend = llvm::sys::path::rend(path_ref);
188 auto framework = std::find(rbegin, rend,
"LLDB.framework");
189 if (framework == rend) {
193 path.resize(framework - rend);
194 llvm::sys::path::append(path, style,
"LLDB.framework",
"Resources",
"Python");
202 llvm::sys::path::remove_filename(path);
203 llvm::sys::path::append(path, LLDB_PYTHON_RELATIVE_LIBDIR);
208 std::replace(path.begin(), path.end(),
'\\',
'/');
214 FileSpec spec = HostInfo::GetShlibDir();
217 llvm::SmallString<64> path;
220#if defined(__APPLE__)
235def main(lldb_python_dir, python_exe_relative_path):
237 "lldb-pythonpath": lldb_python_dir,
238 "language": "python",
239 "prefix": sys.prefix,
240 "executable": os.path.join(sys.prefix, python_exe_relative_path)
250 if (!python_dir_spec)
258 return info_json.CreateStructuredDictionary();
273 llvm::StringRef libdir = LLDB_PYTHON_RELATIVE_LIBDIR;
274 for (
auto it = llvm::sys::path::begin(libdir),
275 end = llvm::sys::path::end(libdir);
289 return "Embedded Python interpreter";
293 static llvm::once_flag g_once_flag;
294 llvm::call_once(g_once_flag, []() {
327 m_GILState == PyGILState_UNLOCKED ?
"unlocked" :
"locked");
349 "Releasing PyGILState. Returning to state = {0}",
350 m_GILState == PyGILState_UNLOCKED ?
"unlocked" :
"locked");
389 "run_one_line (%s, 'import copy, keyword, os, re, sys, uuid, lldb')",
397 "run_one_line (%s, 'from importlib import reload as reload_module')",
407 "run_one_line (%s, 'import lldb.formatters, lldb.formatters.cpp')",
412 run_string.
Printf(
"run_one_line (%s, 'import lldb.embedded_interpreter; from "
413 "lldb.embedded_interpreter import run_python_interpreter; "
414 "from lldb.embedded_interpreter import run_one_line')",
419 run_string.
Printf(
"run_one_line (%s, 'lldb.debugger_unique_id = %" PRIu64
431 auto gil_state = PyGILState_Ensure();
433 PyGILState_Release(gil_state);
438 const char *instructions =
nullptr;
444 instructions = R
"(Enter your Python command(s). Type 'DONE' to end.
445def function (frame, bp_loc, internal_dict):
446 """frame: the lldb.SBFrame for the location at which you stopped
447 bp_loc: an lldb.SBBreakpointLocation for the breakpoint location information
448 internal_dict: an LLDB support object not to be used"""
452 instructions =
"Enter your Python command(s). Type 'DONE' to end.\n";
456 if (instructions && interactive) {
468 bool batch_mode =
m_debugger.GetCommandInterpreter().GetBatchCommandMode();
474 std::vector<std::reference_wrapper<BreakpointOptions>> *bp_options_vec =
475 (std::vector<std::reference_wrapper<BreakpointOptions>> *)
477 for (BreakpointOptions &bp_options : *bp_options_vec) {
479 auto data_up = std::make_unique<CommandDataPython>();
482 data_up->user_source.SplitIntoLines(data);
485 data_up->script_source,
489 auto baton_sp = std::make_shared<BreakpointOptions::CommandBaton>(
491 bp_options.SetCallback(
493 }
else if (!batch_mode) {
495 LockedStreamFile locked_stream = error_sp->Lock();
496 locked_stream.
Printf(
"Warning: No command attached to breakpoint.\n");
503 WatchpointOptions *wp_options =
505 auto data_up = std::make_unique<WatchpointOptions::CommandData>();
506 data_up->user_source.SplitIntoLines(data);
509 data_up->script_source,
512 std::make_shared<WatchpointOptions::CommandBaton>(std::move(data_up));
515 }
else if (!batch_mode) {
517 LockedStreamFile locked_stream = error_sp->Lock();
518 locked_stream.
Printf(
"Warning: No command attached to breakpoint.\n");
528 return std::make_shared<ScriptInterpreterPythonImpl>(debugger);
534 log->
PutCString(
"ScriptInterpreterPythonImpl::LeaveSession()");
537 RunSimpleString(
"lldb.debugger = None; lldb.target = None; lldb.process "
538 "= None; lldb.thread = None; lldb.frame = None");
545 if (PyThreadState_GetDict()) {
547 if (sys_module_dict.
IsValid()) {
570 if (!file_sp || !*file_sp) {
574 File &file = *file_sp;
583 llvm::consumeError(new_file.takeError());
587 save_file = sys_module_dict.
GetItemForKey(PythonString(py_name));
602 "ScriptInterpreterPythonImpl::EnterSession(on_entry_flags=0x%" PRIx16
603 ") session is already active, returning without doing anything",
610 "ScriptInterpreterPythonImpl::EnterSession(on_entry_flags=0x%" PRIx16
")",
618 run_string.
Printf(
"run_one_line (%s, 'lldb.debugger_unique_id = %" PRIu64,
621 "; lldb.debugger = lldb.SBDebugger.FindDebuggerWithID (%" PRIu64
")",
623 run_string.
PutCString(
"; lldb.target = lldb.debugger.GetSelectedTarget()");
624 run_string.
PutCString(
"; lldb.process = lldb.target.GetProcess()");
625 run_string.
PutCString(
"; lldb.thread = lldb.process.GetSelectedThread ()");
626 run_string.
PutCString(
"; lldb.frame = lldb.thread.GetSelectedFrame ()");
631 run_string.
Printf(
"run_one_line (%s, 'lldb.debugger_unique_id = %" PRIu64,
634 "; lldb.debugger = lldb.SBDebugger.FindDebuggerWithID (%" PRIu64
")",
643 if (sys_module_dict.
IsValid()) {
646 if (!in_sp || !out_sp || !err_sp || !*in_sp || !*out_sp || !*err_sp)
647 m_debugger.AdoptTopIOHandlerFilesIfInvalid(top_in_sp, top_out_sp,
672 if (PyErr_Occurred())
693 PyModule_GetDict(main_module.
get()));
694 if (!main_dict.IsValid())
710llvm::Expected<unsigned>
712 const llvm::StringRef &callable_name) {
713 if (callable_name.empty()) {
714 return llvm::createStringError(llvm::inconvertibleErrorCode(),
715 "called with empty callable name.");
722 callable_name, dict);
724 return llvm::createStringError(llvm::inconvertibleErrorCode(),
725 "can't find callable: %s",
726 callable_name.str().c_str());
728 llvm::Expected<PythonCallable::ArgInfo> arg_info = pfunc.GetArgInfo();
730 return arg_info.takeError();
731 return arg_info.
get().max_positional_args;
735 uint32_t &functions_counter,
736 const void *name_token =
nullptr) {
739 if (!base_name_wanted)
740 return std::string();
743 sstr.
Printf(
"%s_%d", base_name_wanted, functions_counter++);
745 sstr.
Printf(
"%s_%p", base_name_wanted, name_token);
755 PyImport_AddModule(
"lldb.embedded_interpreter"));
756 if (!module.IsValid())
760 PyModule_GetDict(module.get()));
761 if (!module_dict.IsValid())
765 module_dict.GetItemForKey(
PythonString(
"run_one_line"));
767 module_dict.GetItemForKey(
PythonString(
"g_run_one_line_str"));
774 std::string command_str = command.str();
779 if (!command.empty()) {
786 llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>>
789 if (!io_redirect_or_error) {
792 "failed to redirect I/O: {0}\n",
793 llvm::fmt_consume(io_redirect_or_error.takeError()));
795 llvm::consumeError(io_redirect_or_error.takeError());
801 bool success =
false;
827 Py_BuildValue(
"(Os)", session_dict.
get(), command_str.c_str()));
853 "python failed attempting to evaluate '%s'\n", command_str.c_str());
859 result->
AppendError(
"empty command passed to python\n");
884#if LLDB_USE_PYTHON_SET_INTERRUPT
892 PyErr_SetInterrupt();
903 PyThreadState *state = PyThreadState_Get();
907 long tid = PyThread_get_thread_ident();
908 PyThreadState_Swap(state);
909 int num_threads = PyThreadState_SetAsyncExc(tid, PyExc_KeyboardInterrupt);
911 "ScriptInterpreterPythonImpl::Interrupt() sending "
912 "PyExc_KeyboardInterrupt (tid = %li, num_threads = %i)...",
918 "ScriptInterpreterPythonImpl::Interrupt() python code not running, "
928 llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>>
932 if (!io_redirect_or_error) {
933 llvm::consumeError(io_redirect_or_error.takeError());
957 Expected<PythonObject> maybe_py_return =
960 if (!maybe_py_return) {
961 llvm::handleAllErrors(
962 maybe_py_return.takeError(),
965 if (options.GetMaskoutErrors()) {
966 if (E.Matches(PyExc_SyntaxError)) {
972 [](
const llvm::ErrorInfoBase &E) {});
976 PythonObject py_return = std::move(maybe_py_return.get());
979 switch (return_type) {
980 case eScriptReturnTypeCharPtr:
982 const char format[3] =
"s#";
983 return PyArg_Parse(py_return.
get(), format, (
char **)ret_value);
985 case eScriptReturnTypeCharStrOrNone:
988 const char format[3] =
"z";
989 return PyArg_Parse(py_return.
get(), format, (
char **)ret_value);
991 case eScriptReturnTypeBool: {
992 const char format[2] =
"b";
993 return PyArg_Parse(py_return.
get(), format, (
bool *)ret_value);
995 case eScriptReturnTypeShortInt: {
996 const char format[2] =
"h";
997 return PyArg_Parse(py_return.
get(), format, (
short *)ret_value);
999 case eScriptReturnTypeShortIntUnsigned: {
1000 const char format[2] =
"H";
1001 return PyArg_Parse(py_return.
get(), format, (
unsigned short *)ret_value);
1003 case eScriptReturnTypeInt: {
1004 const char format[2] =
"i";
1005 return PyArg_Parse(py_return.
get(), format, (
int *)ret_value);
1007 case eScriptReturnTypeIntUnsigned: {
1008 const char format[2] =
"I";
1009 return PyArg_Parse(py_return.
get(), format, (
unsigned int *)ret_value);
1011 case eScriptReturnTypeLongInt: {
1012 const char format[2] =
"l";
1013 return PyArg_Parse(py_return.
get(), format, (
long *)ret_value);
1015 case eScriptReturnTypeLongIntUnsigned: {
1016 const char format[2] =
"k";
1017 return PyArg_Parse(py_return.
get(), format, (
unsigned long *)ret_value);
1019 case eScriptReturnTypeLongLong: {
1020 const char format[2] =
"L";
1021 return PyArg_Parse(py_return.
get(), format, (
long long *)ret_value);
1023 case eScriptReturnTypeLongLongUnsigned: {
1024 const char format[2] =
"K";
1025 return PyArg_Parse(py_return.
get(), format,
1026 (
unsigned long long *)ret_value);
1028 case eScriptReturnTypeFloat: {
1029 const char format[2] =
"f";
1030 return PyArg_Parse(py_return.
get(), format, (
float *)ret_value);
1032 case eScriptReturnTypeDouble: {
1033 const char format[2] =
"d";
1034 return PyArg_Parse(py_return.
get(), format, (
double *)ret_value);
1036 case eScriptReturnTypeChar: {
1037 const char format[2] =
"c";
1038 return PyArg_Parse(py_return.
get(), format, (
char *)ret_value);
1040 case eScriptReturnTypeOpaqueObject: {
1041 *((PyObject **)ret_value) = py_return.
release();
1045 llvm_unreachable(
"Fully covered switch!");
1051 if (in_string ==
nullptr)
1054 llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>>
1058 if (!io_redirect_or_error)
1061 ScriptInterpreterIORedirect &io_redirect = **io_redirect_or_error;
1081 Expected<PythonObject> return_value =
1084 if (!return_value) {
1086 llvm::handleErrors(return_value.takeError(), [&](PythonException &E) {
1087 llvm::Error error = llvm::createStringError(
1088 llvm::inconvertibleErrorCode(), E.ReadBacktrace());
1089 if (!options.GetMaskoutErrors())
1100 std::vector<std::reference_wrapper<BreakpointOptions>> &bp_options_vec,
1103 m_debugger.GetCommandInterpreter().GetPythonCommandsFromIOHandler(
1104 " ", *
this, &bp_options_vec);
1110 m_debugger.GetCommandInterpreter().GetPythonCommandsFromIOHandler(
1111 " ", *
this, wp_options);
1119 std::string function_signature = function_name;
1121 llvm::Expected<unsigned> maybe_args =
1125 "could not get num args: %s",
1126 llvm::toString(maybe_args.takeError()).c_str());
1129 size_t max_args = *maybe_args;
1131 bool uses_extra_args =
false;
1132 if (max_args >= 4) {
1133 uses_extra_args =
true;
1134 function_signature +=
"(frame, bp_loc, extra_args, internal_dict)";
1135 }
else if (max_args >= 3) {
1136 if (extra_args_sp) {
1138 "cannot pass extra_args to a three argument callback");
1141 uses_extra_args =
false;
1142 function_signature +=
"(frame, bp_loc, internal_dict)";
1145 "function, %s can only take %zu",
1146 function_name, max_args);
1151 extra_args_sp, uses_extra_args,
1158 std::unique_ptr<BreakpointOptions::CommandData> &cmd_data_up) {
1161 cmd_data_up->script_source,
1168 std::make_shared<BreakpointOptions::CommandBaton>(std::move(cmd_data_up));
1178 false, is_callback);
1186 auto data_up = std::make_unique<CommandDataPython>(extra_args_sp);
1192 data_up->user_source.SplitIntoLines(command_body_text);
1194 data_up->user_source, data_up->script_source, uses_extra_args,
1196 if (
error.Success()) {
1198 std::make_shared<BreakpointOptions::CommandBaton>(std::move(data_up));
1209 auto data_up = std::make_unique<WatchpointOptions::CommandData>();
1216 data_up->user_source.AppendString(user_input);
1217 data_up->script_source.assign(user_input);
1220 data_up->user_source, data_up->script_source, is_callback)) {
1222 std::make_shared<WatchpointOptions::CommandBaton>(std::move(data_up));
1231 std::string function_def_string(function_def.
CopyList());
1233 function_def_string.c_str());
1244 int num_lines = input.
GetSize();
1245 if (num_lines == 0) {
1250 if (!signature || *signature == 0) {
1256 StringList auto_generated_function;
1259 " global_dict = globals()");
1261 " new_keys = internal_dict.keys()");
1264 " old_keys = global_dict.keys()");
1266 " global_dict.update(internal_dict)");
1273 if (num_lines == 1) {
1279 "ScriptInterpreterPythonImpl::GenerateFunction(is_callback="
1280 "true) = ERROR: python function is multiline.");
1284 " __return_val = None");
1286 " def __user_code():");
1290 for (
int i = 0; i < num_lines; ++i) {
1296 " __return_val = __user_code()");
1300 " for key in new_keys:");
1303 " if key in old_keys:");
1306 " internal_dict[key] = global_dict[key]");
1308 " elif key in global_dict:");
1311 " del global_dict[key]");
1314 " return __return_val");
1323 StringList &user_input, std::string &output,
const void *name_token) {
1324 static uint32_t num_created_functions = 0;
1329 if (user_input.
GetSize() == 0)
1335 std::string auto_generated_function_name(
1337 num_created_functions, name_token));
1338 sstr.
Printf(
"def %s (valobj, internal_dict):",
1339 auto_generated_function_name.c_str());
1346 output.assign(auto_generated_function_name);
1351 StringList &user_input, std::string &output) {
1352 static uint32_t num_created_functions = 0;
1357 if (user_input.
GetSize() == 0)
1361 "lldb_autogen_python_cmd_alias_func", num_created_functions));
1363 sstr.
Printf(
"def %s (debugger, args, exe_ctx, result, internal_dict):",
1364 auto_generated_function_name.c_str());
1371 output.assign(auto_generated_function_name);
1376 StringList &user_input, std::string &output,
const void *name_token) {
1377 static uint32_t num_created_classes = 0;
1379 int num_lines = user_input.
GetSize();
1383 if (user_input.
GetSize() == 0)
1389 "lldb_autogen_python_type_synth_class", num_created_classes, name_token));
1395 sstr.
Printf(
"class %s:", auto_generated_class_name.c_str());
1401 for (
int i = 0; i < num_lines; ++i) {
1415 output.assign(auto_generated_class_name);
1421 if (class_name ==
nullptr || class_name[0] ==
'\0')
1437 if (!os_plugin_object_sp)
1445 (PyObject *)generic->GetValue());
1447 if (!implementor.IsAllocated())
1452 implementor.get(), frame_sp));
1455 if (PyErr_Occurred()) {
1459 if (py_return.
get()) {
1462 for (
size_t i = 0; i < result_list.GetSize(); i++) {
1463 PyObject *item = result_list.GetItemAtIndex(i).get();
1469 result->Append(valobj_sp);
1481 if (!os_plugin_object_sp)
1489 (PyObject *)generic->GetValue());
1491 if (!implementor.IsAllocated())
1498 if (PyErr_Occurred()) {
1507 return std::make_unique<ScriptedProcessPythonInterface>(*
this);
1512 return std::make_shared<ScriptedStopHookPythonInterface>(*
this);
1517 return std::make_shared<ScriptedBreakpointPythonInterface>(*
this);
1522 return std::make_shared<ScriptedThreadPythonInterface>(*
this);
1527 return std::make_shared<ScriptedFramePythonInterface>(*
this);
1532 return std::make_shared<ScriptedFrameProviderPythonInterface>(*
this);
1537 return std::make_shared<ScriptedThreadPlanPythonInterface>(*
this);
1542 return std::make_shared<OperatingSystemPythonInterface>(*
this);
1548 void *ptr =
const_cast<void *
>(obj.
GetPointer());
1551 if (!py_obj.IsValid() || py_obj.IsNone())
1553 return py_obj.CreateStructuredObject();
1566 LoadScriptOptions load_script_options =
1567 LoadScriptOptions().SetInitSession(
true).SetSilent(
false);
1578 if (!plugin_module_sp || !target || !setting_name || !setting_name[0])
1586 TargetSP target_sp(target->shared_from_this());
1589 generic->GetValue(), setting_name, target_sp);
1606 if (class_name ==
nullptr || class_name[0] ==
'\0')
1622 if (!python_interpreter)
1638 if (class_name ==
nullptr || class_name[0] ==
'\0')
1641 if (!debugger_sp.get())
1657 const char *oneliner, std::string &output,
const void *name_token) {
1664 const char *oneliner, std::string &output,
const void *name_token) {
1671 StringList &user_input, std::string &output,
bool has_extra_args,
1673 static uint32_t num_created_functions = 0;
1677 if (user_input.
GetSize() == 0) {
1683 "lldb_autogen_python_bp_callback_func_", num_created_functions));
1685 sstr.
Printf(
"def %s (frame, bp_loc, extra_args, internal_dict):",
1686 auto_generated_function_name.c_str());
1688 sstr.
Printf(
"def %s (frame, bp_loc, internal_dict):",
1689 auto_generated_function_name.c_str());
1692 if (!
error.Success())
1696 output.assign(auto_generated_function_name);
1701 StringList &user_input, std::string &output,
bool is_callback) {
1702 static uint32_t num_created_functions = 0;
1706 if (user_input.
GetSize() == 0)
1710 "lldb_autogen_python_wp_callback_func_", num_created_functions));
1711 sstr.
Printf(
"def %s (frame, wp, internal_dict):",
1712 auto_generated_function_name.c_str());
1718 output.assign(auto_generated_function_name);
1729 if (!valobj.get()) {
1730 retval.assign(
"<no object>");
1734 void *old_callee =
nullptr;
1736 if (callee_wrapper_sp) {
1737 generic = callee_wrapper_sp->GetAsGeneric();
1739 old_callee =
generic->GetValue();
1741 void *new_callee = old_callee;
1744 if (python_function_name && *python_function_name) {
1751 static Timer::Category func_cat(
"LLDBSwigPythonCallTypeScript");
1752 Timer scoped_timer(func_cat,
"LLDBSwigPythonCallTypeScript");
1755 &new_callee, options_sp, retval);
1759 retval.assign(
"<no function name>");
1763 if (new_callee && old_callee != new_callee) {
1766 callee_wrapper_sp = std::make_shared<StructuredPythonObject>(
1767 PythonObject(PyRefType::Borrowed,
static_cast<PyObject *
>(new_callee)));
1774 const char *python_function_name,
TypeImplSP type_impl_sp) {
1784 CommandDataPython *bp_option_data = (CommandDataPython *)baton;
1785 const char *python_function_name = bp_option_data->script_source.c_str();
1800 if (!python_interpreter)
1803 if (python_function_name && python_function_name[0]) {
1806 if (breakpoint_sp) {
1808 breakpoint_sp->FindLocationByID(break_loc_id));
1810 if (stop_frame_sp && bp_loc_sp) {
1811 bool ret_val =
true;
1816 Expected<bool> maybe_ret_val =
1818 python_function_name,
1820 bp_loc_sp, bp_option_data->m_extra_args);
1822 if (!maybe_ret_val) {
1824 llvm::handleAllErrors(
1825 maybe_ret_val.takeError(),
1827 *debugger.GetAsyncErrorStream() << E.ReadBacktrace();
1829 [&](
const llvm::ErrorInfoBase &E) {
1830 *debugger.GetAsyncErrorStream() << E.message();
1834 ret_val = maybe_ret_val.get();
1850 const char *python_function_name = wp_option_data->
script_source.c_str();
1865 if (!python_interpreter)
1868 if (python_function_name && python_function_name[0]) {
1872 if (stop_frame_sp && wp_sp) {
1873 bool ret_val =
true;
1879 python_function_name,
1894 if (!implementor_sp)
1899 auto *implementor =
static_cast<PyObject *
>(
generic->GetValue());
1916 if (!implementor_sp)
1922 auto *implementor =
static_cast<PyObject *
>(
generic->GetValue());
1930 PyObject *child_ptr =
1932 if (child_ptr !=
nullptr && child_ptr != Py_None) {
1935 if (sb_value_ptr ==
nullptr)
1936 Py_XDECREF(child_ptr);
1941 Py_XDECREF(child_ptr);
1950 if (!implementor_sp)
1951 return llvm::createStringError(
"Type has no child named '%s'", child_name);
1955 return llvm::createStringError(
"Type has no child named '%s'", child_name);
1956 auto *implementor =
static_cast<PyObject *
>(
generic->GetValue());
1958 return llvm::createStringError(
"Type has no child named '%s'", child_name);
1970 return llvm::createStringError(
"Type has no child named '%s'", child_name);
1976 bool ret_val =
false;
1978 if (!implementor_sp)
1984 auto *implementor =
static_cast<PyObject *
>(
generic->GetValue());
2000 bool ret_val =
false;
2002 if (!implementor_sp)
2008 auto *implementor =
static_cast<PyObject *
>(
generic->GetValue());
2026 if (!implementor_sp)
2032 auto *implementor =
static_cast<PyObject *
>(
generic->GetValue());
2039 PyObject *child_ptr =
2041 if (child_ptr !=
nullptr && child_ptr != Py_None) {
2044 if (sb_value_ptr ==
nullptr)
2045 Py_XDECREF(child_ptr);
2050 Py_XDECREF(child_ptr);
2062 if (!implementor_sp)
2065 StructuredData::Generic *
generic = implementor_sp->GetAsGeneric();
2069 PythonObject implementor(PyRefType::Borrowed,
2070 (PyObject *)generic->GetValue());
2071 if (!implementor.IsAllocated())
2074 llvm::Expected<PythonObject> expected_py_return =
2075 implementor.CallMethod(
"get_type_name");
2077 if (!expected_py_return) {
2078 llvm::consumeError(expected_py_return.takeError());
2082 PythonObject py_return = std::move(expected_py_return.get());
2091 const char *impl_function,
Process *process, std::string &output,
2098 if (!impl_function || !impl_function[0]) {
2116 const char *impl_function,
Thread *thread, std::string &output,
2122 if (!impl_function || !impl_function[0]) {
2129 if (std::optional<std::string> result =
2132 thread->shared_from_this())) {
2133 output = std::move(*result);
2141 const char *impl_function,
Target *target, std::string &output,
2148 if (!impl_function || !impl_function[0]) {
2154 TargetSP target_sp(target->shared_from_this());
2166 const char *impl_function,
StackFrame *frame, std::string &output,
2172 if (!impl_function || !impl_function[0]) {
2179 if (std::optional<std::string> result =
2182 frame->shared_from_this())) {
2183 output = std::move(*result);
2191 const char *impl_function,
ValueObject *value, std::string &output,
2198 if (!impl_function || !impl_function[0]) {
2214uint64_t
replace_all(std::string &str,
const std::string &oldStr,
2215 const std::string &newStr) {
2217 uint64_t matches = 0;
2218 while ((pos = str.find(oldStr, pos)) != std::string::npos) {
2220 str.replace(pos, oldStr.length(), newStr);
2221 pos += newStr.length();
2230 namespace fs = llvm::sys::fs;
2231 namespace path = llvm::sys::path;
2237 if (!pathname || !pathname[0]) {
2242 llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>>
2246 if (!io_redirect_or_error) {
2251 ScriptInterpreterIORedirect &io_redirect = **io_redirect_or_error;
2263 auto ExtendSysPath = [&](std::string directory) -> llvm::Error {
2264 if (directory.empty()) {
2265 return llvm::createStringError(
"invalid directory name");
2272 StreamString command_stream;
2273 command_stream.
Printf(
"if not (sys.path.__contains__('%s')):\n "
2274 "sys.path.insert(1,'%s');\n\n",
2275 directory.c_str(), directory.c_str());
2276 bool syspath_retval =
2278 if (!syspath_retval)
2279 return llvm::createStringError(
"Python sys.path handling failed");
2281 return llvm::Error::success();
2284 std::string module_name(pathname);
2285 bool possible_package =
false;
2287 if (extra_search_dir) {
2288 if (llvm::Error e = ExtendSysPath(extra_search_dir.
GetPath())) {
2293 FileSpec module_file(pathname);
2297 std::error_code ec = status(module_file.GetPath(), st);
2299 if (ec || st.type() == fs::file_type::status_error ||
2300 st.type() == fs::file_type::type_unknown ||
2301 st.type() == fs::file_type::file_not_found) {
2304 if (strchr(pathname,
'\\') || strchr(pathname,
'/')) {
2310 possible_package =
true;
2311 }
else if (is_directory(st) || is_regular_file(st)) {
2312 if (module_file.GetDirectory().IsEmpty()) {
2314 "invalid directory name '{0}'", pathname);
2318 ExtendSysPath(module_file.GetDirectory().GetCString())) {
2322 module_name = module_file.GetFilename().GetCString();
2325 "no known way to import this module specification");
2331 llvm::StringRef extension = llvm::sys::path::extension(module_name);
2332 if (!extension.empty()) {
2333 if (extension ==
".py")
2334 module_name.resize(module_name.length() - 3);
2335 else if (extension ==
".pyc")
2336 module_name.resize(module_name.length() - 4);
2339 if (!possible_package && module_name.find(
'.') != llvm::StringRef::npos) {
2341 "Python does not allow dots in module names: %s", module_name.c_str());
2345 if (module_name.find(
'-') != llvm::StringRef::npos) {
2347 "Python discourages dashes in module names: %s", module_name.c_str());
2352 StreamString command_stream;
2353 command_stream.
Clear();
2354 command_stream.
Printf(
"sys.modules.__contains__('%s')", module_name.c_str());
2355 bool does_contain =
false;
2363 const bool was_imported_globally = does_contain_executed && does_contain;
2364 const bool was_imported_locally =
2370 command_stream.
Clear();
2372 if (was_imported_globally || was_imported_locally) {
2373 if (!was_imported_locally)
2374 command_stream.
Printf(
"import %s ; reload_module(%s)",
2375 module_name.c_str(), module_name.c_str());
2377 command_stream.
Printf(
"reload_module(%s)", module_name.c_str());
2379 command_stream.
Printf(
"import %s", module_name.c_str());
2396 command_stream.
Clear();
2397 command_stream.
Printf(
"%s", module_name.c_str());
2398 void *module_pyobj =
nullptr;
2404 *module_sp = std::make_shared<StructuredPythonObject>(PythonObject(
2405 PyRefType::Owned,
static_cast<PyObject *
>(module_pyobj)));
2418 if (!word || !word[0])
2421 llvm::StringRef word_sr(word);
2425 if (word_sr.find(
'"') != llvm::StringRef::npos ||
2426 word_sr.find(
'\'') != llvm::StringRef::npos)
2430 command_stream.
Printf(
"keyword.iskeyword('%s')", word);
2445 : m_debugger_sp(debugger_sp), m_synch_wanted(synchro),
2446 m_old_asynch(debugger_sp->GetAsyncExecution()) {
2455 m_debugger_sp->SetAsyncExecution(m_old_asynch);
2459 const char *impl_function, llvm::StringRef args,
2463 if (!impl_function) {
2471 if (!debugger_sp.get()) {
2476 bool ret_val =
false;
2486 std::string args_str = args.str();
2489 cmd_retobj, exe_ctx_ref_sp);
2506 if (!impl_obj_sp || !impl_obj_sp->IsValid()) {
2514 if (!debugger_sp.get()) {
2519 bool ret_val =
false;
2529 std::string args_str = args.str();
2531 static_cast<PyObject *
>(impl_obj_sp->GetValue()), debugger_sp,
2532 args_str.c_str(), cmd_retobj, exe_ctx_ref_sp);
2549 if (!impl_obj_sp || !impl_obj_sp->IsValid()) {
2557 if (!debugger_sp.get()) {
2562 bool ret_val =
false;
2574 for (
const Args::ArgEntry &entry : args) {
2575 args_arr_sp->AddStringItem(entry.ref());
2577 StructuredDataImpl args_impl(args_arr_sp);
2580 static_cast<PyObject *
>(impl_obj_sp->GetValue()), debugger_sp,
2581 args_impl, cmd_retobj, exe_ctx_ref_sp);
2593std::optional<std::string>
2596 if (!impl_obj_sp || !impl_obj_sp->IsValid())
2597 return std::nullopt;
2601 if (!debugger_sp.get())
2602 return std::nullopt;
2604 std::optional<std::string> ret_val;
2613 std::string command;
2616 static_cast<PyObject *
>(impl_obj_sp->GetValue()), command);
2624 size_t args_pos,
size_t char_in_arg) {
2626 if (!impl_obj_sp || !impl_obj_sp->IsValid())
2627 return completion_dict_sp;
2633 completion_dict_sp =
2635 static_cast<PyObject *
>(impl_obj_sp->GetValue()), args, args_pos,
2638 return completion_dict_sp;
2644 size_t char_in_arg) {
2646 if (!impl_obj_sp || !impl_obj_sp->IsValid())
2647 return completion_dict_sp;
2655 static_cast<PyObject *
>(impl_obj_sp->GetValue()), long_option,
2658 return completion_dict_sp;
2665 std::string &dest) {
2668 if (!item || !*item)
2671 std::string command(item);
2672 command +=
".__doc__";
2676 char *result_ptr =
nullptr;
2682 dest.assign(result_ptr);
2687 str_stream <<
"Function " << item
2688 <<
" was not found. Containing module might be missing.";
2704 (PyObject *)cmd_obj_sp->GetValue());
2706 if (!implementor.IsAllocated())
2709 llvm::Expected<PythonObject> expected_py_return =
2710 implementor.CallMethod(
"get_short_help");
2712 if (!expected_py_return) {
2713 llvm::consumeError(expected_py_return.takeError());
2717 PythonObject py_return = std::move(expected_py_return.get());
2721 llvm::StringRef return_data(py_string.GetString());
2722 dest.assign(return_data.data(), return_data.size());
2731 uint32_t result = 0;
2735 static char callee_name[] =
"get_flags";
2741 (PyObject *)cmd_obj_sp->GetValue());
2747 PyObject_GetAttrString(implementor.
get(), callee_name));
2749 if (PyErr_Occurred())
2755 if (PyCallable_Check(pmeth.
get()) == 0) {
2756 if (PyErr_Occurred())
2761 if (PyErr_Occurred())
2768 if (PyErr_Occurred()) {
2785 static char callee_name[] =
"get_options_definition";
2791 (PyObject *)cmd_obj_sp->GetValue());
2797 PyObject_GetAttrString(implementor.
get(), callee_name));
2799 if (PyErr_Occurred())
2805 if (PyCallable_Check(pmeth.
get()) == 0) {
2806 if (PyErr_Occurred())
2811 if (PyErr_Occurred())
2818 if (PyErr_Occurred()) {
2833 static char callee_name[] =
"get_args_definition";
2838 PythonObject implementor(PyRefType::Borrowed,
2839 (PyObject *)cmd_obj_sp->GetValue());
2844 PythonObject pmeth(PyRefType::Owned,
2845 PyObject_GetAttrString(implementor.
get(), callee_name));
2847 if (PyErr_Occurred())
2853 if (PyCallable_Check(pmeth.
get()) == 0) {
2854 if (PyErr_Occurred())
2859 if (PyErr_Occurred())
2866 if (PyErr_Occurred()) {
2879 static char callee_name[] =
"option_parsing_started";
2884 PythonObject implementor(PyRefType::Borrowed,
2885 (PyObject *)cmd_obj_sp->GetValue());
2890 PythonObject pmeth(PyRefType::Owned,
2891 PyObject_GetAttrString(implementor.
get(), callee_name));
2893 if (PyErr_Occurred())
2899 if (PyCallable_Check(pmeth.
get()) == 0) {
2900 if (PyErr_Occurred())
2905 if (PyErr_Occurred())
2913 if (PyErr_Occurred()) {
2922 llvm::StringRef long_option, llvm::StringRef value) {
2927 static char callee_name[] =
"set_option_value";
2932 PythonObject implementor(PyRefType::Borrowed,
2933 (PyObject *)cmd_obj_sp->GetValue());
2938 PythonObject pmeth(PyRefType::Owned,
2939 PyObject_GetAttrString(implementor.
get(), callee_name));
2941 if (PyErr_Occurred())
2947 if (PyCallable_Check(pmeth.
get()) == 0) {
2948 if (PyErr_Occurred())
2953 if (PyErr_Occurred())
2958 exe_ctx_ref_sp = std::make_shared<ExecutionContextRef>(exe_ctx);
2962 implementor.
CallMethod(callee_name, ctx_ref_obj,
2963 long_option.str().c_str(), value.str().c_str())));
2966 if (PyErr_Occurred()) {
2984 (PyObject *)cmd_obj_sp->GetValue());
2989 llvm::Expected<PythonObject> expected_py_return =
2992 if (!expected_py_return) {
2993 llvm::consumeError(expected_py_return.takeError());
2997 PythonObject py_return = std::move(expected_py_return.get());
2999 bool got_string =
false;
3001 PythonString str(PyRefType::Borrowed, py_return.
get());
3002 llvm::StringRef str_data(str.GetString());
3003 dest.assign(str_data.data(), str_data.size());
3010std::unique_ptr<ScriptInterpreterLocker>
3012 std::unique_ptr<ScriptInterpreterLocker> py_lock(
new Locker(
3025 InitializePythonRAII initialize_guard;
3041 if (
FileSpec file_spec = HostInfo::GetShlibDir())
3045 "lldb.embedded_interpreter; from "
3046 "lldb.embedded_interpreter import run_python_interpreter; "
3047 "from lldb.embedded_interpreter import run_one_line");
3049#if LLDB_USE_PYTHON_SET_INTERRUPT
3053 RestoreSignalHandlerScope save_sigint(SIGINT);
3061 " def signal_handler(sig, frame):\n"
3062 " raise KeyboardInterrupt()\n"
3063 " signal.signal(signal.SIGINT, signal_handler);\n"
3064 "lldb_setup_sigint_handler();\n"
3065 "del lldb_setup_sigint_handler\n");
3071 std::string statement;
3073 statement.assign(
"sys.path.insert(0,\"");
3074 statement.append(path);
3075 statement.append(
"\")");
3077 statement.assign(
"sys.path.append(\"");
3078 statement.append(path);
3079 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_LOGV(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 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)
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,...
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::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