2010-06-08 16:52:24 +00: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 00:20:57 +00:00
|
|
|
#include "lldb/lldb-python.h"
|
|
|
|
|
|
2010-06-08 16:52:24 +00: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 00:29:16 +00:00
|
|
|
#include "lldb/Interpreter/ScriptInterpreterPython.h"
|
2010-06-09 21:28:42 +00:00
|
|
|
#include "lldb/Utility/PseudoTerminal.h"
|
2010-06-08 16:52:24 +00:00
|
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
2011-01-14 00:29:16 +00:00
|
|
|
ScriptInterpreter::ScriptInterpreter (CommandInterpreter &interpreter, lldb::ScriptLanguage script_lang) :
|
2010-09-18 01:14:36 +00:00
|
|
|
m_interpreter (interpreter),
|
2012-01-27 00:13:27 +00:00
|
|
|
m_script_lang (script_lang)
|
2010-06-08 16:52:24 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ScriptInterpreter::~ScriptInterpreter ()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-14 00:29:16 +00:00
|
|
|
CommandInterpreter &
|
|
|
|
|
ScriptInterpreter::GetCommandInterpreter ()
|
|
|
|
|
{
|
|
|
|
|
return m_interpreter;
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-08 16:52:24 +00:00
|
|
|
void
|
|
|
|
|
ScriptInterpreter::CollectDataForBreakpointCommandCallback
|
|
|
|
|
(
|
|
|
|
|
BreakpointOptions *bp_options,
|
|
|
|
|
CommandReturnObject &result
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
result.SetStatus (eReturnStatusFailed);
|
|
|
|
|
result.AppendError ("ScriptInterpreter::GetScriptCommands(StringList &) is not implemented.");
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-09 23:09:42 +00:00
|
|
|
void
|
|
|
|
|
ScriptInterpreter::CollectDataForWatchpointCommandCallback
|
|
|
|
|
(
|
|
|
|
|
WatchpointOptions *bp_options,
|
|
|
|
|
CommandReturnObject &result
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
result.SetStatus (eReturnStatusFailed);
|
|
|
|
|
result.AppendError ("ScriptInterpreter::GetScriptCommands(StringList &) is not implemented.");
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-04 00:03:46 +00:00
|
|
|
std::string
|
|
|
|
|
ScriptInterpreter::LanguageToString (lldb::ScriptLanguage language)
|
|
|
|
|
{
|
|
|
|
|
std::string return_value;
|
2010-06-08 16:52:24 +00:00
|
|
|
|
2010-09-04 00:03:46 +00:00
|
|
|
switch (language)
|
|
|
|
|
{
|
|
|
|
|
case eScriptLanguageNone:
|
|
|
|
|
return_value = "None";
|
|
|
|
|
break;
|
|
|
|
|
case eScriptLanguagePython:
|
|
|
|
|
return_value = "Python";
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return return_value;
|
|
|
|
|
}
|
2011-01-14 00:29:16 +00:00
|
|
|
|
|
|
|
|
void
|
2012-02-29 03:28:49 +00:00
|
|
|
ScriptInterpreter::InitializeInterpreter (SWIGInitCallback python_swig_init_callback)
|
2011-01-14 00:29:16 +00:00
|
|
|
{
|
2011-11-04 03:34:56 +00:00
|
|
|
#ifndef LLDB_DISABLE_PYTHON
|
2012-02-29 03:28:49 +00:00
|
|
|
ScriptInterpreterPython::InitializeInterpreter (python_swig_init_callback);
|
2011-11-04 03:34:56 +00:00
|
|
|
#endif // #ifndef LLDB_DISABLE_PYTHON
|
2011-01-14 00:29:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2011-03-22 01:14:58 +00:00
|
|
|
ScriptInterpreter::TerminateInterpreter ()
|
2011-01-14 00:29:16 +00:00
|
|
|
{
|
2011-11-04 03:34:56 +00:00
|
|
|
#ifndef LLDB_DISABLE_PYTHON
|
2011-03-22 01:14:58 +00:00
|
|
|
ScriptInterpreterPython::TerminateInterpreter ();
|
2011-11-04 03:34:56 +00:00
|
|
|
#endif // #ifndef LLDB_DISABLE_PYTHON
|
2011-01-14 00:29:16 +00:00
|
|
|
}
|
|
|
|
|
|