summaryrefslogtreecommitdiff
path: root/src/TObj/TObj_Object.cxx
blob: 2fb0e47b064d616e803339b821543b522e43a4d1 (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
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
// File:        TObj_Object.cxx
// Created:     Mon Nov 22 15:06 2004
// Author:      Pavel TELKOV
// Copyright:   Open CASCADE  2007
// The original implementation Copyright: (C) RINA S.p.A

#include <TObj_Object.hxx>

#include <TObj_Assistant.hxx>
#include <TObj_LabelIterator.hxx>
#include <TObj_Model.hxx>
#include <TObj_ObjectIterator.hxx>
#include <TObj_OcafObjectIterator.hxx>
#include <TObj_Persistence.hxx>
#include <TObj_ReferenceIterator.hxx>
#include <TObj_SequenceIterator.hxx>
#include <TDataStd_AsciiString.hxx>
#include <TObj_TModel.hxx>
#include <TObj_TNameContainer.hxx>
#include <TObj_TObject.hxx>
#include <TObj_TReference.hxx>

#include <TCollection_HAsciiString.hxx>
#include <TColStd_HArray1OfInteger.hxx>
#include <TColStd_HArray1OfReal.hxx>
#include <TColStd_HArray1OfExtendedString.hxx>
#include <TColStd_SequenceOfInteger.hxx>
#include <TDF_AttributeIterator.hxx>
#include <TDF_ChildIDIterator.hxx>
#include <TDF_ChildIterator.hxx>
#include <TDF_CopyLabel.hxx>
#include <TDF_Data.hxx>
#include <TDF_RelocationTable.hxx>
#include <TDF_Tool.hxx>
#include <TDataStd_ExtStringArray.hxx>
#include <TDataStd_Integer.hxx>
#include <TDataStd_IntegerArray.hxx>
#include <TDataStd_Name.hxx>
#include <TDataStd_Real.hxx>
#include <TDataStd_RealArray.hxx>
#include <TDocStd_Document.hxx>
#include <TDocStd_Owner.hxx>


IMPLEMENT_STANDARD_HANDLE(TObj_Object,MMgt_TShared)
IMPLEMENT_STANDARD_RTTIEXT(TObj_Object,MMgt_TShared)

//=======================================================================
//function : Constructor
//purpose  :
//=======================================================================

TObj_Object::TObj_Object(const TDF_Label& theLabel,
                                 const Standard_Boolean theSetName)
     : myLabel(theLabel)
{
  Handle(TObj_Object) aMe = this;
  TObj_TObject::Set(myLabel, aMe);
  if (theSetName)
    TObj_Model::SetNewName(aMe);
}

//=======================================================================
//function : GetModel
//purpose  :
//=======================================================================

Handle(TObj_Model) TObj_Object::GetModel() const
{
  Handle(TObj_Model) aModel;
  // if object label is null object is not alive
  if ( myLabel.IsNull() )
    return aModel;

  //TDF_Label aLabel = TDocStd_Document::Get(myLabel)->Main();
  Handle(TDF_Data) aData = myLabel.Data();
  if (aData.IsNull())
    return aModel;
  
  // try get the document from owner attribute manually
  TDF_Label aLabel = aData->Root();
  Handle(TDocStd_Owner) anOwnerAttr;
  Handle(TDocStd_Document) aTDoc;
  if ( !aLabel.IsNull() && aLabel.FindAttribute( TDocStd_Owner::GetID(), anOwnerAttr ) )
    aTDoc = anOwnerAttr->GetDocument();
  if (aTDoc.IsNull())
    return aModel;
  
  // use main label of the document to find TObj model attribute
  aLabel = aTDoc->Main();
  Handle(TObj_TModel) aModelAttr;
  if (!aLabel.IsNull() && aLabel.FindAttribute(TObj_TModel::GetID(), aModelAttr))
    aModel = aModelAttr->Model();

  return aModel;
}

//=======================================================================
//function : GetChildren
//purpose  : Returns iterator for the child objects.
//           This method provides tree-like view of the objects hierarchy.
//           The references to other objects are not considered as children.
//           theType narrows a variety of iterated objects
//=======================================================================

static void addObjToOrderSequence( const Handle(TObj_Object)& theObj,
                                   const Standard_Integer         theOrder,
                                   Handle(TObj_HSequenceOfObject)& theHSeqOfObj,
                                   const Standard_Integer theHSeqLength,
                                   Standard_Integer& theLastIndex,
                                   Standard_Integer& theLastOrder )
{
  if ( theOrder > theLastOrder )
  {
    while ( theOrder > theLastOrder )
    {
      // get next object and compare with them
      if ( ++theLastIndex > theHSeqLength )
      {
        theHSeqOfObj->Append( theObj );
        theLastIndex = theHSeqLength + 1;
        theLastOrder = theOrder;
        return;
      }
      Handle(TObj_Object) aNext = theHSeqOfObj->Value(theLastIndex);
      theLastOrder = aNext->GetOrder();
    }
    // add before current position
    theHSeqOfObj->InsertBefore( theLastIndex, theObj );
    theLastOrder = theOrder;
  }
  else
  {
    while ( theOrder < theLastOrder )
    {
      if ( --theLastIndex < 1 )
      {
        theHSeqOfObj->InsertBefore( 1, theObj );
        theLastIndex = 1;
        theLastOrder = theOrder;
        return;
      }
      // get next object and compare with them
      Handle(TObj_Object) aNext = theHSeqOfObj->Value(theLastIndex);
      theLastOrder = aNext->GetOrder();
    }
    // add object after current position
    theHSeqOfObj->InsertAfter( theLastIndex, theObj );
    theLastIndex++;
    theLastOrder = theOrder;
    return;
  }
}

Handle(TObj_ObjectIterator) TObj_Object::GetChildren
                         (const Handle(Standard_Type)& theType) const
{
  Handle(TObj_ObjectIterator) anItr =
    new TObj_OcafObjectIterator(GetChildLabel(), theType, Standard_True);
  if ( !TestFlags( ObjectState_Ordered ) )
    return anItr;
  // return object according to their order
  Standard_Integer aLastIndex = 0;
  Standard_Integer aLastOrder = 0;
  Handle(TObj_HSequenceOfObject) aHSeqOfObj = new TObj_HSequenceOfObject();
  for ( ; anItr->More(); anItr->Next() )
  {
    Handle(TObj_Object) anObj = anItr->Value();
    if ( anObj.IsNull() )
      continue;
    Standard_Integer anOrder = anObj->GetOrder();
    if ( !aLastIndex )
    {
      aHSeqOfObj->Append( anObj );
      aLastIndex = 1;
      aLastOrder = anOrder;
    }
    else
      addObjToOrderSequence( anObj, anOrder, aHSeqOfObj, aHSeqOfObj->Length(),
                             aLastIndex, aLastOrder );
  }
  return new TObj_SequenceIterator( aHSeqOfObj );
}

//=======================================================================
//function : getLabelByRank
//purpose  : Auxiliary function to get a label and attache a name to it
//           Used in debug mode only
//=======================================================================

#ifdef DFBROWSE
static TDF_Label getLabelByRank(const TDF_Label& theL,
                                const Standard_Integer theRank,
                                const Standard_CString theName)
{
  TDF_Label L = theL.FindChild(theRank,Standard_False);
  if ( L.IsNull() )
  {
    L = theL.FindChild(theRank,Standard_True);
    TDataStd_Name::Set(L, theName);
  }
  return L;
}
#endif

//=======================================================================
//function : GetChildLabel
//purpose  :
//=======================================================================

TDF_Label TObj_Object::GetChildLabel() const
{
#ifdef DFBROWSE
  return getLabelByRank(GetLabel(),4,"Children");
#else
  return GetLabel().FindChild ( 4, Standard_True );
#endif
}

//=======================================================================
//function : getChildLabel
//purpose  :
//=======================================================================

TDF_Label TObj_Object::getChildLabel(const Standard_Integer theRank) const
{
  TDF_Label aLabel = GetChildLabel();
  if ( theRank > 0 )
    aLabel = aLabel.FindChild( theRank, Standard_True );
  return aLabel;
}

//=======================================================================
//function : GetLabel
//purpose  :
//=======================================================================

TDF_Label TObj_Object::GetLabel() const
{
  return myLabel;
}

//=======================================================================
//function : SetName
//purpose  :
//=======================================================================

Standard_Boolean TObj_Object::SetName(const Handle(TCollection_HExtendedString)& theName) const
{
  // check if the name is exactly the same
  Handle(TCollection_HExtendedString) anOldName = GetName();
  if( !anOldName.IsNull() && theName->String().IsEqual(anOldName->String()) )
    return Standard_True;

  // check if name is already registered and do nothing in that case
  const Handle(TObj_TNameContainer) aDictionary = GetDictionary();
  Handle(TObj_Model) aModel = GetModel();
  if( aModel->IsRegisteredName( theName, aDictionary ) )
    return Standard_False;

  // change name and update registry
  if (!anOldName.IsNull())
    aModel->UnRegisterName( anOldName, aDictionary );
  if ( theName.IsNull() ) 
    GetLabel().ForgetAttribute ( TDataStd_Name::GetID() );
  else
  {
    aModel->RegisterName( theName, GetLabel(), aDictionary );
    TDataStd_Name::Set(GetLabel(),theName->String());
  }
  return Standard_True;
}

//=======================================================================
//function : SetName
//purpose  :
//=======================================================================

Standard_Boolean TObj_Object::SetName(const Handle(TCollection_HAsciiString)& theName) const
{
  return SetName( new TCollection_HExtendedString ( theName ) );
}

//=======================================================================
//function : SetName
//purpose  :
//=======================================================================

Standard_Boolean TObj_Object::SetName(const Standard_CString theName) const
{
  return SetName ( new TCollection_HExtendedString ( theName ) );
}

//=======================================================================
//function : GetName
//purpose  :
//=======================================================================

Handle(TCollection_HExtendedString) TObj_Object::GetName() const
{
  Handle(TCollection_HExtendedString) aName;
  Handle(TDataStd_Name) A;
  if (GetLabel().FindAttribute (TDataStd_Name::GetID(), A))
    aName = new TCollection_HExtendedString(A->Get());
  else aName = new TCollection_HExtendedString("");
  return aName;
}

//=======================================================================
//function : GetName
//purpose  :
//=======================================================================

Standard_Boolean TObj_Object::GetName(TCollection_ExtendedString& theStr) const
{
  Handle(TCollection_HExtendedString) aName = GetName();
  theStr = aName->String();
  return theStr.Length() != 0;
}

//=======================================================================
//function : GetName
//purpose  :
//=======================================================================

Standard_Boolean TObj_Object::GetName(TCollection_AsciiString& theName) const
{
  Handle(TCollection_HExtendedString) aName = GetName();
  if(aName.IsNull())
    return Standard_False;
  theName = TCollection_AsciiString (aName->String());
  return theName.Length() != 0;
}

//=======================================================================
//function : HasReference
//purpose  :
//=======================================================================

Standard_Boolean TObj_Object::HasReference
                         (const Handle(TObj_Object)& theObject) const
{
  if ( theObject.IsNull() )
    return Standard_False;
  Handle(TObj_ObjectIterator) anItr = GetReferences(theObject->DynamicType());
  if ( anItr.IsNull() || !anItr->More() )
    return Standard_False;
  for ( ; anItr->More(); anItr->Next() )
    if ( anItr->Value() == theObject )
      return Standard_True;
  return Standard_False;
}

//=======================================================================
//function : GetReferences
//purpose  :
//=======================================================================

Handle(TObj_ObjectIterator) TObj_Object::GetReferences
                         (const Handle(Standard_Type)& theType) const
{
  return new TObj_ReferenceIterator(GetReferenceLabel(), theType);
}

//=======================================================================
//function : RemoveAllReferences
//purpose  :
//=======================================================================

void TObj_Object::RemoveAllReferences()
{
  GetReferenceLabel().ForgetAllAttributes();
  // other implementation may be get all reference by iterator
  // and replace all of them by null handle with help of ::ReplaceReference
}

//=======================================================================
//function : AddBackReference
//purpose  :
//=======================================================================

void TObj_Object::AddBackReference (const Handle(TObj_Object)& theObject)
{
  if (myHSeqBackRef.IsNull())
    myHSeqBackRef = new TObj_HSequenceOfObject;

  myHSeqBackRef->Append( theObject );
}

//=======================================================================
//function : RemoveBackReference
//purpose  :
//=======================================================================

void TObj_Object::RemoveBackReference (const Handle(TObj_Object)& theObject,
                                           const Standard_Boolean theSingleOnly)
{
  if (myHSeqBackRef.IsNull()) // to avoid exception.
    return;

  for (Standard_Integer i = 1; i <= myHSeqBackRef->Length(); i++)
  {
    if (theObject != myHSeqBackRef->Value(i))
      continue;

    myHSeqBackRef->Remove(i--);
    if (theSingleOnly)
      break;
  }
  if (myHSeqBackRef->Length() < 1)
    myHSeqBackRef.Nullify(); // do not need to store empty sequence.
}
//=======================================================================
//function : GetBackReferences
//purpose  :
//=======================================================================

Handle(TObj_ObjectIterator) TObj_Object::GetBackReferences
                         (const Handle(Standard_Type)& theType) const
{
  return new TObj_SequenceIterator( myHSeqBackRef, theType );
}

//=======================================================================
//function : ClearBackReferences
//purpose  :
//=======================================================================

void TObj_Object::ClearBackReferences ()
{
  myHSeqBackRef.Nullify();
}

//=======================================================================
//function : HasBackReferences
//purpose  : 
//=======================================================================

Standard_Boolean TObj_Object::HasBackReferences() const
{
  Handle(TObj_ObjectIterator) anItr = GetBackReferences();
  if ( anItr.IsNull() || !anItr->More() )
    return Standard_False;
  return Standard_True;
}

//=======================================================================
//function : CanRemoveReference
//purpose  : 
//=======================================================================

Standard_Boolean TObj_Object::CanRemoveReference
  (const Handle(TObj_Object)& /*theObject*/) const
{
  return Standard_False;
}

//=======================================================================
//function : RemoveReference
//purpose  : 
//=======================================================================

void TObj_Object::RemoveReference (const Handle(TObj_Object)& theObject)
{
  Handle(TObj_Object) aNullObj;
  ReplaceReference (theObject, aNullObj);
}
  
//=======================================================================
//function : CanDetach
//purpose  :
//=======================================================================
 Standard_Boolean TObj_Object::CanDetach(const TObj_DeletingMode theMode )
{
  if( !IsAlive() )
    return Standard_False;
  
  Handle(TObj_ObjectIterator) aRefs = GetBackReferences();
  
  // Free Object can be deleted in any Mode
  if ( aRefs.IsNull() || ! aRefs->More() )
    return Standard_True;
  
  if( theMode == TObj_FreeOnly )
    return Standard_False;

  if( theMode == TObj_Forced )
    return Standard_True;

  // check the last KeepDepending mode
  Handle(TObj_Object) aMe = this;
  for( ; aRefs->More(); aRefs->Next()) 
  {
    Handle(TObj_Object) anObject = aRefs->Value();
    if (! anObject->CanRemoveReference(aMe) )
      return Standard_False; // one of objects could not be unlinked
  }
    
  return Standard_True;
}

//=======================================================================
//function : Detach
//purpose  :
//=======================================================================

Standard_Boolean TObj_Object::Detach(const TObj_DeletingMode theMode)
{
  if( !IsAlive() )
    return Standard_False;

  // if object can not be deleted returns False
  if(!RemoveBackReferences(theMode))
    return Standard_False;

  Handle(TCollection_HExtendedString) anOldName = GetName();

  // detaching childs
  Handle(TObj_ObjectIterator) aChildren = GetChildren();

  for(;aChildren->More(); aChildren->Next())
    aChildren->Value()->Detach(theMode);

  // Clearing its own data
  GetReferenceLabel().ForgetAllAttributes();
  // clear back references container
  ClearBackReferences();
  // remove data
  GetDataLabel().ForgetAllAttributes();

  if (!anOldName.IsNull())
  {
    const Handle(TObj_TNameContainer) aDictionary = GetDictionary();
    // unregister only it is registered to me.
    if ( !aDictionary.IsNull() && aDictionary->IsRegistered( anOldName ) )
    {
      TDF_Label aRegisteredLabel = aDictionary->Get().Find( anOldName );
      if ( !aRegisteredLabel.IsNull() && aRegisteredLabel == GetLabel() )
        aDictionary->RemoveName( anOldName );
    }
  }
  GetLabel().ForgetAllAttributes();

  return Standard_True;
}

//=======================================================================
//function : Detach
//purpose  : public static method
//=======================================================================

Standard_Boolean TObj_Object::Detach(const TDF_Label& theLabel,
                                         const  TObj_DeletingMode theMode)
{
  Handle(TObj_Object) anObject;
  if( GetObj(theLabel, anObject) )
    return anObject->Detach(theMode);
  return Standard_True;
}

//=======================================================================
//function : GetObj
//purpose  :
//=======================================================================

Standard_Boolean TObj_Object::GetObj(const TDF_Label& theLabel,
                                         Handle(TObj_Object)& theResult,
                                         const Standard_Boolean isSuper)
{
  if(theLabel.IsNull())
    return Standard_False;

  Handle(TObj_TObject) A;

  // find on the current label
  if ( theLabel.FindAttribute(TObj_TObject::GetID(), A) )
    theResult = A->Get();
  else
    theResult.Nullify();

  if( !theResult.IsNull() )
  {
    if( !theResult->myLabel.IsNull() )
      return Standard_True;

    // if the object is not allive then it is a wrong data in the Data Model
    theResult.Nullify();
  }
  else if( isSuper )
  {
    // try to get object from the father label
    return GetObj(theLabel.Father(),theResult,isSuper);
  }

  return Standard_False;
}

//=======================================================================
//function : GetFatherObject
//purpose  : Returns the father object, which may be NULL
//           theType gives type of father object to search
//=======================================================================

Handle(TObj_Object) TObj_Object::GetFatherObject
                         (const Handle(Standard_Type)& theType) const
{
  Handle(TObj_Object) aFather, aSon(this);

  while ( aSon->GetObj( aSon->GetLabel().Father(), aFather, Standard_True ) )
  {
    if (theType.IsNull() || aFather->IsKind( theType ))
      break;
    else
    {
      aSon = aFather;
      aFather.Nullify();
    }
  }

  return aFather;
}


//=======================================================================
//function : AfterRetrieval
//purpose  :
//=======================================================================

void TObj_Object::AfterRetrieval()
{
  // Register the name
  Handle(TObj_Model) aModel = GetModel();
  if ( !aModel.IsNull() )
    aModel->RegisterName( GetName(), GetLabel(), GetDictionary() );
}

//=======================================================================
//function : BeforeStoring
//purpose  : base implementation
//=======================================================================

void TObj_Object::BeforeStoring()
{
}

//=======================================================================
//function : GetReferenceLabel
//purpose  :
//=======================================================================

TDF_Label TObj_Object::GetReferenceLabel() const
{
#ifdef DFBROWSE
  return getLabelByRank(GetLabel(),1,"References");
#else
  return GetLabel().FindChild ( 1, Standard_True );
#endif
}

//=======================================================================
//function : GetDataLabel
//purpose  :
//=======================================================================

TDF_Label TObj_Object::GetDataLabel() const
{
#ifdef DFBROWSE
  return getLabelByRank(GetLabel(),3,"Data");
#else
  return GetLabel().FindChild ( 3, Standard_True );
#endif
}

//=======================================================================
//function : getDataLabel
//purpose  :
//=======================================================================

TDF_Label TObj_Object::getDataLabel (const Standard_Integer theRank1,
                                         const Standard_Integer theRank2) const
{
  TDF_Label aLabel;
  if ( theRank1 > 0 ) // protection
  {
    aLabel = GetDataLabel().FindChild ( theRank1, Standard_True );
    if ( theRank2 > 0 )
      aLabel = aLabel.FindChild ( theRank2, Standard_True );
  }
  return aLabel;
}

//=======================================================================
//function : getReferenceLabel
//purpose  :
//=======================================================================

TDF_Label TObj_Object::getReferenceLabel (const Standard_Integer theRank1,
                                              const Standard_Integer theRank2) const
{
  TDF_Label aLabel;
  if ( theRank1 > 0 ) // protection
  {
    aLabel = GetReferenceLabel().FindChild ( theRank1, Standard_True );
    if ( theRank2 > 0 )
      aLabel = aLabel.FindChild ( theRank2, Standard_True );
  }
  return aLabel;
}

//=======================================================================
//function : isDataAttribute
//purpose  : Returns True if there is an attribute having theGUID on the
//           theRank2-th sublabel of theRank1-th sublabel of the Data
//           label of the object.
//           If theRank2 is 0 (default), label theRank1 is supposed, not
//           its sublabel
//=======================================================================

Standard_Boolean TObj_Object::isDataAttribute
                        (const Standard_GUID&   theGUID,
                         const Standard_Integer theRank1,
                         const Standard_Integer theRank2) const
{
  return getDataLabel(theRank1,theRank2).IsAttribute(theGUID);
}

//=======================================================================
//function : getReal
//purpose  :
//=======================================================================

Standard_Real TObj_Object::getReal (const Standard_Integer theRank1,
                                        const Standard_Integer theRank2) const
{
  TDF_Label aLabel = getDataLabel(theRank1,theRank2);

  Handle(TDataStd_Real) aReal;
  aLabel.FindAttribute ( TDataStd_Real::GetID(), aReal );
  return aReal.IsNull() ? 0. : aReal->Get();
}

//=======================================================================
//function : setReal
//purpose  :
//=======================================================================

Standard_Boolean TObj_Object::setReal (const Standard_Real theValue,
                                           const Standard_Integer theRank1,
                                           const Standard_Integer theRank2,
                                           const Standard_Real theTolerance) const
{
  TDF_Label aLabel = getDataLabel(theRank1,theRank2);

  // check that value is actually changed
  Handle(TDataStd_Real) A;
  if ( aLabel.FindAttribute(TDataStd_Real::GetID(), A) &&
       fabs ( A->Get() - theValue ) <= theTolerance ) return Standard_False;

  TDataStd_Real::Set ( aLabel, theValue );
  return Standard_True;
}

//=======================================================================
//function : getExtString
//purpose  :
//=======================================================================

Handle(TCollection_HExtendedString) TObj_Object::getExtString
       (const Standard_Integer theRank1,
        const Standard_Integer theRank2) const
{
  TDF_Label aLabel = getDataLabel(theRank1,theRank2);

  Handle(TDataStd_Name) aName;
  aLabel.FindAttribute ( TDataStd_Name::GetID(), aName );
  return aName.IsNull() ? 0 : new TCollection_HExtendedString(aName->Get());
}

//=======================================================================
//function : setExtString
//purpose  :
//=======================================================================

void TObj_Object::setExtString
  (const Handle(TCollection_HExtendedString)& theValue,
   const Standard_Integer theRank1,
   const Standard_Integer theRank2) const
{
  TDF_Label aLabel = getDataLabel(theRank1,theRank2);
  if ( !theValue.IsNull() )
    TDataStd_Name::Set ( aLabel, theValue->String() );
  else
    aLabel.ForgetAttribute( TDataStd_Name::GetID() );
}

//=======================================================================
//function : getAsciiString
//purpose  :
//=======================================================================

Handle(TCollection_HAsciiString) TObj_Object::getAsciiString
       (const Standard_Integer theRank1,
        const Standard_Integer theRank2) const
{
  TDF_Label aLabel = getDataLabel(theRank1,theRank2);

  Handle(TDataStd_AsciiString) aStrAttr;
  aLabel.FindAttribute ( TDataStd_AsciiString::GetID(), aStrAttr );
  return aStrAttr.IsNull() ? 0 : new TCollection_HAsciiString( aStrAttr->Get() );
}

//=======================================================================
//function : setAsciiString
//purpose  :
//=======================================================================

void TObj_Object::setAsciiString
  (const Handle(TCollection_HAsciiString)& theValue,
   const Standard_Integer theRank1,
   const Standard_Integer theRank2) const
{
  TDF_Label aLabel = getDataLabel(theRank1,theRank2);
  if ( !theValue.IsNull() )
    TDataStd_AsciiString::Set ( aLabel, theValue->String() );
  else
    aLabel.ForgetAttribute( TDataStd_AsciiString::GetID() );
}

//=======================================================================
//function : getInteger
//purpose  :
//=======================================================================

Standard_Integer TObj_Object::getInteger (const Standard_Integer theRank1,
                                              const Standard_Integer theRank2) const
{
  TDF_Label aLabel = getDataLabel(theRank1,theRank2);

  Handle(TDataStd_Integer) aNum;
  aLabel.FindAttribute ( TDataStd_Integer::GetID(), aNum );
  return aNum.IsNull() ? 0 : aNum->Get();
}

//=======================================================================
//function : setInteger
//purpose  :
//=======================================================================

Standard_Boolean TObj_Object::setInteger (const Standard_Integer theValue,
                                              const Standard_Integer theRank1,
                                              const Standard_Integer theRank2) const
{
  TDF_Label aLabel = getDataLabel(theRank1,theRank2);

  // check that value is actually changed
  Handle(TDataStd_Integer) A;
  if ( aLabel.FindAttribute(TDataStd_Integer::GetID(), A) &&
       A->Get() == theValue ) return Standard_False;

  TDataStd_Integer::Set ( aLabel, theValue );
  return Standard_True;
}

//=======================================================================
//function : getReference
//purpose  :
//=======================================================================

Handle(TObj_Object) TObj_Object::getReference (const Standard_Integer theRank1,
                                                       const Standard_Integer theRank2) const
{
  TDF_Label aLabel = getReferenceLabel(theRank1,theRank2);

  Handle(TObj_TReference) aRef;
  aLabel.FindAttribute ( TObj_TReference::GetID(), aRef );
  return aRef.IsNull() ? Handle(TObj_Object)() : aRef->Get();
}

//=======================================================================
//function : setReference
//purpose  :
//=======================================================================

Standard_Boolean TObj_Object::setReference (const Handle(TObj_Object) & theObject,
                                                const Standard_Integer theRank1,
                                                const Standard_Integer theRank2)
{
  TDF_Label aLabel = getReferenceLabel(theRank1,theRank2);

  if ( theObject.IsNull() )
    return aLabel.ForgetAttribute ( TObj_TReference::GetID() );
  
  // check that reference is actually changed
  Handle(TObj_TReference) A;
  if ( aLabel.FindAttribute(TObj_TReference::GetID(), A) &&
       A->Get() == theObject ) return Standard_False;

  // 27.07.05, PTv: remove reference attribute before create new reference (for Undo/Redo)
  aLabel.ForgetAttribute( TObj_TReference::GetID() );

  Handle(TObj_Object) me = this;
  TObj_TReference::Set ( aLabel, theObject, me);
  return Standard_True;
}

//=======================================================================
//function : addReference
//purpose  :
//=======================================================================

TDF_Label TObj_Object::addReference (const Standard_Integer theRank1,
                                         const Handle(TObj_Object) & theObject)
{
  TDF_Label aRefLabel = GetReferenceLabel();
  if ( theRank1 > 0 )
    aRefLabel = aRefLabel.FindChild ( theRank1, Standard_True );

  TDF_TagSource aTag;
  TDF_Label aLabel = aTag.NewChild(aRefLabel);

  Handle(TObj_Object) me = this;
  TObj_TReference::Set ( aLabel, theObject, me);
  return aLabel;
}

//=======================================================================
//function : getRealArray
//purpose  : Returns an existing or create a new real array on theRank2-th
//           sublabel of theRank1-th sublabel of the Data label of the object.
//           If theRank2 is 0 (default), label theRank1 is supposed (not its sublabel).
//           A newly created array has 1 and theLength bounds and is initialized
//           with zero
//WARNING  : call setArray() after array contents modification
//           in order to assure Undo work
//=======================================================================

Handle(TColStd_HArray1OfReal) TObj_Object::getRealArray
                        (const Standard_Integer theLength,
                         const Standard_Integer theRank1,
                         const Standard_Integer theRank2,
                         const Standard_Real    theInitialValue) const
{
  TDF_Label aLabel = getDataLabel(theRank1,theRank2);
  Handle(TDataStd_RealArray) anArrAttribute;
  if (!aLabel.FindAttribute(TDataStd_RealArray::GetID(), anArrAttribute))
    if ( theLength > 0 )
    {
      anArrAttribute = TDataStd_RealArray::Set (aLabel, 1, theLength);
      anArrAttribute->Array()->Init( theInitialValue );
    }
  Handle(TColStd_HArray1OfReal) anArr;
  if ( !anArrAttribute.IsNull() )
    anArr = anArrAttribute->Array();
  return anArr;
}

//=======================================================================
//function : getIntegerArray
//purpose  : Returns an existing or create a new integer array on theRank2-th
//           sublabel of theRank1-th sublabel of the Data label of the object.
//           If theRank2 is 0 (default), label theRank1 is supposed (not its sublabel).
//           A newly created array has 1 and theLength bounds and is initialized
//           with zero
//WARNING  : call setArray() after array contents modification
//           in order to assure Undo work
//=======================================================================

Handle(TColStd_HArray1OfInteger) TObj_Object::getIntegerArray
                        (const Standard_Integer theLength,
                         const Standard_Integer theRank1,
                         const Standard_Integer theRank2,
                         const Standard_Integer theInitialValue) const
{
  TDF_Label aLabel = getDataLabel(theRank1,theRank2);
  Handle(TDataStd_IntegerArray) anArrAttribute;
  if (!aLabel.FindAttribute(TDataStd_IntegerArray::GetID(), anArrAttribute))
    if ( theLength > 0 )
    {
      anArrAttribute = TDataStd_IntegerArray::Set (aLabel, 1, theLength);
      anArrAttribute->Array()->Init( theInitialValue );
    }
  Handle(TColStd_HArray1OfInteger) anArr;
  if ( !anArrAttribute.IsNull() )
    anArr = anArrAttribute->Array();
  return anArr;
}

//=======================================================================
//function : getExtStringArray
//purpose  : Returns an existing or create a new string array on theRank2-th
//           sublabel of theRank1-th sublabel of the Data label of the object.
//           If theRank2 is 0 (default), label theRank1 is supposed (not its sublabel).
//           A newly created array has 1 and theLength bounds
//           NOTE: new created array is NOT initialized.
//WARNING  : call setArray() after array contents modification
//           in order to assure Undo work
//=======================================================================

Handle(TColStd_HArray1OfExtendedString) TObj_Object::getExtStringArray
                        (const Standard_Integer theLength,
                         const Standard_Integer theRank1,
                         const Standard_Integer theRank2) const
{
  TDF_Label aLabel = getDataLabel(theRank1,theRank2);
  Handle(TDataStd_ExtStringArray) anArrAttribute;
  if (!aLabel.FindAttribute(TDataStd_ExtStringArray::GetID(), anArrAttribute))
    if ( theLength > 0 )
      anArrAttribute = TDataStd_ExtStringArray::Set (aLabel, 1, theLength);

  Handle(TColStd_HArray1OfExtendedString) anArr;
  if ( !anArrAttribute.IsNull() )
    anArr = anArrAttribute->Array();
  return anArr;
}

//=======================================================================
//function : setArray
//purpose  : Store theArray on theRank2-th sublabel of theRank1-th sublabel
//           of the Data label of the object.
//           If theRank2 is 0 (default), label theRank1 is supposed (not its sublabel).
//=======================================================================

void TObj_Object::setArray (const Handle(TColStd_HArray1OfReal)& theArray,
                                const Standard_Integer theRank1,
                                const Standard_Integer theRank2)
{
  TDF_Label aLabel = getDataLabel(theRank1,theRank2);
  Handle(TDataStd_RealArray) anArrAttribute;
  if (!aLabel.FindAttribute(TDataStd_RealArray::GetID(), anArrAttribute) &&
      !theArray.IsNull())
    anArrAttribute = TDataStd_RealArray::Set (aLabel, 1, 1);

  if (theArray.IsNull()) {
    // deletion mode 
    if (!anArrAttribute.IsNull())
      aLabel.ForgetAttribute(anArrAttribute);
    return;
  }

  if (anArrAttribute->Array() == theArray)
    // Backup wont happen but we want it
    anArrAttribute->Init(1,1);

  anArrAttribute->ChangeArray( theArray );
}

//=======================================================================
//function : setArray
//purpose  : Store theArray on theRank2-th sublabel of theRank1-th sublabel
//           of the Data label of the object.
//           If theRank2 is 0 (default), label theRank1 is supposed (not its sublabel).
//=======================================================================

void TObj_Object::setArray (const Handle(TColStd_HArray1OfInteger)& theArray,
                                const Standard_Integer theRank1,
                                const Standard_Integer theRank2)
{
  TDF_Label aLabel = getDataLabel(theRank1,theRank2);
  Handle(TDataStd_IntegerArray) anArrAttribute;
  if (!aLabel.FindAttribute(TDataStd_IntegerArray::GetID(), anArrAttribute) &&
      !theArray.IsNull())
    anArrAttribute = TDataStd_IntegerArray::Set (aLabel, 1, 1);

  if (theArray.IsNull()) {
    // deletion mode 
    if (!anArrAttribute.IsNull())
      aLabel.ForgetAttribute(anArrAttribute);
    return;
  }

  if (anArrAttribute->Array() == theArray)
    // Backup wont happen but we want it
    anArrAttribute->Init(1,1);

  anArrAttribute->ChangeArray( theArray );
}

//=======================================================================
//function : setArray
//purpose  : Store theArray on theRank2-th sublabel of theRank1-th sublabel
//           of the Data label of the object.
//           If theRank2 is 0 (default), label theRank1 is supposed (not its sublabel).
//=======================================================================

void TObj_Object::setArray (const Handle(TColStd_HArray1OfExtendedString)& theArray,
                                const Standard_Integer theRank1,
                                const Standard_Integer theRank2)
{
  TDF_Label aLabel = getDataLabel(theRank1,theRank2);
  Handle(TDataStd_ExtStringArray) anArrAttribute;
  if (!aLabel.FindAttribute(TDataStd_ExtStringArray::GetID(), anArrAttribute) &&
      !theArray.IsNull())
    anArrAttribute = TDataStd_ExtStringArray::Set (aLabel, 1, 1);

  if (theArray.IsNull()) {
    // deletion mode 
    if (!anArrAttribute.IsNull())
      aLabel.ForgetAttribute(anArrAttribute);
    return;
  }

  if (anArrAttribute->Array() == theArray)
    // Backup wont happen but we want it
    anArrAttribute->Init(1,1);

  anArrAttribute->ChangeArray( theArray );
}

//=======================================================================
//function : Clone
//purpose  : method.
//=======================================================================

Handle(TObj_Object) TObj_Object::Clone
       (const TDF_Label&            theTargetLabel,
        Handle(TDF_RelocationTable) theRelocTable)
{
  Handle(TDF_RelocationTable) aRelocTable = theRelocTable;
  if (theRelocTable.IsNull())
    aRelocTable = new TDF_RelocationTable;
  Handle(TObj_Object) aNewObj;
  // take current model for restoring it after creating object.
  const Handle(TObj_Model)& aCurrentModel = TObj_Assistant::GetCurrentModel();

  // take target model
  Handle(TObj_Model) aTargetModel;
  TDF_Label aLabel = TDocStd_Document::Get(theTargetLabel)->Main();
  Handle(TObj_TModel) aModelAttr;
  if (aLabel.FindAttribute(TObj_TModel::GetID(), aModelAttr))
    aTargetModel = aModelAttr->Model();

  if (aCurrentModel != aTargetModel)
    TObj_Assistant::SetCurrentModel (aTargetModel);
  // crete new object
  aNewObj = TObj_Persistence::CreateNewObject (DynamicType()->Name(), theTargetLabel);

  if (!aNewObj.IsNull())
  {
    TObj_TObject::Set(theTargetLabel,aNewObj);

    // adding a record to the reloation table
    aRelocTable->SetRelocation(GetLabel(), theTargetLabel);

    // now set name of object.
    const Handle(TCollection_HExtendedString) aCloneName = GetNameForClone( aNewObj );
    if( !aCloneName.IsNull() && !aCloneName->IsEmpty() )
      aNewObj->SetName( new TCollection_HExtendedString( aCloneName ) );

    // copy the data
    copyData (aNewObj);

    // copy the references
    // changed by van // copyReferences (aNewObj);
    // references have to be coped after coping all objects and models

    TDF_Label aTargetLabel = aNewObj->GetChildLabel();
    CopyChildren(aTargetLabel, aRelocTable);

    // copy TagSource for the children
    TDF_Label aChildLabel = GetChildLabel();
    Handle(TDF_Attribute) anAttr;
    if(aChildLabel.FindAttribute(TDF_TagSource::GetID(), anAttr))
    {
      Handle(TDF_TagSource) aTagSource = Handle(TDF_TagSource)::DownCast(anAttr);
      Handle(TDF_TagSource) aTargetTagSource = TDF_TagSource::Set(aTargetLabel);
      aTargetTagSource->Set(aTagSource->Get());
    }

    if(theRelocTable.IsNull())
      CopyReferences(aNewObj, aRelocTable);
  }

  // restore the model for persistence.
  if (aCurrentModel != aTargetModel)
    TObj_Assistant::SetCurrentModel (aCurrentModel);

  return aNewObj;
}

//=======================================================================
//function : copyData
//purpose  : protected
//=======================================================================

Standard_Boolean TObj_Object::copyData
                (const Handle(TObj_Object)& theTargetObject)
{
  Standard_Boolean IsDone = Standard_False;
  if ( !theTargetObject->DynamicType()->SubType( DynamicType() ) )
    return IsDone;
  // init the copier by labels.
  TDF_Label aDataLabel = GetDataLabel();
  TDF_Label aNewDataLabel = theTargetObject->GetDataLabel();
  // check if object has any data.
  if (aDataLabel.IsNull() || aNewDataLabel.IsNull())
    return IsDone;

  TDF_CopyLabel aCopier(aDataLabel, aNewDataLabel);
  aCopier.Perform();

  return aCopier.IsDone();
}

//=======================================================================
//function : CopyChildren
//purpose  :
//=======================================================================

void TObj_Object::CopyChildren
                (TDF_Label&                         theTargetLabel,
                 const Handle(TDF_RelocationTable)& theRelocTable)
{
  Handle(TObj_ObjectIterator) aChildren = /*TObj_Object::*/GetChildren();
  // to support childs on sublabels of sublabel of child label
  //new TObj_ObjectIterator(GetChildLabel(), NULL, Standard_True);
  TDF_Label aSourceChildLabel = GetChildLabel();
  for(;aChildren->More(); aChildren->Next())
  {
    Handle(TObj_Object) aChild = aChildren->Value();
    if(!aChild.IsNull())
    {
      /* only for one sub level of children 
      TDF_Label aChildLabel =
       theTargetLabel.FindChild(aChild->GetLabel().Tag(), Standard_True);
      aChild->Clone(aChildLabel, theRelocTable);
      // to support childs on sublabels of sublabel of child label
      */
      // to support childs on sublabels of sublabel of child label
      TColStd_SequenceOfInteger aTags;
      TDF_Label aCurChildLab = aChild->GetLabel();
      while ( !aCurChildLab.IsNull() && aCurChildLab != aSourceChildLabel )
      {
        aTags.Append( aCurChildLab.Tag() );
        aCurChildLab = aCurChildLab.Father();
      }
      TDF_Label aChildLabel = theTargetLabel;
      for ( Standard_Integer i = aTags.Length(); i > 0 ; i-- )
        aChildLabel = aChildLabel.FindChild( aTags.Value( i ), Standard_True );

      aChild->Clone(aChildLabel, theRelocTable);
    }
  }
}

//=======================================================================
//function : CopyReferences
//purpose  :
//=======================================================================

void TObj_Object::CopyReferences
                (const Handle(TObj_Object)& theTargetObject,
                 const Handle(TDF_RelocationTable)& theRelocTable)
{
  // recursive copy of references
  Handle(TObj_ObjectIterator) aSrcChildren = //GetChildren();
  // to support childs on sublabels of sublabel of child label
   new TObj_OcafObjectIterator(GetChildLabel(), NULL, Standard_True);
  for(; aSrcChildren->More(); aSrcChildren->Next())
  {
    Handle(TObj_Object) aSrcChild =
      Handle(TObj_Object)::DownCast(aSrcChildren->Value());
    TDF_Label aSrcL = aSrcChild->GetLabel();
    TDF_Label aDestLabel;
    if( !theRelocTable->HasRelocation(aSrcL, aDestLabel) )
      continue;
    Handle(TObj_Object) aDstChild;
    if ( !TObj_Object::GetObj( aDestLabel, aDstChild ) )
      continue;
    if ( aDstChild.IsNull() || !aDstChild->IsAlive() || aSrcChild->DynamicType() != aDstChild->DynamicType() )
      continue; // should not be with relocation table

    aSrcChild->CopyReferences(aDstChild, theRelocTable);
  }
  // copy of my references
  theTargetObject->GetReferenceLabel().ForgetAllAttributes(Standard_True);

  TDF_Label aTargetLabel = theTargetObject->GetReferenceLabel();
  copyReferences(GetReferenceLabel(), aTargetLabel, theRelocTable);
}

//=======================================================================
//function : copyReferences
//purpose  : protected
//=======================================================================

void TObj_Object::copyReferences
                         (const TDF_Label&                   theSourceLabel,
                          TDF_Label&                         theTargetLabel,
                          const Handle(TDF_RelocationTable)& theRelocTable)
{
  TDF_AttributeIterator anIter(theSourceLabel);
  for(; anIter.More(); anIter.Next())
  {
    Handle(TDF_Attribute) anAttr = anIter.Value()->NewEmpty();
    theTargetLabel.AddAttribute(anAttr);
    anIter.Value()->Paste(anAttr, theRelocTable);

  }
  TDF_ChildIterator aLI(theSourceLabel);
  TDF_Label aTargetLabel;
  for(; aLI.More(); aLI.Next())
  {
    aTargetLabel = theTargetLabel.FindChild(aLI.Value().Tag(), Standard_True);
    copyReferences(aLI.Value(), aTargetLabel, theRelocTable);
  }
}

//=======================================================================
//function : ReplaceReference
//purpose  :
//=======================================================================

void TObj_Object::ReplaceReference (const Handle(TObj_Object)& theOldObject,
                                        const Handle(TObj_Object)& theNewObject)
{
  Handle(TObj_LabelIterator) anItr =
    Handle(TObj_LabelIterator)::DownCast( GetReferences() );
  if (anItr.IsNull())
    return;
  // iterates on references.
  for (; anItr->More(); anItr->Next() )
  {
    Handle(TObj_Object) anObj = anItr->Value();
    if (anObj != theOldObject)
      continue;

    TDF_Label aRefLabel = anItr->LabelValue();
    // if new object is null then simple remove reference.
    if (theNewObject.IsNull())
    {
      aRefLabel.ForgetAllAttributes();
      break;
    }
    // set reference to new object.
    Handle(TObj_Object) me = this;
    TObj_TReference::Set ( aRefLabel, theNewObject, me);
    break;
  }
}

//=======================================================================
//function : IsAlive
//purpose  :
//=======================================================================

Standard_Boolean TObj_Object::IsAlive() const
{
  if (myLabel.IsNull())
    return Standard_False;

  Handle(TObj_Object) anObj;
  if ( !GetObj( myLabel, anObj ) )
    return Standard_False;

  return Standard_True;
}

//=======================================================================
//function : GetFlags
//purpose  :
//=======================================================================

Standard_Integer TObj_Object::GetFlags() const
{
  return getInteger(DataTag_Flags);
}

//=======================================================================
//function : SetFlags
//purpose  :
//=======================================================================

void TObj_Object::SetFlags(const Standard_Integer theMask)
{
  Standard_Integer aFlags = getInteger(DataTag_Flags);
  aFlags = aFlags | theMask;
  setInteger(aFlags, DataTag_Flags);
}

//=======================================================================
//function : TestFlags
//purpose  :
//=======================================================================

Standard_Boolean TObj_Object::TestFlags(const Standard_Integer theMask) const
{
  Standard_Integer aFlags = getInteger(DataTag_Flags);
  return aFlags & theMask;
}

//=======================================================================
//function : ClearFlags
//purpose  :
//=======================================================================

void TObj_Object::ClearFlags(const Standard_Integer theMask)
{
  Standard_Integer aFlags = getInteger(DataTag_Flags);
  aFlags = aFlags & (~theMask);
  setInteger(aFlags, DataTag_Flags);
}

//=======================================================================
//function : RemoveBackReferences
//purpose  :
//=======================================================================

Standard_Boolean TObj_Object::RemoveBackReferences(const TObj_DeletingMode theMode)
{
  Handle(TObj_ObjectIterator) aRefs = GetBackReferences();

  // Free Object can be deleted in any Mode
  if ( aRefs.IsNull() || !aRefs->More()) return Standard_True;

  if( theMode == TObj_FreeOnly) return Standard_False;

  // Defining the sequence of objects which are referenced to this one. The
  // first sequence stores containers the second one object with strong
  // relation.
  TObj_SequenceOfObject aContainers;
  TObj_SequenceOfObject aStrongs;
  Handle(TObj_Object) aMe = this;

  // Sorting the referencing objects
  for( ; aRefs->More() ; aRefs->Next())
  {
    Handle(TObj_Object) anObject = aRefs->Value();
    if ( anObject.IsNull() || !anObject->IsAlive() )
      continue;
    if ( anObject->CanRemoveReference(aMe) )
      aContainers.Append(anObject);
    else
      aStrongs.Append(anObject);
  }
  // Can not be removed without deletion of referenced objects mode
  if( theMode == TObj_KeepDepending && aStrongs.Length() > 0 )
    return Standard_False;
  // Delete or link off the referencing objects
  Standard_Integer i;
  Handle(TDF_Data) anOwnData = GetLabel().Data();
  for (i = 1; i <= aContainers.Length(); i++)
  {
    Handle(TObj_Object) anObj = aContainers(i);
    if ( anObj.IsNull() || anObj->GetLabel().IsNull() )
      continue; // undead object on dead label
    Handle(TDF_Data) aData = anObj->GetLabel().Data();
    Standard_Boolean aModifMode = aData->IsModificationAllowed();
    if ( anOwnData != aData )
      aData->AllowModification( Standard_True );
    anObj->RemoveReference(aMe);
    if ( anOwnData != aData )
      aData->AllowModification( aModifMode );
  }
  /* PTv 21.11.2006
  object from other document refers to current object and must be killed
  when current object become dead for just want to remove references to it
  if ( theMode != TObj_Forced ) // cause leads to exception when
    // try to remove objects during close document
  */
  for (i = 1; i <= aStrongs.Length(); i++)
  {
    Handle(TObj_Object) anObj = aStrongs(i);
    if ( anObj.IsNull() || anObj->GetLabel().IsNull() )
      continue; // undead object on dead label
    Handle(TDF_Data) aData = anObj->GetLabel().Data();
    Standard_Boolean aModifMode = aData->IsModificationAllowed();
    if ( anOwnData != aData )
      aData->AllowModification( Standard_True );
    anObj->Detach(theMode);
    if ( anOwnData != aData )
      aData->AllowModification( aModifMode );
  }

  return Standard_True;
}

//=======================================================================
//function : RelocateReferences
//purpose  : Make that each reference pointing to a descendant label of
//           theFromRoot to point to an equivalent label under theToRoot.
//           Return False if a resulting reference does not point to
//           an TObj_Object
//Example  :
//           a referred object label = 0:3:24:7:2:7
//           theFromRoot             = 0:3:24
//           theToRoot               = 0:2
//           a new referred label    = 0:2:7:2:7
//=======================================================================

Standard_Boolean TObj_Object::RelocateReferences
                         (const TDF_Label&       theFromRoot,
                          const TDF_Label&       theToRoot,
                          const Standard_Boolean theUpdateBackRefs)
{
  TDF_ChildIDIterator aRefIt (GetReferenceLabel(),
                              TObj_TReference::GetID(),
                              Standard_True );
  Handle(TObj_Object) anObj;
  for (  ; aRefIt.More(); aRefIt.Next() )
  {
    Handle(TObj_TReference) aRef =
      Handle(TObj_TReference)::DownCast( aRefIt.Value() );

    TDF_Label aNewLabel, aLabel = aRef->GetLabel();
    if ( aLabel.Data() != theFromRoot.Data() ||
         aLabel.IsDescendant( theToRoot ))
      continue; // need not to relocate

    TDF_Tool::RelocateLabel( aLabel, theFromRoot, theToRoot, aNewLabel );
    if ( aNewLabel.IsNull() || !TObj_Object::GetObj( aNewLabel, anObj ))
      return Standard_False;

    // care of back references
    if (theUpdateBackRefs)
    {
      Handle(TObj_Object) me = this;
      // a new referred object
      anObj->AddBackReference( me );
      // an old object
      anObj = aRef->Get();
      if (!anObj.IsNull())
        anObj->RemoveBackReference( me );
    }

    aRef->Set( aNewLabel, aRef->GetMasterLabel() );
  }

  return Standard_True;
}

//=======================================================================
//function : GetBadReference
//purpose  : 
//=======================================================================

Standard_Boolean TObj_Object::GetBadReference
                         (const TDF_Label& theRoot,
                          TDF_Label&       theBadReference) const
{
  TDF_ChildIDIterator aRefIt (GetReferenceLabel(),
                              TObj_TReference::GetID(),
                              Standard_True );
  Handle(TObj_Object) anObj;
  for (  ; aRefIt.More(); aRefIt.Next() )
  {
    Handle(TObj_TReference) aRef =
      Handle(TObj_TReference)::DownCast( aRefIt.Value() );

    TDF_Label aLabel = aRef->GetLabel();
    if ( aLabel.Data() == theRoot.Data() &&
         !aLabel.IsDescendant( theRoot ))
    {
      theBadReference = aLabel;
      return Standard_True;
    }
  }

  return Standard_False;
}

//=======================================================================
//function : TypeFlags
//purpose  : 
//=======================================================================

Standard_Integer TObj_Object::GetTypeFlags() const
{
  return Visible;
}

//=======================================================================
//function : GetDictionary
//purpose  : default implementation
//=======================================================================

Handle(TObj_TNameContainer) TObj_Object::GetDictionary() const
{
  Handle(TObj_Model) aModel = GetModel();
  if ( !aModel.IsNull() )
    return aModel->GetDictionary();
  return NULL; 
}

//=======================================================================
//function : SetOrder
//purpose  :
//=======================================================================

Standard_Boolean TObj_Object::SetOrder( const Standard_Integer& theIndx )
{ 
  setInteger( theIndx, DataTag_Order );
  return Standard_True;
}

//=======================================================================
//function : GetOrder
//purpose  :
//=======================================================================

Standard_Integer TObj_Object::GetOrder() const
{
  Standard_Integer order = getInteger( DataTag_Order );
  if ( !order )
    order = GetLabel().Tag();
  return order;
}