2010-06-09 00:52:24 +08:00
//===-- CommandObjectScript.cpp ---------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
# include "CommandObjectScript.h"
// C Includes
// C++ Includes
// Other libraries and framework includes
// Project includes
2010-06-16 03:49:27 +08:00
# include "lldb/Interpreter/Args.h"
2010-06-09 00:52:24 +08:00
# include "lldb/Interpreter/CommandReturnObject.h"
# include "lldb/Interpreter/ScriptInterpreter.h"
# include "lldb/Interpreter/ScriptInterpreterPython.h"
# include "lldb/Interpreter/ScriptInterpreterNone.h"
using namespace lldb ;
using namespace lldb_private ;
//-------------------------------------------------------------------------
// CommandObjectScript
//-------------------------------------------------------------------------
CommandObjectScript : : CommandObjectScript ( ScriptLanguage script_lang ) :
CommandObject ( " script " ,
" Passes an expression to the script interpreter for evaluation and returns the results. Drops user into the interactive interpreter if no expressions are given. " ,
" script [<script-expressions-for-evaluation>] " ) ,
m_script_lang ( script_lang ) ,
m_interpreter_ap ( )
{
}
CommandObjectScript : : ~ CommandObjectScript ( )
{
}
bool
CommandObjectScript : : ExecuteRawCommandString
(
2010-06-23 09:19:29 +08:00
CommandInterpreter & interpreter ,
2010-06-09 00:52:24 +08:00
const char * command ,
CommandReturnObject & result
)
{
2010-06-23 09:19:29 +08:00
ScriptInterpreter * script_interpreter = GetInterpreter ( interpreter ) ;
2010-06-09 00:52:24 +08:00
if ( script_interpreter = = NULL )
{
result . AppendError ( " no script interpeter " ) ;
result . SetStatus ( eReturnStatusFailed ) ;
}
2010-07-31 06:33:14 +08:00
if ( command = = NULL | | command [ 0 ] = = ' \0 ' ) {
2010-06-23 09:19:29 +08:00
script_interpreter - > ExecuteInterpreterLoop ( interpreter ) ;
2010-07-31 06:33:14 +08:00
result . SetStatus ( eReturnStatusSuccessFinishNoResult ) ;
return result . Succeeded ( ) ;
}
// We can do better when reporting the status of one-liner script execution.
if ( script_interpreter - > ExecuteOneLine ( interpreter , command , & result ) )
result . SetStatus ( eReturnStatusSuccessFinishNoResult ) ;
2010-06-09 00:52:24 +08:00
else
2010-07-31 06:33:14 +08:00
result . SetStatus ( eReturnStatusFailed ) ;
2010-06-09 00:52:24 +08:00
return result . Succeeded ( ) ;
}
bool
CommandObjectScript : : WantsRawCommandString ( )
{
return true ;
}
bool
CommandObjectScript : : Execute
(
2010-06-23 09:19:29 +08:00
CommandInterpreter & interpreter ,
2010-06-09 00:52:24 +08:00
Args & command ,
CommandReturnObject & result
)
{
2010-06-23 09:19:29 +08:00
// everything should be handled in ExecuteRawCommandString
return false ;
2010-06-09 00:52:24 +08:00
}
ScriptInterpreter *
2010-06-23 09:19:29 +08:00
CommandObjectScript : : GetInterpreter ( CommandInterpreter & interpreter )
2010-06-09 00:52:24 +08:00
{
if ( m_interpreter_ap . get ( ) = = NULL )
{
switch ( m_script_lang )
{
case eScriptLanguagePython :
2010-06-23 09:19:29 +08:00
m_interpreter_ap . reset ( new ScriptInterpreterPython ( interpreter ) ) ;
2010-06-09 00:52:24 +08:00
break ;
case eScriptLanguageNone :
2010-06-23 09:19:29 +08:00
m_interpreter_ap . reset ( new ScriptInterpreterNone ( interpreter ) ) ;
2010-06-09 00:52:24 +08:00
break ;
}
}
return m_interpreter_ap . get ( ) ;
}