2014-05-16 18:51:01 +08:00
|
|
|
//===-- MIDriver.cpp --------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
//++
|
2014-11-18 02:06:21 +08:00
|
|
|
// File: MIDriver.cpp
|
2014-05-16 18:51:01 +08:00
|
|
|
//
|
2014-11-18 02:06:21 +08:00
|
|
|
// Overview: CMIDriver implementation.
|
2014-05-16 18:51:01 +08:00
|
|
|
//
|
2014-11-18 02:06:21 +08:00
|
|
|
// Environment: Compilers: Visual C++ 12.
|
|
|
|
// gcc (Ubuntu/Linaro 4.8.1-10ubuntu9) 4.8.1
|
|
|
|
// Libraries: See MIReadmetxt.
|
2014-05-16 18:51:01 +08:00
|
|
|
//
|
2014-11-18 02:06:21 +08:00
|
|
|
// Copyright: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
|
|
|
|
|
|
|
// Third party headers:
|
2014-11-18 02:06:21 +08:00
|
|
|
#include <stdarg.h> // va_list, va_start, var_end
|
2014-06-25 00:35:50 +08:00
|
|
|
#include <iostream>
|
2015-01-20 08:04:26 +08:00
|
|
|
#include "lldb/API/SBError.h"
|
2014-05-16 18:51:01 +08:00
|
|
|
|
|
|
|
// In-house headers:
|
|
|
|
#include "Driver.h"
|
|
|
|
#include "MIDriver.h"
|
|
|
|
#include "MICmnResources.h"
|
|
|
|
#include "MICmnLog.h"
|
|
|
|
#include "MICmdMgr.h"
|
|
|
|
#include "MICmnLLDBDebugger.h"
|
|
|
|
#include "MICmnMIResultRecord.h"
|
|
|
|
#include "MICmnMIValueConst.h"
|
|
|
|
#include "MICmnThreadMgrStd.h"
|
|
|
|
#include "MIUtilDebug.h"
|
|
|
|
#include "MIUtilSingletonHelper.h"
|
|
|
|
#include "MICmnStreamStdout.h"
|
|
|
|
#include "MICmnStreamStderr.h"
|
2014-08-09 00:47:42 +08:00
|
|
|
#include "MICmdArgValFile.h"
|
|
|
|
#include "MICmdArgValString.h"
|
|
|
|
#include "MICmnConfig.h"
|
2015-02-04 17:59:23 +08:00
|
|
|
#include "MICmnLLDBDebugSessionInfo.h"
|
2014-05-16 18:51:01 +08:00
|
|
|
|
|
|
|
// Instantiations:
|
|
|
|
#if _DEBUG
|
2014-11-18 02:06:21 +08:00
|
|
|
const CMIUtilString CMIDriver::ms_constMIVersion = MIRSRC(IDS_MI_VERSION_DESCRIPTION_DEBUG);
|
2014-05-16 18:51:01 +08:00
|
|
|
#else
|
2014-11-18 02:06:21 +08:00
|
|
|
const CMIUtilString CMIDriver::ms_constMIVersion = MIRSRC(IDS_MI_VERSION_DESCRIPTION); // Matches version in resources file
|
2014-05-16 18:51:01 +08:00
|
|
|
#endif // _DEBUG
|
2014-11-18 02:06:21 +08:00
|
|
|
const CMIUtilString CMIDriver::ms_constAppNameShort(MIRSRC(IDS_MI_APPNAME_SHORT));
|
|
|
|
const CMIUtilString CMIDriver::ms_constAppNameLong(MIRSRC(IDS_MI_APPNAME_LONG));
|
2014-05-16 18:51:01 +08:00
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: CMIDriver constructor.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: None.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
CMIDriver::CMIDriver(void)
|
|
|
|
: m_bFallThruToOtherDriverEnabled(false)
|
|
|
|
, m_bDriverIsExiting(false)
|
|
|
|
, m_handleMainThread(0)
|
|
|
|
, m_rStdin(CMICmnStreamStdin::Instance())
|
|
|
|
, m_rLldbDebugger(CMICmnLLDBDebugger::Instance())
|
|
|
|
, m_rStdOut(CMICmnStreamStdout::Instance())
|
|
|
|
, m_eCurrentDriverState(eDriverState_NotRunning)
|
|
|
|
, m_bHaveExecutableFileNamePathOnCmdLine(false)
|
|
|
|
, m_bDriverDebuggingArgExecutable(false)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: CMIDriver destructor.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: None.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
CMIDriver::~CMIDriver(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Set whether *this driver (the parent) is enabled to pass a command to its
|
|
|
|
// fall through (child) driver to interpret the command and do work instead
|
|
|
|
// (if *this driver decides it can't hanled the command).
|
|
|
|
// Type: Method.
|
|
|
|
// Args: vbYes - (R) True = yes fall through, false = do not pass on command.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::SetEnableFallThru(const bool vbYes)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
m_bFallThruToOtherDriverEnabled = vbYes;
|
|
|
|
return MIstatus::success;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Get whether *this driver (the parent) is enabled to pass a command to its
|
|
|
|
// fall through (child) driver to interpret the command and do work instead
|
|
|
|
// (if *this driver decides it can't hanled the command).
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: bool - True = yes fall through, false = do not pass on command.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::GetEnableFallThru(void) const
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
return m_bFallThruToOtherDriverEnabled;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Retrieve MI's application name of itself.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: CMIUtilString & - Text description.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
const CMIUtilString &
|
|
|
|
CMIDriver::GetAppNameShort(void) const
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
return ms_constAppNameShort;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Retrieve MI's application name of itself.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: CMIUtilString & - Text description.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
const CMIUtilString &
|
|
|
|
CMIDriver::GetAppNameLong(void) const
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
return ms_constAppNameLong;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Retrieve MI's version description of itself.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: CMIUtilString & - Text description.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
const CMIUtilString &
|
|
|
|
CMIDriver::GetVersionDescription(void) const
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
return ms_constMIVersion;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Initialize setup *this driver ready for use.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::Initialize(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
m_eCurrentDriverState = eDriverState_Initialising;
|
|
|
|
m_clientUsageRefCnt++;
|
2014-05-16 18:51:01 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
ClrErrorDescription();
|
2014-05-16 18:51:01 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
if (m_bInitialized)
|
|
|
|
return MIstatus::success;
|
2014-05-16 18:51:01 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
bool bOk = MIstatus::success;
|
|
|
|
CMIUtilString errMsg;
|
2014-05-16 18:51:01 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
// Initialize all of the modules we depend on
|
|
|
|
MI::ModuleInit<CMICmnLog>(IDS_MI_INIT_ERR_LOG, bOk, errMsg);
|
|
|
|
MI::ModuleInit<CMICmnStreamStdout>(IDS_MI_INIT_ERR_STREAMSTDOUT, bOk, errMsg);
|
|
|
|
MI::ModuleInit<CMICmnStreamStderr>(IDS_MI_INIT_ERR_STREAMSTDERR, bOk, errMsg);
|
|
|
|
MI::ModuleInit<CMICmnResources>(IDS_MI_INIT_ERR_RESOURCES, bOk, errMsg);
|
|
|
|
MI::ModuleInit<CMICmnThreadMgrStd>(IDS_MI_INIT_ERR_THREADMANAGER, bOk, errMsg);
|
|
|
|
MI::ModuleInit<CMICmnStreamStdin>(IDS_MI_INIT_ERR_STREAMSTDIN, bOk, errMsg);
|
|
|
|
MI::ModuleInit<CMICmdMgr>(IDS_MI_INIT_ERR_CMDMGR, bOk, errMsg);
|
|
|
|
bOk &= m_rLldbDebugger.SetDriver(*this);
|
|
|
|
MI::ModuleInit<CMICmnLLDBDebugger>(IDS_MI_INIT_ERR_LLDBDEBUGGER, bOk, errMsg);
|
2014-05-16 18:51:01 +08:00
|
|
|
|
|
|
|
#if MICONFIG_COMPILE_MIDRIVER_WITH_LLDBDRIVER
|
2014-11-18 02:06:21 +08:00
|
|
|
CMIDriverMgr &rDrvMgr = CMIDriverMgr::Instance();
|
|
|
|
bOk = bOk && rDrvMgr.RegisterDriver(*g_driver, "LLDB driver"); // Will be pass thru driver
|
|
|
|
if (bOk)
|
|
|
|
{
|
|
|
|
bOk = SetEnableFallThru(false); // This is intentional at this time - yet to be fully implemented
|
|
|
|
bOk = bOk && SetDriverToFallThruTo(*g_driver);
|
|
|
|
CMIUtilString strOtherDrvErrMsg;
|
|
|
|
if (bOk && GetEnableFallThru() && !g_driver->MISetup(strOtherDrvErrMsg))
|
|
|
|
{
|
|
|
|
bOk = false;
|
|
|
|
errMsg = CMIUtilString::Format(MIRSRC(IDS_MI_INIT_ERR_FALLTHRUDRIVER), strOtherDrvErrMsg.c_str());
|
|
|
|
}
|
|
|
|
}
|
2014-05-16 18:51:01 +08:00
|
|
|
#endif // MICONFIG_COMPILE_MIDRIVER_WITH_LLDBDRIVER
|
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
m_bExitApp = false;
|
2014-06-25 00:35:50 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
m_bInitialized = bOk;
|
2014-05-16 18:51:01 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
if (!bOk)
|
|
|
|
{
|
|
|
|
const CMIUtilString msg = CMIUtilString::Format(MIRSRC(IDS_MI_INIT_ERR_DRIVER), errMsg.c_str());
|
|
|
|
SetErrorDescription(msg);
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_eCurrentDriverState = eDriverState_RunningNotDebugging;
|
|
|
|
|
|
|
|
return bOk;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Unbind detach or release resources used by *this driver.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::Shutdown(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
if (--m_clientUsageRefCnt > 0)
|
|
|
|
return MIstatus::success;
|
|
|
|
|
|
|
|
if (!m_bInitialized)
|
|
|
|
return MIstatus::success;
|
|
|
|
|
|
|
|
m_eCurrentDriverState = eDriverState_ShuttingDown;
|
|
|
|
|
|
|
|
ClrErrorDescription();
|
|
|
|
|
|
|
|
bool bOk = MIstatus::success;
|
|
|
|
CMIUtilString errMsg;
|
|
|
|
|
|
|
|
// Shutdown all of the modules we depend on
|
|
|
|
MI::ModuleShutdown<CMICmnLLDBDebugger>(IDS_MI_INIT_ERR_LLDBDEBUGGER, bOk, errMsg);
|
|
|
|
MI::ModuleShutdown<CMICmdMgr>(IDS_MI_INIT_ERR_CMDMGR, bOk, errMsg);
|
|
|
|
MI::ModuleShutdown<CMICmnStreamStdin>(IDS_MI_INIT_ERR_STREAMSTDIN, bOk, errMsg);
|
|
|
|
MI::ModuleShutdown<CMICmnThreadMgrStd>(IDS_MI_INIT_ERR_THREADMANAGER, bOk, errMsg);
|
|
|
|
MI::ModuleShutdown<CMICmnResources>(IDS_MI_INIT_ERR_RESOURCES, bOk, errMsg);
|
|
|
|
MI::ModuleShutdown<CMICmnStreamStderr>(IDS_MI_INIT_ERR_STREAMSTDERR, bOk, errMsg);
|
|
|
|
MI::ModuleShutdown<CMICmnStreamStdout>(IDS_MI_INIT_ERR_STREAMSTDOUT, bOk, errMsg);
|
|
|
|
MI::ModuleShutdown<CMICmnLog>(IDS_MI_INIT_ERR_LOG, bOk, errMsg);
|
|
|
|
|
|
|
|
if (!bOk)
|
|
|
|
{
|
|
|
|
SetErrorDescriptionn(MIRSRC(IDS_MI_SHUTDOWN_ERR), errMsg.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
m_eCurrentDriverState = eDriverState_NotRunning;
|
|
|
|
|
|
|
|
return bOk;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Work function. Client (the driver's user) is able to append their own message
|
|
|
|
// in to the MI's Log trace file.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: vMessage - (R) Client's text message.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::WriteMessageToLog(const CMIUtilString &vMessage)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
CMIUtilString msg;
|
|
|
|
msg = CMIUtilString::Format(MIRSRC(IDS_MI_CLIENT_MSG), vMessage.c_str());
|
|
|
|
return m_pLog->Write(msg, CMICmnLog::eLogVerbosity_ClientMsg);
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
|
|
|
// Details: CDriverMgr calls *this driver initialize setup ready for use.
|
2014-11-18 02:06:21 +08:00
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::DoInitialize(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
return CMIDriver::Instance().Initialize();
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: CDriverMgr calls *this driver to unbind detach or release resources used by
|
|
|
|
// *this driver.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::DoShutdown(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
return CMIDriver::Instance().Shutdown();
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Retrieve the name for *this driver.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: CMIUtilString & - Driver name.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
const CMIUtilString &
|
|
|
|
CMIDriver::GetName(void) const
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
const CMIUtilString &rName = GetAppNameLong();
|
|
|
|
const CMIUtilString &rVsn = GetVersionDescription();
|
|
|
|
static CMIUtilString strName = CMIUtilString::Format("%s %s", rName.c_str(), rVsn.c_str());
|
|
|
|
|
|
|
|
return strName;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Retrieve *this driver's last error condition.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: CMIUtilString - Text description.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
CMIUtilString
|
|
|
|
CMIDriver::GetError(void) const
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
return GetErrorDescription();
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Call *this driver to resize the console window.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: vTermWidth - (R) New window column size.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
void
|
|
|
|
CMIDriver::DoResizeWindow(const uint32_t vTermWidth)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
GetTheDebugger().SetTerminalWidth(vTermWidth);
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Call *this driver to return it's debugger.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: lldb::SBDebugger & - LLDB debugger object reference.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
lldb::SBDebugger &
|
|
|
|
CMIDriver::GetTheDebugger(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
return m_rLldbDebugger.GetTheDebugger();
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Specify another driver *this driver can call should this driver not be able
|
|
|
|
// to handle the client data input. DoFallThruToAnotherDriver() makes the call.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: vrOtherDriver - (R) Reference to another driver object.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::SetDriverToFallThruTo(const CMIDriverBase &vrOtherDriver)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
m_pDriverFallThru = const_cast<CMIDriverBase *>(&vrOtherDriver);
|
2014-05-16 18:51:01 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
return m_pDriverFallThru->SetDriverParent(*this);
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Proxy function CMIDriverMgr IDriver interface implementation. *this driver's
|
|
|
|
// implementation called from here to match the existing function name of the
|
|
|
|
// original LLDb driver class (the extra indirection is not necessarily required).
|
|
|
|
// Check the arguments that were passed to this program to make sure they are
|
|
|
|
// valid and to get their argument values (if any).
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: argc - (R) An integer that contains the count of arguments that follow in
|
|
|
|
// argv. The argc parameter is always greater than or equal to 1.
|
|
|
|
// argv - (R) An array of null-terminated strings representing command-line
|
|
|
|
// arguments entered by the user of the program. By convention,
|
|
|
|
// argv[0] is the command with which the program is invoked.
|
|
|
|
// vpStdOut - (R) Pointer to a standard output stream.
|
|
|
|
// vwbExiting - (W) True = *this want to exit, Reasons: help, invalid arg(s),
|
|
|
|
// version information only.
|
|
|
|
// False = Continue to work, start debugger i.e. Command
|
|
|
|
// interpreter.
|
|
|
|
// Return: lldb::SBError - LLDB current error status.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
lldb::SBError
|
|
|
|
CMIDriver::DoParseArgs(const int argc, const char *argv[], FILE *vpStdOut, bool &vwbExiting)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
return ParseArgs(argc, argv, vpStdOut, vwbExiting);
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Check the arguments that were passed to this program to make sure they are
|
|
|
|
// valid and to get their argument values (if any). The following are options
|
|
|
|
// that are only handled by *this driver:
|
|
|
|
// --executable
|
|
|
|
// The application's options --interpreter and --executable in code act very similar.
|
|
|
|
// The --executable is necessary to differentiate whither the MI Driver is being
|
|
|
|
// using by a client i.e. Eclipse or from the command line. Eclipse issues the option
|
|
|
|
// --interpreter and also passes additional arguments which can be interpreted as an
|
|
|
|
// executable if called from the command line. Using --executable tells the MI
|
|
|
|
// Driver is being called the command line and that the executable argument is indeed
|
|
|
|
// a specified executable an so actions commands to set up the executable for a
|
|
|
|
// debug session. Using --interpreter on the commnd line does not action additional
|
|
|
|
// commands to initialise a debug session and so be able to launch the process.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: argc - (R) An integer that contains the count of arguments that follow in
|
|
|
|
// argv. The argc parameter is always greater than or equal to 1.
|
|
|
|
// argv - (R) An array of null-terminated strings representing command-line
|
|
|
|
// arguments entered by the user of the program. By convention,
|
|
|
|
// argv[0] is the command with which the program is invoked.
|
|
|
|
// vpStdOut - (R) Pointer to a standard output stream.
|
|
|
|
// vwbExiting - (W) True = *this want to exit, Reasons: help, invalid arg(s),
|
|
|
|
// version information only.
|
|
|
|
// False = Continue to work, start debugger i.e. Command
|
|
|
|
// interpreter.
|
|
|
|
// Return: lldb::SBError - LLDB current error status.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
lldb::SBError
|
|
|
|
CMIDriver::ParseArgs(const int argc, const char *argv[], FILE *vpStdOut, bool &vwbExiting)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
lldb::SBError errStatus;
|
|
|
|
const bool bHaveArgs(argc >= 2);
|
|
|
|
|
|
|
|
// *** Add any args handled here to GetHelpOnCmdLineArgOptions() ***
|
|
|
|
|
|
|
|
// CODETAG_MIDRIVE_CMD_LINE_ARG_HANDLING
|
|
|
|
// Look for the command line options
|
|
|
|
bool bHaveExecutableFileNamePath = false;
|
|
|
|
bool bHaveExecutableLongOption = false;
|
|
|
|
|
|
|
|
if (bHaveArgs)
|
|
|
|
{
|
|
|
|
// Search right to left to look for the executable
|
|
|
|
for (MIint i = argc - 1; i > 0; i--)
|
|
|
|
{
|
|
|
|
const CMIUtilString strArg(argv[i]);
|
|
|
|
const CMICmdArgValFile argFile;
|
|
|
|
if (argFile.IsFilePath(strArg) || CMICmdArgValString(true, false, true).IsStringArg(strArg))
|
|
|
|
{
|
|
|
|
bHaveExecutableFileNamePath = true;
|
|
|
|
m_strCmdLineArgExecuteableFileNamePath = argFile.GetFileNamePath(strArg);
|
|
|
|
m_bHaveExecutableFileNamePathOnCmdLine = true;
|
|
|
|
}
|
|
|
|
// This argument is also check for in CMIDriverMgr::ParseArgs()
|
|
|
|
if (0 == strArg.compare("--executable")) // Used to specify that there is executable argument also on the command line
|
|
|
|
{ // See fn description.
|
|
|
|
bHaveExecutableLongOption = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bHaveExecutableFileNamePath && bHaveExecutableLongOption)
|
|
|
|
{
|
|
|
|
// CODETAG_CMDLINE_ARG_EXECUTABLE_DEBUG_SESSION
|
2014-08-09 00:47:42 +08:00
|
|
|
#if MICONFIG_ENABLE_MI_DRIVER_MI_MODE_CMDLINE_ARG_EXECUTABLE_DEBUG_SESSION
|
2014-11-18 02:06:21 +08:00
|
|
|
SetDriverDebuggingArgExecutable();
|
2014-08-09 00:47:42 +08:00
|
|
|
#else
|
2014-11-18 02:06:21 +08:00
|
|
|
vwbExiting = true;
|
|
|
|
errStatus.SetErrorString(MIRSRC(IDS_DRIVER_ERR_LOCAL_DEBUG_NOT_IMPL));
|
2014-08-09 00:47:42 +08:00
|
|
|
#endif // MICONFIG_ENABLE_MI_DRIVER_MI_MODE_CMDLINE_ARG_EXECUTABLE_DEBUG_SESSION
|
2014-11-18 02:06:21 +08:00
|
|
|
}
|
2014-05-16 18:51:01 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
return errStatus;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: A client can ask if *this driver is GDB/MI compatible.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: True - GBD/MI compatible LLDB front end.
|
|
|
|
// False - Not GBD/MI compatible LLDB front end.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::GetDriverIsGDBMICompatibleDriver(void) const
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
return true;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Start worker threads for the driver.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::StartWorkerThreads(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
bool bOk = MIstatus::success;
|
|
|
|
|
|
|
|
// Grab the thread manager
|
|
|
|
CMICmnThreadMgrStd &rThreadMgr = CMICmnThreadMgrStd::Instance();
|
|
|
|
|
|
|
|
// Start the event polling thread
|
|
|
|
if (bOk && !rThreadMgr.ThreadStart<CMICmnLLDBDebugger>(m_rLldbDebugger))
|
|
|
|
{
|
|
|
|
const CMIUtilString errMsg = CMIUtilString::Format(MIRSRC(IDS_THREADMGR_ERR_THREAD_FAIL_CREATE),
|
|
|
|
CMICmnThreadMgrStd::Instance().GetErrorDescription().c_str());
|
|
|
|
SetErrorDescriptionn(errMsg);
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bOk;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Stop worker threads for the driver.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::StopWorkerThreads(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
CMICmnThreadMgrStd &rThreadMgr = CMICmnThreadMgrStd::Instance();
|
|
|
|
return rThreadMgr.ThreadAllTerminate();
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Call this function puts *this driver to work.
|
|
|
|
// This function is used by the application's main thread.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::DoMainLoop(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
if (!InitClientIDEToMIDriver()) // Init Eclipse IDE
|
|
|
|
{
|
|
|
|
SetErrorDescriptionn(MIRSRC(IDS_MI_INIT_ERR_CLIENT_USING_DRIVER));
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!StartWorkerThreads())
|
|
|
|
return MIstatus::failure;
|
|
|
|
|
|
|
|
// App is not quitting currently
|
|
|
|
m_bExitApp = false;
|
|
|
|
|
|
|
|
// CODETAG_CMDLINE_ARG_EXECUTABLE_DEBUG_SESSION
|
2014-08-09 00:47:42 +08:00
|
|
|
#if MICONFIG_ENABLE_MI_DRIVER_MI_MODE_CMDLINE_ARG_EXECUTABLE_DEBUG_SESSION
|
2014-11-18 02:06:21 +08:00
|
|
|
if (HaveExecutableFileNamePathOnCmdLine())
|
|
|
|
{
|
2015-03-02 18:58:02 +08:00
|
|
|
if (!LocalDebugSessionStartupExecuteCommands())
|
2014-11-18 02:06:21 +08:00
|
|
|
{
|
|
|
|
SetErrorDescription(MIRSRC(IDS_MI_INIT_ERR_LOCAL_DEBUG_SESSION));
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
}
|
2014-08-09 00:47:42 +08:00
|
|
|
#endif // MICONFIG_ENABLE_MI_DRIVER_MI_MODE_CMDLINE_ARG_EXECUTABLE_DEBUG_SESSION
|
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
// While the app is active
|
|
|
|
while (!m_bExitApp)
|
|
|
|
{
|
2015-02-20 18:20:05 +08:00
|
|
|
CMIUtilString errorText;
|
|
|
|
const MIchar *pCmd = m_rStdin.ReadLine (errorText);
|
|
|
|
if (pCmd != nullptr)
|
2014-11-18 02:06:21 +08:00
|
|
|
{
|
2015-02-20 18:20:05 +08:00
|
|
|
CMIUtilString lineText(pCmd);
|
|
|
|
if (!lineText.empty ())
|
|
|
|
{
|
|
|
|
if (lineText == "quit")
|
|
|
|
{
|
|
|
|
// We want to be exiting when receiving a quit command
|
|
|
|
m_bExitApp = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool bOk = false;
|
|
|
|
{
|
|
|
|
// Lock Mutex before processing commands so that we don't disturb an event
|
|
|
|
// being processed
|
|
|
|
CMIUtilThreadLock lock(CMICmnLLDBDebugSessionInfo::Instance().GetSessionMutex());
|
|
|
|
bOk = InterpretCommand(lineText);
|
|
|
|
}
|
|
|
|
// Draw prompt if desired
|
|
|
|
if (bOk && m_rStdin.GetEnablePrompt())
|
|
|
|
m_rStdOut.WriteMIResponse(m_rStdin.GetPrompt());
|
|
|
|
}
|
2014-11-18 02:06:21 +08:00
|
|
|
}
|
|
|
|
}
|
2014-05-16 18:51:01 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
// Signal that the application is shutting down
|
|
|
|
DoAppQuit();
|
2014-05-16 18:51:01 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
// Close and wait for the workers to stop
|
|
|
|
StopWorkerThreads();
|
2014-05-16 18:51:01 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
// Ensure that a new line is sent as the last act of the dying driver
|
|
|
|
m_rStdOut.WriteMIResponse("\n", false);
|
2014-05-16 18:51:01 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
return MIstatus::success;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Set things in motion, set state etc that brings *this driver (and the
|
|
|
|
// application) to a tidy shutdown.
|
|
|
|
// This function is used by the application's main thread.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::DoAppQuit(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
bool bYesQuit = true;
|
2014-05-16 18:51:01 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
// Shutdown stuff, ready app for exit
|
|
|
|
{
|
|
|
|
CMIUtilThreadLock lock(m_threadMutex);
|
|
|
|
m_bDriverIsExiting = true;
|
|
|
|
}
|
2014-05-16 18:51:01 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
return bYesQuit;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: *this driver passes text commands to a fall through driver is it does not
|
|
|
|
// understand them (the LLDB driver).
|
|
|
|
// This function is used by the application's main thread.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: vTextLine - (R) Text data representing a possible command.
|
|
|
|
// vwbCmdYesValid - (W) True = Command valid, false = command not handled.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::InterpretCommandFallThruDriver(const CMIUtilString &vTextLine, bool &vwbCmdYesValid)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
MIunused(vTextLine);
|
|
|
|
MIunused(vwbCmdYesValid);
|
|
|
|
|
|
|
|
// ToDo: Implement when less urgent work to be done or decide remove as not required
|
|
|
|
// bool bOk = MIstatus::success;
|
|
|
|
// bool bCmdNotUnderstood = true;
|
|
|
|
// if( bCmdNotUnderstood && GetEnableFallThru() )
|
|
|
|
//{
|
|
|
|
// CMIUtilString errMsg;
|
|
|
|
// bOk = DoFallThruToAnotherDriver( vStdInBuffer, errMsg );
|
|
|
|
// if( !bOk )
|
|
|
|
// {
|
|
|
|
// errMsg = errMsg.StripCREndOfLine();
|
|
|
|
// errMsg = errMsg.StripCRAll();
|
|
|
|
// const CMIDriverBase * pOtherDriver = GetDriverToFallThruTo();
|
|
|
|
// const MIchar * pName = pOtherDriver->GetDriverName().c_str();
|
|
|
|
// const MIchar * pId = pOtherDriver->GetDriverId().c_str();
|
|
|
|
// const CMIUtilString msg( CMIUtilString::Format( MIRSRC( IDS_DRIVER_ERR_FALLTHRU_DRIVER_ERR ), pName, pId, errMsg.c_str() )
|
|
|
|
//);
|
|
|
|
// m_pLog->WriteMsg( msg );
|
|
|
|
// }
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
// vwbCmdYesValid = bOk;
|
|
|
|
// CMIUtilString strNot;
|
|
|
|
// if( vwbCmdYesValid)
|
|
|
|
// strNot = CMIUtilString::Format( "%s ", MIRSRC( IDS_WORD_NOT ) );
|
|
|
|
// const CMIUtilString msg( CMIUtilString::Format( MIRSRC( IDS_FALLTHRU_DRIVER_CMD_RECEIVED ), vTextLine.c_str(), strNot.c_str() ) );
|
|
|
|
// m_pLog->WriteLog( msg );
|
|
|
|
|
|
|
|
return MIstatus::success;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Retrieve the name for *this driver.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: CMIUtilString & - Driver name.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
const CMIUtilString &
|
|
|
|
CMIDriver::GetDriverName(void) const
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
return GetName();
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Get the unique ID for *this driver.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: CMIUtilString & - Text description.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
const CMIUtilString &
|
|
|
|
CMIDriver::GetDriverId(void) const
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
return GetId();
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: This function allows *this driver to call on another driver to perform work
|
|
|
|
// should this driver not be able to handle the client data input.
|
|
|
|
// SetDriverToFallThruTo() specifies the fall through to driver.
|
|
|
|
// Check the error message if the function returns a failure.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: vCmd - (R) Command instruction to interpret.
|
|
|
|
// vwErrMsg - (W) Error description on command failing.
|
|
|
|
// Return: MIstatus::success - Command succeeded.
|
|
|
|
// MIstatus::failure - Command failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::DoFallThruToAnotherDriver(const CMIUtilString &vCmd, CMIUtilString &vwErrMsg)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
bool bOk = MIstatus::success;
|
2014-05-16 18:51:01 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
CMIDriverBase *pOtherDriver = GetDriverToFallThruTo();
|
|
|
|
if (pOtherDriver == nullptr)
|
|
|
|
return bOk;
|
2014-05-16 18:51:01 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
return pOtherDriver->DoFallThruToAnotherDriver(vCmd, vwErrMsg);
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: *this driver provides a file stream to other drivers on which *this driver
|
|
|
|
// write's out to and they read as expected input. *this driver is passing
|
|
|
|
// through commands to the (child) pass through assigned driver.
|
|
|
|
// Type: Overrdidden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: FILE * - Pointer to stream.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
FILE *
|
|
|
|
CMIDriver::GetStdin(void) const
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
// Note this fn is called on CMIDriverMgr register driver so stream has to be
|
|
|
|
// available before *this driver has been initialized! Flaw?
|
2014-05-16 18:51:01 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
// This very likely to change later to a stream that the pass thru driver
|
|
|
|
// will read and we write to give it 'input'
|
|
|
|
return stdin;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: *this driver provides a file stream to other pass through assigned drivers
|
|
|
|
// so they know what to write to.
|
|
|
|
// Type: Overidden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: FILE * - Pointer to stream.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
FILE *
|
|
|
|
CMIDriver::GetStdout(void) const
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
// Note this fn is called on CMIDriverMgr register driver so stream has to be
|
|
|
|
// available before *this driver has been initialized! Flaw?
|
2014-05-16 18:51:01 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
// Do not want to pass through driver to write to stdout
|
|
|
|
return NULL;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: *this driver provides a error file stream to other pass through assigned drivers
|
|
|
|
// so they know what to write to.
|
|
|
|
// Type: Overidden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: FILE * - Pointer to stream.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
FILE *
|
|
|
|
CMIDriver::GetStderr(void) const
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
// Note this fn is called on CMIDriverMgr register driver so stream has to be
|
|
|
|
// available before *this driver has been initialized! Flaw?
|
2014-05-16 18:51:01 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
// This very likely to change later to a stream that the pass thru driver
|
|
|
|
// will write to and *this driver reads from to pass on the CMICmnLog object
|
|
|
|
return stderr;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Set a unique ID for *this driver. It cannot be empty.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: vId - (R) Text description.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::SetId(const CMIUtilString &vId)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
if (vId.empty())
|
|
|
|
{
|
|
|
|
SetErrorDescriptionn(MIRSRC(IDS_DRIVER_ERR_ID_INVALID), GetName().c_str(), vId.c_str());
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_strDriverId = vId;
|
|
|
|
return MIstatus::success;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Get the unique ID for *this driver.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: CMIUtilString & - Text description.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
const CMIUtilString &
|
|
|
|
CMIDriver::GetId(void) const
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
return m_strDriverId;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
2014-06-25 00:35:50 +08:00
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Interpret the text data and match against current commands to see if there
|
|
|
|
// is a match. If a match then the command is issued and actioned on. The
|
|
|
|
// text data if not understood by *this driver is past on to the Fall Thru
|
|
|
|
// driver.
|
|
|
|
// This function is used by the application's main thread.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: vTextLine - (R) Text data representing a possible command.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-06-25 00:35:50 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::InterpretCommand(const CMIUtilString &vTextLine)
|
2014-06-25 00:35:50 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
bool bCmdYesValid = false;
|
|
|
|
bool bOk = InterpretCommandThisDriver(vTextLine, bCmdYesValid);
|
|
|
|
if (bOk && !bCmdYesValid)
|
|
|
|
bOk = InterpretCommandFallThruDriver(vTextLine, bCmdYesValid);
|
2014-06-25 00:35:50 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
return bOk;
|
2014-06-25 00:35:50 +08:00
|
|
|
}
|
|
|
|
|
2014-05-16 18:51:01 +08:00
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Interpret the text data and match against current commands to see if there
|
|
|
|
// is a match. If a match then the command is issued and actioned on. If a
|
|
|
|
// command cannot be found to match then vwbCmdYesValid is set to false and
|
|
|
|
// nothing else is done here.
|
|
|
|
// This function is used by the application's main thread.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: vTextLine - (R) Text data representing a possible command.
|
|
|
|
// vwbCmdYesValid - (W) True = Command invalid, false = command acted on.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::InterpretCommandThisDriver(const CMIUtilString &vTextLine, bool &vwbCmdYesValid)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
vwbCmdYesValid = false;
|
|
|
|
|
|
|
|
bool bCmdNotInCmdFactor = false;
|
|
|
|
SMICmdData cmdData;
|
|
|
|
CMICmdMgr &rCmdMgr = CMICmdMgr::Instance();
|
|
|
|
if (!rCmdMgr.CmdInterpret(vTextLine, vwbCmdYesValid, bCmdNotInCmdFactor, cmdData))
|
|
|
|
return MIstatus::failure;
|
|
|
|
|
|
|
|
if (vwbCmdYesValid)
|
|
|
|
{
|
|
|
|
// For debugging only
|
|
|
|
// m_pLog->WriteLog( cmdData.strMiCmdAll.c_str() );
|
|
|
|
|
|
|
|
return ExecuteCommand(cmdData);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for escape character, may be cursor control characters
|
|
|
|
// This code is not necessary for application operation, just want to keep tabs on what
|
|
|
|
// is been given to the driver to try and intepret.
|
|
|
|
if (vTextLine.at(0) == 27)
|
|
|
|
{
|
|
|
|
CMIUtilString logInput(MIRSRC(IDS_STDIN_INPUT_CTRL_CHARS));
|
|
|
|
for (MIuint i = 0; i < vTextLine.length(); i++)
|
|
|
|
{
|
|
|
|
logInput += CMIUtilString::Format("%d ", vTextLine.at(i));
|
|
|
|
}
|
|
|
|
m_pLog->WriteLog(logInput);
|
|
|
|
return MIstatus::success;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write to the Log that a 'command' was not valid.
|
|
|
|
// Report back to the MI client via MI result record.
|
|
|
|
CMIUtilString strNotInCmdFactory;
|
|
|
|
if (bCmdNotInCmdFactor)
|
|
|
|
strNotInCmdFactory = CMIUtilString::Format(MIRSRC(IDS_DRIVER_CMD_NOT_IN_FACTORY), cmdData.strMiCmd.c_str());
|
|
|
|
const CMIUtilString strNot(CMIUtilString::Format("%s ", MIRSRC(IDS_WORD_NOT)));
|
|
|
|
const CMIUtilString msg(
|
|
|
|
CMIUtilString::Format(MIRSRC(IDS_DRIVER_CMD_RECEIVED), vTextLine.c_str(), strNot.c_str(), strNotInCmdFactory.c_str()));
|
|
|
|
const CMICmnMIValueConst vconst = CMICmnMIValueConst(msg);
|
|
|
|
const CMICmnMIValueResult valueResult("msg", vconst);
|
|
|
|
const CMICmnMIResultRecord miResultRecord(cmdData.strMiCmdToken, CMICmnMIResultRecord::eResultClass_Error, valueResult);
|
2015-03-03 23:14:32 +08:00
|
|
|
bool bOk = m_rStdOut.WriteMIResponse(miResultRecord.GetString());
|
|
|
|
if (bOk && m_rStdin.GetEnablePrompt())
|
|
|
|
bOk = m_rStdOut.WriteMIResponse(m_rStdin.GetPrompt());
|
2014-11-18 02:06:21 +08:00
|
|
|
|
|
|
|
// Proceed to wait for or execute next command
|
2015-03-03 23:14:32 +08:00
|
|
|
return bOk;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Having previously had the potential command validated and found valid now
|
|
|
|
// get the command executed.
|
|
|
|
// This function is used by the application's main thread.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: vCmdData - (RW) Command meta data.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::ExecuteCommand(const SMICmdData &vCmdData)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
CMICmdMgr &rCmdMgr = CMICmdMgr::Instance();
|
|
|
|
return rCmdMgr.CmdExecute(vCmdData);
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Set the MI Driver's exit application flag. The application checks this flag
|
|
|
|
// after every stdin line is read so the exit may not be instantaneous.
|
|
|
|
// If vbForceExit is false the MI Driver queries its state and determines if is
|
|
|
|
// should exit or continue operating depending on that running state.
|
|
|
|
// This is related to the running state of the MI driver.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: None.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
void
|
|
|
|
CMIDriver::SetExitApplicationFlag(const bool vbForceExit)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
if (vbForceExit)
|
|
|
|
{
|
|
|
|
CMIUtilThreadLock lock(m_threadMutex);
|
|
|
|
m_bExitApp = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// CODETAG_DEBUG_SESSION_RUNNING_PROG_RECEIVED_SIGINT_PAUSE_PROGRAM
|
|
|
|
// Did we receive a SIGINT from the client during a running debug program, if
|
|
|
|
// so then SIGINT is not to be taken as meaning kill the MI driver application
|
|
|
|
// but halt the inferior program being debugged instead
|
|
|
|
if (m_eCurrentDriverState == eDriverState_RunningDebugging)
|
|
|
|
{
|
2015-02-20 18:20:05 +08:00
|
|
|
InterpretCommand("-exec-interrupt");
|
2014-11-18 02:06:21 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_bExitApp = true;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
2014-06-25 00:35:50 +08:00
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Get the MI Driver's exit exit application flag.
|
|
|
|
// This is related to the running state of the MI driver.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: bool - True = MI Driver is shutting down, false = MI driver is running.
|
|
|
|
// Throws: None.
|
2014-06-25 00:35:50 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::GetExitApplicationFlag(void) const
|
2014-06-25 00:35:50 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
return m_bExitApp;
|
2014-06-25 00:35:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Get the current running state of the MI Driver.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: DriverState_e - The current running state of the application.
|
|
|
|
// Throws: None.
|
2014-06-25 00:35:50 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
CMIDriver::DriverState_e
|
|
|
|
CMIDriver::GetCurrentDriverState(void) const
|
2014-06-25 00:35:50 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
return m_eCurrentDriverState;
|
2014-06-25 00:35:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Set the current running state of the MI Driver to running and currently not in
|
|
|
|
// a debug session.
|
|
|
|
// Type: Method.
|
|
|
|
// Return: MIstatus::success - Functionality succeeded.
|
|
|
|
// MIstatus::failure - Functionality failed.
|
|
|
|
// Return: DriverState_e - The current running state of the application.
|
|
|
|
// Throws: None.
|
2014-06-25 00:35:50 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::SetDriverStateRunningNotDebugging(void)
|
2014-06-25 00:35:50 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
// CODETAG_DEBUG_SESSION_RUNNING_PROG_RECEIVED_SIGINT_PAUSE_PROGRAM
|
|
|
|
|
|
|
|
if (m_eCurrentDriverState == eDriverState_RunningNotDebugging)
|
|
|
|
return MIstatus::success;
|
|
|
|
|
|
|
|
// Driver cannot be in the following states to set eDriverState_RunningNotDebugging
|
|
|
|
switch (m_eCurrentDriverState)
|
|
|
|
{
|
|
|
|
case eDriverState_NotRunning:
|
|
|
|
case eDriverState_Initialising:
|
|
|
|
case eDriverState_ShuttingDown:
|
|
|
|
{
|
|
|
|
SetErrorDescription(MIRSRC(IDS_DRIVER_ERR_DRIVER_STATE_ERROR));
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
case eDriverState_RunningDebugging:
|
|
|
|
case eDriverState_RunningNotDebugging:
|
|
|
|
break;
|
|
|
|
case eDriverState_count:
|
|
|
|
SetErrorDescription(
|
|
|
|
CMIUtilString::Format(MIRSRC(IDS_CODE_ERR_INVALID_ENUMERATION_VALUE), "SetDriverStateRunningNotDebugging()"));
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Driver must be in this state to set eDriverState_RunningNotDebugging
|
|
|
|
if (m_eCurrentDriverState != eDriverState_RunningDebugging)
|
|
|
|
{
|
|
|
|
SetErrorDescription(MIRSRC(IDS_DRIVER_ERR_DRIVER_STATE_ERROR));
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_eCurrentDriverState = eDriverState_RunningNotDebugging;
|
|
|
|
|
|
|
|
return MIstatus::success;
|
2014-06-25 00:35:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Set the current running state of the MI Driver to running and currently not in
|
|
|
|
// a debug session. The driver's state must in the state running and in a
|
|
|
|
// debug session to set this new state.
|
|
|
|
// Type: Method.
|
|
|
|
// Return: MIstatus::success - Functionality succeeded.
|
|
|
|
// MIstatus::failure - Functionality failed.
|
|
|
|
// Return: DriverState_e - The current running state of the application.
|
|
|
|
// Throws: None.
|
2014-06-25 00:35:50 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::SetDriverStateRunningDebugging(void)
|
2014-06-25 00:35:50 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
// CODETAG_DEBUG_SESSION_RUNNING_PROG_RECEIVED_SIGINT_PAUSE_PROGRAM
|
|
|
|
|
|
|
|
if (m_eCurrentDriverState == eDriverState_RunningDebugging)
|
|
|
|
return MIstatus::success;
|
|
|
|
|
|
|
|
// Driver cannot be in the following states to set eDriverState_RunningDebugging
|
|
|
|
switch (m_eCurrentDriverState)
|
|
|
|
{
|
|
|
|
case eDriverState_NotRunning:
|
|
|
|
case eDriverState_Initialising:
|
|
|
|
case eDriverState_ShuttingDown:
|
|
|
|
{
|
|
|
|
SetErrorDescription(MIRSRC(IDS_DRIVER_ERR_DRIVER_STATE_ERROR));
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
case eDriverState_RunningDebugging:
|
|
|
|
case eDriverState_RunningNotDebugging:
|
|
|
|
break;
|
|
|
|
case eDriverState_count:
|
|
|
|
SetErrorDescription(CMIUtilString::Format(MIRSRC(IDS_CODE_ERR_INVALID_ENUMERATION_VALUE), "SetDriverStateRunningDebugging()"));
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Driver must be in this state to set eDriverState_RunningDebugging
|
|
|
|
if (m_eCurrentDriverState != eDriverState_RunningNotDebugging)
|
|
|
|
{
|
|
|
|
SetErrorDescription(MIRSRC(IDS_DRIVER_ERR_DRIVER_STATE_ERROR));
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_eCurrentDriverState = eDriverState_RunningDebugging;
|
|
|
|
|
|
|
|
return MIstatus::success;
|
2014-06-25 00:35:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Prepare the client IDE so it will start working/communicating with *this MI
|
|
|
|
// driver.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functionality succeeded.
|
|
|
|
// MIstatus::failure - Functionality failed.
|
|
|
|
// Throws: None.
|
2014-06-25 00:35:50 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::InitClientIDEToMIDriver(void) const
|
2014-06-25 00:35:50 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
// Put other IDE init functions here
|
|
|
|
return InitClientIDEEclipse();
|
2014-06-25 00:35:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
|
|
|
// Details: The IDE Eclipse when debugging locally expects "(gdb)\n" character
|
2014-11-18 02:06:21 +08:00
|
|
|
// sequence otherwise it refuses to communicate and times out. This should be
|
|
|
|
// sent to Eclipse before anything else.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functionality succeeded.
|
|
|
|
// MIstatus::failure - Functionality failed.
|
|
|
|
// Throws: None.
|
2014-06-25 00:35:50 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::InitClientIDEEclipse(void) const
|
2014-06-25 00:35:50 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
std::cout << "(gdb)" << std::endl;
|
2014-06-25 00:35:50 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
return MIstatus::success;
|
2014-06-27 10:42:12 +08:00
|
|
|
}
|
2014-08-09 00:47:42 +08:00
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Ask *this driver whether it found an executable in the MI Driver's list of
|
|
|
|
// arguments which to open and debug. If so instigate commands to set up a debug
|
|
|
|
// session for that executable.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: bool - True = True = Yes executable given as one of the parameters to the MI
|
|
|
|
// Driver.
|
|
|
|
// False = not found.
|
|
|
|
// Throws: None.
|
2014-08-09 00:47:42 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::HaveExecutableFileNamePathOnCmdLine(void) const
|
2014-08-09 00:47:42 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
return m_bHaveExecutableFileNamePathOnCmdLine;
|
2014-08-09 00:47:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
|
|
|
// Details: Retrieve from *this driver executable file name path to start a debug session
|
2014-11-18 02:06:21 +08:00
|
|
|
// with (if present see HaveExecutableFileNamePathOnCmdLine()).
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: CMIUtilString & - Executeable file name path or empty string.
|
|
|
|
// Throws: None.
|
2014-08-09 00:47:42 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
const CMIUtilString &
|
|
|
|
CMIDriver::GetExecutableFileNamePathOnCmdLine(void) const
|
2014-08-09 00:47:42 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
return m_strCmdLineArgExecuteableFileNamePath;
|
2014-08-09 00:47:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
|
|
|
// Details: Execute commands (by injecting them into the stdin line queue container) and
|
2014-11-18 02:06:21 +08:00
|
|
|
// other code to set up the MI Driver such that is can take the executable
|
|
|
|
// argument passed on the command and create a debug session for it.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functionality succeeded.
|
|
|
|
// MIstatus::failure - Functionality failed.
|
|
|
|
// Throws: None.
|
2014-08-09 00:47:42 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
2015-03-02 18:58:02 +08:00
|
|
|
CMIDriver::LocalDebugSessionStartupExecuteCommands(void)
|
2014-08-09 00:47:42 +08:00
|
|
|
{
|
Fix handling of double quotes (MI)
Summary:
* Clean CMICmdArgValString::Validate: now it's based on CMIUtilString::SplitConsiderQuotes method:
A bit of introduction:
# Command line is wrapped into CMICmdArgContext.
# CMICmdArgSet is a set of arguments to be parsed. This class contains CMICmdArgContext as a private member.
# MI command is class which is inhereted from CMICmdBase. It contains CMICmdArgSet as a private member.
When command is executed CMICmdBase::ParseArgs() is called. This method adds args for parsing using CMICmdArgSet::Add(). Then CMICmdBase::ParseValidateCmdOptions() is called, which calls CMICmdArgSet::Validate(). Then it gets a number of arguments (using SplitConsiderQuotes().array_length) and for each arguments registered in ParseArgs() tries to validate it using CMICmdArgValBase::Validate(). Every user commands parses this string again (first time it was made in SplitConsiderQuotes) and in case of CMICmdArgValString it was made incorrectly. It searches the first and last quotes (but it should be first and next after first). Besides, it was splitted into 4 cases.
I'm just using SplitConsiderQuotes directly, and I don't split them by hand again.
Actually, I think we should do so in every CMICmdArgVal_XXX::Validate() method.
* Enable MiInterpreterExecTestCase.test_lldbmi_target_create test
* Fix MiExecTestCase.test_lldbmi_exec_arguments_set test
All tests pass on OS X.
Reviewers: abidh, emaste, zturner, clayborg
Reviewed By: clayborg
Subscribers: lldb-commits, zturner, emaste, clayborg, abidh
Differential Revision: http://reviews.llvm.org/D7860
llvm-svn: 230654
2015-02-27 02:21:22 +08:00
|
|
|
const CMIUtilString strCmd(CMIUtilString::Format("-file-exec-and-symbols \"%s\"", m_strCmdLineArgExecuteableFileNamePath.AddSlashes().c_str()));
|
2015-03-03 23:14:32 +08:00
|
|
|
bool bOk = CMICmnStreamStdout::TextToStdout(strCmd);
|
|
|
|
bOk = bOk && InterpretCommand(strCmd);
|
|
|
|
if (bOk && m_rStdin.GetEnablePrompt())
|
|
|
|
bOk = m_rStdOut.WriteMIResponse(m_rStdin.GetPrompt());
|
|
|
|
return bOk;
|
2014-08-09 00:47:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
|
|
|
// Details: Set the MI Driver into "its debugging an executable passed as an argument"
|
2014-11-18 02:06:21 +08:00
|
|
|
// mode as against running via a client like Eclipse.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: None.
|
|
|
|
// Throws: None.
|
2014-08-09 00:47:42 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
void
|
|
|
|
CMIDriver::SetDriverDebuggingArgExecutable(void)
|
2014-08-09 00:47:42 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
m_bDriverDebuggingArgExecutable = true;
|
2014-08-09 00:47:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Retrieve the MI Driver state indicating if it is operating in "its debugging
|
|
|
|
// an executable passed as an argument" mode as against running via a client
|
|
|
|
// like Eclipse.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: None.
|
|
|
|
// Throws: None.
|
2014-08-09 00:47:42 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMIDriver::IsDriverDebuggingArgExecutable(void) const
|
2014-08-09 00:47:42 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
return m_bDriverDebuggingArgExecutable;
|
2014-08-09 00:47:42 +08:00
|
|
|
}
|
2015-02-20 18:20:05 +08:00
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
|
|
|
// Details: Gets called when lldb-mi gets a signal. Stops the process if it was SIGINT.
|
|
|
|
//
|
|
|
|
// Type: Method.
|
|
|
|
// Args: signal that was delivered
|
|
|
|
// Return: None.
|
|
|
|
// Throws: None.
|
|
|
|
//--
|
|
|
|
void
|
|
|
|
CMIDriver::DeliverSignal(int signal)
|
|
|
|
{
|
|
|
|
if (signal == SIGINT && (m_eCurrentDriverState == eDriverState_RunningDebugging))
|
|
|
|
InterpretCommand("-exec-interrupt");
|
|
|
|
}
|