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
//-------------------------------------------------------------------------
2010-09-18 09:14:36 +08:00
CommandObjectScript : : CommandObjectScript ( CommandInterpreter & interpreter , ScriptLanguage script_lang ) :
CommandObject ( interpreter ,
" script " ,
2010-09-08 06:38:08 +08:00
" Pass an expression to the script interpreter for evaluation and return the results. Drop into the interactive interpreter if no expression is given. " ,
" script [<script-expression-for-evaluation>] " ) ,
2010-06-09 00:52:24 +08:00
m_script_lang ( script_lang ) ,
m_interpreter_ap ( )
{
}
CommandObjectScript : : ~ CommandObjectScript ( )
{
}
bool
CommandObjectScript : : ExecuteRawCommandString
(
const char * command ,
CommandReturnObject & result
)
{
2010-09-18 09:14:36 +08:00
ScriptInterpreter * script_interpreter = GetInterpreter ( ) ;
2010-06-09 00:52:24 +08:00
if ( script_interpreter = = NULL )
{
2011-01-09 04:28:42 +08:00
result . AppendError ( " no script interpreter " ) ;
2010-06-09 00:52:24 +08:00
result . SetStatus ( eReturnStatusFailed ) ;
}
2010-07-31 06:33:14 +08:00
if ( command = = NULL | | command [ 0 ] = = ' \0 ' ) {
2010-09-18 09:14:36 +08:00
script_interpreter - > ExecuteInterpreterLoop ( ) ;
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.
2010-09-18 09:14:36 +08:00
if ( script_interpreter - > ExecuteOneLine ( command , & result ) )
2010-07-31 06:33:14 +08:00
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
(
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-09-18 09:14:36 +08:00
CommandObjectScript : : GetInterpreter ( )
2010-06-09 00:52:24 +08:00
{
if ( m_interpreter_ap . get ( ) = = NULL )
{
switch ( m_script_lang )
{
case eScriptLanguagePython :
2010-09-18 09:14:36 +08:00
m_interpreter_ap . reset ( new ScriptInterpreterPython ( m_interpreter ) ) ;
2010-06-09 00:52:24 +08:00
break ;
case eScriptLanguageNone :
2010-09-18 09:14:36 +08:00
m_interpreter_ap . reset ( new ScriptInterpreterNone ( m_interpreter ) ) ;
2010-06-09 00:52:24 +08:00
break ;
}
}
return m_interpreter_ap . get ( ) ;
}