blob: 0ed6f761ce6ce6bcaad01067e98ba065859b49ff (
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
|
// File: TDF_AttributeIterator.cxx
// --------------------------
// Author: DAUTRY Philippe
// <fid@fox.paris1.matra-dtv.fr>
// Copyright: Matra Datavision 1997
// Version: 0.0
// History: Version Date Purpose
// 0.0 Feb 7 1997 Creation
#include <TDF_AttributeIterator.hxx>
//=======================================================================
//function : TDF_AttributeIterator
//purpose :
//=======================================================================
TDF_AttributeIterator::TDF_AttributeIterator()
: myValue (0L),
myWithoutForgotten (Standard_True)
{}
//=======================================================================
//function : TDF_AttributeIterator
//purpose :
//=======================================================================
TDF_AttributeIterator::TDF_AttributeIterator
(const TDF_Label& aLabel,
const Standard_Boolean withoutForgotten)
: myValue (0L),
myWithoutForgotten (withoutForgotten)
{
const Handle(TDF_Attribute)& aFirstAttribute =
aLabel.myLabelNode->FirstAttribute();
if (!aFirstAttribute.IsNull())
goToNext (aFirstAttribute);
}
//=======================================================================
//function : TDF_AttributeIterator
//purpose :
//=======================================================================
TDF_AttributeIterator::TDF_AttributeIterator
(const TDF_LabelNodePtr aLabelNode,
const Standard_Boolean withoutForgotten)
: myValue (0L),
myWithoutForgotten (withoutForgotten)
{
const Handle(TDF_Attribute)& aFirstAttribute = aLabelNode->FirstAttribute();
if (!aFirstAttribute.IsNull())
goToNext (aFirstAttribute);
}
//=======================================================================
//function : TDF_AttributeIterator
//purpose :
//=======================================================================
void TDF_AttributeIterator::Initialize
(const TDF_Label& aLabel,
const Standard_Boolean withoutForgotten)
{
myWithoutForgotten = withoutForgotten;
const Handle(TDF_Attribute)& aFirstAttribute =
aLabel.myLabelNode->FirstAttribute();
if (aFirstAttribute.IsNull())
myValue = 0L;
else
goToNext (aFirstAttribute);
}
//=======================================================================
//function : Next
//purpose :
//=======================================================================
void TDF_AttributeIterator::Next()
{
// A little bit complicated...
// but necessary if we want to find sometimes the Forgotten attributes.
if (myValue) {
const Handle(TDF_Attribute)& anAttribute = myValue->myNext;
if (anAttribute.IsNull())
myValue = 0L;
else
goToNext (anAttribute);
}
}
//=======================================================================
//function : goToNext
//purpose : private method, used by the above
//=======================================================================
void TDF_AttributeIterator::goToNext (const Handle(TDF_Attribute)& anAttr)
{
myValue = anAttr.operator->();
if (myWithoutForgotten) {
while (myValue->IsForgotten()) {
const Handle(TDF_Attribute)& anAttribute = myValue->myNext;
if (anAttribute.IsNull()) {
myValue = 0L;
break;
}
myValue = anAttribute.operator->();
}
}
}
|