summaryrefslogtreecommitdiff
path: root/src/TFunction/TFunction_Scope.cxx
blob: fdb1e058a81f7280b311ebddd3dea18f7d07ff2f (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
// File:	TFunction_Scope.cxx
// Created:	Mon Jun 22 12:35:13 2008
// Author:	Vladislav ROMASHKO
//		<vladislav.romashko@opencascade.com>


#include <TFunction_Scope.ixx>
#include <TDF_MapIteratorOfLabelMap.hxx>

//=======================================================================
//function : GetID
//purpose  : Static method to get an ID
//=======================================================================

const Standard_GUID&  TFunction_Scope::GetID() 
{  
  static Standard_GUID TFunction_ScopeID("F2DE4EFF-7FE8-40a3-AAD5-5B6DDEA83469");
  return TFunction_ScopeID; 
}

//=======================================================================
//function : Set
//purpose  : Finds or creates a Scope attribute
//=======================================================================

Handle(TFunction_Scope) TFunction_Scope::Set(const TDF_Label& Access)
{
  Handle(TFunction_Scope) S;
  if (!Access.Root().FindAttribute(TFunction_Scope::GetID(), S)) 
  {
    S = new TFunction_Scope();
    Access.Root().AddAttribute(S);
  }
  return S;
}

//=======================================================================
//function : ID
//purpose  : Returns GUID of the function
//=======================================================================

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

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

TFunction_Scope::TFunction_Scope():myFreeID(1)
{

}

//=======================================================================
//function : AddFunction
//purpose  : Adds a function to the scope.
//=======================================================================

Standard_Boolean TFunction_Scope::AddFunction(const TDF_Label& L)
{
  if (myFunctions.IsBound2(L))
    return Standard_False;

  Backup();

  myFunctions.Bind(myFreeID++, L);
  return Standard_True;
}

//=======================================================================
//function : RemoveFunction
//purpose  : Removes a function from the scope.
//=======================================================================

Standard_Boolean TFunction_Scope::RemoveFunction(const TDF_Label& L)
{
  if (!myFunctions.IsBound2(L))
    return Standard_False;

  Backup();

  return myFunctions.UnBind2(L);
}

//=======================================================================
//function : RemoveFunction
//purpose  : Removes a function from the scope.
//=======================================================================

Standard_Boolean TFunction_Scope::RemoveFunction(const Standard_Integer ID)
{
  if (!myFunctions.IsBound1(ID))
    return Standard_False;

  Backup();

  return myFunctions.UnBind1(ID);
}

//=======================================================================
//function : RemoveAllFunctions
//purpose  : Removes a function from the scope.
//=======================================================================

void TFunction_Scope::RemoveAllFunctions()
{
  if (myFunctions.IsEmpty())
    return;

  Backup();

  myFunctions.Clear();
}

//=======================================================================
//function : HasFunction
//purpose  : Checks presence of a function.
//=======================================================================

Standard_Boolean TFunction_Scope::HasFunction(const Standard_Integer ID) const
{
  return myFunctions.IsBound1(ID);
}

//=======================================================================
//function : HasFunction
//purpose  : Checks presence of a function.
//=======================================================================

Standard_Boolean TFunction_Scope::HasFunction(const TDF_Label& L) const
{
  return myFunctions.IsBound2(L);
}

//=======================================================================
//function : GetFunction
//purpose  : Returns a function.
//=======================================================================

Standard_Integer TFunction_Scope::GetFunction(const TDF_Label& L) const
{
  return myFunctions.Find2(L);
}

//=======================================================================
//function : GetFunction
//purpose  : Returns a function.
//=======================================================================

const TDF_Label& TFunction_Scope::GetFunction(const Standard_Integer ID) const
{
  return myFunctions.Find1(ID);
}

//=======================================================================
//function : GetLogbook
//purpose  : Returns the Logbook.
//=======================================================================

TFunction_Logbook& TFunction_Scope::GetLogbook()
{
  return myLogbook;
}

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

void TFunction_Scope::Restore(const Handle(TDF_Attribute)& other) 
{
  Handle(TFunction_Scope) S = Handle(TFunction_Scope)::DownCast(other);

  // Functions
  myFunctions = S->myFunctions; // copying...
  myFreeID = S->myFreeID;

  // Logbook
  myLogbook.Clear();
  TDF_MapIteratorOfLabelMap itrm;
  // Valid labels
  for (itrm.Initialize(S->myLogbook.GetValid()); itrm.More(); itrm.Next())
  {
    myLogbook.SetValid(itrm.Key(), Standard_False);
  }
  // Touched labels
  for (itrm.Initialize(S->myLogbook.GetTouched()); itrm.More(); itrm.Next())
  {
    myLogbook.SetTouched(itrm.Key());
  }
  // Impacted labels
  for (itrm.Initialize(S->myLogbook.GetImpacted()); itrm.More(); itrm.Next())
  {
    myLogbook.SetImpacted(itrm.Key(), Standard_False);
  }
  myLogbook.Done(S->myLogbook.IsDone());
}

//=======================================================================
//function : Paste
//purpose  : Method for Copy mechanism
//=======================================================================

void TFunction_Scope::Paste(const Handle(TDF_Attribute)& /*into*/,
			    const Handle(TDF_RelocationTable)& /*RT*/) const
{
  // Do we need to copy a Scope attribute somewhere?
}

//=======================================================================
//function : NewEmpty
//purpose  : Returns new empty graph node attribute
//=======================================================================

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

//=======================================================================
//function : Dump
//purpose  : Dump of the scope of functions
//=======================================================================

Standard_OStream& TFunction_Scope::Dump (Standard_OStream& anOS) const
{
  TDF_Attribute::Dump(anOS);
  return anOS;
}

//=======================================================================
//function : GetFunctions
//purpose  : Returns the scope of functions.
//=======================================================================

const TFunction_DoubleMapOfIntegerLabel& TFunction_Scope::GetFunctions() const
{
  return myFunctions;
}

//=======================================================================
//function : ChangeFunctions
//purpose  : Returns the scope of functions.
//=======================================================================

TFunction_DoubleMapOfIntegerLabel& TFunction_Scope::ChangeFunctions()
{
  return myFunctions;
}

//=======================================================================
//function : SetFreeID
//purpose  : Defines a free function ID
//=======================================================================

void TFunction_Scope::SetFreeID (const Standard_Integer ID)
{
  if (myFreeID == ID)
    return;

  Backup();

  myFreeID = ID;
}

//=======================================================================
//function : GetFreeID
//purpose  : Returns a free function ID
//=======================================================================

Standard_Integer TFunction_Scope::GetFreeID () const
{
  return myFreeID;
}