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
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
|
-- File: GraphDS_RelationGraph.cdl
-- Created: Fri Sep 6 11:00:25 1991
-- Author: Denis PASCAL
-- <dp@topsn2>
---Copyright: Matra Datavision 1991
generic class RelationGraph from GraphDS
(GraphDS_Item as any;
GraphDS_Attribute as any)
---Purpose: This generic class describe a network (or graph) of
-- Relations between Entities. an Item can be associated
-- to the Entity and respectively an Attribute to the
-- Relation. This class can be compared to the
-- DirectedGraph of this package. But here the Relation
-- (compared to the Edge) can describe links between more
-- than two Entities. Each link can be described as
-- oriented or not. Nested classes permit to edit and
-- visit that structure. Interface of visiting tools are
-- done as iterators.
uses TShared from MMgt,
MapOfTransient from TColStd,
EntityRole from GraphDS
raises NoSuchObject from Standard,
NoMoreObject from Standard,
DomainError from Standard
class Entity from GraphDS inherits TShared from MMgt
uses RelationRole from GraphDS,
MapOfTransient from TColStd
is
Create (value : GraphDS_Item)
returns mutable Entity from GraphDS;
GetItem (me)
---Level: Internal
---C++ : return const&
returns any GraphDS_Item;
Contains (me; R : Relation from GraphDS)
---Level: Internal
returns Boolean from Standard;
HasRelation (me)
---Level: Internal
returns Boolean from Standard;
GetRole (me; R : Relation from GraphDS)
---Level: Internal
returns RelationRole from GraphDS;
IsFront (me; R : Relation from GraphDS)
---Level: Internal
returns Boolean from Standard;
IsBack (me; R : Relation from GraphDS)
---Level: Internal
returns Boolean from Standard;
Add (me : mutable; R : Relation from GraphDS)
is private;
Remove (me : mutable; R : Relation from GraphDS)
is private;
GetRelations (me)
---C++: return const&
returns MapOfTransient from TColStd
is private;
fields
myItem : GraphDS_Item;
myRelations : MapOfTransient from TColStd;
friends
class RelationGraph from GraphDS,
class EntitiesIterator from GraphDS,
class IncidentEntitiesIterator from GraphDS,
class RelationsIterator from GraphDS,
class IncidentRelationsIterator from GraphDS
end Entity from GraphDS;
class Relation inherits TShared from MMgt
uses EntityRole from GraphDS,
EntityRoleMap from GraphDS
is
Create (value : GraphDS_Attribute)
returns mutable Relation;
GetAttribute (me)
---Level: Internal
---C++: return const&
returns any GraphDS_Attribute;
Contains (me; E : Entity from GraphDS)
---Level: Internal
returns Boolean from Standard;
IsEmpty (me)
---Level: Internal
returns Boolean from Standard;
GetRole (me; E : Entity from GraphDS)
---Level: Internal
returns EntityRole from GraphDS;
IsInput (me; E : Entity from GraphDS)
---Level: Internal
returns Boolean from Standard;
IsOutput (me; E : Entity from GraphDS)
---Level: Internal
returns Boolean from Standard;
Remove (me : mutable; E : Entity from GraphDS)
is private;
Add (me : mutable; E : Entity from GraphDS;
R : EntityRole from GraphDS)
is private;
SetRole (me : mutable; E : Entity from GraphDS;
R : EntityRole from GraphDS)
is private;
GetEntities (me)
---C++: return const&
returns EntityRoleMap from GraphDS
is private;
fields
myAttribute : GraphDS_Attribute;
myEntities : EntityRoleMap from GraphDS;
friends
class RelationGraph from GraphDS,
class EntitiesIterator from GraphDS,
class IncidentEntitiesIterator from GraphDS,
class RelationsIterator from GraphDS,
class IncidentRelationsIterator from GraphDS
end Relation;
class EntitiesIterator from GraphDS
---Purpose: Public nested class which defines an iterator to
-- visit each Entity member of a given RelationGraph.
uses MapOfTransient from TColStd,
MapIteratorOfMapOfTransient from TColStd
raises NoMoreObject from Standard,
NoSuchObject from Standard
is
Create
returns EntitiesIterator from GraphDS;
Create (G : RelationGraph from GraphDS)
returns EntitiesIterator from GraphDS;
Create (G : RelationGraph from GraphDS;
E : Entity from GraphDS)
returns EntitiesIterator from GraphDS;
Create (G : RelationGraph from GraphDS;
E : Relation from GraphDS)
returns EntitiesIterator from GraphDS;
Initialize (me : in out; G : RelationGraph from GraphDS);
---Level: Public
Initialize (me : in out; G : RelationGraph from GraphDS;
E : Entity from GraphDS);
---Level: Public
Initialize (me : in out; G : RelationGraph from GraphDS;
R : Relation from GraphDS);
---Level: Public
More (me)
---Level: Public
returns Boolean from Standard;
Next (me : in out)
---Level: Public
raises NoMoreObject from Standard;
Value (me)
---C++: return const&
---Level: Public
returns Entity from GraphDS
raises NoSuchObject from Standard;
fields
myMap : MapOfTransient from TColStd;
myEntities : MapIteratorOfMapOfTransient from TColStd;
end EntitiesIterator;
class RelationsIterator from GraphDS
---Purpose: Public nested class which defines an iterator to
-- visit each Relation member of a given
-- RelationGraph.
uses MapOfTransient from TColStd,
MapIteratorOfMapOfTransient from TColStd
raises NoMoreObject from Standard,
NoSuchObject from Standard
is
Create
returns RelationsIterator from GraphDS;
Create (G : RelationGraph from GraphDS)
returns RelationsIterator from GraphDS;
Create (G : RelationGraph from GraphDS;
R : Relation from GraphDS)
returns RelationsIterator from GraphDS;
Create (G : RelationGraph from GraphDS;
E : Entity from GraphDS)
returns RelationsIterator from GraphDS;
Initialize (me : in out; G : RelationGraph from GraphDS);
---Level: Public
Initialize (me : in out; G : RelationGraph from GraphDS;
R : Relation from GraphDS);
---Level: Public
Initialize (me : in out; G : RelationGraph from GraphDS;
E : Entity from GraphDS);
---Level: Public
More (me)
returns Boolean from Standard;
---Level: Public
Next (me : in out)
raises NoMoreObject from Standard;
---Level: Public
Value (me)
---C++: return const&
returns Relation from GraphDS
raises NoSuchObject from Standard;
---Level: Public
fields
myMap : MapOfTransient from TColStd;
myRelations : MapIteratorOfMapOfTransient from TColStd;
end RelationsIterator;
class IncidentEntitiesIterator from GraphDS
uses MapOfTransient from TColStd,
MapIteratorOfMapOfTransient from TColStd
raises NoMoreObject from Standard,
NoSuchObject from Standard
is
Create
returns IncidentEntitiesIterator from GraphDS;
Create (G : RelationGraph from GraphDS;
E : Entity from GraphDS)
returns IncidentEntitiesIterator from GraphDS;
Initialize (me : in out; G : RelationGraph from GraphDS;
E : Entity from GraphDS);
---Level: Public
More (me)
---Level: Public
returns Boolean from Standard;
Next (me : in out)
---Level: Public
raises NoMoreObject from Standard;
Value (me)
---C++: return const&
---Level: Public
returns Entity from GraphDS
raises NoSuchObject from Standard;
fields
myMap : MapOfTransient from TColStd;
myEntities : MapIteratorOfMapOfTransient from TColStd;
end IncidentEntitiesIterator;
class IncidentRelationsIterator from GraphDS
uses MapOfTransient from TColStd,
MapIteratorOfMapOfTransient from TColStd
raises NoMoreObject from Standard,
NoSuchObject from Standard
is
Create
returns IncidentRelationsIterator from GraphDS;
Create (G : RelationGraph from GraphDS;
R : Relation from GraphDS)
returns IncidentRelationsIterator from GraphDS;
Initialize (me : in out; G : RelationGraph from GraphDS;
R : Relation from GraphDS);
---Level: Public
More (me)
---Level: Public
returns Boolean from Standard;
Next (me : in out)
---Level: Public
raises NoMoreObject from Standard;
Value (me)
---C++: return const&
---Level: Public
returns Relation from GraphDS
raises NoSuchObject from Standard;
fields
myMap : MapOfTransient from TColStd;
myRelations : MapIteratorOfMapOfTransient from TColStd;
end IncidentRelationsIterator;
is
Create
returns RelationGraph from GraphDS;
---Purpose: Creates an empty relation graph.
Create (other : RelationGraph from GraphDS)
returns RelationGraph from GraphDS;
IsEmpty (me)
---Purpose: tests if <me> contains any Entity.
---Level: Public
returns Boolean from Standard;
Clear (me : in out);
---Purpose: Removes all the Entities and all the relations of
-- <me>.
---Level: Public
Contains (me; E : Entity from GraphDS)
---Purpose: tests if <me> contains <E>.
---Level: Public
returns Boolean from Standard;
Contains (me; R : Relation from GraphDS)
---Purpose: tests if <me> contains <rel>.
---Level: Public
returns Boolean from Standard;
NbEntities (me)
---Purpose: returns the number of Entity of me.
---Level: Public
returns Integer from Standard;
NbRelations (me)
---Purpose: returns the number of Relations of <me>.
---Level: Public
returns Integer from Standard;
IsInRelation (me; E : Entity from GraphDS)
---Purpose: To Know if <E> is in relation (as input,output
-- or both as well) with others Entities of <me>.
---Level: Public
returns Boolean from Standard
raises NoSuchObject from Standard;
IsInput (me; E : Entity from GraphDS)
returns Boolean from Standard
---Purpose: returns True if <E>
---Level: Public
raises NoSuchObject from Standard;
IsOutput (me; E : Entity from GraphDS)
returns Boolean from Standard
---Purpose: returns True if <E> is at least output of one of
-- its relation.
---Level: Public
raises NoSuchObject from Standard;
IsDependent (me; E : Entity from GraphDS)
returns Boolean from Standard
---Purpose: returns True if <E> is not input of one of its
-- relation.
---Level: Public
raises NoSuchObject from Standard;
AddEntity (me : in out; value : GraphDS_Item)
---Purpose: Creates an adds a new Entity (which contains item)
-- to <me>.
---Level: Public
returns Entity from GraphDS;
RemoveEntity (me : in out; E : Entity from GraphDS)
---Purpose: Removes a Entity <E> of <me>. Be carefull than an
-- exception is raised if <E> is still member of any
-- relation of <me>.
---Level: Public
raises NoSuchObject from Standard,
DomainError from Standard;
AddRelation (me : in out; value : GraphDS_Attribute)
---Purpose: Creates an adds a new Relation (which contains
-- attribute) to <me>.
---Level: Public
returns Relation from GraphDS;
RemoveRelation (me : in out; R : Relation from GraphDS)
---Purpose: Removes a relation <R> of <me>.
---Level: Public
raises NoSuchObject from Standard;
---Purpose: relation editing function
IsEmpty (me; R : Relation)
---Purpose: returns TRUE if noone entity is member of <R>.
---Level: Public
returns Boolean from Standard
raises NoSuchObject from Standard;
Add (me : in out; R : Relation; E : Entity)
---Purpose: add an InputAndOutput entity <E> to <R>
---Level: Public
raises NoSuchObject from Standard;
AddInput (me : in out; R : Relation; E : Entity)
---Purpose: add OnlyInput entity <E> to <R>.
---Level: Public
raises NoSuchObject from Standard;
AddOutput (me : in out; R : Relation; E : Entity)
---Purpose: add an OnlyOutput entity <E> to <R>.
---Level: Public
raises NoSuchObject from Standard;
Add (me : in out; R : Relation;
E : Entity;
role : EntityRole from GraphDS)
---Purpose: add an entity <E> to <R> with role <role>.
---Level: Public
raises NoSuchObject from Standard;
SetRole (me : in out; R : Relation;
E : Entity;
role : EntityRole from GraphDS)
---Purpose: set a new role <role> for the entity <E> member of <R>.
---Level: Public
raises NoSuchObject from Standard;
Remove (me : in out; R : Relation; E : Entity)
---Purpose: remove the entity <E> member of <R>.
---Level: Public
raises NoSuchObject from Standard;
fields
myEntities : MapOfTransient from TColStd;
myRelations : MapOfTransient from TColStd;
friends
class EntitiesIterator from GraphDS,
class RelationsIterator from GraphDS
end RelationGraph;
|