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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
|
#ifndef __OBJECTS_OBJVIEW_GRAPH_HH__
#define __OBJECTS_OBJVIEW_GRAPH_HH__
#include "objview_stacktrace.hh"
#include "objview_commands.hh"
#include "dwr/graph.hh"
#include "dwr/graph2.hh"
#include "dwr/toggle.hh"
#include "dwr/vbox.hh"
#include "dwr/hbox.hh"
#include "dwr/label.hh"
#include "common/tools.hh"
namespace rtfl {
namespace objects {
enum OVGCommandType {
OVG_COMMAND_CREATE,
OVG_COMMAND_INDENT,
OVG_COMMAND_MESSAGE,
OVG_COMMAND_MARK,
OVG_COMMAND_FUNCTION,
OVG_COMMAND_ASSOC,
OVG_COMMAND_ADD_ATTR,
OVG_COMMAND_DELETE
};
class ObjViewGraphListener: public ObjViewListener
{
private:
ObjViewGraph *graph;
public:
ObjViewGraphListener (ObjViewGraph *graph) { this->graph = graph; }
void close (ObjViewStacktraceWindow *window);
};
class ObjViewFilterTool
{
public:
virtual void addAspect (const char *aspect) = 0;
virtual void addPriority (int priority) = 0;
virtual bool isAspectSelected (const char *aspect) = 0;
virtual bool isPrioritySelected (int priority) = 0;
virtual bool isTypeSelected (OVGCommandType type) = 0;
virtual void addMark (OVGAddMarkCommand *markCommand) = 0;
};
class OVGAttribute;
class OVGAttributesList: public lout::object::Object
{
private:
OVGAttributesList *parent;
int childNoCount, numChildrenShown, childNo;
lout::misc::BitSet *childrenShown;
bool shown;
void checkVisibility ();
protected:
lout::container::typed::HashTable<lout::object::String,
OVGAttribute> *attributes;
virtual void show () = 0;
virtual void hide () = 0;
public:
dw::VBox *vbox;
dw::Toggle *toggle;
OVGAttributesList (OVGAttributesList *parent);
~OVGAttributesList ();
inline OVGAttribute *get (lout::object::String *key)
{ return attributes->get (key); }
virtual int add (lout::object::String *key, OVGAttribute *attribute) = 0;
void initWidgets (::dw::core::style::Style *widgetStyle, dw::Box *parent,
bool showLarge);
int registerChild ();
void unregisterChild (int childNo);
void childShown (int childNo);
void childHidden (int childNo);
};
class OVGTopAttributes: public OVGAttributesList
{
protected:
lout::container::typed::Vector<lout::object::String> *sortedList;
void show ();
void hide ();
public:
OVGTopAttributes ();
~OVGTopAttributes ();
int add (lout::object::String *key, OVGAttribute *attribute);
};
// Hint: the OVGAttributesList'ness refers to the children.
class OVGAttribute: public OVGAttributesList
{
protected:
void show ();
void hide ();
public:
dw::HBox *hbox;
dw::Label *label;
char *name;
OVGAttribute (const char *name, OVGAttributesList *parent);
~OVGAttribute ();
void initWidgets (::dw::core::style::Style *widgetStyle,
dw::Box *parent, bool showLarge, int newPos);
int add (lout::object::String *key, OVGAttribute *attribute);
};
class ObjViewGraph: public
#if USE_GRAPH2
dw::Graph2
#else
dw::Graph
#endif
{
friend class OVGCommonCommand;
friend class OVGIncIndentCommand;
friend class OVGDecIndentCommand;
friend class OVGEnterCommand;
friend class OVGLeaveCommand;
friend class OVGAddMessageCommand;
friend class OVGAddMarkCommand;
friend class OVGCreateCommand;
friend class OVGAddAssocCommand;
friend class OVGAddAttrCommand;
friend class OVGDeleteCommand;
friend class ObjViewGraphListener;
private:
class CreateRefCommand;
class GraphObject: public lout::object::Object
{
friend class CreateRefCommand;
friend class ObjViewGraph;
private:
ObjViewGraph *graph;
public:
char *id, *className;
::dw::core::style::Style *messageStyle;
dw::Toggle *node;
dw::Label *id1, *id2;
OVGTopAttributes *attributes;
dw::VBox *messages;
GraphObject (ObjViewGraph *graph, const char *id);
~GraphObject ();
};
// Inernally added for the first occurence of an identity.
class CreateRefCommand: public OVGCommonCommand
{
protected:
void doExec ();
void doUndo ();
public:
CreateRefCommand (ObjViewGraph *graph, const char *id,
GraphObject *graphObject);
};
class Color: public lout::object::Object
{
public:
char *identifier;
::dw::core::style::Color *color;
Color (const char *classPattern, const char *color,
::dw::core::Layout *layout);
~Color ();
};
class ColorComparator: public lout::object::Comparator
{
private:
int specifity (const char *pattern);
public:
int compare(Object *o1, Object *o2);
};
ObjViewFilterTool *filterTool;
lout::container::typed::Vector<OVGCommand> *commands;
lout::container::typed::Vector<OVGCommand> *navigableCommands;
lout::container::typed::HashTable<lout::object::String,
GraphObject> *objectsById;
lout::container::typed::Vector<GraphObject> *allObjects;
lout::container::typed::Vector<Color> *classColors;
lout::container::typed::Vector<Color> *objectColors;
lout::container::typed::Stack<OVGEnterCommand> *enterCommands;
lout::container::typed::Stack<OVGIncIndentCommand> *startCommands;
bool objectContents, objectMessages;
char *codeViewer;
int navigableCommandsPos, hiddenBefore, hiddenAfter, numVisibleCommands;
::dw::core::style::Style *nodeStyle, *noBorderStyle, *topBorderStyle,
*bottomBorderStyle, *leftBorderStyle;
bool inDestructor;
lout::container::typed::List <ObjViewStacktraceWindow> *stacktraceWindows;
ObjViewGraphListener *stacktraceListener;
GraphObject *ensureObject (const char *id);
OVGAttribute *addAttribute (OVGAttributesList *attributesList, char **parts,
const char *value, dw::Label **smallLabel,
dw::HBox **histBox, dw::Label **indexLabel,
dw::Label **histLabel);
::dw::core::style::Color *getObjectColor (GraphObject *obj);
void applyClassOrObjectStyle (GraphObject *obj);
void applyClassOrObjectStyles ();
void addMessage (const char *id, const char *message, dw::HBox **mainBox,
dw::Label **indexLabel, dw::Label **mainLabel);
bool incIndent (const char *id);
bool decIndent (const char *id);
OVGAttribute *addAttribute (const char *id, const char *name,
const char *value, dw::Label **smallLabel,
dw::HBox **histBox, dw::Label **indexLabel,
dw::Label **histLabel);
void setClassName (const char *id, const char *className);
void addAssoc (const char *id1, const char *id2);
void clearSelection ();
void unclearSelection ();
int firstCommand ();
int lastCommand ();
public:
ObjViewGraph (ObjViewFilterTool *objectFilterTool);
~ObjViewGraph ();
void initStyles (const char *fontName, int fontSize, int fgColor,
int graphBgColor, int objBgColor, int borderThickness,
int grraphMargin);
void addCommand (OVGCommand *command, bool navigable);
void addIdentity (const char *id1, const char *id2);
void setClassColor (const char *klass, const char *color);
void setObjectColor (const char *id, const char *color);
int getObjectColor (const char *id);
inline void pushEnterCommand (OVGEnterCommand *enterCommand)
{ enterCommands->push (enterCommand); }
void popEnterCommand () { enterCommands->pop (); }
OVGEnterCommand *getLastEnterCommand () { return enterCommands->getTop (); }
inline void pushStartCommand (OVGIncIndentCommand *startCommand)
{ startCommands->push (startCommand); }
void popStartCommand () { startCommands->pop (); }
OVGIncIndentCommand *getLastStartCommand ()
{ return startCommands->getTop (); }
inline void addCommandMark (OVGAddMarkCommand *markCommand)
{ filterTool->addMark (markCommand); }
void previousCommand ();
void nextCommand ();
void viewCodeOfCommand ();
void showStackTraceOfCommand ();
void switchBetweenRelatedCommands ();
void setCommand (int index);
void hideBeforeCommand ();
void hideAfterCommand ();
void hideAllCommands ();
void showBeforeCommand ();
void showAfterCommand ();
void showAllCommands ();
inline void showObjectContents (bool val) { objectContents = val; }
inline void showObjectMessages (bool val) { objectMessages = val; }
void setCodeViewer (const char *codeViewer);
void recalculateCommandsVisibility ();
};
} // namespace objects
} // namespace rtfl
#endif // __OBJECTS_OBJVIEW_GRAPH_HH__
|