2009-06-16 00:25:36 +00: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 19:20:06 +00:00
|
|
|
|
2009-06-16 00:25:36 +00:00
|
|
|
#include <debugger.h>
|
2009-06-16 21:47:49 +00:00
|
|
|
#include <Looper.h>
|
|
|
|
|
2009-06-17 13:40:10 +00:00
|
|
|
#include <debug_support.h>
|
2009-06-16 21:47:49 +00:00
|
|
|
|
2009-06-18 17:57:37 +00:00
|
|
|
#include "DebugEvent.h"
|
2009-06-19 22:13:32 +00:00
|
|
|
#include "Team.h"
|
2011-11-02 19:04:24 +00:00
|
|
|
#include "TeamSettings.h"
|
2009-06-24 01:46:38 +00:00
|
|
|
#include "ThreadHandler.h"
|
2009-10-15 09:47:24 +00:00
|
|
|
#include "UserInterface.h"
|
2009-06-19 15:09:56 +00:00
|
|
|
#include "Worker.h"
|
2009-06-16 00:25:36 +00:00
|
|
|
|
|
|
|
|
2009-06-18 17:57:37 +00:00
|
|
|
class DebuggerInterface;
|
2012-11-18 13:08:38 -05:00
|
|
|
class DebugReportGenerator;
|
2009-07-01 22:09:33 +00:00
|
|
|
class FileManager;
|
2009-07-24 02:35:30 +00:00
|
|
|
class SettingsManager;
|
2009-06-27 21:09:21 +00:00
|
|
|
class TeamDebugInfo;
|
2011-06-10 01:58:39 +00:00
|
|
|
class TeamMemoryBlockManager;
|
2012-11-06 11:45:26 +01:00
|
|
|
class WatchpointManager;
|
2009-06-16 00:25:36 +00:00
|
|
|
|
|
|
|
|
2009-10-15 09:47:24 +00:00
|
|
|
class TeamDebugger : public BLooper, private UserInterfaceListener,
|
2009-06-19 22:13:32 +00:00
|
|
|
private JobListener, private Team::Listener {
|
2009-06-16 00:25:36 +00:00
|
|
|
public:
|
2009-06-24 00:16:22 +00:00
|
|
|
class Listener;
|
|
|
|
|
|
|
|
public:
|
2009-07-24 02:35:30 +00:00
|
|
|
TeamDebugger(Listener* listener,
|
2009-10-15 09:47:24 +00:00
|
|
|
UserInterface* userInterface,
|
2009-07-24 02:35:30 +00:00
|
|
|
SettingsManager* settingsManager);
|
2009-06-16 00:25:36 +00:00
|
|
|
~TeamDebugger();
|
|
|
|
|
2009-06-16 21:47:49 +00:00
|
|
|
status_t Init(team_id teamID, thread_id threadID,
|
|
|
|
bool stopInMain);
|
2009-06-16 00:25:36 +00:00
|
|
|
|
2010-09-21 15:07:48 +00:00
|
|
|
void Activate();
|
|
|
|
|
2009-06-16 21:47:49 +00:00
|
|
|
team_id TeamID() const { return fTeamID; }
|
|
|
|
|
|
|
|
virtual void MessageReceived(BMessage* message);
|
2009-06-16 00:25:36 +00:00
|
|
|
|
2009-06-24 00:16:22 +00:00
|
|
|
private:
|
2009-10-15 09:47:24 +00:00
|
|
|
// UserInterfaceListener
|
2009-07-18 23:52:16 +00:00
|
|
|
virtual void FunctionSourceCodeRequested(
|
2009-07-07 20:47:39 +00:00
|
|
|
FunctionInstance* function);
|
2010-11-03 21:52:39 +00:00
|
|
|
virtual void SourceEntryLocateRequested(
|
|
|
|
const char* sourcePath,
|
|
|
|
const char* locatedPath);
|
2009-07-18 23:52:16 +00:00
|
|
|
virtual void ImageDebugInfoRequested(Image* image);
|
* EnumerationValue -> EnumeratorValue
* Since some types don't have names (e.g. pointer types or anonymous structs or
unions), each type does now also have a unique ID. The global type cache
registers types by ID and by name (if they have one). This fixes clashes of
types with empty names.
* Completely refactored the code dealing with variable values. Formerly we had
Variable and TypeComponentPath to navigate to a component, mapped to a
BVariant representing the value. Now we have:
* Interface Value with various subclasses (BoolValue, IntegerValue, etc.) to
represent a value, with the flexibility for more esoteric values.
* A tree of ValueNode+ValueNodeChild objects to represent the components of a
variable. On top of each ValueNodeChild sits a ValueNode representing the
value of the component, potentially having ValueNodeChild children. This
should allow casting a component value, simply by replacing its ValueNode.
* Interface ValueHandler and various implementations for the different value
types. It is basically a factory for classes allowing to format/display a
value.
* ValueHandlerRoster -- a registry for ValueHandlers, finding the best one
for a given value.
* Interface TypeHandler and various implementions for the different type
kinds (primitive, compound, address, etc.). It is basically a factory for
ValueNodes for that type.
* TypeHandlerRoster -- a registry for TypeHandlers, finding the best one
for a given type.
That's still a bit work in progress. It introduces at least one regression:
The VariablesView doesn't save/restore its state anymore. Will take a while
until that is added back.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33907 a95241bf-73f2-0310-859d-f6bbb57e9c96
2009-11-05 18:15:21 +00:00
|
|
|
virtual void ValueNodeValueRequested(CpuState* cpuState,
|
|
|
|
ValueNodeContainer* container,
|
|
|
|
ValueNode* valueNode);
|
2009-07-18 23:52:16 +00:00
|
|
|
virtual void ThreadActionRequested(thread_id threadID,
|
|
|
|
uint32 action);
|
2009-06-22 21:51:32 +00:00
|
|
|
virtual void SetBreakpointRequested(target_addr_t address,
|
|
|
|
bool enabled);
|
2009-10-14 05:03:00 +00:00
|
|
|
virtual void SetBreakpointEnabledRequested(
|
|
|
|
UserBreakpoint* breakpoint,
|
|
|
|
bool enabled);
|
2009-06-22 21:51:32 +00:00
|
|
|
virtual void ClearBreakpointRequested(target_addr_t address);
|
2009-10-14 05:03:00 +00:00
|
|
|
virtual void ClearBreakpointRequested(
|
|
|
|
UserBreakpoint* breakpoint);
|
2012-11-06 11:45:26 +01:00
|
|
|
virtual void SetWatchpointRequested(target_addr_t address,
|
|
|
|
uint32 type, int32 length, bool enabled);
|
|
|
|
virtual void SetWatchpointEnabledRequested(
|
|
|
|
Watchpoint *watchpoint, bool enabled);
|
|
|
|
virtual void ClearWatchpointRequested(target_addr_t address);
|
|
|
|
virtual void ClearWatchpointRequested(
|
|
|
|
Watchpoint* breakpoint);
|
|
|
|
|
2011-06-10 01:58:39 +00:00
|
|
|
virtual void InspectRequested(target_addr_t address,
|
|
|
|
TeamMemoryBlock::Listener* listener);
|
2012-11-18 13:08:38 -05:00
|
|
|
|
|
|
|
virtual void DebugReportRequested(entry_ref* targetPath);
|
|
|
|
|
2012-07-27 23:04:16 +02:00
|
|
|
virtual bool UserInterfaceQuitRequested(
|
|
|
|
QuitOption quitOption);
|
2009-06-18 21:45:14 +00:00
|
|
|
|
2009-06-19 15:09:56 +00:00
|
|
|
// JobListener
|
|
|
|
virtual void JobDone(Job* job);
|
|
|
|
virtual void JobFailed(Job* job);
|
|
|
|
virtual void JobAborted(Job* job);
|
|
|
|
|
2009-06-19 22:13:32 +00: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 02:35:30 +00:00
|
|
|
virtual void ImageDebugInfoChanged(
|
|
|
|
const ::Team::ImageEvent& event);
|
2009-06-19 22:13:32 +00:00
|
|
|
|
2009-07-01 22:09:33 +00:00
|
|
|
private:
|
|
|
|
struct ImageHandler;
|
|
|
|
struct ImageHandlerHashDefinition;
|
2012-11-28 19:11:50 -05:00
|
|
|
struct ImageInfoPendingThread;
|
|
|
|
struct ImageInfoPendingThreadHashDefinition;
|
|
|
|
|
2009-07-27 00:39:12 +00:00
|
|
|
typedef BOpenHashTable<ImageHandlerHashDefinition> ImageHandlerTable;
|
2012-11-28 19:11:50 -05:00
|
|
|
typedef BOpenHashTable<ImageInfoPendingThreadHashDefinition>
|
|
|
|
ImageInfoPendingThreadTable;
|
2009-07-01 22:09:33 +00:00
|
|
|
|
2009-06-16 00:25:36 +00:00
|
|
|
private:
|
|
|
|
static status_t _DebugEventListenerEntry(void* data);
|
|
|
|
status_t _DebugEventListener();
|
|
|
|
|
2009-06-18 17:57:37 +00:00
|
|
|
void _HandleDebuggerMessage(DebugEvent* event);
|
2009-06-16 00:25:36 +00:00
|
|
|
|
2013-04-23 23:05:36 -04:00
|
|
|
bool _HandleTeamDeleted(
|
|
|
|
TeamDeletedEvent* event);
|
2009-06-17 13:40:10 +00:00
|
|
|
bool _HandleThreadCreated(
|
2009-06-18 17:57:37 +00:00
|
|
|
ThreadCreatedEvent* event);
|
2010-12-16 04:19:53 +00:00
|
|
|
bool _HandleThreadRenamed(
|
|
|
|
ThreadRenamedEvent* event);
|
|
|
|
bool _HandleThreadPriorityChanged(
|
|
|
|
ThreadPriorityChangedEvent* event);
|
2009-06-17 13:40:10 +00:00
|
|
|
bool _HandleThreadDeleted(
|
2009-06-18 17:57:37 +00:00
|
|
|
ThreadDeletedEvent* event);
|
2009-06-17 13:40:10 +00:00
|
|
|
bool _HandleImageCreated(
|
2009-06-18 17:57:37 +00:00
|
|
|
ImageCreatedEvent* event);
|
2009-06-17 13:40:10 +00:00
|
|
|
bool _HandleImageDeleted(
|
2009-06-18 17:57:37 +00:00
|
|
|
ImageDeletedEvent* event);
|
2009-06-17 13:40:10 +00:00
|
|
|
|
2009-07-24 02:35:30 +00:00
|
|
|
void _HandleImageDebugInfoChanged(image_id imageID);
|
2009-07-01 22:09:33 +00:00
|
|
|
void _HandleImageFileChanged(image_id imageID);
|
|
|
|
|
2009-06-22 21:51:32 +00:00
|
|
|
void _HandleSetUserBreakpoint(target_addr_t address,
|
|
|
|
bool enabled);
|
2009-10-14 05:03:00 +00:00
|
|
|
void _HandleSetUserBreakpoint(
|
|
|
|
UserBreakpoint* breakpoint, bool enabled);
|
2009-06-22 21:51:32 +00:00
|
|
|
void _HandleClearUserBreakpoint(
|
|
|
|
target_addr_t address);
|
2009-10-14 05:03:00 +00:00
|
|
|
void _HandleClearUserBreakpoint(
|
|
|
|
UserBreakpoint* breakpoint);
|
2009-06-18 21:45:14 +00:00
|
|
|
|
2012-11-06 11:45:26 +01:00
|
|
|
void _HandleSetWatchpoint(target_addr_t address,
|
|
|
|
uint32 type, int32 length, bool enabled);
|
|
|
|
void _HandleSetWatchpoint(
|
|
|
|
Watchpoint* watchpoint, bool enabled);
|
|
|
|
void _HandleClearWatchpoint( target_addr_t address);
|
|
|
|
void _HandleClearWatchpoint(Watchpoint* watchpoint);
|
|
|
|
|
2011-06-10 01:58:39 +00:00
|
|
|
void _HandleInspectAddress(
|
|
|
|
target_addr_t address,
|
|
|
|
TeamMemoryBlock::Listener* listener);
|
|
|
|
|
2009-06-24 01:46:38 +00:00
|
|
|
ThreadHandler* _GetThreadHandler(thread_id threadID);
|
2009-06-19 22:13:32 +00:00
|
|
|
|
2009-07-03 14:23:19 +00:00
|
|
|
status_t _AddImage(const ImageInfo& imageInfo,
|
|
|
|
Image** _image = NULL);
|
2009-07-01 22:09:33 +00:00
|
|
|
|
2009-07-24 02:35:30 +00:00
|
|
|
void _LoadSettings();
|
|
|
|
void _SaveSettings();
|
|
|
|
|
2009-06-22 21:51:32 +00:00
|
|
|
void _NotifyUser(const char* title,
|
|
|
|
const char* text,...);
|
|
|
|
|
2009-06-16 00:25:36 +00:00
|
|
|
private:
|
2009-06-24 00:16:22 +00:00
|
|
|
Listener* fListener;
|
2009-07-24 02:35:30 +00:00
|
|
|
SettingsManager* fSettingsManager;
|
2009-06-16 21:47:49 +00:00
|
|
|
::Team* fTeam;
|
2009-06-16 00:25:36 +00:00
|
|
|
team_id fTeamID;
|
2009-06-24 01:46:38 +00:00
|
|
|
ThreadHandlerTable fThreadHandlers;
|
|
|
|
// protected by the team lock
|
2009-07-01 22:09:33 +00:00
|
|
|
ImageHandlerTable* fImageHandlers;
|
2012-11-28 19:11:50 -05:00
|
|
|
ImageInfoPendingThreadTable* fImageInfoPendingThreads;
|
2009-06-18 17:57:37 +00:00
|
|
|
DebuggerInterface* fDebuggerInterface;
|
2009-06-27 21:09:21 +00:00
|
|
|
TeamDebugInfo* fTeamDebugInfo;
|
2009-07-01 22:09:33 +00:00
|
|
|
FileManager* fFileManager;
|
2009-06-19 15:09:56 +00:00
|
|
|
Worker* fWorker;
|
2009-06-25 23:51:09 +00:00
|
|
|
BreakpointManager* fBreakpointManager;
|
2012-11-06 11:45:26 +01:00
|
|
|
WatchpointManager* fWatchpointManager;
|
2011-06-10 01:58:39 +00:00
|
|
|
TeamMemoryBlockManager*
|
|
|
|
fMemoryBlockManager;
|
2012-11-18 13:08:38 -05:00
|
|
|
DebugReportGenerator*
|
|
|
|
fReportGenerator;
|
2009-06-16 00:25:36 +00:00
|
|
|
thread_id fDebugEventListener;
|
2009-10-15 09:47:24 +00:00
|
|
|
UserInterface* fUserInterface;
|
2009-06-16 00:25:36 +00:00
|
|
|
volatile bool fTerminating;
|
2009-06-23 13:09:50 +00:00
|
|
|
bool fKillTeamOnQuit;
|
2011-11-02 19:04:24 +00:00
|
|
|
TeamSettings fTeamSettings;
|
2009-06-16 00:25:36 +00:00
|
|
|
};
|
|
|
|
|
2009-06-24 00:16:22 +00:00
|
|
|
|
|
|
|
class TeamDebugger::Listener {
|
|
|
|
public:
|
|
|
|
virtual ~Listener();
|
|
|
|
|
2010-09-21 15:07:48 +00:00
|
|
|
virtual void TeamDebuggerStarted(TeamDebugger* debugger) = 0;
|
2009-06-24 00:16:22 +00:00
|
|
|
virtual void TeamDebuggerQuit(TeamDebugger* debugger) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-06-16 00:25:36 +00:00
|
|
|
#endif // TEAM_DEBUGGER_H
|