Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 1 | //===-- SBCommandInterpreter.cpp --------------------------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
Daniel Malea | 93a6430 | 2012-12-05 00:20:57 +0000 | [diff] [blame] | 10 | #include "lldb/lldb-python.h" |
| 11 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 12 | #include "lldb/lldb-types.h" |
Zachary Turner | 633a29c | 2015-03-04 01:58:01 +0000 | [diff] [blame] | 13 | #include "lldb/Core/Communication.h" |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 14 | #include "lldb/Core/SourceManager.h" |
| 15 | #include "lldb/Core/Listener.h" |
| 16 | #include "lldb/Interpreter/CommandInterpreter.h" |
Enrico Granata | 21dfcd9 | 2012-09-28 23:57:51 +0000 | [diff] [blame] | 17 | #include "lldb/Interpreter/CommandObjectMultiword.h" |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 18 | #include "lldb/Interpreter/CommandReturnObject.h" |
| 19 | #include "lldb/Target/Target.h" |
| 20 | |
Eli Friedman | ca93cc1 | 2010-06-09 07:37:52 +0000 | [diff] [blame] | 21 | #include "lldb/API/SBBroadcaster.h" |
Eli Friedman | ca93cc1 | 2010-06-09 07:37:52 +0000 | [diff] [blame] | 22 | #include "lldb/API/SBCommandReturnObject.h" |
Eli Friedman | ca93cc1 | 2010-06-09 07:37:52 +0000 | [diff] [blame] | 23 | #include "lldb/API/SBCommandInterpreter.h" |
Jim Ingham | ffc9f1d | 2014-10-14 01:20:07 +0000 | [diff] [blame] | 24 | #include "lldb/API/SBExecutionContext.h" |
Eli Friedman | ca93cc1 | 2010-06-09 07:37:52 +0000 | [diff] [blame] | 25 | #include "lldb/API/SBProcess.h" |
| 26 | #include "lldb/API/SBTarget.h" |
| 27 | #include "lldb/API/SBListener.h" |
Caroline Tice | ceb6b13 | 2010-10-26 03:11:13 +0000 | [diff] [blame] | 28 | #include "lldb/API/SBStream.h" |
Eli Friedman | ca93cc1 | 2010-06-09 07:37:52 +0000 | [diff] [blame] | 29 | #include "lldb/API/SBStringList.h" |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 30 | |
| 31 | using namespace lldb; |
| 32 | using namespace lldb_private; |
| 33 | |
Jim Ingham | 26c7bf9 | 2014-10-11 00:38:27 +0000 | [diff] [blame] | 34 | SBCommandInterpreterRunOptions::SBCommandInterpreterRunOptions() |
| 35 | { |
| 36 | m_opaque_up.reset(new CommandInterpreterRunOptions()); |
| 37 | } |
| 38 | |
| 39 | SBCommandInterpreterRunOptions::~SBCommandInterpreterRunOptions() |
| 40 | { |
| 41 | |
| 42 | } |
| 43 | |
| 44 | bool |
| 45 | SBCommandInterpreterRunOptions::GetStopOnContinue () const |
| 46 | { |
| 47 | return m_opaque_up->GetStopOnContinue(); |
| 48 | } |
| 49 | |
| 50 | void |
| 51 | SBCommandInterpreterRunOptions::SetStopOnContinue (bool stop_on_continue) |
| 52 | { |
| 53 | m_opaque_up->SetStopOnContinue(stop_on_continue); |
| 54 | } |
| 55 | |
| 56 | bool |
| 57 | SBCommandInterpreterRunOptions::GetStopOnError () const |
| 58 | { |
| 59 | return m_opaque_up->GetStopOnError(); |
| 60 | } |
| 61 | |
| 62 | void |
| 63 | SBCommandInterpreterRunOptions::SetStopOnError (bool stop_on_error) |
| 64 | { |
| 65 | m_opaque_up->SetStopOnError(stop_on_error); |
| 66 | } |
| 67 | |
| 68 | bool |
| 69 | SBCommandInterpreterRunOptions::GetStopOnCrash () const |
| 70 | { |
| 71 | return m_opaque_up->GetStopOnCrash(); |
| 72 | } |
| 73 | |
| 74 | void |
| 75 | SBCommandInterpreterRunOptions::SetStopOnCrash (bool stop_on_crash) |
| 76 | { |
| 77 | m_opaque_up->SetStopOnCrash(stop_on_crash); |
| 78 | } |
| 79 | |
| 80 | bool |
| 81 | SBCommandInterpreterRunOptions::GetEchoCommands () const |
| 82 | { |
| 83 | return m_opaque_up->GetEchoCommands(); |
| 84 | } |
| 85 | |
| 86 | void |
| 87 | SBCommandInterpreterRunOptions::SetEchoCommands (bool echo_commands) |
| 88 | { |
| 89 | m_opaque_up->SetEchoCommands(echo_commands); |
| 90 | } |
| 91 | |
| 92 | bool |
| 93 | SBCommandInterpreterRunOptions::GetPrintResults () const |
| 94 | { |
| 95 | return m_opaque_up->GetPrintResults(); |
| 96 | } |
| 97 | |
| 98 | void |
| 99 | SBCommandInterpreterRunOptions::SetPrintResults (bool print_results) |
| 100 | { |
| 101 | m_opaque_up->SetPrintResults(print_results); |
| 102 | } |
| 103 | |
| 104 | bool |
| 105 | SBCommandInterpreterRunOptions::GetAddToHistory () const |
| 106 | { |
| 107 | return m_opaque_up->GetAddToHistory(); |
| 108 | } |
| 109 | |
| 110 | void |
| 111 | SBCommandInterpreterRunOptions::SetAddToHistory (bool add_to_history) |
| 112 | { |
| 113 | m_opaque_up->SetAddToHistory(add_to_history); |
| 114 | } |
| 115 | |
| 116 | lldb_private::CommandInterpreterRunOptions * |
| 117 | SBCommandInterpreterRunOptions::get () const |
| 118 | { |
| 119 | return m_opaque_up.get(); |
| 120 | } |
| 121 | |
| 122 | lldb_private::CommandInterpreterRunOptions & |
| 123 | SBCommandInterpreterRunOptions::ref () const |
| 124 | { |
| 125 | return *m_opaque_up.get(); |
| 126 | } |
| 127 | |
Enrico Granata | 21dfcd9 | 2012-09-28 23:57:51 +0000 | [diff] [blame] | 128 | class CommandPluginInterfaceImplementation : public CommandObjectParsed |
| 129 | { |
| 130 | public: |
| 131 | CommandPluginInterfaceImplementation (CommandInterpreter &interpreter, |
| 132 | const char *name, |
| 133 | lldb::SBCommandPluginInterface* backend, |
| 134 | const char *help = NULL, |
| 135 | const char *syntax = NULL, |
| 136 | uint32_t flags = 0) : |
| 137 | CommandObjectParsed (interpreter, name, help, syntax, flags), |
| 138 | m_backend(backend) {} |
| 139 | |
| 140 | virtual bool |
Greg Clayton | 3a18e31 | 2012-10-08 22:41:53 +0000 | [diff] [blame] | 141 | IsRemovable() const { return true; } |
Enrico Granata | 21dfcd9 | 2012-09-28 23:57:51 +0000 | [diff] [blame] | 142 | |
| 143 | protected: |
| 144 | virtual bool |
| 145 | DoExecute (Args& command, CommandReturnObject &result) |
| 146 | { |
| 147 | SBCommandReturnObject sb_return(&result); |
| 148 | SBCommandInterpreter sb_interpreter(&m_interpreter); |
| 149 | SBDebugger debugger_sb(m_interpreter.GetDebugger().shared_from_this()); |
| 150 | bool ret = m_backend->DoExecute (debugger_sb,(char**)command.GetArgumentVector(), sb_return); |
| 151 | sb_return.Release(); |
| 152 | return ret; |
| 153 | } |
| 154 | lldb::SBCommandPluginInterface* m_backend; |
| 155 | }; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 156 | |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 157 | SBCommandInterpreter::SBCommandInterpreter (CommandInterpreter *interpreter) : |
| 158 | m_opaque_ptr (interpreter) |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 159 | { |
Greg Clayton | 5160ce5 | 2013-03-27 23:08:40 +0000 | [diff] [blame] | 160 | Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); |
Caroline Tice | ceb6b13 | 2010-10-26 03:11:13 +0000 | [diff] [blame] | 161 | |
| 162 | if (log) |
Greg Clayton | 4838131 | 2010-10-30 04:51:46 +0000 | [diff] [blame] | 163 | log->Printf ("SBCommandInterpreter::SBCommandInterpreter (interpreter=%p)" |
Saleem Abdulrasool | 324a103 | 2014-04-04 04:06:10 +0000 | [diff] [blame] | 164 | " => SBCommandInterpreter(%p)", |
| 165 | static_cast<void*>(interpreter), |
| 166 | static_cast<void*>(m_opaque_ptr)); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 167 | } |
| 168 | |
Greg Clayton | efabb12 | 2010-11-05 23:17:00 +0000 | [diff] [blame] | 169 | SBCommandInterpreter::SBCommandInterpreter(const SBCommandInterpreter &rhs) : |
| 170 | m_opaque_ptr (rhs.m_opaque_ptr) |
| 171 | { |
| 172 | } |
| 173 | |
| 174 | const SBCommandInterpreter & |
| 175 | SBCommandInterpreter::operator = (const SBCommandInterpreter &rhs) |
| 176 | { |
| 177 | m_opaque_ptr = rhs.m_opaque_ptr; |
| 178 | return *this; |
| 179 | } |
| 180 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 181 | SBCommandInterpreter::~SBCommandInterpreter () |
| 182 | { |
| 183 | } |
| 184 | |
| 185 | bool |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 186 | SBCommandInterpreter::IsValid() const |
| 187 | { |
| 188 | return m_opaque_ptr != NULL; |
| 189 | } |
| 190 | |
| 191 | |
| 192 | bool |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 193 | SBCommandInterpreter::CommandExists (const char *cmd) |
| 194 | { |
Johnny Chen | 872e062 | 2011-12-19 21:16:29 +0000 | [diff] [blame] | 195 | if (cmd && m_opaque_ptr) |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 196 | return m_opaque_ptr->CommandExists (cmd); |
| 197 | return false; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | bool |
| 201 | SBCommandInterpreter::AliasExists (const char *cmd) |
| 202 | { |
Johnny Chen | 872e062 | 2011-12-19 21:16:29 +0000 | [diff] [blame] | 203 | if (cmd && m_opaque_ptr) |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 204 | return m_opaque_ptr->AliasExists (cmd); |
| 205 | return false; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 206 | } |
| 207 | |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 208 | bool |
| 209 | SBCommandInterpreter::IsActive () |
| 210 | { |
| 211 | if (m_opaque_ptr) |
| 212 | return m_opaque_ptr->IsActive (); |
| 213 | return false; |
| 214 | } |
| 215 | |
| 216 | const char * |
| 217 | SBCommandInterpreter::GetIOHandlerControlSequence(char ch) |
| 218 | { |
| 219 | if (m_opaque_ptr) |
| 220 | return m_opaque_ptr->GetDebugger().GetTopIOHandlerControlSequence (ch).GetCString(); |
| 221 | return NULL; |
| 222 | } |
| 223 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 224 | lldb::ReturnStatus |
| 225 | SBCommandInterpreter::HandleCommand (const char *command_line, SBCommandReturnObject &result, bool add_to_history) |
| 226 | { |
Jim Ingham | ffc9f1d | 2014-10-14 01:20:07 +0000 | [diff] [blame] | 227 | SBExecutionContext sb_exe_ctx; |
| 228 | return HandleCommand (command_line, sb_exe_ctx, result, add_to_history); |
| 229 | } |
| 230 | |
| 231 | lldb::ReturnStatus |
| 232 | SBCommandInterpreter::HandleCommand (const char *command_line, SBExecutionContext &override_context, SBCommandReturnObject &result, bool add_to_history) |
| 233 | { |
Greg Clayton | 5160ce5 | 2013-03-27 23:08:40 +0000 | [diff] [blame] | 234 | Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); |
Caroline Tice | ceb6b13 | 2010-10-26 03:11:13 +0000 | [diff] [blame] | 235 | |
| 236 | if (log) |
Saleem Abdulrasool | 324a103 | 2014-04-04 04:06:10 +0000 | [diff] [blame] | 237 | log->Printf ("SBCommandInterpreter(%p)::HandleCommand (command=\"%s\", SBCommandReturnObject(%p), add_to_history=%i)", |
| 238 | static_cast<void*>(m_opaque_ptr), command_line, |
| 239 | static_cast<void*>(result.get()), add_to_history); |
Caroline Tice | ceb6b13 | 2010-10-26 03:11:13 +0000 | [diff] [blame] | 240 | |
Jim Ingham | ffc9f1d | 2014-10-14 01:20:07 +0000 | [diff] [blame] | 241 | ExecutionContext ctx, *ctx_ptr; |
| 242 | if (override_context.get()) |
| 243 | { |
| 244 | ctx = override_context.get()->Lock(true); |
| 245 | ctx_ptr = &ctx; |
| 246 | } |
| 247 | else |
| 248 | ctx_ptr = nullptr; |
| 249 | |
| 250 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 251 | result.Clear(); |
Johnny Chen | 872e062 | 2011-12-19 21:16:29 +0000 | [diff] [blame] | 252 | if (command_line && m_opaque_ptr) |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 253 | { |
Greg Clayton | 45a44f3 | 2014-07-15 00:25:59 +0000 | [diff] [blame] | 254 | result.ref().SetInteractive(false); |
Jim Ingham | ffc9f1d | 2014-10-14 01:20:07 +0000 | [diff] [blame] | 255 | m_opaque_ptr->HandleCommand (command_line, add_to_history ? eLazyBoolYes : eLazyBoolNo, result.ref(), ctx_ptr); |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 256 | } |
| 257 | else |
| 258 | { |
Johnny Chen | 872e062 | 2011-12-19 21:16:29 +0000 | [diff] [blame] | 259 | result->AppendError ("SBCommandInterpreter or the command line is not valid"); |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 260 | result->SetStatus (eReturnStatusFailed); |
| 261 | } |
Caroline Tice | ceb6b13 | 2010-10-26 03:11:13 +0000 | [diff] [blame] | 262 | |
Caroline Tice | 7b9da4a | 2010-10-27 21:23:37 +0000 | [diff] [blame] | 263 | // We need to get the value again, in case the command disabled the log! |
| 264 | log = lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API); |
Caroline Tice | ceb6b13 | 2010-10-26 03:11:13 +0000 | [diff] [blame] | 265 | if (log) |
| 266 | { |
| 267 | SBStream sstr; |
| 268 | result.GetDescription (sstr); |
Greg Clayton | cfd1ace | 2010-10-31 03:01:06 +0000 | [diff] [blame] | 269 | log->Printf ("SBCommandInterpreter(%p)::HandleCommand (command=\"%s\", SBCommandReturnObject(%p): %s, add_to_history=%i) => %i", |
Saleem Abdulrasool | 324a103 | 2014-04-04 04:06:10 +0000 | [diff] [blame] | 270 | static_cast<void*>(m_opaque_ptr), command_line, |
| 271 | static_cast<void*>(result.get()), sstr.GetData(), |
| 272 | add_to_history, result.GetStatus()); |
Caroline Tice | ceb6b13 | 2010-10-26 03:11:13 +0000 | [diff] [blame] | 273 | } |
| 274 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 275 | return result.GetStatus(); |
| 276 | } |
| 277 | |
Jim Ingham | ffc9f1d | 2014-10-14 01:20:07 +0000 | [diff] [blame] | 278 | void |
| 279 | SBCommandInterpreter::HandleCommandsFromFile (lldb::SBFileSpec &file, |
| 280 | lldb::SBExecutionContext &override_context, |
| 281 | lldb::SBCommandInterpreterRunOptions &options, |
| 282 | lldb::SBCommandReturnObject result) |
| 283 | { |
| 284 | Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); |
| 285 | |
| 286 | if (log) |
| 287 | { |
| 288 | SBStream s; |
| 289 | file.GetDescription (s); |
| 290 | log->Printf ("SBCommandInterpreter(%p)::HandleCommandsFromFile (file=\"%s\", SBCommandReturnObject(%p))", |
| 291 | static_cast<void*>(m_opaque_ptr), s.GetData(), |
| 292 | static_cast<void*>(result.get())); |
| 293 | } |
| 294 | |
| 295 | if (!m_opaque_ptr) |
| 296 | { |
| 297 | result->AppendError ("SBCommandInterpreter is not valid."); |
| 298 | result->SetStatus (eReturnStatusFailed); |
| 299 | return; |
| 300 | } |
| 301 | |
| 302 | if (!file.IsValid()) |
| 303 | { |
| 304 | SBStream s; |
| 305 | file.GetDescription (s); |
| 306 | result->AppendErrorWithFormat ("File is not valid: %s.", s.GetData()); |
| 307 | result->SetStatus (eReturnStatusFailed); |
| 308 | } |
| 309 | |
| 310 | FileSpec tmp_spec = file.ref(); |
| 311 | ExecutionContext ctx, *ctx_ptr; |
| 312 | if (override_context.get()) |
| 313 | { |
| 314 | ctx = override_context.get()->Lock(true); |
| 315 | ctx_ptr = &ctx; |
| 316 | } |
| 317 | else |
| 318 | ctx_ptr = nullptr; |
| 319 | |
| 320 | |
| 321 | m_opaque_ptr->HandleCommandsFromFile (tmp_spec, ctx_ptr, options.ref(), result.ref()); |
| 322 | |
| 323 | } |
| 324 | |
| 325 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 326 | int |
| 327 | SBCommandInterpreter::HandleCompletion (const char *current_line, |
| 328 | const char *cursor, |
| 329 | const char *last_char, |
| 330 | int match_start_point, |
| 331 | int max_return_elements, |
| 332 | SBStringList &matches) |
| 333 | { |
Greg Clayton | 5160ce5 | 2013-03-27 23:08:40 +0000 | [diff] [blame] | 334 | Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 335 | int num_completions = 0; |
Saleem Abdulrasool | 324a103 | 2014-04-04 04:06:10 +0000 | [diff] [blame] | 336 | |
Jim Ingham | ac01260 | 2011-12-05 19:24:15 +0000 | [diff] [blame] | 337 | // Sanity check the arguments that are passed in: |
| 338 | // cursor & last_char have to be within the current_line. |
| 339 | if (current_line == NULL || cursor == NULL || last_char == NULL) |
| 340 | return 0; |
Saleem Abdulrasool | 324a103 | 2014-04-04 04:06:10 +0000 | [diff] [blame] | 341 | |
Jim Ingham | ac01260 | 2011-12-05 19:24:15 +0000 | [diff] [blame] | 342 | if (cursor < current_line || last_char < current_line) |
| 343 | return 0; |
Saleem Abdulrasool | 324a103 | 2014-04-04 04:06:10 +0000 | [diff] [blame] | 344 | |
Jim Ingham | ac01260 | 2011-12-05 19:24:15 +0000 | [diff] [blame] | 345 | size_t current_line_size = strlen (current_line); |
Saleem Abdulrasool | 3985c8c | 2014-04-02 03:51:35 +0000 | [diff] [blame] | 346 | if (cursor - current_line > static_cast<ptrdiff_t>(current_line_size) || |
| 347 | last_char - current_line > static_cast<ptrdiff_t>(current_line_size)) |
Jim Ingham | ac01260 | 2011-12-05 19:24:15 +0000 | [diff] [blame] | 348 | return 0; |
Saleem Abdulrasool | 324a103 | 2014-04-04 04:06:10 +0000 | [diff] [blame] | 349 | |
Jim Ingham | 389512d | 2012-06-26 01:21:59 +0000 | [diff] [blame] | 350 | if (log) |
Daniel Malea | d01b295 | 2012-11-29 21:49:15 +0000 | [diff] [blame] | 351 | log->Printf ("SBCommandInterpreter(%p)::HandleCompletion (current_line=\"%s\", cursor at: %" PRId64 ", last char at: %" PRId64 ", match_start_point: %d, max_return_elements: %d)", |
Saleem Abdulrasool | 324a103 | 2014-04-04 04:06:10 +0000 | [diff] [blame] | 352 | static_cast<void*>(m_opaque_ptr), current_line, |
| 353 | static_cast<uint64_t>(cursor - current_line), |
| 354 | static_cast<uint64_t>(last_char - current_line), |
| 355 | match_start_point, max_return_elements); |
| 356 | |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 357 | if (m_opaque_ptr) |
| 358 | { |
| 359 | lldb_private::StringList lldb_matches; |
| 360 | num_completions = m_opaque_ptr->HandleCompletion (current_line, cursor, last_char, match_start_point, |
| 361 | max_return_elements, lldb_matches); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 362 | |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 363 | SBStringList temp_list (&lldb_matches); |
| 364 | matches.AppendList (temp_list); |
| 365 | } |
Jim Ingham | 389512d | 2012-06-26 01:21:59 +0000 | [diff] [blame] | 366 | if (log) |
Saleem Abdulrasool | 324a103 | 2014-04-04 04:06:10 +0000 | [diff] [blame] | 367 | log->Printf ("SBCommandInterpreter(%p)::HandleCompletion - Found %d completions.", |
| 368 | static_cast<void*>(m_opaque_ptr), num_completions); |
| 369 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 370 | return num_completions; |
| 371 | } |
| 372 | |
Jim Ingham | 969795f | 2011-09-21 01:17:13 +0000 | [diff] [blame] | 373 | int |
| 374 | SBCommandInterpreter::HandleCompletion (const char *current_line, |
| 375 | uint32_t cursor_pos, |
| 376 | int match_start_point, |
| 377 | int max_return_elements, |
| 378 | lldb::SBStringList &matches) |
| 379 | { |
| 380 | const char *cursor = current_line + cursor_pos; |
| 381 | const char *last_char = current_line + strlen (current_line); |
| 382 | return HandleCompletion (current_line, cursor, last_char, match_start_point, max_return_elements, matches); |
| 383 | } |
| 384 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 385 | bool |
| 386 | SBCommandInterpreter::HasCommands () |
| 387 | { |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 388 | if (m_opaque_ptr) |
| 389 | return m_opaque_ptr->HasCommands(); |
| 390 | return false; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 391 | } |
| 392 | |
| 393 | bool |
| 394 | SBCommandInterpreter::HasAliases () |
| 395 | { |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 396 | if (m_opaque_ptr) |
| 397 | return m_opaque_ptr->HasAliases(); |
| 398 | return false; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 399 | } |
| 400 | |
| 401 | bool |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 402 | SBCommandInterpreter::HasAliasOptions () |
| 403 | { |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 404 | if (m_opaque_ptr) |
| 405 | return m_opaque_ptr->HasAliasOptions (); |
| 406 | return false; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 407 | } |
| 408 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 409 | SBProcess |
| 410 | SBCommandInterpreter::GetProcess () |
| 411 | { |
Greg Clayton | b9556ac | 2012-01-30 07:41:31 +0000 | [diff] [blame] | 412 | SBProcess sb_process; |
| 413 | ProcessSP process_sp; |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 414 | if (m_opaque_ptr) |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 415 | { |
Greg Clayton | af67cec | 2010-12-20 20:49:23 +0000 | [diff] [blame] | 416 | TargetSP target_sp(m_opaque_ptr->GetDebugger().GetSelectedTarget()); |
| 417 | if (target_sp) |
| 418 | { |
| 419 | Mutex::Locker api_locker(target_sp->GetAPIMutex()); |
Greg Clayton | b9556ac | 2012-01-30 07:41:31 +0000 | [diff] [blame] | 420 | process_sp = target_sp->GetProcessSP(); |
| 421 | sb_process.SetSP(process_sp); |
Greg Clayton | af67cec | 2010-12-20 20:49:23 +0000 | [diff] [blame] | 422 | } |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 423 | } |
Greg Clayton | 5160ce5 | 2013-03-27 23:08:40 +0000 | [diff] [blame] | 424 | Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); |
Greg Clayton | 4838131 | 2010-10-30 04:51:46 +0000 | [diff] [blame] | 425 | |
| 426 | if (log) |
| 427 | log->Printf ("SBCommandInterpreter(%p)::GetProcess () => SBProcess(%p)", |
Saleem Abdulrasool | 324a103 | 2014-04-04 04:06:10 +0000 | [diff] [blame] | 428 | static_cast<void*>(m_opaque_ptr), |
| 429 | static_cast<void*>(process_sp.get())); |
Greg Clayton | 4838131 | 2010-10-30 04:51:46 +0000 | [diff] [blame] | 430 | |
Greg Clayton | b9556ac | 2012-01-30 07:41:31 +0000 | [diff] [blame] | 431 | return sb_process; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 432 | } |
| 433 | |
Enrico Granata | 21dfcd9 | 2012-09-28 23:57:51 +0000 | [diff] [blame] | 434 | SBDebugger |
| 435 | SBCommandInterpreter::GetDebugger () |
| 436 | { |
| 437 | SBDebugger sb_debugger; |
| 438 | if (m_opaque_ptr) |
| 439 | sb_debugger.reset(m_opaque_ptr->GetDebugger().shared_from_this()); |
Greg Clayton | 5160ce5 | 2013-03-27 23:08:40 +0000 | [diff] [blame] | 440 | Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); |
Saleem Abdulrasool | 324a103 | 2014-04-04 04:06:10 +0000 | [diff] [blame] | 441 | |
Enrico Granata | 21dfcd9 | 2012-09-28 23:57:51 +0000 | [diff] [blame] | 442 | if (log) |
| 443 | log->Printf ("SBCommandInterpreter(%p)::GetDebugger () => SBDebugger(%p)", |
Saleem Abdulrasool | 324a103 | 2014-04-04 04:06:10 +0000 | [diff] [blame] | 444 | static_cast<void*>(m_opaque_ptr), |
| 445 | static_cast<void*>(sb_debugger.get())); |
| 446 | |
Enrico Granata | 21dfcd9 | 2012-09-28 23:57:51 +0000 | [diff] [blame] | 447 | return sb_debugger; |
| 448 | } |
| 449 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 450 | CommandInterpreter * |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 451 | SBCommandInterpreter::get () |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 452 | { |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 453 | return m_opaque_ptr; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 454 | } |
| 455 | |
| 456 | CommandInterpreter & |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 457 | SBCommandInterpreter::ref () |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 458 | { |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 459 | assert (m_opaque_ptr); |
| 460 | return *m_opaque_ptr; |
| 461 | } |
| 462 | |
| 463 | void |
| 464 | SBCommandInterpreter::reset (lldb_private::CommandInterpreter *interpreter) |
| 465 | { |
| 466 | m_opaque_ptr = interpreter; |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 467 | } |
| 468 | |
| 469 | void |
| 470 | SBCommandInterpreter::SourceInitFileInHomeDirectory (SBCommandReturnObject &result) |
| 471 | { |
| 472 | result.Clear(); |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 473 | if (m_opaque_ptr) |
| 474 | { |
Greg Clayton | af67cec | 2010-12-20 20:49:23 +0000 | [diff] [blame] | 475 | TargetSP target_sp(m_opaque_ptr->GetDebugger().GetSelectedTarget()); |
| 476 | Mutex::Locker api_locker; |
| 477 | if (target_sp) |
Jim Ingham | 10ebffa | 2012-05-04 23:02:50 +0000 | [diff] [blame] | 478 | api_locker.Lock(target_sp->GetAPIMutex()); |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 479 | m_opaque_ptr->SourceInitFile (false, result.ref()); |
| 480 | } |
| 481 | else |
| 482 | { |
| 483 | result->AppendError ("SBCommandInterpreter is not valid"); |
| 484 | result->SetStatus (eReturnStatusFailed); |
| 485 | } |
Greg Clayton | 5160ce5 | 2013-03-27 23:08:40 +0000 | [diff] [blame] | 486 | Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); |
Greg Clayton | 4838131 | 2010-10-30 04:51:46 +0000 | [diff] [blame] | 487 | |
| 488 | if (log) |
| 489 | log->Printf ("SBCommandInterpreter(%p)::SourceInitFileInHomeDirectory (&SBCommandReturnObject(%p))", |
Saleem Abdulrasool | 324a103 | 2014-04-04 04:06:10 +0000 | [diff] [blame] | 490 | static_cast<void*>(m_opaque_ptr), |
| 491 | static_cast<void*>(result.get())); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 492 | } |
| 493 | |
| 494 | void |
| 495 | SBCommandInterpreter::SourceInitFileInCurrentWorkingDirectory (SBCommandReturnObject &result) |
| 496 | { |
| 497 | result.Clear(); |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 498 | if (m_opaque_ptr) |
| 499 | { |
Greg Clayton | af67cec | 2010-12-20 20:49:23 +0000 | [diff] [blame] | 500 | TargetSP target_sp(m_opaque_ptr->GetDebugger().GetSelectedTarget()); |
| 501 | Mutex::Locker api_locker; |
| 502 | if (target_sp) |
Jim Ingham | 10ebffa | 2012-05-04 23:02:50 +0000 | [diff] [blame] | 503 | api_locker.Lock(target_sp->GetAPIMutex()); |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 504 | m_opaque_ptr->SourceInitFile (true, result.ref()); |
| 505 | } |
| 506 | else |
| 507 | { |
| 508 | result->AppendError ("SBCommandInterpreter is not valid"); |
| 509 | result->SetStatus (eReturnStatusFailed); |
| 510 | } |
Greg Clayton | 5160ce5 | 2013-03-27 23:08:40 +0000 | [diff] [blame] | 511 | Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); |
Greg Clayton | 4838131 | 2010-10-30 04:51:46 +0000 | [diff] [blame] | 512 | |
| 513 | if (log) |
| 514 | log->Printf ("SBCommandInterpreter(%p)::SourceInitFileInCurrentWorkingDirectory (&SBCommandReturnObject(%p))", |
Saleem Abdulrasool | 324a103 | 2014-04-04 04:06:10 +0000 | [diff] [blame] | 515 | static_cast<void*>(m_opaque_ptr), |
| 516 | static_cast<void*>(result.get())); |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 517 | } |
| 518 | |
| 519 | SBBroadcaster |
| 520 | SBCommandInterpreter::GetBroadcaster () |
| 521 | { |
Greg Clayton | 5160ce5 | 2013-03-27 23:08:40 +0000 | [diff] [blame] | 522 | Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); |
Caroline Tice | ceb6b13 | 2010-10-26 03:11:13 +0000 | [diff] [blame] | 523 | |
Greg Clayton | 6611103 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 524 | SBBroadcaster broadcaster (m_opaque_ptr, false); |
Caroline Tice | ceb6b13 | 2010-10-26 03:11:13 +0000 | [diff] [blame] | 525 | |
| 526 | if (log) |
Greg Clayton | 4838131 | 2010-10-30 04:51:46 +0000 | [diff] [blame] | 527 | log->Printf ("SBCommandInterpreter(%p)::GetBroadcaster() => SBBroadcaster(%p)", |
Saleem Abdulrasool | 324a103 | 2014-04-04 04:06:10 +0000 | [diff] [blame] | 528 | static_cast<void*>(m_opaque_ptr), static_cast<void*>(broadcaster.get())); |
Caroline Tice | ceb6b13 | 2010-10-26 03:11:13 +0000 | [diff] [blame] | 529 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 530 | return broadcaster; |
| 531 | } |
| 532 | |
Jim Ingham | 4bddaeb | 2012-02-16 06:50:00 +0000 | [diff] [blame] | 533 | const char * |
| 534 | SBCommandInterpreter::GetBroadcasterClass () |
| 535 | { |
| 536 | return Communication::GetStaticBroadcasterClass().AsCString(); |
| 537 | } |
| 538 | |
Greg Clayton | 9d0402b | 2011-02-20 02:15:07 +0000 | [diff] [blame] | 539 | const char * |
| 540 | SBCommandInterpreter::GetArgumentTypeAsCString (const lldb::CommandArgumentType arg_type) |
| 541 | { |
| 542 | return CommandObject::GetArgumentTypeAsCString (arg_type); |
| 543 | } |
| 544 | |
| 545 | const char * |
| 546 | SBCommandInterpreter::GetArgumentDescriptionAsCString (const lldb::CommandArgumentType arg_type) |
| 547 | { |
| 548 | return CommandObject::GetArgumentDescriptionAsCString (arg_type); |
| 549 | } |
| 550 | |
Greg Clayton | a9f7b79 | 2012-02-29 04:21:24 +0000 | [diff] [blame] | 551 | bool |
| 552 | SBCommandInterpreter::SetCommandOverrideCallback (const char *command_name, |
| 553 | lldb::CommandOverrideCallback callback, |
| 554 | void *baton) |
| 555 | { |
| 556 | if (command_name && command_name[0] && m_opaque_ptr) |
| 557 | { |
Greg Clayton | af6f275 | 2012-05-08 04:29:20 +0000 | [diff] [blame] | 558 | std::string command_name_str (command_name); |
| 559 | CommandObject *cmd_obj = m_opaque_ptr->GetCommandObjectForCommand(command_name_str); |
Greg Clayton | a9f7b79 | 2012-02-29 04:21:24 +0000 | [diff] [blame] | 560 | if (cmd_obj) |
| 561 | { |
Greg Clayton | af6f275 | 2012-05-08 04:29:20 +0000 | [diff] [blame] | 562 | assert(command_name_str.empty()); |
Greg Clayton | a9f7b79 | 2012-02-29 04:21:24 +0000 | [diff] [blame] | 563 | cmd_obj->SetOverrideCallback (callback, baton); |
| 564 | return true; |
| 565 | } |
| 566 | } |
| 567 | return false; |
| 568 | } |
Greg Clayton | 9d0402b | 2011-02-20 02:15:07 +0000 | [diff] [blame] | 569 | |
Greg Clayton | dce502e | 2011-11-04 03:34:56 +0000 | [diff] [blame] | 570 | #ifndef LLDB_DISABLE_PYTHON |
Enrico Granata | be93a35 | 2011-08-16 16:49:25 +0000 | [diff] [blame] | 571 | |
Greg Clayton | dce502e | 2011-11-04 03:34:56 +0000 | [diff] [blame] | 572 | // Defined in the SWIG source file |
| 573 | extern "C" void |
| 574 | init_lldb(void); |
| 575 | |
Greg Clayton | 8afa543 | 2013-10-17 00:27:14 +0000 | [diff] [blame] | 576 | // these are the Pythonic implementations of the required callbacks |
| 577 | // these are scripting-language specific, which is why they belong here |
| 578 | // we still need to use function pointers to them instead of relying |
| 579 | // on linkage-time resolution because the SWIG stuff and this file |
| 580 | // get built at different times |
| 581 | extern "C" bool |
| 582 | LLDBSwigPythonBreakpointCallbackFunction (const char *python_function_name, |
| 583 | const char *session_dictionary_name, |
Jason Molenda | b57e4a1 | 2013-11-04 09:33:30 +0000 | [diff] [blame] | 584 | const lldb::StackFrameSP& sb_frame, |
Greg Clayton | 8afa543 | 2013-10-17 00:27:14 +0000 | [diff] [blame] | 585 | const lldb::BreakpointLocationSP& sb_bp_loc); |
Enrico Granata | be93a35 | 2011-08-16 16:49:25 +0000 | [diff] [blame] | 586 | |
Greg Clayton | 8afa543 | 2013-10-17 00:27:14 +0000 | [diff] [blame] | 587 | extern "C" bool |
| 588 | LLDBSwigPythonWatchpointCallbackFunction (const char *python_function_name, |
| 589 | const char *session_dictionary_name, |
Jason Molenda | b57e4a1 | 2013-11-04 09:33:30 +0000 | [diff] [blame] | 590 | const lldb::StackFrameSP& sb_frame, |
Greg Clayton | 8afa543 | 2013-10-17 00:27:14 +0000 | [diff] [blame] | 591 | const lldb::WatchpointSP& sb_wp); |
Greg Clayton | fc36f791 | 2011-03-22 01:14:58 +0000 | [diff] [blame] | 592 | |
Greg Clayton | 8afa543 | 2013-10-17 00:27:14 +0000 | [diff] [blame] | 593 | extern "C" bool |
| 594 | LLDBSwigPythonCallTypeScript (const char *python_function_name, |
| 595 | void *session_dictionary, |
| 596 | const lldb::ValueObjectSP& valobj_sp, |
| 597 | void** pyfunct_wrapper, |
Enrico Granata | 7e4df56 | 2014-11-22 00:02:47 +0000 | [diff] [blame] | 598 | const lldb::TypeSummaryOptionsSP& options_sp, |
Greg Clayton | 8afa543 | 2013-10-17 00:27:14 +0000 | [diff] [blame] | 599 | std::string& retval); |
| 600 | |
| 601 | extern "C" void* |
| 602 | LLDBSwigPythonCreateSyntheticProvider (const char *python_class_name, |
| 603 | const char *session_dictionary_name, |
| 604 | const lldb::ValueObjectSP& valobj_sp); |
| 605 | |
Enrico Granata | 9fe00e5 | 2015-03-13 02:20:41 +0000 | [diff] [blame] | 606 | extern "C" void* |
| 607 | LLDBSwigPythonCreateCommandObject (const char *python_class_name, |
| 608 | const char *session_dictionary_name, |
| 609 | const lldb::DebuggerSP debugger_sp); |
Greg Clayton | 8afa543 | 2013-10-17 00:27:14 +0000 | [diff] [blame] | 610 | |
Jim Ingham | 2bdbfd5 | 2014-09-29 23:17:18 +0000 | [diff] [blame] | 611 | extern "C" void* |
| 612 | LLDBSwigPythonCreateScriptedThreadPlan (const char *python_class_name, |
| 613 | const char *session_dictionary_name, |
| 614 | const lldb::ThreadPlanSP& thread_plan_sp); |
| 615 | |
| 616 | extern "C" bool |
| 617 | LLDBSWIGPythonCallThreadPlan (void *implementor, |
| 618 | const char *method_name, |
| 619 | Event *event_sp, |
| 620 | bool &got_error); |
| 621 | |
Siva Chandra | 870602d | 2015-03-16 19:01:33 +0000 | [diff] [blame] | 622 | extern "C" size_t |
Greg Clayton | 8afa543 | 2013-10-17 00:27:14 +0000 | [diff] [blame] | 623 | LLDBSwigPython_CalculateNumChildren (void *implementor); |
| 624 | |
| 625 | extern "C" void * |
| 626 | LLDBSwigPython_GetChildAtIndex (void *implementor, uint32_t idx); |
| 627 | |
| 628 | extern "C" int |
| 629 | LLDBSwigPython_GetIndexOfChildWithName (void *implementor, const char* child_name); |
| 630 | |
| 631 | extern "C" void * |
| 632 | LLDBSWIGPython_CastPyObjectToSBValue (void* data); |
| 633 | |
| 634 | extern lldb::ValueObjectSP |
| 635 | LLDBSWIGPython_GetValueObjectSPFromSBValue (void* data); |
| 636 | |
| 637 | extern "C" bool |
| 638 | LLDBSwigPython_UpdateSynthProviderInstance (void* implementor); |
| 639 | |
| 640 | extern "C" bool |
| 641 | LLDBSwigPython_MightHaveChildrenSynthProviderInstance (void* implementor); |
| 642 | |
Enrico Granata | d07cfd3 | 2014-10-08 18:27:36 +0000 | [diff] [blame] | 643 | extern "C" void * |
| 644 | LLDBSwigPython_GetValueSynthProviderInstance (void* implementor); |
| 645 | |
Greg Clayton | 8afa543 | 2013-10-17 00:27:14 +0000 | [diff] [blame] | 646 | extern "C" bool |
| 647 | LLDBSwigPythonCallCommand (const char *python_function_name, |
| 648 | const char *session_dictionary_name, |
| 649 | lldb::DebuggerSP& debugger, |
| 650 | const char* args, |
Enrico Granata | 06be059 | 2014-10-01 21:47:29 +0000 | [diff] [blame] | 651 | lldb_private::CommandReturnObject &cmd_retobj, |
| 652 | lldb::ExecutionContextRefSP exe_ctx_ref_sp); |
Greg Clayton | 8afa543 | 2013-10-17 00:27:14 +0000 | [diff] [blame] | 653 | |
| 654 | extern "C" bool |
Enrico Granata | 9fe00e5 | 2015-03-13 02:20:41 +0000 | [diff] [blame] | 655 | LLDBSwigPythonCallCommandObject (void *implementor, |
| 656 | lldb::DebuggerSP& debugger, |
| 657 | const char* args, |
| 658 | lldb_private::CommandReturnObject& cmd_retobj, |
| 659 | lldb::ExecutionContextRefSP exe_ctx_ref_sp); |
| 660 | |
| 661 | extern "C" bool |
Greg Clayton | 8afa543 | 2013-10-17 00:27:14 +0000 | [diff] [blame] | 662 | LLDBSwigPythonCallModuleInit (const char *python_module_name, |
| 663 | const char *session_dictionary_name, |
| 664 | lldb::DebuggerSP& debugger); |
| 665 | |
| 666 | extern "C" void* |
| 667 | LLDBSWIGPythonCreateOSPlugin (const char *python_class_name, |
| 668 | const char *session_dictionary_name, |
| 669 | const lldb::ProcessSP& process_sp); |
| 670 | |
| 671 | extern "C" bool |
| 672 | LLDBSWIGPythonRunScriptKeywordProcess (const char* python_function_name, |
| 673 | const char* session_dictionary_name, |
| 674 | lldb::ProcessSP& process, |
| 675 | std::string& output); |
| 676 | |
| 677 | extern "C" bool |
| 678 | LLDBSWIGPythonRunScriptKeywordThread (const char* python_function_name, |
| 679 | const char* session_dictionary_name, |
| 680 | lldb::ThreadSP& thread, |
| 681 | std::string& output); |
| 682 | |
| 683 | extern "C" bool |
| 684 | LLDBSWIGPythonRunScriptKeywordTarget (const char* python_function_name, |
| 685 | const char* session_dictionary_name, |
| 686 | lldb::TargetSP& target, |
| 687 | std::string& output); |
| 688 | |
| 689 | extern "C" bool |
| 690 | LLDBSWIGPythonRunScriptKeywordFrame (const char* python_function_name, |
| 691 | const char* session_dictionary_name, |
Jason Molenda | b57e4a1 | 2013-11-04 09:33:30 +0000 | [diff] [blame] | 692 | lldb::StackFrameSP& frame, |
Greg Clayton | 8afa543 | 2013-10-17 00:27:14 +0000 | [diff] [blame] | 693 | std::string& output); |
| 694 | |
Enrico Granata | 88282c6 | 2014-10-28 21:07:00 +0000 | [diff] [blame] | 695 | extern "C" bool |
| 696 | LLDBSWIGPythonRunScriptKeywordValue (const char* python_function_name, |
| 697 | const char* session_dictionary_name, |
| 698 | lldb::ValueObjectSP& value, |
| 699 | std::string& output); |
| 700 | |
Greg Clayton | 8afa543 | 2013-10-17 00:27:14 +0000 | [diff] [blame] | 701 | extern "C" void* |
| 702 | LLDBSWIGPython_GetDynamicSetting (void* module, |
| 703 | const char* setting, |
| 704 | const lldb::TargetSP& target_sp); |
| 705 | |
Greg Clayton | dce502e | 2011-11-04 03:34:56 +0000 | [diff] [blame] | 706 | |
| 707 | #endif |
| 708 | |
Greg Clayton | fc36f791 | 2011-03-22 01:14:58 +0000 | [diff] [blame] | 709 | void |
| 710 | SBCommandInterpreter::InitializeSWIG () |
| 711 | { |
| 712 | static bool g_initialized = false; |
| 713 | if (!g_initialized) |
| 714 | { |
| 715 | g_initialized = true; |
Greg Clayton | dce502e | 2011-11-04 03:34:56 +0000 | [diff] [blame] | 716 | #ifndef LLDB_DISABLE_PYTHON |
Greg Clayton | 8afa543 | 2013-10-17 00:27:14 +0000 | [diff] [blame] | 717 | ScriptInterpreter::InitializeInterpreter (init_lldb, |
| 718 | LLDBSwigPythonBreakpointCallbackFunction, |
| 719 | LLDBSwigPythonWatchpointCallbackFunction, |
| 720 | LLDBSwigPythonCallTypeScript, |
| 721 | LLDBSwigPythonCreateSyntheticProvider, |
Enrico Granata | 9fe00e5 | 2015-03-13 02:20:41 +0000 | [diff] [blame] | 722 | LLDBSwigPythonCreateCommandObject, |
Greg Clayton | 8afa543 | 2013-10-17 00:27:14 +0000 | [diff] [blame] | 723 | LLDBSwigPython_CalculateNumChildren, |
| 724 | LLDBSwigPython_GetChildAtIndex, |
| 725 | LLDBSwigPython_GetIndexOfChildWithName, |
| 726 | LLDBSWIGPython_CastPyObjectToSBValue, |
| 727 | LLDBSWIGPython_GetValueObjectSPFromSBValue, |
| 728 | LLDBSwigPython_UpdateSynthProviderInstance, |
| 729 | LLDBSwigPython_MightHaveChildrenSynthProviderInstance, |
Enrico Granata | d07cfd3 | 2014-10-08 18:27:36 +0000 | [diff] [blame] | 730 | LLDBSwigPython_GetValueSynthProviderInstance, |
Greg Clayton | 8afa543 | 2013-10-17 00:27:14 +0000 | [diff] [blame] | 731 | LLDBSwigPythonCallCommand, |
Enrico Granata | 9fe00e5 | 2015-03-13 02:20:41 +0000 | [diff] [blame] | 732 | LLDBSwigPythonCallCommandObject, |
Greg Clayton | 8afa543 | 2013-10-17 00:27:14 +0000 | [diff] [blame] | 733 | LLDBSwigPythonCallModuleInit, |
| 734 | LLDBSWIGPythonCreateOSPlugin, |
| 735 | LLDBSWIGPythonRunScriptKeywordProcess, |
| 736 | LLDBSWIGPythonRunScriptKeywordThread, |
| 737 | LLDBSWIGPythonRunScriptKeywordTarget, |
| 738 | LLDBSWIGPythonRunScriptKeywordFrame, |
Enrico Granata | 88282c6 | 2014-10-28 21:07:00 +0000 | [diff] [blame] | 739 | LLDBSWIGPythonRunScriptKeywordValue, |
Jim Ingham | 2bdbfd5 | 2014-09-29 23:17:18 +0000 | [diff] [blame] | 740 | LLDBSWIGPython_GetDynamicSetting, |
| 741 | LLDBSwigPythonCreateScriptedThreadPlan, |
| 742 | LLDBSWIGPythonCallThreadPlan); |
Greg Clayton | dce502e | 2011-11-04 03:34:56 +0000 | [diff] [blame] | 743 | #endif |
Greg Clayton | fc36f791 | 2011-03-22 01:14:58 +0000 | [diff] [blame] | 744 | } |
| 745 | } |
Greg Clayton | a9f7b79 | 2012-02-29 04:21:24 +0000 | [diff] [blame] | 746 | |
Enrico Granata | 21dfcd9 | 2012-09-28 23:57:51 +0000 | [diff] [blame] | 747 | lldb::SBCommand |
| 748 | SBCommandInterpreter::AddMultiwordCommand (const char* name, const char* help) |
| 749 | { |
| 750 | CommandObjectMultiword *new_command = new CommandObjectMultiword(*m_opaque_ptr,name,help); |
| 751 | new_command->SetRemovable (true); |
| 752 | lldb::CommandObjectSP new_command_sp(new_command); |
| 753 | if (new_command_sp && m_opaque_ptr->AddUserCommand(name, new_command_sp, true)) |
| 754 | return lldb::SBCommand(new_command_sp); |
| 755 | return lldb::SBCommand(); |
| 756 | } |
| 757 | |
| 758 | lldb::SBCommand |
| 759 | SBCommandInterpreter::AddCommand (const char* name, lldb::SBCommandPluginInterface* impl, const char* help) |
| 760 | { |
| 761 | lldb::CommandObjectSP new_command_sp; |
| 762 | new_command_sp.reset(new CommandPluginInterfaceImplementation(*m_opaque_ptr,name,impl,help)); |
| 763 | |
| 764 | if (new_command_sp && m_opaque_ptr->AddUserCommand(name, new_command_sp, true)) |
| 765 | return lldb::SBCommand(new_command_sp); |
| 766 | return lldb::SBCommand(); |
| 767 | } |
| 768 | |
| 769 | SBCommand::SBCommand () |
| 770 | {} |
| 771 | |
| 772 | SBCommand::SBCommand (lldb::CommandObjectSP cmd_sp) : m_opaque_sp (cmd_sp) |
| 773 | {} |
| 774 | |
| 775 | bool |
| 776 | SBCommand::IsValid () |
| 777 | { |
| 778 | return (bool)m_opaque_sp; |
| 779 | } |
| 780 | |
| 781 | const char* |
| 782 | SBCommand::GetName () |
| 783 | { |
| 784 | if (IsValid ()) |
| 785 | return m_opaque_sp->GetCommandName (); |
| 786 | return NULL; |
| 787 | } |
| 788 | |
| 789 | const char* |
| 790 | SBCommand::GetHelp () |
| 791 | { |
| 792 | if (IsValid ()) |
| 793 | return m_opaque_sp->GetHelp (); |
| 794 | return NULL; |
| 795 | } |
| 796 | |
Enrico Granata | cc342da | 2015-03-13 22:32:11 +0000 | [diff] [blame] | 797 | const char* |
| 798 | SBCommand::GetHelpLong () |
| 799 | { |
| 800 | if (IsValid ()) |
| 801 | return m_opaque_sp->GetHelpLong (); |
| 802 | return NULL; |
| 803 | } |
| 804 | |
| 805 | void |
| 806 | SBCommand::SetHelp (const char* help) |
| 807 | { |
| 808 | if (IsValid()) |
| 809 | m_opaque_sp->SetHelp(help); |
| 810 | } |
| 811 | |
| 812 | void |
| 813 | SBCommand::SetHelpLong (const char* help) |
| 814 | { |
| 815 | if (IsValid()) |
| 816 | m_opaque_sp->SetHelpLong(help); |
| 817 | } |
| 818 | |
Enrico Granata | 21dfcd9 | 2012-09-28 23:57:51 +0000 | [diff] [blame] | 819 | lldb::SBCommand |
| 820 | SBCommand::AddMultiwordCommand (const char* name, const char* help) |
| 821 | { |
| 822 | if (!IsValid ()) |
| 823 | return lldb::SBCommand(); |
| 824 | if (m_opaque_sp->IsMultiwordObject() == false) |
| 825 | return lldb::SBCommand(); |
| 826 | CommandObjectMultiword *new_command = new CommandObjectMultiword(m_opaque_sp->GetCommandInterpreter(),name,help); |
| 827 | new_command->SetRemovable (true); |
| 828 | lldb::CommandObjectSP new_command_sp(new_command); |
| 829 | if (new_command_sp && m_opaque_sp->LoadSubCommand(name,new_command_sp)) |
| 830 | return lldb::SBCommand(new_command_sp); |
| 831 | return lldb::SBCommand(); |
| 832 | } |
| 833 | |
| 834 | lldb::SBCommand |
| 835 | SBCommand::AddCommand (const char* name, lldb::SBCommandPluginInterface *impl, const char* help) |
| 836 | { |
| 837 | if (!IsValid ()) |
| 838 | return lldb::SBCommand(); |
| 839 | if (m_opaque_sp->IsMultiwordObject() == false) |
| 840 | return lldb::SBCommand(); |
| 841 | lldb::CommandObjectSP new_command_sp; |
| 842 | new_command_sp.reset(new CommandPluginInterfaceImplementation(m_opaque_sp->GetCommandInterpreter(),name,impl,help)); |
| 843 | if (new_command_sp && m_opaque_sp->LoadSubCommand(name,new_command_sp)) |
| 844 | return lldb::SBCommand(new_command_sp); |
| 845 | return lldb::SBCommand(); |
| 846 | } |
| 847 | |