summaryrefslogtreecommitdiff
path: root/src/TDF/TDF_RelocationTable.cxx
blob: a5df98b86b6d86e00f19b33832e62b2cf7468085 (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
// File:	TDF_RelocationTable.cxx
//      	-----------------------
// Author:	DAUTRY Philippe
//		<fid@fox.paris1.matra-dtv.fr>
// Copyright:	Matra Datavision 1997

// Version:	0.0
// History:	Version	Date		Purpose
//		0.0	Mar  7 1997	Creation



#include <TDF_RelocationTable.ixx>

#include <TDF_DataMapIteratorOfAttributeDataMap.hxx>
#include <TDF_DataMapIteratorOfLabelDataMap.hxx>


//=======================================================================
//function : TDF_RelocationTable
//purpose  : 
//=======================================================================

TDF_RelocationTable::TDF_RelocationTable(const Standard_Boolean selfRelocate)
: mySelfRelocate(selfRelocate),myAfterRelocate(Standard_False)
{}


//=======================================================================
//function : SelfRelocate
//purpose  : 
//=======================================================================

void TDF_RelocationTable::SelfRelocate(const Standard_Boolean selfRelocate)
{ mySelfRelocate = selfRelocate; }


//=======================================================================
//function : SelfRelocate
//purpose  : 
//=======================================================================

Standard_Boolean TDF_RelocationTable::SelfRelocate() const
{ return mySelfRelocate; }

//=======================================================================
//function : SelfRelocate
//purpose  : 
//=======================================================================

void TDF_RelocationTable::AfterRelocate(const Standard_Boolean afterRelocate)
{ myAfterRelocate = afterRelocate; }


//=======================================================================
//function : SelfRelocate
//purpose  : 
//=======================================================================

Standard_Boolean TDF_RelocationTable::AfterRelocate() const
{ return myAfterRelocate; }


//=======================================================================
//function : SetRelocation
//purpose  : Sets the relocation value of <aSourceLabel>
//           to <aTargetLabel>.
//=======================================================================

void TDF_RelocationTable::SetRelocation
(const TDF_Label& aSourceLabel,
 const TDF_Label& aTargetLabel) 
{
  if (!myLabelTable.IsBound(aSourceLabel))
    myLabelTable.Bind(aSourceLabel,aTargetLabel);
}


//=======================================================================
//function : HasRelocation
//purpose  : Finds the relocation value of <aSourceLabel>
//           and returns it into <aTargetLabel>.
//=======================================================================

Standard_Boolean TDF_RelocationTable::HasRelocation
(const TDF_Label& aSourceLabel,
 TDF_Label& aTargetLabel) const
{
  aTargetLabel.Nullify();
  if (myLabelTable.IsBound(aSourceLabel)) {
    aTargetLabel = myLabelTable.Find(aSourceLabel);
    return Standard_True;
  }
  if (mySelfRelocate) {
    aTargetLabel = aSourceLabel;
    return !myAfterRelocate;
  }
  return Standard_False;
}


//=======================================================================
//function : SetRelocation
//purpose  : Sets the relocation value of <aSourceAttribute>
//           to <aTargetAttribute>.
//=======================================================================

void TDF_RelocationTable::SetRelocation
(const Handle(TDF_Attribute)& aSourceAttribute,
 const Handle(TDF_Attribute)& aTargetAttribute) 
{
  if (!myAttributeTable.IsBound(aSourceAttribute))
    myAttributeTable.Bind(aSourceAttribute,aTargetAttribute);
}


//=======================================================================
//function : HasRelocation
//purpose  : Finds the relocation value of <aSourceAttribute>
//           and returns it into <aTargetAttribute>.
//=======================================================================

Standard_Boolean TDF_RelocationTable::HasRelocation
(const Handle(TDF_Attribute)& aSourceAttribute,
 Handle(TDF_Attribute)& aTargetAttribute) const
{
  aTargetAttribute.Nullify();
  if (myAttributeTable.IsBound(aSourceAttribute)) {
    aTargetAttribute = myAttributeTable.Find(aSourceAttribute);
    return Standard_True;
  }
  if (mySelfRelocate) {
    aTargetAttribute = aSourceAttribute;
    return !myAfterRelocate;
  }
  return Standard_False;
}


//=======================================================================
//function : SetTransientRelocation
//purpose  : Sets the relocation value of <aSourceTransient>
//           to <aTargetTransient>.
//=======================================================================

void TDF_RelocationTable::SetTransientRelocation
(const Handle(Standard_Transient)& aSourceTransient,
 const Handle(Standard_Transient)& aTargetTransient) 
{
  if (!myTransientTable.Contains(aSourceTransient))
    myTransientTable.Add(aSourceTransient,aTargetTransient);
}


//=======================================================================
//function : HasTransientRelocation
//purpose  : Finds the relocation value of <aSourceTransient>
//           and returns it into <aTargetTransient>.
//=======================================================================

Standard_Boolean TDF_RelocationTable::HasTransientRelocation
(const Handle(Standard_Transient)& aSourceTransient,
 Handle(Standard_Transient)& aTargetTransient) const
{
  aTargetTransient.Nullify();
  if (myTransientTable.Contains(aSourceTransient)) {
    aTargetTransient = myTransientTable.FindFromKey(aSourceTransient);
    return Standard_True;
  }
  if (mySelfRelocate) {
    aTargetTransient = aSourceTransient;
    return !myAfterRelocate;
  }
  return Standard_False;
}


//=======================================================================
//function : Clear
//purpose  : Clears the relocation dictonnary.
//=======================================================================

void TDF_RelocationTable::Clear()
{
  myLabelTable.Clear();
  myAttributeTable.Clear();
  myTransientTable.Clear();
}


//=======================================================================
//function : TargetLabelMap
//purpose  : 
//=======================================================================

void TDF_RelocationTable::TargetLabelMap(TDF_LabelMap& aLabelMap) const
{
  for (TDF_DataMapIteratorOfLabelDataMap itr(myLabelTable);
       itr.More(); itr.Next())
    aLabelMap.Add(itr.Value());
}


//=======================================================================
//function : TargetAttributeMap
//purpose  : 
//=======================================================================

void TDF_RelocationTable::TargetAttributeMap(TDF_AttributeMap& anAttributeMap) const
{
  for (TDF_DataMapIteratorOfAttributeDataMap itr(myAttributeTable);
       itr.More(); itr.Next())
    anAttributeMap.Add(itr.Value());
}


//=======================================================================
//function : LabelTable
//purpose  : 
//=======================================================================

TDF_LabelDataMap& TDF_RelocationTable::LabelTable()
{ return myLabelTable; }


//=======================================================================
//function : AttributeTable
//purpose  : 
//=======================================================================

TDF_AttributeDataMap& TDF_RelocationTable::AttributeTable()
{ return myAttributeTable; }


//=======================================================================
//function : TransientTable
//purpose  : 
//=======================================================================

TColStd_IndexedDataMapOfTransientTransient& TDF_RelocationTable::TransientTable()
{ return myTransientTable; }


//=======================================================================
//function : Dump
//purpose  : 
//=======================================================================

Standard_OStream& TDF_RelocationTable::Dump
(const Standard_Boolean dumpLabels,
 const Standard_Boolean dumpAttributes,
 const Standard_Boolean dumpTransients,
 Standard_OStream& anOS) const
{
  anOS<<"Relocation Table  ";
  if (mySelfRelocate) anOS<<"IS"; else anOS<<"NOT";
  anOS<<" self relocate ";
  if (myAfterRelocate) anOS<<"WITH"; else anOS<<"WITHOUT";
  anOS<<" after relocate"<<endl;
  anOS<<"Nb labels="<<myLabelTable.Extent();
  anOS<<"  Nb attributes="<<myAttributeTable.Extent();
  anOS<<"  Nb transients="<<myTransientTable.Extent()<<endl;

  Standard_Integer nb = 0;
  if (dumpLabels) {
    anOS<<"Label Table:"<<endl;
    for (TDF_DataMapIteratorOfLabelDataMap itr(myLabelTable);
	 itr.More(); itr.Next()) {
      ++nb;
      anOS<<nb<<" ";
      itr.Key().EntryDump(anOS);
      anOS<<"<=>";
      itr.Value().EntryDump(anOS);
      anOS<<"| ";
    }
    cout<<endl;
  }

  nb = 0;
  if (dumpAttributes) {
    anOS<<"Attribute Table:"<<endl;
    for (TDF_DataMapIteratorOfAttributeDataMap itr(myAttributeTable);
	 itr.More(); itr.Next()) {
      ++nb;
      anOS<<nb<<" ";
      itr.Key()->Dump(anOS);
      anOS<<"<=>";
      itr.Value()->Dump(anOS);
      anOS<<"| ";
      anOS<<endl;
    }
  }
  
  if (dumpTransients) {
    anOS<<"Transient Table:"<<myTransientTable.Extent()<<" transient(s) in table."<<endl;
  }

  return anOS;
}