summaryrefslogtreecommitdiff
path: root/src/TObj/TObj_TObject.cxx
blob: fd2677e9a5105e3dd82363b76155b6efe34f78aa (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
// File:        TObj_TObject.cxx
// Created:     Tue Nov 23 12:53:21 2004
// Author:      Pavel TELKOV
// Copyright:   Open CASCADE  2007
// The original implementation Copyright: (C) RINA S.p.A

#include <TObj_TObject.hxx>

#include <Standard_GUID.hxx>
#include <TDF_AttributeDelta.hxx>
#include <TDF_ChildIterator.hxx>

IMPLEMENT_STANDARD_HANDLE(TObj_TObject,TDF_Attribute)
IMPLEMENT_STANDARD_RTTIEXT(TObj_TObject,TDF_Attribute)

//=======================================================================
//function : TObj_TObject
//purpose  : 
//=======================================================================

TObj_TObject::TObj_TObject()
{
}

//=======================================================================
//function : GetID
//purpose  : 
//=======================================================================

const Standard_GUID& TObj_TObject::GetID()
{
  static Standard_GUID GInterfaceID ("bbdab6a7-dca9-11d4-ba37-0060b0ee18ea");
  return GInterfaceID;
}
    
//=======================================================================
//function : ID
//purpose  : 
//=======================================================================

const Standard_GUID& TObj_TObject::ID() const
{
  return GetID();
}

//=======================================================================
//function : Set
//purpose  : 
//=======================================================================

void TObj_TObject::Set(const Handle(TObj_Object)& theElem)
{
  Backup();
  myElem = theElem;
}

//=======================================================================
//function : Set
//purpose  : 
//=======================================================================

Handle(TObj_TObject) TObj_TObject::Set(const TDF_Label& theLabel,
                                               const Handle(TObj_Object)& theElem)
{
  Handle(TObj_TObject) A;
  if (!theLabel.FindAttribute(TObj_TObject::GetID(), A)) 
  {
    A = new TObj_TObject;
    theLabel.AddAttribute(A);
  }
  A->Set(theElem);
  return A;
}

//=======================================================================
//function : Get
//purpose  : 
//=======================================================================

Handle(TObj_Object) TObj_TObject::Get() const
{
  return myElem;
}

//=======================================================================
//function : NewEmpty
//purpose  : 
//=======================================================================

Handle(TDF_Attribute) TObj_TObject::NewEmpty () const
{  
  return new TObj_TObject();
}

//=======================================================================
//function : Restore
//purpose  : 
//=======================================================================

void TObj_TObject::Restore(const Handle(TDF_Attribute)& theWith) 
{
  Handle(TObj_TObject) R = Handle(TObj_TObject)::DownCast (theWith);
  myElem = R->Get();
}

//=======================================================================
//function : Paste
//purpose  : 
//=======================================================================

void TObj_TObject::Paste (const Handle(TDF_Attribute)& theInto,
                               const Handle(TDF_RelocationTable)& /* RT */) const
{ 
  Handle(TObj_TObject) R = Handle(TObj_TObject)::DownCast (theInto);
  R->Set(myElem);
}

//=======================================================================
//function : BeforeForget
//purpose  : Tell TObj_Object to die,
//           i.e. (myElem->IsAlive() == false) after that
//=======================================================================

void TObj_TObject::BeforeForget()
{
  if (!myElem.IsNull()) 
  {
    // attempt to delete all data from sublabels of object to remove dependences
    TDF_Label aObjLabel = myElem->myLabel;
    if (!aObjLabel.IsNull())
    {
      TDF_ChildIterator aLI(aObjLabel);
      TDF_Label aSubLabel;
      for(; aLI.More(); aLI.Next())
      {
        aSubLabel = aLI.Value();
        if (!aSubLabel.IsNull())
          aSubLabel.ForgetAllAttributes(Standard_True);
      }
    }
    // remove back references before document die
    myElem->RemoveBackReferences(TObj_Forced);
    TDF_Label aNullLabel;
    myElem->myLabel = aNullLabel;
  }
}

//=======================================================================
//function : AfterUndo
//purpose  : Tell TObj_Object to rise from the dead,
//           i.e. (myElem->IsAlive() == true) after that
//=======================================================================

Standard_Boolean TObj_TObject::AfterUndo
  (const Handle(TDF_AttributeDelta)& anAttDelta,
   const Standard_Boolean /*forceIt*/)
{
  if (!myElem.IsNull()) 
  {
    TDF_Label aLabel = anAttDelta->Label();
    Handle(TDF_Attribute) anAttr;
    Handle(TObj_TObject) aTObject;
    Handle(TDF_Attribute) me;
    me = this;
    if(!aLabel.IsNull() && aLabel.FindAttribute(GetID(), anAttr))
      aTObject = Handle(TObj_TObject)::DownCast(anAttr);

    if(!aTObject.IsNull() && aTObject->Get() == myElem)
      myElem->myLabel = aLabel;
    else 
    {
      TDF_Label aNullLabel;
      myElem->myLabel = aNullLabel;
    }
  }
  return Standard_True;
}