1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : debuggermanager.cpp
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#include "debuggermanager.h"
#include "wx/filename.h"
#include <wx/dir.h>
#include <wx/log.h>
#include "editor_config.h"
#include <wx/msgdlg.h>
#include "debuggerconfigtool.h"
#include "cl_defs.h"
#include "codelite_exports.h"
#include "codelite_events.h"
#include "cl_command_event.h"
#include "event_notifier.h"
//---------------------------------------------------------
static DebuggerMgr *ms_instance = NULL;
const wxEventType wxEVT_DEBUGGER_UPDATE_VIEWS = ::wxNewEventType();
const wxEventType wxEVT_DEBUGGER_QUERY_LOCALS = ::wxNewEventType();
const wxEventType wxEVT_DEBUGGER_LIST_CHILDREN = ::wxNewEventType();
const wxEventType wxEVT_DEBUGGER_VAROBJ_EVALUATED = ::wxNewEventType();
const wxEventType wxEVT_DEBUGGER_VAROBJECT_CREATED = ::wxNewEventType();
const wxEventType wxEVT_DEBUGGER_DISASSEBLE_OUTPUT = ::wxNewEventType();
const wxEventType wxEVT_DEBUGGER_DISASSEBLE_CURLINE = ::wxNewEventType();
const wxEventType wxEVT_DEBUGGER_QUERY_FILELINE = ::wxNewEventType();
const wxEventType wxEVT_DEBUGGER_TYPE_RESOLVE_ERROR = ::wxNewEventType();
const wxEventType wxEVT_DEBUGGER_LIST_REGISTERS = ::wxNewEventType();
const wxEventType wxEVT_DEBUGGER_LIST_FRAMES = ::wxNewEventType();
const wxEventType wxEVT_DEBUGGER_FRAME_SELECTED = ::wxNewEventType();
DebuggerMgr::DebuggerMgr()
{
}
DebuggerMgr::~DebuggerMgr()
{
std::vector<clDynamicLibrary*>::iterator iter = m_dl.begin();
for(; iter != m_dl.end(); iter++) {
(*iter)->Detach();
delete (*iter);
}
m_dl.clear();
m_debuggers.clear();
}
DebuggerMgr& DebuggerMgr::Get()
{
if(!ms_instance) {
ms_instance = new DebuggerMgr();
}
return *ms_instance;
}
void DebuggerMgr::Free()
{
delete ms_instance;
ms_instance = NULL;
}
bool DebuggerMgr::LoadDebuggers()
{
wxString ext;
#if defined (__WXMSW__)
ext = wxT("dll");
#elif defined(__WXMAC__)
ext = wxT("dylib");
#else
ext = wxT("so");
#endif
wxString fileSpec(wxT("*.")+ext);
//get list of dlls
wxArrayString files;
#ifdef __WXGTK__
wxString debuggersPath(PLUGINS_DIR, wxConvUTF8);
debuggersPath += wxT("/debuggers");
#else
wxString debuggersPath(m_baseDir + wxT("/debuggers"));
#endif
wxDir::GetAllFiles(debuggersPath, &files, fileSpec, wxDIR_FILES);
for(size_t i=0; i<files.GetCount(); i++) {
clDynamicLibrary *dl = new clDynamicLibrary();
wxString fileName(files.Item(i));
#if defined(__WXMSW__) && !defined(NDEBUG)
// Under MSW loading a release plugin while in debug mode will cause a crash
if ( !fileName.EndsWith("-dbg.dll") ) {
continue;
}
#elif defined(__WXMSW__)
// filter debug plugins
if ( fileName.EndsWith("-dbg.dll") ) {
continue;
}
#endif
if(!dl->Load(fileName)) {
wxLogMessage(wxT("Failed to load debugger's dll: ") + fileName);
if (!dl->GetError().IsEmpty()) {
wxLogMessage(dl->GetError());
}
delete dl;
continue;
}
bool success(false);
GET_DBG_INFO_FUNC pfn = (GET_DBG_INFO_FUNC)dl->GetSymbol(wxT("GetDebuggerInfo"), &success);
if(!success) {
wxLogMessage(wxT("Failed to find GetDebuggerInfo() in dll: ") + fileName);
if (!dl->GetError().IsEmpty()) {
wxLogMessage(dl->GetError());
}
//dl->Unload();
delete dl;
continue;
}
DebuggerInfo info = pfn();
//Call the init method to create an instance of the debugger
success = false;
GET_DBG_CREATE_FUNC pfnInitDbg = (GET_DBG_CREATE_FUNC)dl->GetSymbol(info.initFuncName, &success);
if(!success) {
wxLogMessage(wxT("Failed to find init function in dll: ") + fileName);
if (!dl->GetError().IsEmpty()) {
wxLogMessage(dl->GetError());
}
dl->Detach();
delete dl;
continue;
}
wxLogMessage(wxT("Loaded debugger: ") + info.name + wxT(", Version: ") + info.version);
IDebugger *dbg = pfnInitDbg();
//set the environment
dbg->SetEnvironment(m_env);
m_debuggers[info.name] = dbg;
//keep the dynamic load library
m_dl.push_back(dl);
}
// Load all debuggers in the form of plugin (i.e. they dont implement the IDebugger interface)
// and append them to a special list
clDebugEvent queryPlugins(wxEVT_DBG_IS_PLUGIN_DEBUGGER);
EventNotifier::Get()->ProcessEvent( queryPlugins );
m_pluginsDebuggers.swap( queryPlugins.GetStrings() );
return true;
}
wxArrayString DebuggerMgr::GetAvailableDebuggers()
{
wxArrayString dbgs;
std::map<wxString, IDebugger*>::iterator iter = m_debuggers.begin();
for(; iter != m_debuggers.end(); iter++) {
dbgs.Add(iter->first);
}
// append all the plugins that were registered themself as debugger
dbgs.insert(dbgs.end(), m_pluginsDebuggers.begin(), m_pluginsDebuggers.end());
return dbgs;
}
IDebugger* DebuggerMgr::GetActiveDebugger()
{
if(m_activeDebuggerName.IsEmpty()) {
//no active debugger is set, use the first one
std::map<wxString, IDebugger*>::iterator iter = m_debuggers.begin();
if(iter != m_debuggers.end()) {
SetActiveDebugger( iter->first );
return iter->second;
}
return NULL;
}
std::map<wxString, IDebugger*>::iterator iter = m_debuggers.find(m_activeDebuggerName);
if(iter != m_debuggers.end()) {
return iter->second;
}
return NULL;
}
void DebuggerMgr::SetActiveDebugger(const wxString &name)
{
m_activeDebuggerName = name;
}
void DebuggerMgr::SetDebuggerInformation(const wxString &name, const DebuggerInformation &info)
{
DebuggerConfigTool::Get()->WriteObject(name, (SerializedObject*)&info);
}
bool DebuggerMgr::GetDebuggerInformation(const wxString &name, DebuggerInformation &info)
{
return DebuggerConfigTool::Get()->ReadObject(name, &info);
}
|