summaryrefslogtreecommitdiff
path: root/src/LDOM/LDOM_Node.cxx
blob: fedd40275ecf44556ce076e51e02bd504faeabd2 (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
// File:      LDOM_Node.cxx
// Created:   27.06.01 15:56:11
// Author:    Alexander GRIGORIEV
// Copyright: OpenCascade 2001
// History:

#include <LDOM_MemManager.hxx>
#include <LDOM_BasicAttribute.hxx>
#include <LDOM_BasicElement.hxx>
#include <LDOM_BasicText.hxx>

//=======================================================================
//function : Origin
//purpose  : 
//=======================================================================

const LDOM_BasicNode& LDOM_Node::Origin () const
{
  if (myOrigin == NULL) {
    static LDOM_BasicNode aNullNode;
    return aNullNode;
  }
  return * myOrigin;
}

//=======================================================================
//function : getOwnerDocument
//purpose  : 
//=======================================================================

const LDOM_MemManager& LDOM_Node::getOwnerDocument () const
{
  return myDocument -> Self();
}

//=======================================================================
//function : operator =
//purpose  : Assignment
//=======================================================================

LDOM_Node& LDOM_Node::operator = (const LDOM_Node& theOther)
{ 
  myDocument    = theOther.myDocument;
  myOrigin      = theOther.myOrigin;
  myLastChild   = theOther.myLastChild;
  return * this;
}

//=======================================================================
//function : operator =
//purpose  : Nullify
//=======================================================================

LDOM_Node& LDOM_Node::operator = (const LDOM_NullPtr * /*aNull*/)
{
  myDocument.Nullify();
  myOrigin    = NULL;
  myLastChild = NULL;
  return * this;
}

//=======================================================================
//function : isNull
//purpose  : 
//=======================================================================

Standard_Boolean LDOM_Node::isNull () const
{
  return myOrigin == NULL || myOrigin -> isNull();
}

//=======================================================================
//function : operator ==
//purpose  : Compare two Nodes
//=======================================================================

Standard_Boolean LDOM_Node::operator == (const LDOM_Node& anOther) const
{
  if (isNull())
    return anOther.isNull();
  return myOrigin == anOther.myOrigin;
}

//=======================================================================
//function : operator !=
//purpose  : Compare two Nodes
//=======================================================================

Standard_Boolean LDOM_Node::operator != (const LDOM_Node& anOther) const
{
  if (isNull())
    return !anOther.isNull();
  return myOrigin != anOther.myOrigin;
}

//=======================================================================
//function : getNodeType
//purpose  : 
//=======================================================================

LDOM_Node::NodeType LDOM_Node::getNodeType () const
{
  return myOrigin == NULL ? UNKNOWN : myOrigin -> getNodeType();
}

//=======================================================================
//function : getNodeName
//purpose  : 
//=======================================================================

LDOMString LDOM_Node::getNodeName () const
{
  switch (getNodeType()) {
  case ELEMENT_NODE:
    {
      const LDOM_BasicElement& anElement= *(const LDOM_BasicElement *) myOrigin;
      return LDOMString::CreateDirectString (anElement.GetTagName(),
                                             myDocument -> Self());
    }
  case ATTRIBUTE_NODE:
    {
      const LDOM_BasicAttribute& anAttr= *(const LDOM_BasicAttribute*) myOrigin;
      return LDOMString::CreateDirectString (anAttr.GetName(),
                                             myDocument -> Self());
    }
  default: ;
  }
  return LDOMString ();
}

//=======================================================================
//function : getNodeValue
//purpose  : 
//=======================================================================

LDOMString LDOM_Node::getNodeValue () const
{
  switch (getNodeType()) {
  case ATTRIBUTE_NODE:
    {
      const LDOM_BasicAttribute& anAttr= *(const LDOM_BasicAttribute*) myOrigin;
      return LDOMString (anAttr.GetValue(), myDocument -> Self());
    }
  case TEXT_NODE:
  case CDATA_SECTION_NODE:
  case COMMENT_NODE:
    {
      const LDOM_BasicText& aText = * (const LDOM_BasicText *) myOrigin;
      return LDOMString (aText.GetData(), myDocument -> Self());
    }
  default: ;
  }
  return LDOMString ();
}

//=======================================================================
//function : getFirstChild
//purpose  : 
//=======================================================================

LDOM_Node LDOM_Node::getFirstChild () const
{
  const NodeType aType = getNodeType ();
  if (aType == ELEMENT_NODE) {
    const LDOM_BasicElement& anElement = * (const LDOM_BasicElement *) myOrigin;
    const LDOM_BasicNode * aChild = anElement.GetFirstChild();
    if (aChild)
      if (aChild -> getNodeType() != LDOM_Node::ATTRIBUTE_NODE)
        return LDOM_Node (* aChild, myDocument);
  }
  return LDOM_Node ();
}

//=======================================================================
//function : getLastChild
//purpose  : 
//=======================================================================

LDOM_Node LDOM_Node::getLastChild () const
{
  const NodeType aType = getNodeType ();
  if (aType == ELEMENT_NODE) {
    if (myLastChild == NULL) {
      const LDOM_BasicElement& anElement = *(const LDOM_BasicElement*) myOrigin;
      (const LDOM_BasicNode *&) myLastChild = anElement.GetLastChild();
    }
    return LDOM_Node (* myLastChild, myDocument);
  }
  return LDOM_Node ();
}

//=======================================================================
//function : getNextSibling
//purpose  : 
//=======================================================================

LDOM_Node LDOM_Node::getNextSibling () const
{
  const LDOM_BasicNode * aSibling = myOrigin -> mySibling;
  if (aSibling)
    if (aSibling -> getNodeType () != ATTRIBUTE_NODE)
      return LDOM_Node (* aSibling, myDocument);
  return LDOM_Node ();
}

//=======================================================================
//function : removeChild
//purpose  : 
//=======================================================================

void LDOM_Node::removeChild (const LDOM_Node& aChild)
{
  const NodeType aType = getNodeType ();
  if (aType == ELEMENT_NODE) {
    const LDOM_BasicElement& anElement = * (LDOM_BasicElement *) myOrigin;
    if (aChild != NULL)
      anElement.RemoveChild (aChild.myOrigin);
    if (aChild.myOrigin == myLastChild)
//      myLastChild = anElement.GetLastChild();
      myLastChild = NULL;
  }
}

//=======================================================================
//function : appendChild
//purpose  : 
//=======================================================================

void LDOM_Node::appendChild (const LDOM_Node& aChild)
{
  const NodeType aType = getNodeType ();
  if (aType == ELEMENT_NODE && aChild != NULL) {
    if (myLastChild) {
      aChild.myOrigin -> SetSibling (myLastChild -> mySibling);
      (const LDOM_BasicNode *&) myLastChild -> mySibling = aChild.myOrigin;
    }else{
      const LDOM_BasicElement& anElement = * (LDOM_BasicElement *) myOrigin;
      anElement.AppendChild (aChild.myOrigin, myLastChild);
    }
    myLastChild = aChild.myOrigin;
  }
}

//=======================================================================
//function : hasChildNodes
//purpose  : 
//=======================================================================

Standard_Boolean LDOM_Node::hasChildNodes () const
{
  const NodeType aType = getNodeType ();
  if (aType == ELEMENT_NODE) {
    const LDOM_BasicElement& anElement = * (const LDOM_BasicElement *) myOrigin;
    const LDOM_BasicNode * aChild = anElement.GetFirstChild();
    if (aChild) return ! aChild -> isNull(); 
  }
  return Standard_False;
}

//=======================================================================
//function : SetValueClear
//purpose  : 
//=======================================================================

void LDOM_Node::SetValueClear () const
{
  LDOMBasicString * aValue = NULL;
  switch (getNodeType()) {
  case ATTRIBUTE_NODE:
    {
      const LDOM_BasicAttribute& anAttr= *(const LDOM_BasicAttribute*) myOrigin;
      aValue = (LDOMBasicString *) & anAttr.GetValue();
      break;
    }
  case TEXT_NODE:
  case CDATA_SECTION_NODE:
  case COMMENT_NODE:
    {
      const LDOM_BasicText& aText = * (const LDOM_BasicText *) myOrigin;
      aValue = (LDOMBasicString *) & aText.GetData();
      break;
    }
  default: return;
  }
  if (aValue -> Type() == LDOMBasicString::LDOM_AsciiDoc)
    aValue -> myType = LDOMBasicString::LDOM_AsciiDocClear;
}