2009-06-16 04:25:36 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef TEAM_DEBUGGER_H
|
|
|
|
#define TEAM_DEBUGGER_H
|
|
|
|
|
2009-07-22 23:20:06 +04:00
|
|
|
|
2009-06-16 04:25:36 +04:00
|
|
|
#include <debugger.h>
|
2009-06-17 01:47:49 +04:00
|
|
|
#include <Looper.h>
|
|
|
|
|
2009-06-17 17:40:10 +04:00
|
|
|
#include <debug_support.h>
|
2009-06-17 01:47:49 +04:00
|
|
|
|
2009-06-18 21:57:37 +04:00
|
|
|
#include "DebugEvent.h"
|
2009-06-20 02:13:32 +04:00
|
|
|
#include "Team.h"
|
2009-06-17 01:47:49 +04:00
|
|
|
#include "TeamWindow.h"
|
2009-06-24 05:46:38 +04:00
|
|
|
#include "ThreadHandler.h"
|
2009-06-19 19:09:56 +04:00
|
|
|
#include "Worker.h"
|
2009-06-16 04:25:36 +04:00
|
|
|
|
|
|
|
|
2009-06-18 21:57:37 +04:00
|
|
|
class DebuggerInterface;
|
2009-07-02 02:09:33 +04:00
|
|
|
class FileManager;
|
2009-07-24 06:35:30 +04:00
|
|
|
class SettingsManager;
|
2009-06-28 01:09:21 +04:00
|
|
|
class TeamDebugInfo;
|
2009-06-16 04:25:36 +04:00
|
|
|
|
|
|
|
|
2009-06-24 04:16:22 +04:00
|
|
|
class TeamDebugger : public BLooper, private TeamWindow::Listener,
|
2009-06-20 02:13:32 +04:00
|
|
|
private JobListener, private Team::Listener {
|
2009-06-16 04:25:36 +04:00
|
|
|
public:
|
2009-06-24 04:16:22 +04:00
|
|
|
class Listener;
|
|
|
|
|
|
|
|
public:
|
2009-07-24 06:35:30 +04:00
|
|
|
TeamDebugger(Listener* listener,
|
|
|
|
SettingsManager* settingsManager);
|
2009-06-16 04:25:36 +04:00
|
|
|
~TeamDebugger();
|
|
|
|
|
2009-06-17 01:47:49 +04:00
|
|
|
status_t Init(team_id teamID, thread_id threadID,
|
|
|
|
bool stopInMain);
|
2009-06-16 04:25:36 +04:00
|
|
|
|
2009-06-17 01:47:49 +04:00
|
|
|
team_id TeamID() const { return fTeamID; }
|
|
|
|
|
|
|
|
virtual void MessageReceived(BMessage* message);
|
2009-06-16 04:25:36 +04:00
|
|
|
|
2009-06-24 04:16:22 +04:00
|
|
|
private:
|
2009-06-19 01:45:14 +04:00
|
|
|
// TeamWindow::Listener
|
2009-07-19 03:52:16 +04:00
|
|
|
virtual void FunctionSourceCodeRequested(
|
2009-07-08 00:47:39 +04:00
|
|
|
FunctionInstance* function);
|
2009-07-19 03:52:16 +04:00
|
|
|
virtual void ImageDebugInfoRequested(Image* image);
|
|
|
|
virtual void StackFrameValueRequested(::Thread* thread,
|
|
|
|
StackFrame* stackFrame, Variable* variable,
|
|
|
|
TypeComponentPath* path);
|
|
|
|
virtual void ThreadActionRequested(thread_id threadID,
|
|
|
|
uint32 action);
|
2009-06-23 01:51:32 +04:00
|
|
|
virtual void SetBreakpointRequested(target_addr_t address,
|
|
|
|
bool enabled);
|
|
|
|
virtual void ClearBreakpointRequested(target_addr_t address);
|
2009-07-19 03:52:16 +04:00
|
|
|
virtual bool TeamWindowQuitRequested();
|
2009-06-19 01:45:14 +04:00
|
|
|
|
2009-06-19 19:09:56 +04:00
|
|
|
// JobListener
|
|
|
|
virtual void JobDone(Job* job);
|
|
|
|
virtual void JobFailed(Job* job);
|
|
|
|
virtual void JobAborted(Job* job);
|
|
|
|
|
2009-06-20 02:13:32 +04:00
|
|
|
// Team::Listener
|
|
|
|
virtual void ThreadStateChanged(
|
|
|
|
const ::Team::ThreadEvent& event);
|
|
|
|
virtual void ThreadCpuStateChanged(
|
|
|
|
const ::Team::ThreadEvent& event);
|
|
|
|
virtual void ThreadStackTraceChanged(
|
|
|
|
const ::Team::ThreadEvent& event);
|
2009-07-24 06:35:30 +04:00
|
|
|
virtual void ImageDebugInfoChanged(
|
|
|
|
const ::Team::ImageEvent& event);
|
2009-06-20 02:13:32 +04:00
|
|
|
|
2009-07-02 02:09:33 +04:00
|
|
|
private:
|
|
|
|
struct ImageHandler;
|
|
|
|
struct ImageHandlerHashDefinition;
|
2009-07-27 04:39:12 +04:00
|
|
|
typedef BOpenHashTable<ImageHandlerHashDefinition> ImageHandlerTable;
|
2009-07-02 02:09:33 +04:00
|
|
|
|
2009-06-16 04:25:36 +04:00
|
|
|
private:
|
|
|
|
static status_t _DebugEventListenerEntry(void* data);
|
|
|
|
status_t _DebugEventListener();
|
|
|
|
|
2009-06-18 21:57:37 +04:00
|
|
|
void _HandleDebuggerMessage(DebugEvent* event);
|
2009-06-16 04:25:36 +04:00
|
|
|
|
2009-06-17 17:40:10 +04:00
|
|
|
bool _HandleThreadCreated(
|
2009-06-18 21:57:37 +04:00
|
|
|
ThreadCreatedEvent* event);
|
2009-06-17 17:40:10 +04:00
|
|
|
bool _HandleThreadDeleted(
|
2009-06-18 21:57:37 +04:00
|
|
|
ThreadDeletedEvent* event);
|
2009-06-17 17:40:10 +04:00
|
|
|
bool _HandleImageCreated(
|
2009-06-18 21:57:37 +04:00
|
|
|
ImageCreatedEvent* event);
|
2009-06-17 17:40:10 +04:00
|
|
|
bool _HandleImageDeleted(
|
2009-06-18 21:57:37 +04:00
|
|
|
ImageDeletedEvent* event);
|
2009-06-17 17:40:10 +04:00
|
|
|
|
2009-07-24 06:35:30 +04:00
|
|
|
void _HandleImageDebugInfoChanged(image_id imageID);
|
2009-07-02 02:09:33 +04:00
|
|
|
void _HandleImageFileChanged(image_id imageID);
|
|
|
|
|
2009-06-23 01:51:32 +04:00
|
|
|
void _HandleSetUserBreakpoint(target_addr_t address,
|
|
|
|
bool enabled);
|
|
|
|
void _HandleClearUserBreakpoint(
|
|
|
|
target_addr_t address);
|
2009-06-19 01:45:14 +04:00
|
|
|
|
2009-06-24 05:46:38 +04:00
|
|
|
ThreadHandler* _GetThreadHandler(thread_id threadID);
|
2009-06-20 02:13:32 +04:00
|
|
|
|
2009-07-03 18:23:19 +04:00
|
|
|
status_t _AddImage(const ImageInfo& imageInfo,
|
|
|
|
Image** _image = NULL);
|
2009-07-02 02:09:33 +04:00
|
|
|
|
2009-07-24 06:35:30 +04:00
|
|
|
void _LoadSettings();
|
|
|
|
void _SaveSettings();
|
|
|
|
|
2009-06-23 01:51:32 +04:00
|
|
|
void _NotifyUser(const char* title,
|
|
|
|
const char* text,...);
|
|
|
|
|
2009-06-16 04:25:36 +04:00
|
|
|
private:
|
2009-06-24 04:16:22 +04:00
|
|
|
Listener* fListener;
|
2009-07-24 06:35:30 +04:00
|
|
|
SettingsManager* fSettingsManager;
|
2009-06-17 01:47:49 +04:00
|
|
|
::Team* fTeam;
|
2009-06-16 04:25:36 +04:00
|
|
|
team_id fTeamID;
|
2009-06-24 05:46:38 +04:00
|
|
|
ThreadHandlerTable fThreadHandlers;
|
|
|
|
// protected by the team lock
|
2009-07-02 02:09:33 +04:00
|
|
|
ImageHandlerTable* fImageHandlers;
|
2009-06-18 21:57:37 +04:00
|
|
|
DebuggerInterface* fDebuggerInterface;
|
2009-06-28 01:09:21 +04:00
|
|
|
TeamDebugInfo* fTeamDebugInfo;
|
2009-07-02 02:09:33 +04:00
|
|
|
FileManager* fFileManager;
|
2009-06-19 19:09:56 +04:00
|
|
|
Worker* fWorker;
|
2009-06-26 03:51:09 +04:00
|
|
|
BreakpointManager* fBreakpointManager;
|
2009-06-16 04:25:36 +04:00
|
|
|
thread_id fDebugEventListener;
|
2009-06-17 01:47:49 +04:00
|
|
|
TeamWindow* fTeamWindow;
|
2009-06-16 04:25:36 +04:00
|
|
|
volatile bool fTerminating;
|
2009-06-23 17:09:50 +04:00
|
|
|
bool fKillTeamOnQuit;
|
2009-06-16 04:25:36 +04:00
|
|
|
};
|
|
|
|
|
2009-06-24 04:16:22 +04:00
|
|
|
|
|
|
|
class TeamDebugger::Listener {
|
|
|
|
public:
|
|
|
|
virtual ~Listener();
|
|
|
|
|
|
|
|
virtual void TeamDebuggerQuit(TeamDebugger* debugger) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-06-16 04:25:36 +04:00
|
|
|
#endif // TEAM_DEBUGGER_H
|