Menu

[r7]: / Plugin / debuggermanager.cpp  Maximize  Restore  History

Download this file

251 lines (220 with data), 7.3 kB

  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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// 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"
//---------------------------------------------------------
DebuggersData::DebuggersData()
{
}
DebuggersData::~DebuggersData()
{
}
void DebuggersData::Serialize(Archive &arch)
{
size_t count = m_debuggers.size();
arch.Write(wxT("debuggersCount"), count);
for(size_t i=0; i<count; i++){
DebuggerInformation info = m_debuggers.at(i);
arch.Write(wxT("name"), info.name);
arch.Write(wxT("path"), info.path);
arch.Write(wxT("enableDebugLog"), info.enableDebugLog);
arch.Write(wxT("enablePendingBreakpoints"), info.enablePendingBreakpoints);
arch.Write(wxT("breakAtWinMain"), info.breakAtWinMain);
arch.Write(wxT("resolveThis"), info.resolveThis);
arch.Write(wxT("showTerminal"), info.showTerminal);
arch.Write(wxT("useRelativePaths"), info.useRelativeFilePaths);
}
}
void DebuggersData::DeSerialize(Archive &arch)
{
size_t count;
arch.Read(wxT("debuggersCount"), count);
for(size_t i=0; i<count; i++){
DebuggerInformation info;
arch.Read(wxT("name"), info.name);
arch.Read(wxT("path"), info.path);
arch.Read(wxT("enableDebugLog"), info.enableDebugLog);
arch.Read(wxT("enablePendingBreakpoints"), info.enablePendingBreakpoints);
arch.Read(wxT("breakAtWinMain"), info.breakAtWinMain);
arch.Read(wxT("resolveThis"), info.resolveThis);
arch.Read(wxT("showTerminal"), info.showTerminal);
arch.Read(wxT("useRelativePaths"), info.useRelativeFilePaths);
m_debuggers.push_back(info);
}
}
bool DebuggersData::GetDebuggerInformation(const wxString &name, DebuggerInformation &info)
{
for(size_t i=0; i<m_debuggers.size(); i++){
if(m_debuggers.at(i).name == name){
info = m_debuggers.at(i);
return true;
}
}
return false;
}
void DebuggersData::SetDebuggerInformation(const wxString &name, const DebuggerInformation &info)
{
//remove old entry
for(size_t i=0; i<m_debuggers.size(); i++){
if(m_debuggers.at(i).name == name){
m_debuggers.erase(m_debuggers.begin()+i);
break;
}
}
m_debuggers.push_back(info);
}
//---------------------------------------------------------
DebuggerMgr *DebuggerMgr::ms_instance = NULL;
DebuggerMgr::DebuggerMgr()
{
//load debugger data from configuration file
DebuggerConfigTool::Get()->ReadObject(wxT("DebuggersData"), &m_debuggersData);
}
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();
DebuggerConfigTool::Get()->WriteObject(wxT("DebuggersData"), &m_debuggersData);
}
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");
#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(!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);
}
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);
}
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)
{
m_debuggersData.SetDebuggerInformation(name, info);
}
bool DebuggerMgr::GetDebuggerInformation(const wxString &name, DebuggerInformation &info)
{
return m_debuggersData.GetDebuggerInformation(name, info);
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.