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
|
/***************************************************************************
phpdebugdbgp.cpp
-------------------
begin : 2004-03-12
copyright : (C) 2004 Linus McCabe <[email protected]>
***************************************************************************/
/****************************************************************************
* *
* 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. *
* *
***************************************************************************/
#ifndef QUANTADEBUGGERGUBED_H
#define QUANTADEBUGGERGUBED_H
#include <kserversocket.h>
#include <kstreamsocket.h>
#include <qptrlist.h>
#include <kurl.h>
#include <qdom.h>
#include "debuggerclient.h"
#include "dbgpnetwork.h"
typedef QValueList<QString> WatchList;
typedef QMap<QString, QString> StringMap;
class QuantaDebuggerDBGp : public DebuggerClient
{
Q_OBJECT
public:
QuantaDebuggerDBGp(QObject *parent, const char* name, const QStringList&);
~QuantaDebuggerDBGp();
// Execution states
enum State
{
Starting = 0,
Stopping,
Stopped,
Running,
Break
};
// Error codes
enum Errors
{
Warning = 2,
Notice = 8,
User_Error = 256,
User_Warning = 512,
User_Notice = 1024
};
// Protocol version
static const char protocolversion[];
// Manager interaction
const uint supports(DebuggerClientCapabilities::Capabilities);
// Execution control
void request();
void run();
void stepInto();
void stepOver();
void stepOut();
void pause();
void kill();
void setExecutionState(const QString &state);
void setExecutionState(const State &state, bool forcesend = false);
// Connection
void startSession();
void endSession();
// Return name of debugger
QString getName();
// Initiation
void checkSupport(const QDomNode&node);
// New file opened in quanta
void fileOpened(const QString& file);
// Settings
void readConfig(QDomNode node);
void showConfig(QDomNode node);
// Breakpoints
void addBreakpoint(DebuggerBreakpoint* breakpoint);
void removeBreakpoint(DebuggerBreakpoint* breakpoint);
void showCondition(const StringMap &args);
// Variables
void addWatch(const QString &variable);
void removeWatch(DebuggerVariable *var);
void variableSetValue(const DebuggerVariable &variable);
void propertySetResponse( const QDomNode & setnode);
// Call stack
void stackShow(const QDomNode&node);
private:
DBGpNetwork m_network;
QString m_serverBasedir;
QString m_localBasedir;
QString m_serverPort;
QString m_serverHost;
QString m_startsession;
QString m_listenPort;
QString m_profilerFilename;
QString m_appid;
QString m_initialscript;
bool m_useproxy;
bool m_profilerAutoOpen;
bool m_profilerMapFilename;
State m_executionState, m_defaultExecutionState;
long m_errormask;
long m_displaydelay;
bool m_supportsasync;
// Variable type mapping
StringMap m_variabletypes;
// Internal watchlist
WatchList m_watchlist;
void sendWatches();
void debuggingState(bool enable);
void connected();
void handleError(const QDomNode & statusnode );
QString mapServerPathToLocal(const QString& serverpath);
QString mapLocalPathToServer(const QString& localpath);
QString bpToDBGp(DebuggerBreakpoint* breakpoint);
void setBreakpointKey(const QDomNode& response);
QString attribute(const QDomNode&node, const QString &attribute);
void initiateSession(const QDomNode& initpacket);
void typemapSetup(const QDomNode& typemapnode);
void showWatch(const QDomNode& typemapnode);
DebuggerVariable* buildVariable(const QDomNode& typemapnode);
// Profiler
void profilerOpen(bool forceopen);
void profilerOpen();
public slots:
void slotNetworkActive(bool active);
void slotNetworkConnected(bool connected);
void slotNetworkError(const QString &errormsg, bool log);
void processCommand(const QString&);
signals:
void updateStatus(DebuggerUI::DebuggerStatus);
};
#endif
|