-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaxis.go
395 lines (348 loc) · 9.4 KB
/
axis.go
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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
// Copyright 2017 Santhosh Kumar Tekuri. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package xpath
import (
"github.com/santhosh-tekuri/dom"
)
// Iterator over collection of dom nodes.
type Iterator interface {
// Next returns the next element in the iteration.
// Returns nil if the iteration has no more nodes.
Next() dom.Node
}
var iterators = []func(dom.Node) Iterator{
ChildAxis,
DescendantAxis,
ParentAxis,
AncestorAxis,
FollowingSiblingAxis,
PrecedingSiblingAxis,
FollowingAxis,
PrecedingAxis,
AttributeAxis,
NamespaceAxis,
SelfAxis,
DescendantOrSelfAxis,
AncestorOrSelfAxis,
}
type emptyIter struct{}
func (emptyIter) Next() dom.Node {
return nil
}
/************************************************************************/
// SelfAxis returns Iterator which contains just the context node itself.
//
// This is forward axis.
func SelfAxis(n dom.Node) Iterator {
return &onceIter{n}
}
// ParentAxis returns Iterator which contains the parent of the context node, if there is one.
//
// This is forward axis.
func ParentAxis(n dom.Node) Iterator {
return &onceIter{Parent(n)}
}
type onceIter struct {
n dom.Node
}
func (iter *onceIter) Next() dom.Node {
if iter.n != nil {
n := iter.n
iter.n = nil
return n
}
return nil
}
/************************************************************************/
// ChildAxis returns Iterator which contains the children of the context node.
//
// This is forward axis.
func ChildAxis(n dom.Node) Iterator {
if p, ok := n.(dom.Parent); ok {
return &sliceIter{p.Children(), 0}
}
return emptyIter{}
}
// FollowingSiblingAxis returns Iterator which contains all the following siblings of the context node.
// If the context node is an attribute node or namespace node, the following-sibling axis is empty.
//
// This is forward axis.
func FollowingSiblingAxis(n dom.Node) Iterator {
if p := n.Parent(); p != nil {
for i, child := range p.Children() {
if n == child {
return &sliceIter{p.Children(), i + 1}
}
}
}
return emptyIter{}
}
// NamespaceAxis returns Iterator which contains the namespace nodes of the context node.
// The axis will be empty unless the context node is an element.
//
// This is forward axis.
func NamespaceAxis(n dom.Node) Iterator {
if elem, ok := n.(*dom.Element); ok {
m := make(map[string]struct{})
ns := []dom.Node{
&dom.NameSpace{elem, "xml", "http://www.w3.org/XML/1998/namespace"},
}
e := elem
for {
for prefix, uri := range e.NSDecl {
if _, ok := m[prefix]; !ok {
m[prefix] = struct{}{}
ns = append(ns, &dom.NameSpace{elem, prefix, uri})
}
}
p := e.Parent()
if p, ok := p.(*dom.Element); ok {
e = p
} else {
break
}
}
return &sliceIter{ns, 0}
}
return emptyIter{}
}
type sliceIter struct {
arr []dom.Node
i int
}
func (iter *sliceIter) Next() dom.Node {
if iter.i < len(iter.arr) {
n := iter.arr[iter.i]
iter.i++
return n
}
return nil
}
/************************************************************************/
// AttributeAxis returns Iterator which contains the attributes of the context node.
// The axis will be empty unless the context node is an element.
//
// This is forward axis.
func AttributeAxis(n dom.Node) Iterator {
if e, ok := n.(*dom.Element); ok {
return &attrIter{e, 0}
}
return emptyIter{}
}
type attrIter struct {
e *dom.Element
i int
}
func (iter *attrIter) Next() dom.Node {
if iter.i < len(iter.e.Attrs) {
n := iter.e.Attrs[iter.i]
iter.i++
return n
}
return nil
}
/************************************************************************/
// PrecedingSiblingAxis returns Iterator which contains all the preceding siblings of the context node.
// If the context node is an attribute node or namespace node, the preceding-sibling axis is empty.
//
// This is reverse axis.
func PrecedingSiblingAxis(n dom.Node) Iterator {
if p := n.Parent(); p != nil {
for i, child := range n.Parent().Children() {
if child == n {
return &reverseIter{n.Parent().Children(), i - 1}
}
}
}
return emptyIter{}
}
type reverseIter struct {
arr []dom.Node
i int
}
func (iter *reverseIter) hasNext() bool {
return iter.i >= 0
}
func (iter *reverseIter) Next() dom.Node {
if iter.i >= 0 {
n := iter.arr[iter.i]
iter.i--
return n
}
return nil
}
/************************************************************************/
// AncestorAxis returns Iterator which contains the ancestors of the context node.
// The ancestors of the context node consist of the parent of context node and
// the parent's parent and so on; thus, the ancestor axis will always include
// the root node, unless the context node is the root node.
//
// This is reverse axis.
func AncestorAxis(n dom.Node) Iterator {
return &ancestorOrSelfIter{n.Parent()}
}
// AncestorOrSelfAxis returns Iterator which contains the context node and the ancestors of the context node.
// Thus, the ancestor axis will always include the root node.
//
// This is reverse axis.
func AncestorOrSelfAxis(n dom.Node) Iterator {
return &ancestorOrSelfIter{n}
}
type ancestorOrSelfIter struct {
n dom.Node
}
func (iter *ancestorOrSelfIter) Next() dom.Node {
if iter.n != nil {
n := iter.n
iter.n = Parent(n)
return n
}
return nil
}
/************************************************************************/
// DescendantAxis returns Iterator which contains the descendants of the context node.
// A descendant is a child or a child of a child and so on.
// Thus the descendant axis never contains attribute or namespace nodes.
//
// This is forward axis.
func DescendantAxis(n dom.Node) Iterator {
return &descendantIter{nil, ChildAxis(n)}
}
// DescendantOrSelfAxis returns Iterator which contains the context node and the descendants of the context node.
//
// This is forward axis.
func DescendantOrSelfAxis(n dom.Node) Iterator {
return &descendantIter{nil, SelfAxis(n)}
}
type descendantIter struct {
stack []Iterator
children Iterator
}
func (iter *descendantIter) Next() dom.Node {
var n dom.Node
for {
n = iter.children.Next()
if n != nil {
break
}
if len(iter.stack) == 0 {
return nil
}
iter.children = iter.stack[len(iter.stack)-1]
iter.stack = iter.stack[:len(iter.stack)-1]
}
iter.stack = append(iter.stack, iter.children)
iter.children = ChildAxis(n)
return n
}
/************************************************************************/
// FollowingAxis returns Iterator which contains all nodes in the same document as the context node
// that are after the context node in document order, excluding any descendants and
// excluding attribute nodes and namespace nodes.
//
// This is forward axis.
func FollowingAxis(n dom.Node) Iterator {
return &followingIter{AncestorOrSelfAxis(n), emptyIter{}, emptyIter{}}
}
type followingIter struct {
ancestorOrSelf Iterator
followingSibling Iterator // followingSibling of ancestorOrSelf
descendantOrSelf Iterator // descendantsOrSelf of followingSibling
}
func (iter *followingIter) Next() dom.Node {
for {
if n := iter.descendantOrSelf.Next(); n != nil {
return n
}
for {
if sibling := iter.followingSibling.Next(); sibling != nil {
iter.descendantOrSelf = DescendantOrSelfAxis(sibling)
break
}
switch ancestor := iter.ancestorOrSelf.Next(); ancestor.(type) {
case nil, *dom.Document:
return nil
default:
iter.followingSibling = FollowingSiblingAxis(ancestor)
}
}
}
}
/************************************************************************/
// PrecedingAxis returns Iterator which contains all nodes in the same document as the context node
// that are before the context node in document order, excluding any ancestors and
// excluding attribute nodes and namespace nodes.
//
// This is reverse axis.
func PrecedingAxis(n dom.Node) Iterator {
return &precedingIter{AncestorOrSelfAxis(n), emptyIter{}, &reverseIter{nil, -1}, nil}
}
type precedingIter struct {
ancestorOrSelf Iterator
precedingSibling Iterator
childrenOrSelf *reverseIter
stack []*reverseIter
}
func (iter *precedingIter) Next() dom.Node {
for {
n := iter.childrenOrSelf.Next()
if n == nil {
if len(iter.stack) == 0 {
var ps dom.Node
for {
ps = iter.precedingSibling.Next()
if ps == nil {
as := iter.ancestorOrSelf.Next()
if as == nil {
return nil
}
iter.precedingSibling = PrecedingSiblingAxis(as)
} else {
break
}
}
iter.childrenOrSelf = childrenOrSelfIter(ps)
} else {
iter.childrenOrSelf = iter.stack[len(iter.stack)-1]
iter.stack = iter.stack[:len(iter.stack)-1]
}
continue
}
if iter.childrenOrSelf.hasNext() {
iter.stack = append(iter.stack, iter.childrenOrSelf)
iter.childrenOrSelf = childrenOrSelfIter(n)
continue
}
return n
}
}
func childrenOrSelfIter(n dom.Node) *reverseIter {
arr := []dom.Node{n}
children := ChildAxis(n)
for {
c := children.Next()
if c == nil {
return &reverseIter{arr, len(arr) - 1}
}
arr = append(arr, c)
}
}
/************************************************************************/
// Parent returns parent of given dom.Node as per xpath specification.
//
// """
// unlike dom specification:
// - the element is the parent of each of these attribute nodes.
// - The element is the parent of each of these namespace nodes.
// """
func Parent(n dom.Node) dom.Node {
switch n := n.(type) {
case *dom.Attr:
return n.Owner
case *dom.NameSpace:
return n.Owner
default:
return n.Parent()
}
}