File: ClusterGraphAttributes.h

package info (click to toggle)
bandage 0.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 15,684 kB
  • sloc: cpp: 45,359; sh: 491; makefile: 12
file content (439 lines) | stat: -rw-r--r-- 14,474 bytes parent folder | download | duplicates (3)
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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
/*
 * $Revision: 2564 $
 *
 * last checkin:
 *   $Author: gutwenger $
 *   $Date: 2012-07-07 00:03:48 +0200 (Sa, 07. Jul 2012) $
 ***************************************************************/

/** \file
 * \brief Declares ClusterGraphAttributes, an extension of class
 * GraphAttributes,  to store clustergraph layout informations
 * like cluster cage positions and sizes that can be accessed
 * over the cluster/cluster ID
 *
 * \author Karsten Klein
 *
 * \par License:
 * This file is part of the Open Graph Drawing Framework (OGDF).
 *
 * \par
 * Copyright (C)<br>
 * See README.txt in the root directory of the OGDF installation for details.
 *
 * \par
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * Version 2 or 3 as published by the Free Software Foundation;
 * see the file LICENSE.txt included in the packaging of this file
 * for details.
 *
 * \par
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * \par
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 *
 * \see  http://www.gnu.org/copyleft/gpl.html
 ***************************************************************/




#ifdef _MSC_VER
#pragma once
#endif

#ifndef OGDF_CLUSTER_GRAPH_ATTRIBUTES_H
#define OGDF_CLUSTER_GRAPH_ATTRIBUTES_H

#include "../basic/HashArray.h"
#include "ClusterArray.h"

#include "ClusterGraph.h"
#include "../basic/GraphAttributes.h"


namespace ogdf {

	class GmlParser;

	/**
	 * \brief Stores information associated with a cluster.
	 *
	 */
	class OGDF_EXPORT ClusterInfo
	{
		public:
			ClusterInfo()
			{
				//&m_fillPattern = GraphAttributes::bpNone; //NoBrush
				m_lineStyle = GraphAttributes::esSolid;
			}

			double m_x, m_y; //position of lower left corner
			double m_w, m_h; //width and height

			double m_lineWidth; //width of rectangle border line

			String m_color;  //color of rectangle
			String m_fillColor;  //color of fill area
			String m_backColor;  //background color
			GraphAttributes::EdgeStyle m_lineStyle;  //rectangle line style
			GraphAttributes::BrushPattern m_fillPattern; //brush pattern of fill area
			String m_label;  //name label

			int m_clusterID; //the ID of the cluster of which the info is stored
	};


	/**
	 * \brief Stores additional attributes of a clustered graph (like layout information).
	 *
	 * Attributes are simply stored in node or edge arrays; for memory consumption
 	 * reasons, only a subset of these arrays is in fact initialized for the graph;
 	 * non-initialized arrays require only a few bytes of extra memory.
 	 *
 	 * Which arrays are initialized is specified by a bit vector; each bit in this
 	 * bit vector corresponds to one or more attributes. E.g., \a #nodeGraphics
 	 * corresponds to the attributes \a #m_x, \a #m_y, \a #m_width, and \a #m_height;
 	 * whereas \a #edgeDoubleWeight only corresponds to the attribute \a #m_doubleWeight.
	 *
	 */
	class OGDF_EXPORT ClusterGraphAttributes : public GraphAttributes
	{
		private:
			ClusterArray<String> m_clusterTemplate; //!< Name of cluster template.

		public:
			//! Initializes new instance of class ClusterGraphAttributes.
			ClusterGraphAttributes() : GraphAttributes(), m_pClusterGraph(0) { }

			//! Initializes new instance of class ClusterGraphAttributes.
			//! Uses \a initAttributes, which are enriched by node and edge
			//! graphics.
			ClusterGraphAttributes(ClusterGraph& cg, long initAttributes = 0);

			virtual ~ClusterGraphAttributes() { }

			//! Initializes the instance with ClusterGraph \a cg.
			//! Sets the attributes to \a initAttributes
            using GraphAttributes::init;
			virtual void init(ClusterGraph &cg, long initAttributes = 0);

			//! Initializes the attributes according to \a initAttributes.
			virtual void initAtt(long initAttributes = 0) {
				GraphAttributes::initAttributes(initAttributes);
			}

//			operator const ClusterGraph& () const {return *m_pClusterGraph;}
//			operator const Graph& () const {return m_pClusterGraph->getGraph();}

			//! Returns the ClusterGraph.
			const ClusterGraph& constClusterGraph() const { return *m_pClusterGraph; }

			//! Returns the index of the parent cluster of node \a v.
			int clusterID(node v) { return m_pClusterGraph->clusterOf(v)->index(); }

			//! Returns the parent cluster of node \a v.
			cluster clusterOf(node v) { return m_pClusterGraph->clusterOf(v); }

			//! Returns the maximum cluster index used.
			int maxClusterID() const { return m_pClusterGraph->clusterIdCount()-1; }

			//! Updates positions of cluster boundaries wrt to children and child clusters
			void updateClusterPositions(double boundaryDist = 1.0);

			//*****************************************************************
			//data access by ID

			//! Returns x position of the cluster cages lower left corner.
			double clusterXPos(int clusterID) const { return m_clusterInfo[clusterID].m_x; }

			//! Returns x position of the cluster cages lower left corner.
			double& clusterXPos(int clusterID) { return m_clusterInfo[clusterID].m_x; }

			//! Returns y position of the cluster cages lower left corner.
			double clusterYPos(int clusterID) const { return m_clusterInfo[clusterID].m_y; }

			//! Returns y position of the cluster cages lower left corner.
			double& clusterYPos(int clusterID) { return m_clusterInfo[clusterID].m_y; }

			//! Returns cluster cage height.
			double clusterHeight(int clusterID) const { return m_clusterInfo[clusterID].m_h; }

			//! Returns cluster cage height.
			double& clusterHeight(int clusterID) { return m_clusterInfo[clusterID].m_h; }

			//! Returns cluster cage width.
			double clusterWidth(int clusterID) const { return m_clusterInfo[clusterID].m_w; }

			//! Returns cluster cage width.
			double& clusterWidth(int clusterID) { return m_clusterInfo[clusterID].m_w; }

			//! Returns cluster line width.
			double clusterLineWidth(int clusterID) const {
				return m_clusterInfo[clusterID].m_lineWidth;
			}

			//! Returns cluster line width.
			double& clusterLineWidth(int clusterID) {
				return m_clusterInfo[clusterID].m_lineWidth;
			}

			//! Returns cluster fill color.
			const String &clusterFillColor(int clusterID) const {
				return m_clusterInfo[clusterID].m_fillColor;
			}

			//! Returns cluster fill color.
			String& clusterFillColor(int clusterID) {
				return m_clusterInfo[clusterID].m_fillColor;
			}

			//! Returns cluster fill pattern.
			GraphAttributes::BrushPattern clusterFillPattern(int clusterID) const {
				return m_clusterInfo[clusterID].m_fillPattern;
			}

			//! Returns cluster fill pattern.
			GraphAttributes::BrushPattern& clusterFillPattern(int clusterID) {
				return m_clusterInfo[clusterID].m_fillPattern;
			}

			//! Returns label of cluster c.
			const String &clusterLabel(int clusterID) const {
				return m_clusterInfo[clusterID].m_label;
			}

			//! Returns label of cluster c.
			String &clusterLabel(int clusterID) {
				return m_clusterInfo[clusterID].m_label;
			}

			//! Returns structure containing information on cluster with ID \a clusterID.
			const ClusterInfo& clusterInfo(int clusterID) const {
				return m_clusterInfo[clusterID];
			}

			//! Returns structure containing information on cluster with ID \a clusterID.
			ClusterInfo& clusterInfo(int clusterID) { return m_clusterInfo[clusterID]; }


			//*****************************************************************
			//data access by cluster

			//! Returns x position of the cluster cages lower left corner.
			double clusterXPos(cluster c) const { return m_clusterInfo[c->index()].m_x; }

			//! Returns x position of the cluster cages lower left corner.
			double& clusterXPos(cluster c) { return m_clusterInfo[c->index()].m_x; }

			//! Returns y position of the cluster cages lower left corner.
			double clusterYPos(cluster c) const { return m_clusterInfo[c->index()].m_y; }

			//! Returns y position of the cluster cages lower left corner.
			double& clusterYPos(cluster c) { return m_clusterInfo[c->index()].m_y; }

			//! Returns cluster cage height.
			double clusterHeight(cluster c) const { return m_clusterInfo[c->index()].m_h; }

			//! Returns cluster cage height.
			double& clusterHeight(cluster c) { return m_clusterInfo[c->index()].m_h; }

			//! Returns cluster cage width.
			double clusterWidth(cluster c) const { return m_clusterInfo[c->index()].m_w; }

			//! Returns cluster cage width.
			double& clusterWidth(cluster c) { return m_clusterInfo[c->index()].m_w; }

			//! Returns label of cluster c.
			const String &clusterLabel(cluster c) const {
				return m_clusterInfo[c->index()].m_label;
			}

			//! Returns label of cluster c.
			String &clusterLabel(cluster c) {
				return m_clusterInfo[c->index()].m_label;
			}

			//! Returns const reference to template of cluster c.
			const String &templateCluster(cluster c) const { return m_clusterTemplate[c]; }

			//! Returns reference to template of cluster c.
			String &templateCluster(cluster c) { return m_clusterTemplate[c]; }

			//! Returns const reference to structure containing information on cluster \a c.
			const ClusterInfo& clusterInfo(cluster c) const { return m_clusterInfo[c->index()]; }

			//! Returns reference to structure containing information on cluster \a c.
			ClusterInfo& clusterInfo(cluster c) { return m_clusterInfo[c->index()]; }

			//! Returns line color stored for cluster \a c in string format.
			const String &clusterColor(cluster c) const {
				return  m_clusterInfo[c->index()].m_color;
			}

			//! Returns line color of cluster \a c in string format.
			String &clusterColor(cluster c) {
				return  m_clusterInfo[c->index()].m_color;
			}

			//Returns const reference to fill color of cluster \a c.
			const String &clusterFillColor(cluster c) const {
				return  m_clusterInfo[c->index()].m_fillColor;
			}

			//Returns reference to fill color of cluster \a c.
			String &clusterFillColor(cluster c) {
				return  m_clusterInfo[c->index()].m_fillColor;
			}

			//Returns const reference to background color of cluster \a c.
			const String &clusterBackColor(cluster c) const {
				return  m_clusterInfo[c->index()].m_backColor;
			}

			//Returns reference to background color of cluster \a c.
			String &clusterBackColor(cluster c) {
				return  m_clusterInfo[c->index()].m_backColor;
			}


			//pen and brush styles

			//! Returns edge style of cluster \a c.
			const GraphAttributes::EdgeStyle &clusterLineStyle(cluster c) const {
				return  m_clusterInfo[c->index()].m_lineStyle;
			}

			//! Returns line style of cluster \a c.
			GraphAttributes::EdgeStyle &clusterLineStyle(cluster c) {
				return  m_clusterInfo[c->index()].m_lineStyle;
			}

			//! Returns brush pattern of cluster \a c.
			const GraphAttributes::BrushPattern &clusterFillPattern(cluster c) const {
				return  m_clusterInfo[c->index()].m_fillPattern;
			}

			//! Returns brush pattern of cluster c.
			GraphAttributes::BrushPattern &clusterFillPattern(cluster c) {
				return  m_clusterInfo[c->index()].m_fillPattern;
			}

			//! Returns line width of cluster \a c.
			const double &clusterLineWidth(cluster c) const {
				return  m_clusterInfo[c->index()].m_lineWidth;
			}

			//! Returns line width of cluster c.
			double &clusterLineWidth(cluster c) {
				return  m_clusterInfo[c->index()].m_lineWidth;
			}

			//! Set fill pattern \a i for cluster \a c.
			void setClusterFillPattern(cluster c, int i) {
				m_clusterInfo[c->index()].m_fillPattern = intToPattern(i);
			}

			//! Set style \a i for cluster \a c.
			void setClusterLineStyle(cluster c, int i) {
				m_clusterInfo[c->index()].m_lineStyle = intToStyle(i);
			}

			//! Returns bounding box.
			const DRect boundingBox() const;

			//! Writes attributed clustergraph in GML format to file fileName.
			void writeGML(const char *fileName);

			//! Writes attributed clustergraph in GML format to output stream \a os.
			void writeGML(ostream& os);

			//we don't have GraphConstraints yet
			//! Writes attributed clustergraph in OGML format to file fileName
			void writeOGML(const char * fileName);//, GraphConstraints & GC);

			//! Writes attributed clustergraph in OGML format to output stream \a os.
			void writeOGML(ostream & os);//, GraphConstraints & GC);

			//! Reads attributed clustergraph in GML format from file fileName.
			bool readClusterGML(
				const char* fileName,
				ClusterGraph& CG,
				Graph& G);

			//! Reads attributed clustergraph in GML format from input stream \a is.
			bool readClusterGML(
				istream& is,
				ClusterGraph& CG,
				Graph& G);

			//! Reads clustered graph from OGML-file.
			bool readClusterGraphOGML(
				const char* fileName,
				ClusterGraph& CG,
				Graph& G);

		protected:
			const ClusterGraph* m_pClusterGraph;//!< Only points to existing graphs.

		private:
			//! Information on the cluster positions, index is cluster ID.
			HashArray<int, ClusterInfo> m_clusterInfo;

			//! Reads Cluster Graph with Attributes, base graph \a G, from \a fileName
			//! with a given gmlparser \a gml (has objecttree).
			//! Input stream given by parser.
			bool readClusterGraphGML(
				const char* fileName,
				ClusterGraph& CG,
				Graph& G,
				GmlParser& gml);

			//! Reads clustered graph from input stream of GmlParser.
			bool readClusterGraphGML(
				 ClusterGraph& CG,
				 Graph& G,
				 GmlParser& gml);

			//! Recursively writes the cluster structure in GML format into output stream \a os.
			void writeCluster(
				ostream &os,
				NodeArray<int> &nId,
				ClusterArray<int> & cId,
				int &nextId,
				cluster c,
				String indent);

			//! Recursively writes the cluster structure in GraphWin GML format.
			void writeGraphWinCluster(
				ostream &os,
				NodeArray<int> &nId,
				int &nextId,
				cluster c,
				String indent);

			//! Recursively writes the cluster structure in OGML.
			void writeClusterOGML(
				ostream &os,
				std::ostringstream & osS, // string stream for styles block
				int & nextLabelId,
				cluster cluster,
				int & indentDepth, // indent depth for structure block
				int indentDepthS); // indent depth for styles block

	};


} // end namespace ogdf


#endif