2010-06-09 00:52:24 +08:00
|
|
|
//===-- ScriptInterpreter.cpp -----------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-12-05 08:20:57 +08:00
|
|
|
#include "lldb/lldb-python.h"
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
#include "lldb/Interpreter/ScriptInterpreter.h"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "lldb/Core/Error.h"
|
|
|
|
#include "lldb/Core/Stream.h"
|
|
|
|
#include "lldb/Core/StringList.h"
|
|
|
|
#include "lldb/Interpreter/CommandReturnObject.h"
|
2011-01-14 08:29:16 +08:00
|
|
|
#include "lldb/Interpreter/ScriptInterpreterPython.h"
|
2010-06-10 05:28:42 +08:00
|
|
|
#include "lldb/Utility/PseudoTerminal.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
2011-01-14 08:29:16 +08:00
|
|
|
ScriptInterpreter::ScriptInterpreter (CommandInterpreter &interpreter, lldb::ScriptLanguage script_lang) :
|
2010-09-18 09:14:36 +08:00
|
|
|
m_interpreter (interpreter),
|
2012-01-27 08:13:27 +08:00
|
|
|
m_script_lang (script_lang)
|
2010-06-09 00:52:24 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ScriptInterpreter::~ScriptInterpreter ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-01-14 08:29:16 +08:00
|
|
|
CommandInterpreter &
|
|
|
|
ScriptInterpreter::GetCommandInterpreter ()
|
|
|
|
{
|
|
|
|
return m_interpreter;
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
void
|
|
|
|
ScriptInterpreter::CollectDataForBreakpointCommandCallback
|
|
|
|
(
|
2014-08-30 01:34:17 +08:00
|
|
|
std::vector<BreakpointOptions *> &bp_options_vec,
|
2010-06-09 00:52:24 +08:00
|
|
|
CommandReturnObject &result
|
|
|
|
)
|
|
|
|
{
|
|
|
|
result.SetStatus (eReturnStatusFailed);
|
|
|
|
result.AppendError ("ScriptInterpreter::GetScriptCommands(StringList &) is not implemented.");
|
|
|
|
}
|
|
|
|
|
2012-08-10 07:09:42 +08:00
|
|
|
void
|
|
|
|
ScriptInterpreter::CollectDataForWatchpointCommandCallback
|
|
|
|
(
|
|
|
|
WatchpointOptions *bp_options,
|
|
|
|
CommandReturnObject &result
|
|
|
|
)
|
|
|
|
{
|
|
|
|
result.SetStatus (eReturnStatusFailed);
|
|
|
|
result.AppendError ("ScriptInterpreter::GetScriptCommands(StringList &) is not implemented.");
|
|
|
|
}
|
|
|
|
|
2010-09-04 08:03:46 +08:00
|
|
|
std::string
|
|
|
|
ScriptInterpreter::LanguageToString (lldb::ScriptLanguage language)
|
|
|
|
{
|
|
|
|
std::string return_value;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2010-09-04 08:03:46 +08:00
|
|
|
switch (language)
|
|
|
|
{
|
|
|
|
case eScriptLanguageNone:
|
|
|
|
return_value = "None";
|
|
|
|
break;
|
|
|
|
case eScriptLanguagePython:
|
|
|
|
return_value = "Python";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return return_value;
|
|
|
|
}
|
2011-01-14 08:29:16 +08:00
|
|
|
|
2014-08-30 01:34:17 +08:00
|
|
|
Error
|
|
|
|
ScriptInterpreter::SetBreakpointCommandCallback (std::vector<BreakpointOptions *> &bp_options_vec,
|
|
|
|
const char *callback_text)
|
|
|
|
{
|
|
|
|
Error return_error;
|
|
|
|
for (BreakpointOptions *bp_options : bp_options_vec)
|
|
|
|
{
|
|
|
|
return_error = SetBreakpointCommandCallback(bp_options, callback_text);
|
|
|
|
if (return_error.Success())
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return return_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ScriptInterpreter::SetBreakpointCommandCallbackFunction (std::vector<BreakpointOptions *> &bp_options_vec,
|
|
|
|
const char *function_name)
|
|
|
|
{
|
|
|
|
for (BreakpointOptions *bp_options : bp_options_vec)
|
|
|
|
{
|
|
|
|
SetBreakpointCommandCallbackFunction(bp_options, function_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-19 06:45:39 +08:00
|
|
|
std::unique_ptr<ScriptInterpreterLocker>
|
2013-03-28 06:38:11 +08:00
|
|
|
ScriptInterpreter::AcquireInterpreterLock ()
|
|
|
|
{
|
2013-04-19 06:45:39 +08:00
|
|
|
return std::unique_ptr<ScriptInterpreterLocker>(new ScriptInterpreterLocker());
|
2013-03-28 06:38:11 +08:00
|
|
|
}
|
|
|
|
|
2011-01-14 08:29:16 +08:00
|
|
|
void
|
2013-10-17 08:27:14 +08:00
|
|
|
ScriptInterpreter::InitializeInterpreter (SWIGInitCallback python_swig_init_callback,
|
|
|
|
SWIGBreakpointCallbackFunction swig_breakpoint_callback,
|
|
|
|
SWIGWatchpointCallbackFunction swig_watchpoint_callback,
|
|
|
|
SWIGPythonTypeScriptCallbackFunction swig_typescript_callback,
|
|
|
|
SWIGPythonCreateSyntheticProvider swig_synthetic_script,
|
|
|
|
SWIGPythonCalculateNumChildren swig_calc_children,
|
|
|
|
SWIGPythonGetChildAtIndex swig_get_child_index,
|
|
|
|
SWIGPythonGetIndexOfChildWithName swig_get_index_child,
|
|
|
|
SWIGPythonCastPyObjectToSBValue swig_cast_to_sbvalue ,
|
|
|
|
SWIGPythonGetValueObjectSPFromSBValue swig_get_valobj_sp_from_sbvalue,
|
|
|
|
SWIGPythonUpdateSynthProviderInstance swig_update_provider,
|
|
|
|
SWIGPythonMightHaveChildrenSynthProviderInstance swig_mighthavechildren_provider,
|
Extend synthetic children to produce synthetic values (as in, those that GetValueAsUnsigned(), GetValueAsCString() would return)
The way to do this is to write a synthetic child provider for your type, and have it vend the (optional) get_value function.
If get_value is defined, and it returns a valid SBValue, that SBValue's value (as in lldb_private::Value) will be used as the synthetic ValueObject's Value
The rationale for doing things this way is twofold:
- there are many possible ways to define a "value" (SBData, a Python number, ...) but SBValue seems general enough as a thing that stores a "value", so we just trade values that way and that keeps our currency trivial
- we could introduce a new level of layering (ValueObjectSyntheticValue), a new kind of formatter (synthetic value producer), but that would complicate the model (can I have a dynamic with no synthetic children but synthetic value? synthetic value with synthetic children but no dynamic?), and I really couldn't see much benefit to be reaped from this added complexity in the matrix
On the other hand, just defining a synthetic child provider with a get_value but returning no actual children is easy enough that it's not a significant road-block to adoption of this feature
Comes with a test case
llvm-svn: 219330
2014-10-09 02:27:36 +08:00
|
|
|
SWIGPythonGetValueSynthProviderInstance swig_getvalue_provider,
|
2013-10-17 08:27:14 +08:00
|
|
|
SWIGPythonCallCommand swig_call_command,
|
|
|
|
SWIGPythonCallModuleInit swig_call_module_init,
|
|
|
|
SWIGPythonCreateOSPlugin swig_create_os_plugin,
|
|
|
|
SWIGPythonScriptKeyword_Process swig_run_script_keyword_process,
|
|
|
|
SWIGPythonScriptKeyword_Thread swig_run_script_keyword_thread,
|
|
|
|
SWIGPythonScriptKeyword_Target swig_run_script_keyword_target,
|
|
|
|
SWIGPythonScriptKeyword_Frame swig_run_script_keyword_frame,
|
2014-10-29 05:07:00 +08:00
|
|
|
SWIGPythonScriptKeyword_Value swig_run_script_keyword_value,
|
2014-09-30 07:17:18 +08:00
|
|
|
SWIGPython_GetDynamicSetting swig_plugin_get,
|
|
|
|
SWIGPythonCreateScriptedThreadPlan swig_thread_plan_script,
|
|
|
|
SWIGPythonCallThreadPlan swig_call_thread_plan)
|
2011-01-14 08:29:16 +08:00
|
|
|
{
|
2011-11-04 11:34:56 +08:00
|
|
|
#ifndef LLDB_DISABLE_PYTHON
|
2013-10-17 08:27:14 +08:00
|
|
|
ScriptInterpreterPython::InitializeInterpreter (python_swig_init_callback,
|
|
|
|
swig_breakpoint_callback,
|
|
|
|
swig_watchpoint_callback,
|
|
|
|
swig_typescript_callback,
|
|
|
|
swig_synthetic_script,
|
|
|
|
swig_calc_children,
|
|
|
|
swig_get_child_index,
|
|
|
|
swig_get_index_child,
|
|
|
|
swig_cast_to_sbvalue ,
|
|
|
|
swig_get_valobj_sp_from_sbvalue,
|
|
|
|
swig_update_provider,
|
|
|
|
swig_mighthavechildren_provider,
|
Extend synthetic children to produce synthetic values (as in, those that GetValueAsUnsigned(), GetValueAsCString() would return)
The way to do this is to write a synthetic child provider for your type, and have it vend the (optional) get_value function.
If get_value is defined, and it returns a valid SBValue, that SBValue's value (as in lldb_private::Value) will be used as the synthetic ValueObject's Value
The rationale for doing things this way is twofold:
- there are many possible ways to define a "value" (SBData, a Python number, ...) but SBValue seems general enough as a thing that stores a "value", so we just trade values that way and that keeps our currency trivial
- we could introduce a new level of layering (ValueObjectSyntheticValue), a new kind of formatter (synthetic value producer), but that would complicate the model (can I have a dynamic with no synthetic children but synthetic value? synthetic value with synthetic children but no dynamic?), and I really couldn't see much benefit to be reaped from this added complexity in the matrix
On the other hand, just defining a synthetic child provider with a get_value but returning no actual children is easy enough that it's not a significant road-block to adoption of this feature
Comes with a test case
llvm-svn: 219330
2014-10-09 02:27:36 +08:00
|
|
|
swig_getvalue_provider,
|
2013-10-17 08:27:14 +08:00
|
|
|
swig_call_command,
|
|
|
|
swig_call_module_init,
|
|
|
|
swig_create_os_plugin,
|
|
|
|
swig_run_script_keyword_process,
|
|
|
|
swig_run_script_keyword_thread,
|
|
|
|
swig_run_script_keyword_target,
|
|
|
|
swig_run_script_keyword_frame,
|
2014-10-29 05:07:00 +08:00
|
|
|
swig_run_script_keyword_value,
|
2014-09-30 07:17:18 +08:00
|
|
|
swig_plugin_get,
|
|
|
|
swig_thread_plan_script,
|
|
|
|
swig_call_thread_plan);
|
2011-11-04 11:34:56 +08:00
|
|
|
#endif // #ifndef LLDB_DISABLE_PYTHON
|
2011-01-14 08:29:16 +08:00
|
|
|
}
|