-
Notifications
You must be signed in to change notification settings - Fork 0
/
document.go
229 lines (207 loc) · 3.59 KB
/
document.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
// This is Free Software covered by the terms of the MIT license.
// See LICENSE file for details.
// Copyright 2017 by Intevation GmbH
package main
import (
"fmt"
"io"
"strings"
)
type nodeType int
const (
rootNode nodeType = iota
orderedListNode
unorderedListNode
listItemNode
textNode
boldNode
italicsNode
underlinedNode
strikeNode
superscriptNode
subscriptNode
tableNode
tableHeaderRowNode
tableHeaderCellNode
tableRowNode
tableCellNode
heading1Node
heading2Node
heading3Node
heading4Node
heading5Node
heading6Node
paragraphNode
lineBreakNode
escapeNode
noWikiNode
noWikiInlineNode
placeholderNode
imageNode
linkNode
horizontalLineNode
)
func (n nodeType) String() string {
var names = [...]string{
"rootNode",
"orderedListNode",
"unorderedListNode",
"listItemNode",
"textNode",
"boldNode",
"italicsNode",
"underlinedNode",
"strikeNode",
"superscriptNode",
"subscriptNode",
"tableNode",
"tableHeaderRowNode",
"tableHeaderCellNode",
"tableRowNode",
"tableCellNode",
"heading1Node",
"heading2Node",
"heading3Node",
"heading4Node",
"heading5Node",
"heading6Node",
"paragraphNode",
"lineBreakNode",
"escapeNode",
"noWikiNode",
"noWikiInlineNode",
"placeholderNode",
"imageNode",
"linkNode",
"horizontalLineNode",
}
if n < 0 || int(n) >= len(names) {
return "unknown"
}
return names[n]
}
type node struct {
nodeType
parent *node
children []*node
value interface{}
}
type image struct {
src string
alt string
}
func (n *node) nextOfType(c *node) *node {
if n == nil {
return nil
}
var found bool
for _, x := range n.children {
if found {
if x.nodeType == c.nodeType {
return x
}
} else {
found = x == c
}
}
return nil
}
func (n *node) numColumns() int {
var max int
var descend func(*node)
descend = func(current *node) {
if current == nil {
return
}
if current.nodeType == tableRowNode ||
current.nodeType == tableHeaderRowNode {
var count int
for _, c := range current.children {
if c.nodeType == tableCellNode ||
c.nodeType == tableHeaderCellNode {
count++
}
}
if count > max {
max = count
}
return
}
for _, c := range current.children {
descend(c)
}
}
descend(n)
return max
}
type document struct {
root *node
}
type visitor struct {
enter func(*node) error
leave func(*node) error
}
func (d *document) traverse(visitors map[nodeType]*visitor) error {
if d == nil {
return nil
}
var descend func(*node) error
descend = func(n *node) error {
if n == nil {
return nil
}
v := visitors[n.nodeType]
if v != nil && v.enter != nil {
if err := v.enter(n); err != nil {
return err
}
}
for _, child := range n.children {
if err := descend(child); err != nil {
return err
}
}
if v != nil && v.leave != nil {
if err := v.leave(n); err != nil {
return err
}
}
return nil
}
return descend(d.root)
}
func (d *document) dump(out io.Writer) {
var descend func(*node, int)
descend = func(n *node, depth int) {
if n == nil {
return
}
fmt.Fprintf(out, "%s%s\n", strings.Repeat(" ", depth), n)
for _, c := range n.children {
descend(c, depth+1)
}
}
descend(d.root, 0)
}
func text(txt string) *node {
return &node{
nodeType: textNode,
value: txt,
}
}
func nd(typ nodeType, children ...*node) *node {
return &node{
nodeType: typ,
children: children,
}
}
func ndp(typ nodeType, parent *node, children ...*node) *node {
n := nd(typ, children...)
link(n, parent)
return n
}
func link(n, p *node) *node {
n.parent = p
p.children = append(p.children, n)
return n
}