-
Notifications
You must be signed in to change notification settings - Fork 63
/
node.go
214 lines (200 loc) · 5.65 KB
/
node.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
// Copyright 2021 by Leipzig University Library, http://ub.uni-leipzig.de
// The Finc Authors, http://finc.info
// Martin Czygan, <[email protected]>
//
// This file is part of some open source application.
//
// Some open source application is free software: you can redistribute
// it and/or modify it under the terms of the GNU General Public
// License as published by the Free Software Foundation, either
// version 3 of the License, or (at your option) any later version.
//
// Some open source application is distributed in the hope that it will
// be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Foobar. If not, see <http://www.gnu.org/licenses/>.
//
// @license GPL-3.0+ <http://spdx.org/licenses/GPL-3.0+>
package zek
import (
"encoding/xml"
"io"
"reflect"
"strings"
"golang.org/x/net/html/charset"
)
var emptyNode = new(Node)
// Node represents an element in the XML tree. It keeps track of its name,
// attributes, childnodes and example chardata and basic statistics, e.g. how
// often a node has been seen within its parent node.
type Node struct {
Name xml.Name `json:"name,omitempty"`
Attr []xml.Attr `json:"attr,omitempty"`
Examples []string `json:"examples,omitempty"`
Children []*Node `json:"children,omitempty"`
Freqs []int `json:"-"` // Collect number of occurrences of this node within parent.
MaxExamples int `json:"-"` // Maximum number of examples to keep, gets passed to children.
childFreqs map[xml.Name]int // Count child tag occurrences, used temporarily.
}
// ReadOpts groups options for parsing.
type ReadOpts struct {
MaxExamples int
MaxTokens int64
}
// readNode reads XML from a reader and returns a parsed node. If node is
// given, it is reused, allowing for multiple passes (e.g. from multiple
// files). XXX: maxExamples should be factored out into options.
func readNode(r io.Reader, root *Node, opts *ReadOpts) (node *Node, n int64, err error) {
var (
cw = countwriter{}
dec = xml.NewDecoder(io.TeeReader(r, &cw))
)
dec.CharsetReader = charset.NewReaderLabel
dec.Strict = false
if root == nil {
root = &Node{}
}
stack := Stack{}
stack.Put(root)
var i int64
OUTER:
for {
token, err := dec.Token()
if err == io.EOF {
break
}
if err != nil {
return root, cw.n, err
}
i++
switch t := token.(type) {
case xml.StartElement:
parent := stack.Peek().(*Node)
n := parent.CreateOrGetChild(t.Name, t.Attr)
stack.Put(n)
case xml.EndElement:
n := stack.Pop().(*Node)
n.End()
if opts.MaxTokens > 0 && i > opts.MaxTokens {
break OUTER
}
case xml.CharData:
v := strings.TrimSpace(string(t))
if v == "" {
break
}
n := stack.Peek().(*Node)
if len(n.Examples) < opts.MaxExamples {
// XXX: sample better, e.g. reservoir dictionary.
n.Examples = append(n.Examples, v)
}
}
}
stack.Pop()
return root, cw.n, nil
}
// ReadFrom reads XML from a reader. TODO: pass read options.
func (node *Node) ReadFrom(r io.Reader, opts *ReadOpts) (int64, error) {
nn, n, err := readNode(r, nil, opts)
if err != nil {
return n, err
}
if len(nn.Children) > 0 {
// Decapitate node.
*node = *nn.Children[0]
}
return n, nil
}
// mergeAttr adds attributes to node, which are not already there.
func (node *Node) mergeAttr(attr []xml.Attr) {
LOOP:
for _, a := range attr {
for _, na := range node.Attr {
if a.Name == na.Name {
continue LOOP
}
}
node.Attr = append(node.Attr, a)
}
}
// IsMultivalued returns true, if this node appeared more than once.
func (node *Node) IsMultivalued() bool {
for _, f := range node.Freqs {
if f > 1 {
return true
}
}
return false
}
// CreateOrGetChild creates a child if no child with the same tag name exists,
// otherwise returns the existing node with that name. We want to collect node
// and attribute information for a node and not replicate the XML tree.
func (node *Node) CreateOrGetChild(name xml.Name, attr []xml.Attr) *Node {
for _, child := range node.Children {
if child.Name.Local != name.Local {
continue
}
child.mergeAttr(attr)
node.childFreqs[name]++
return child
}
if node.childFreqs == nil {
node.childFreqs = make(map[xml.Name]int)
}
node.childFreqs[name]++
n := &Node{
Name: name,
Attr: attr,
MaxExamples: node.MaxExamples,
}
node.Children = append(node.Children, n)
return n
}
// End signals end of an element.
func (node *Node) End() {
// Take note of frequencies, collect them inside child for later stats.
for name, freq := range node.childFreqs {
for _, c := range node.Children {
if c.Name != name {
continue
}
c.Freqs = append(c.Freqs, freq)
}
}
// Reset counter.
node.childFreqs = make(map[xml.Name]int)
}
// Height returns the height of the tree. A tree with zero nodes has height
// zero, a single node tree has height 1.
func (node *Node) Height() int {
if node == nil || reflect.DeepEqual(node, emptyNode) {
return 0
}
max := 0
for _, c := range node.Children {
h := c.Height()
if h > max {
max = h
}
}
return 1 + max
}
// ByName finds a node in the tree (dfs) by name. Comparisons start at the
// current node. First match is returned. If nothing matches, nil is returned.
func (node *Node) ByName(name string) *Node {
if node == nil {
return nil
}
if name == "" || node.Name.Local == name {
return node
}
for _, c := range node.Children {
if n := c.ByName(name); n != nil {
return n
}
}
return nil
}