-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrender.go
More file actions
173 lines (151 loc) · 3.82 KB
/
render.go
File metadata and controls
173 lines (151 loc) · 3.82 KB
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
package textree
import (
"fmt"
"io"
"strings"
)
// RenderOptions is used to customize rendering
type RenderOptions struct {
// symbols
HorizontalLink string
VerticalLink string
RootLink string
ChildLink string
LastChildLink string
ChildrenLink string
NodeSymbol string
// dimensions
MarginTop int
MarginBottom int
MarginLeft int
HorizontalLinkLength int
LabelPaddingLeft int
ChildrenMarginTop int
ChildrenMarginBottom int
}
// NewRenderOptions generates default rendering options
func NewRenderOptions() *RenderOptions {
return &RenderOptions{
// symbols
HorizontalLink: "─",
VerticalLink: "│",
RootLink: "┌",
ChildLink: "├",
LastChildLink: "└",
ChildrenLink: "┬",
NodeSymbol: "",
// dimensions
MarginTop: 1,
MarginBottom: 1,
MarginLeft: 1,
HorizontalLinkLength: 2,
LabelPaddingLeft: 1,
ChildrenMarginTop: 1,
ChildrenMarginBottom: 1,
}
}
// Rounded override symbols for a rounded rendering
func (o *RenderOptions) Rounded() {
o.HorizontalLink = "─"
o.VerticalLink = "│"
o.ChildLink = "├"
o.LastChildLink = "╰"
o.ChildrenLink = "╮"
o.NodeSymbol = ""
}
// Dotted override symbols for a dotted rendering
func (o *RenderOptions) Dotted() {
o.HorizontalLink = "·"
o.VerticalLink = ":"
o.ChildrenLink = "·"
o.ChildLink = ":"
o.LastChildLink = "·"
}
// Compact override dimensions for a compact rendering
func (o *RenderOptions) Compact() {
o.MarginTop = 0
o.MarginBottom = 0
o.MarginLeft = 0
o.HorizontalLinkLength = 1
o.LabelPaddingLeft = 1
o.ChildrenMarginTop = 0
o.ChildrenMarginBottom = 0
}
// Render renders a pretty tree structure to given io.Writer
func (n *Node) Render(w io.Writer, o *RenderOptions) {
marginLeft := strings.Repeat(" ", o.MarginLeft)
line := marginLeft
if n.IsRoot() {
fmt.Fprint(w, strings.Repeat("\n", o.MarginTop))
line += o.RootLink
} else {
reversedAncestors := n.ReversedAncestors()
for _, ancestor := range reversedAncestors {
if ancestor.IsRoot() {
continue
}
if ancestor.isLast {
line += strings.Repeat(" ", o.HorizontalLinkLength+1)
} else {
line += o.VerticalLink
line += strings.Repeat(" ", o.HorizontalLinkLength)
}
}
if n.isLast {
line += o.LastChildLink
} else {
line += o.ChildLink
}
if n.HasChild() {
line += strings.Repeat(o.HorizontalLink, o.HorizontalLinkLength)
line += o.ChildrenLink
} else {
line += strings.Repeat(o.HorizontalLink, o.HorizontalLinkLength+1)
}
}
line += o.NodeSymbol
line += strings.Repeat(" ", o.LabelPaddingLeft)
line += n.Label
fmt.Fprintln(w, line)
if n.HasChild() && o.ChildrenMarginTop > 0 {
childrenMarginTop := marginLeft
for _, ancestor := range n.Children[0].ReversedAncestors() {
if ancestor.IsRoot() {
continue
}
if ancestor.isLast {
childrenMarginTop += strings.Repeat(" ", o.HorizontalLinkLength+1)
} else {
childrenMarginTop += o.VerticalLink
childrenMarginTop += strings.Repeat(" ", o.HorizontalLinkLength)
}
}
childrenMarginTop += o.VerticalLink
for i := 0; i < o.ChildrenMarginTop; i++ {
fmt.Fprintln(w, childrenMarginTop)
}
}
for _, c := range n.Children {
c.Render(w, o)
}
if n.IsLeaf() && n.isLast && o.ChildrenMarginBottom > 0 {
childrenMarginBottom := marginLeft
for _, ancestor := range n.ReversedAncestors() {
if ancestor.IsRoot() {
continue
}
if ancestor.isLast {
childrenMarginBottom += strings.Repeat(" ", o.HorizontalLinkLength+1)
} else {
childrenMarginBottom += o.VerticalLink
childrenMarginBottom += strings.Repeat(" ", o.HorizontalLinkLength)
}
}
for i := 0; i < o.ChildrenMarginBottom; i++ {
fmt.Fprintln(w, childrenMarginBottom)
}
}
if n.IsRoot() {
fmt.Fprint(w, strings.Repeat("\n", o.MarginBottom))
}
}