summaryrefslogtreecommitdiff
path: root/src/Interface/Interface_Graph.cxx
blob: 632c0cf31854e2484df09476cbeaaa2799ad074d (plain)
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
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
#include <Interface_Graph.ixx> 
#include <Interface_GeneralModule.hxx>
#include <Interface_ReportEntity.hxx>
#include <Standard_DomainError.hxx>
#include <TColStd_Array1OfInteger.hxx>
#include <Interface_ShareTool.hxx>



// Flags : 0 = Presence, 1 = Sharing Error
#define Graph_Present 0
#define Graph_ShareError 1


//  ###########################################################################

//  ....                           CONSTRUCTEURS                           ....

//  ....       Construction a partir de la connaissance des Entites        ....


    Interface_Graph::Interface_Graph
  (const Handle(Interface_InterfaceModel)& amodel,
   const Interface_GeneralLib& lib)
   : themodel   (amodel), thepresents ("") , thestats (0,amodel->NbEntities()) , 
     theflags   (amodel->NbEntities(),2) ,  
     theshareds (amodel->NbEntities()) , /*thesharnews(amodel->NbEntities()) , */
     thesharings (amodel->NbEntities())
{
  Handle(Interface_GTool) gtool;  // null
  theflags.AddFlag ("ShareError");  // -> flag n0 1
  Evaluate(lib,gtool);
}

    Interface_Graph::Interface_Graph
  (const Handle(Interface_InterfaceModel)& amodel,
   const Handle(Interface_Protocol)& protocol)
   : themodel   (amodel) , thepresents ("") ,
     thestats (0,amodel->NbEntities()) ,      theflags   (amodel->NbEntities(),2) ,  
     theshareds (amodel->NbEntities()) ,      /*thesharnews(amodel->NbEntities()) ,*/
     thesharings (amodel->NbEntities())
{
  Handle(Interface_GTool) gtool;  // null
  theflags.AddFlag ("ShareError");  // -> flag n0 1
  Evaluate(Interface_GeneralLib(protocol),gtool);
}

    Interface_Graph::Interface_Graph
  (const Handle(Interface_InterfaceModel)& amodel,
   const Handle(Interface_GTool)& gtool)
   : themodel   (amodel) , thepresents ("") , 
     thestats (0,amodel->NbEntities()) ,  theflags   (amodel->NbEntities(),2) ,  
     theshareds (amodel->NbEntities()) , /*thesharnews(amodel->NbEntities()) , */
     thesharings (amodel->NbEntities()) 
{
  theflags.AddFlag ("ShareError");  // -> flag n0 1
  Evaluate(gtool->Lib(),gtool);
}

    Interface_Graph::Interface_Graph
  (const Handle(Interface_InterfaceModel)& amodel)
   : themodel   (amodel) , thepresents ("") , 
     thestats (0,amodel->NbEntities()) , theflags   (amodel->NbEntities(),2) ,  
     theshareds (amodel->NbEntities()) , 
     /*thesharnews(amodel->NbEntities()) ,*/ thesharings (amodel->NbEntities())
{
  theflags.AddFlag ("ShareError");  // -> flag n0 1
  Handle(Interface_GTool) gtool = amodel->GTool();
  if (gtool.IsNull()) return;
  gtool->Reservate(amodel->NbEntities());
  Evaluate (gtool->Lib(),gtool);
}

    void Interface_Graph::Evaluate
  (const Interface_GeneralLib& lib, const Handle(Interface_GTool)& gtool)
{
//  Evaluation d un Graphe de dependances : sur chaque Entite, on prend sa
//  liste "Shared". On en deduit les "Sharing"  directement

  Standard_Boolean patool = gtool.IsNull();
  Standard_Integer n = Size(), total = 0;
  theshareds.Clear();
  thesharings.Clear();
  TColStd_Array1OfInteger counts (0,n); counts.Init(0);
  TColStd_Array1OfInteger lasts  (0,n); lasts.Init(0);
  Standard_Integer i; // svv Jan11 2000 : porting on DEC
  for (i = 1; i <= n; i ++) {
    theshareds.SetNumber (i);

//    ATTENTION : Si Entite non chargee donc illisible, basculer sur son
//    "Contenu" equivalent
    Handle(Standard_Transient) ent = themodel->Value(i);
    if (themodel->IsRedefinedContent(i)) ent = themodel->ReportEntity(i)->Content();

//    Resultat obtenu via GeneralLib
    Interface_EntityIterator iter;
    Handle(Interface_GeneralModule) module;
    Standard_Integer CN;

    if (patool) {
      if (lib.Select(ent,module,CN))  module->FillShared(themodel,CN,ent,iter);
    } else {
      if (gtool->Select(ent,module,CN))  module->FillShared(themodel,CN,ent,iter);
    }

    theshareds.Reservate (iter.NbEntities());
//    Mise en forme : liste d entiers
    for (iter.Start(); iter.More(); iter.Next()) {
//    num = 0 -> on sort du Model de depart, le noter "Error" et passer
      Standard_Integer num = EntityNumber(iter.Value());
      if (num == 0)  theflags.SetTrue (i,Graph_ShareError);
      else {
//  controle d unicite de couple (pere-fils)
	if (lasts(num) == i) continue;
	total ++;
	lasts.ChangeValue(num) = i;
	theshareds.Add (num);
	counts.ChangeValue(num) ++;
//  References inverses : plus tard
      }
    }
  }

//  Les references inverses : preallocation (pour compte > 1 seulement)

  thesharings.SetNumber(0);  thesharings.Reservate (total);
  for (i = 1; i <= n; i ++) {
    if (counts(i) < 2) continue;
    thesharings.SetNumber(i);
    thesharings.Reservate (-counts(i));
  }
//  Enregistrement par inversion
  for (i = 1; i <= n; i ++) {
    theshareds.SetNumber (i);
    Standard_Integer j,num, nb = theshareds.Length();
    for (j = 1; j <= nb; j ++) {
      num = theshareds.Value(j);
      thesharings.SetNumber(-num);
      thesharings.Add(-i);
    }
  }

}

    void Interface_Graph::EvalSharings ()
{
  thesharings.Clear();
  Standard_Integer n = thesharings.NbEntities();

// Difference avec Evaluate : SharedNums prend les Redefinis si necessaire

  for (Standard_Integer i = 1; i <= n; i ++) {
    Standard_Integer nb, num;
    if (thesharnews.IsRedefined(i)) {
      thesharnews.SetNumber(i);
      nb = thesharnews.Length();
      for (Standard_Integer j = 1; j <= nb; j ++) {
	num = thesharnews.Value (j);
	thesharings.SetNumber (num);
	thesharings.Reservate (thesharings.Length()+1);
	thesharings.Add (i);
      }
    } else {
      theshareds.SetNumber(i);
      nb = theshareds.Length();
      for (Standard_Integer j = 1; j <= nb; j ++) {
	num = theshareds.Value (j);
	thesharings.SetNumber (num);
	thesharings.Reservate (thesharings.Length()+1);
	thesharings.Add (i);
      }
    }
  }
}


//  ....                Construction depuis un autre Graph                ....

    Interface_Graph::Interface_Graph
  (const Interface_Graph& agraph, const Standard_Boolean /*copied*/)
    : themodel   (agraph.Model()), thepresents ("") , 
      thestats (0,agraph.Size()) , 
      theflags   (agraph.BitMap(),Standard_True) , 
      theshareds  (agraph.BasicSharedTable(),Standard_True) ,
      thesharnews (agraph.RedefinedSharedTable(),Standard_True) ,
      thesharings (agraph.SharingTable(),Standard_True)
{
  Standard_Integer nb = Size();
  for (Standard_Integer i = 1; i <= nb; i ++)
    thestats.SetValue (i,agraph.Status(i));
}

    Interface_IntList  Interface_Graph::BasicSharedTable () const
      {  return theshareds;  }

    Interface_IntList  Interface_Graph::RedefinedSharedTable () const
      {  return thesharnews;  }

    Interface_IntList  Interface_Graph::SharingTable () const
      {  return thesharings;  }


//  ###########################################################################

//  ....                ACCES UNITAIRES AUX DONNEES DE BASE                ....

    void  Interface_Graph::Reset ()
{
  thestats.Init(0);
  theflags.Init (Standard_False, Graph_Present);
  thesharnews.Clear();
  EvalSharings();
}

    void  Interface_Graph::ResetStatus ()
      {    thestats.Init(0);  theflags.Init (Standard_False, Graph_Present);  }


    Standard_Integer  Interface_Graph::Size () const 
      {  return thestats.Upper();  }

    Standard_Integer  Interface_Graph::EntityNumber
  (const Handle(Standard_Transient)& ent) const 
     {  return themodel->Number(ent);  }

    Standard_Boolean  Interface_Graph::IsPresent
  (const Standard_Integer num) const 
{
  if (num <= 0 || num > Size()) return Standard_False;
  return theflags.Value (num,Graph_Present);
}

    Standard_Boolean  Interface_Graph::IsPresent
  (const Handle(Standard_Transient)& ent) const 
      {  return IsPresent(EntityNumber(ent));  }

    const Handle(Standard_Transient)&  Interface_Graph::Entity
  (const Standard_Integer num) const 
      {  return themodel->Value(num);  }


    Standard_Integer  Interface_Graph::Status (const Standard_Integer num) const
      {  return thestats.Value(num);  }

    Standard_Integer&  Interface_Graph::CStatus (const Standard_Integer num)
      {  return thestats.ChangeValue(num);  }

    void  Interface_Graph::SetStatus
  (const Standard_Integer num, const Standard_Integer stat)
      {  thestats.SetValue(num,stat);  }

    void  Interface_Graph::RemoveItem(const Standard_Integer num)
{
  thestats.SetValue(num,0);  theflags.SetFalse (num,Graph_Present);
}

    void  Interface_Graph::ChangeStatus
  (const Standard_Integer oldstat, const Standard_Integer newstat)
{
  Standard_Integer nb = thestats.Upper();
  for (Standard_Integer i = 1; i <= nb; i ++) {
    if (thestats.Value(i) == oldstat) thestats.SetValue(i,newstat);
  }
}

    void  Interface_Graph::RemoveStatus(const Standard_Integer stat)
{
  Standard_Integer nb = thestats.Upper();
  for (Standard_Integer i = 1; i <= nb; i ++) {
    if (thestats.Value(i) == stat) RemoveItem(i);
  }
}

    const Interface_BitMap&  Interface_Graph::BitMap () const
      {  return theflags;  }

    Interface_BitMap&  Interface_Graph::CBitMap ()
      {  return theflags;  }


//  ###########################################################################

//  ....      Chargements Elementaires avec Propagation de "Share"      .... //

    const Handle(Interface_InterfaceModel)&  Interface_Graph::Model() const 
      {  return themodel;  }

    void  Interface_Graph::GetFromModel ()
{
  if (themodel.IsNull()) return;    // no model ... (-> on n ira pas loin)
  theflags.Init (Standard_True,Graph_Present);
  thestats.Init (0);
}

    void  Interface_Graph::GetFromEntity
  (const Handle(Standard_Transient)& ent, const Standard_Boolean shared,
   const Standard_Integer newstat)
{
  Standard_Integer num = EntityNumber(ent);
  if (num == 0) return;
  if (theflags.CTrue(num,Graph_Present)) return;  // deja pris : on passe
  thestats.SetValue(num,newstat);
  if (!shared) return;
//  Attention a la redefinition !
  Interface_IntList list = thesharnews;
  if (!list.IsRedefined(num)) list = theshareds;
  list.SetNumber (num);

  Standard_Integer nb = list.Length();
  for (Standard_Integer i = 1; i <= nb; i ++)    GetFromEntity
    (themodel->Value (list.Value(i)),Standard_True,newstat);
}

    void  Interface_Graph::GetFromEntity
  (const Handle(Standard_Transient)& ent, const Standard_Boolean shared,
   const Standard_Integer newstat, const Standard_Integer overlapstat,
   const Standard_Boolean cumul)
{
  Standard_Integer num   = EntityNumber(ent);
  if (num == 0) return;
  Standard_Boolean pasla = !theflags.CTrue (num,Graph_Present);
  Standard_Integer stat  = thestats.Value(num); 

  if (pasla) {
///    theflags.SetTrue (num, Graph_Present);   // nouveau : noter avec newstat
    thestats.SetValue(num,newstat);
  } else {
    Standard_Integer overstat = stat;
    if (stat != newstat) {                   // deja pris, meme statut : passer
      if (cumul) overstat += overlapstat;    // nouveau statut : avec cumul ...
      else       overstat  = overlapstat;    // ... ou sans (statut force)
      if (stat != overstat)                  // si repasse deja faite, passer
	thestats.SetValue(num,overstat);
    }
  }
  if (!shared) return;
//  Attention a la redefinition !
  Interface_IntList list = thesharnews;
  if (!list.IsRedefined(num)) list = theshareds;
  list.SetNumber (num);
  Standard_Integer nb = list.Length();
  for (Standard_Integer i = 1; i <= nb; i ++)    GetFromEntity
    (themodel->Value (list.Value(i)),Standard_True,newstat);
}



    void  Interface_Graph::GetFromIter
  (const Interface_EntityIterator& iter, const Standard_Integer newstat)
{
  for (iter.Start(); iter.More(); iter.Next()) {
    Handle(Standard_Transient) ent = iter.Value();
    Standard_Integer num = EntityNumber(ent);
    if (num == 0) continue;
    if (theflags.CTrue(num,Graph_Present)) continue;
    thestats.SetValue(num,newstat);
  }
}


    void  Interface_Graph::GetFromIter
  (const Interface_EntityIterator& iter,
   const Standard_Integer newstat, const Standard_Integer overlapstat,
   const Standard_Boolean cumul)
{
  for (iter.Start(); iter.More(); iter.Next()) {
    Handle(Standard_Transient) ent = iter.Value();
    Standard_Integer num   = EntityNumber(ent);
    if (num == 0) continue;
    /*Standard_Boolean pasla = !*/theflags.Value(num,Graph_Present);
    /*Standard_Integer stat  = */thestats.Value(num); 
    GetFromEntity (ent,Standard_False,newstat,overlapstat,cumul);
  }
}


    void Interface_Graph::GetFromGraph (const Interface_Graph& agraph)
{
  if (Model() != agraph.Model()) Standard_DomainError::Raise
    ("Graph from Interface : GetFromGraph");
  Standard_Integer nb = Size();
  for (Standard_Integer i = 1; i <= nb; i ++) {
    if (agraph.IsPresent(i))
      GetFromEntity (agraph.Entity(i),Standard_False,agraph.Status(i));
  }
}

    void Interface_Graph::GetFromGraph
  (const Interface_Graph& agraph, const Standard_Integer stat)
{
  if (Model() != agraph.Model()) Standard_DomainError::Raise
    ("Graph from Interface : GetFromGraph");
  Standard_Integer nb = Size();
  for (Standard_Integer i = 1; i <= nb; i ++) {
    if (agraph.IsPresent(i) && agraph.Status(i) == stat)
      GetFromEntity (agraph.Entity(i),Standard_False,stat);
  }
}

//  #####################################################################

//  ....                Listage des Entites Partagees                ....

    Standard_Boolean Interface_Graph::HasShareErrors
  (const Handle(Standard_Transient)& ent) const
{
  Standard_Integer num   = EntityNumber(ent);
  if (num == 0) return Standard_True;
  return theflags.Value (num,Graph_ShareError);
}

//  A chaque entite, on peut attacher une Liste de numeros d entites partagees
//  Si elle est nulle, BasicShareds convient, sinon on prend RedefinedShareds

    Standard_Boolean Interface_Graph::HasRedefinedShareds
  (const Handle(Standard_Transient)& ent) const
{
  Standard_Integer num   = EntityNumber(ent);
  if (num == 0) return Standard_False;
  return thesharnews.IsRedefined (num);
}

    Interface_EntityIterator Interface_Graph::Shareds
  (const Handle(Standard_Transient)& ent) const
{
  Standard_Integer num   = EntityNumber(ent);
  if (num == 0)  Standard_DomainError::Raise ("Interface : Shareds");

  Interface_EntityIterator iter;
  Interface_IntList list = thesharnews;
  if (!list.IsRedefined(num)) list = theshareds;
  list.SetNumber (num);
  Standard_Integer nb = list.Length();
  for (Standard_Integer i = 1; i <= nb; i ++)
    iter.GetOneItem (themodel->Value (list.Value(i) ));
  return iter;
}

    Interface_IntList  Interface_Graph::SharedNums
  (const Standard_Integer num) const
{
  Interface_IntList list = thesharnews;
  if (!list.IsRedefined(num)) list = theshareds;
  list.SetNumber (num);
  return list;
}

    Interface_EntityIterator Interface_Graph::Sharings
  (const Handle(Standard_Transient)& ent) const
{
  Standard_Integer num   = EntityNumber(ent);
  if (num == 0) Standard_DomainError::Raise ("Interface : Sharings");

  Interface_EntityIterator iter;
  Interface_IntList list = thesharings;  list.SetNumber (num);
  Standard_Integer nb = list.Length();
  for (Standard_Integer i = 1; i <= nb; i ++)
    iter.GetOneItem (themodel->Value(list.Value(i)));
  return iter;
}

    Interface_IntList Interface_Graph::SharingNums
  (const Standard_Integer num) const
{
  Interface_IntList list = thesharings;
  if (num > 0) list.SetNumber (num);
  return list;
}


static void AddTypedSharings
  (const Handle(Standard_Transient)& ent, const Handle(Standard_Type)& type,
   Interface_EntityIterator& iter, const Standard_Integer n,
   const Interface_Graph& G)
{
  if (ent.IsNull()) return;
  if (ent->IsKind(type))  {  iter.AddItem (ent);  return;  }
  if (iter.NbEntities() > n) return;

  Interface_IntList list = G.SharingNums(G.EntityNumber(ent));
  Standard_Integer nb = list.Length();
  for (Standard_Integer i = 1; i <= nb; i ++)
    AddTypedSharings (G.Entity(list.Value(i)) ,type,iter,nb,G);
}

    Interface_EntityIterator Interface_Graph::TypedSharings
  (const Handle(Standard_Transient)& ent, const Handle(Standard_Type)& type) const
{
  Interface_EntityIterator iter;
  Standard_Integer n = Size();
  AddTypedSharings (ent,type,iter,n,*this);
  return iter;
}
  

    Interface_EntityIterator Interface_Graph::RootEntities () const
{
  Interface_EntityIterator iter;
  Standard_Integer nb = Size();
  Interface_IntList list (thesharings);
  for (Standard_Integer i = 1; i <= nb; i ++) {
    list.SetNumber (i);
    if (list.Length() == 0) iter.GetOneItem (themodel->Value(i));
  }
  return iter;
}


//  ######################################################################

//  ....                Redefinition des listes Shared-Sharing        ....

    void Interface_Graph::SetShare
  (const Handle(Standard_Transient)& ent)
{
  Standard_Integer num = EntityNumber(ent);
  if (num == 0) return;
  SetShare (ent,SharedNums(num));
}

    void Interface_Graph::SetShare
  (const Handle(Standard_Transient)& ent,
   const Interface_EntityIterator& list)
{
  if(!thesharnews.NbEntities())
    thesharnews.Initialize(themodel->NbEntities());
  Standard_Integer num   = EntityNumber(ent);
  if (num == 0) return;
  thesharnews.SetNumber (num);
  thesharnews.SetRedefined (Standard_True);
  thesharnews.Reservate (list.NbEntities());

  for (list.Start(); list.More(); list.Next()) {
    Standard_Integer nsh = EntityNumber(list.Value());
    if (nsh != 0) thesharnews.Add (nsh);
  }
}

    void Interface_Graph::SetShare
  (const Handle(Standard_Transient)& ent, const Interface_IntList& list)
{
  Standard_Integer num   = EntityNumber(ent);
  if (num == 0) return;
  if(!thesharnews.NbEntities())
    thesharnews.Initialize(themodel->NbEntities());
  Standard_Integer i, n = list.Length();
  thesharnews.SetNumber (num);
  thesharnews.SetRedefined (Standard_True);
  thesharnews.Reservate (n);
  for (i = 1; i <= n; i ++) {
    Standard_Integer nsh = list.Value(i);
    if (nsh != 0) thesharnews.Add (nsh);
  }
}

    void Interface_Graph::SetNoShare
  (const Handle(Standard_Transient)& ent)
{
  Standard_Integer num   = EntityNumber(ent);
  if (num == 0) return;
  if(!thesharnews.NbEntities()) return;
   
  thesharnews.SetNumber (num);
  thesharnews.SetRedefined (Standard_False);
}

    void Interface_Graph::SetNoShare (const Interface_EntityIterator& list)
{
  for (list.Start(); list.More(); list.Next()) SetNoShare(list.Value());
}

    void Interface_Graph::AddShared
  (const Handle(Standard_Transient)& ent,
   const Handle(Standard_Transient)& shared)
{
  //Standard_Integer i, nb; svv Feb21 2000 : porting on SIL
  Standard_Integer num   = EntityNumber(ent);
  Standard_Integer nsh   = EntityNumber(shared);
  
  if (!thesharnews.IsRedefined(num) || num == 0 || nsh == 0) Standard_DomainError::Raise
    ("Interface Graph : AddShared, cannot be applied");
  if(!thesharnews.NbEntities()) 
    thesharnews.Initialize(themodel->NbEntities());
//   Liste Shared(ent)
  thesharnews.SetNumber (num);
  thesharnews.Reservate (thesharnews.Length()+1);
  thesharnews.Add (nsh);

//  Liste Sharing(shared)
  thesharings.SetNumber (nsh);
  thesharings.Reservate (thesharings.Length()+1);
  thesharings.Add (num);
}


    void Interface_Graph::RemoveShared
  (const Handle(Standard_Transient)& ent,
   const Handle(Standard_Transient)& shared)
{
  Standard_Integer num   = EntityNumber(ent);
  Standard_Integer nsh   = EntityNumber(shared);
  if (!thesharnews.IsRedefined(num) || num == 0 || nsh == 0) Standard_DomainError::Raise
    ("Interface Graph : RemoveShared, cannot be applied");

//  Liste Shared (ent)
  if(!thesharnews.NbEntities()) 
    thesharnews.Initialize(themodel->NbEntities());
  
  thesharnews.SetNumber (num);
  Standard_Integer i,nbsh = thesharnews.Length();
  for (i = nbsh; i > 0; i --)
    if (thesharnews.Value(i) == nsh) thesharnews.Remove(i);

//  Liste Sharing (shared)
  thesharings.SetNumber (nsh);
  nbsh = thesharings.Length();
  for (i = nbsh; i > 0; i --)
    if (thesharings.Value(i) == num) thesharings.Remove(i);
}


    void Interface_Graph::ResetShare
  (const Handle(Standard_Transient)& ent)
{
  Standard_Integer num   = EntityNumber(ent);
  if (num == 0) return;

  Interface_IntList snew(thesharnews);
  
  if (!thesharnews.NbEntities() || !snew.IsRedefined(num)) return;
  snew.SetNumber (num);
  Interface_IntList sold(theshareds);
  sold.SetNumber (num);

//  Attention aux Sharings ... Il va falloir ajouter, supprimer ... laisser !
//  Tableau // Entites : 0 hors jeu  1 reapparait  2 disparait  3 reste 

  Standard_Integer n = Size();
  TColStd_Array1OfInteger oldnew(1,n); oldnew.Init(0);
  Standard_Integer ns = sold.Length();
  Standard_Integer i; // svv Jan11 2000 : porting on DEC
  for (i = 1; i <= ns; i ++)
    oldnew.SetValue(sold.Value(i),1);    // pourra passer en 3 plus tard ...
  ns = snew.Length();
  for (i = 1; i <= ns; i ++) {
    Standard_Integer oldstat = oldnew.Value(snew.Value(i));
    oldnew.SetValue(snew.Value(i),oldstat+2);  // 0 -> 2, 1 -> 3
  }

//  Muni de ces donnees, on pourra modifier les listes Sharings impliquees
  for (i = 1; i <= n; i ++) {
    Standard_Integer oldstat = oldnew.Value(snew.Value(i));
    if (oldstat == 0 || oldstat == 2) continue;
    thesharings.SetNumber(i);
    if (oldstat == 1) {
      thesharings.Reservate (thesharings.Length()+1);
      thesharings.Add (num);
    } else if (oldstat == 3) {
      Standard_Integer j,nbsh = thesharings.Length();
      for (j = nbsh; j > 0; j --)
	if (thesharings.Value(j) == num) thesharings.Remove(j);
    }
  }

//  Shared : beaucoup plus simple, ANNULER Redefined
  thesharnews.SetRedefined (Standard_False);
}

    void Interface_Graph::ResetAllShare ()
{
  thesharnews.Clear();
  EvalSharings();
}


    Handle(TCollection_HAsciiString)  Interface_Graph::Name
  (const Handle(Standard_Transient)& ent) const
{
  Handle(TCollection_HAsciiString) str;
  if (themodel.IsNull()) return str;
  if (themodel->Number(ent)) return str;

  Handle(Interface_GTool) gtool = themodel->GTool();
  if (gtool.IsNull()) return str;

  Handle(Interface_GeneralModule) module;
  Standard_Integer CN;
  if (!gtool->Select(ent,module,CN)) return str;

  Interface_ShareTool sht (*this);
  return module->Name (CN,ent,sht);
}