-
Notifications
You must be signed in to change notification settings - Fork 153
/
renderer.go
224 lines (192 loc) · 5.38 KB
/
renderer.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
// Copyright 2020 The PipeCD Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package diff
import (
"fmt"
"reflect"
"sort"
"strconv"
"strings"
)
type Renderer struct {
leftPadding int
maskPathPrefix string
}
type RenderOption func(*Renderer)
const maskString = "*****"
func WithLeftPadding(p int) RenderOption {
return func(r *Renderer) {
r.leftPadding = p
}
}
func WithMaskPath(prefix string) RenderOption {
return func(r *Renderer) {
r.maskPathPrefix = prefix
}
}
func NewRenderer(opts ...RenderOption) *Renderer {
r := &Renderer{}
for _, opt := range opts {
opt(r)
}
return r
}
func (r *Renderer) Render(ns Nodes) string {
if len(ns) == 0 {
return ""
}
var prePath []PathStep
var b strings.Builder
printValue := func(mark string, v reflect.Value, lastStep PathStep, depth int) {
if !v.IsValid() {
return
}
nodeString, nl := renderNodeValue(v, "")
if lastStep.Type == SliceIndexPathStep {
nl = false
}
switch {
case lastStep.Type == SliceIndexPathStep:
b.WriteString(fmt.Sprintf("%s%*s- ", mark, depth*2-1, ""))
case nl:
b.WriteString(fmt.Sprintf("%s%*s%s:\n", mark, depth*2-1, "", lastStep.String()))
default:
b.WriteString(fmt.Sprintf("%s%*s%s: ", mark, depth*2-1, "", lastStep.String()))
}
parts := strings.Split(nodeString, "\n")
for i, p := range parts {
if lastStep.Type != SliceIndexPathStep {
if nl {
b.WriteString(fmt.Sprintf("%s%*s%s\n", mark, depth*2+1, "", p))
} else {
b.WriteString(fmt.Sprintf("%s\n", p))
}
continue
}
if i == 0 {
b.WriteString(fmt.Sprintf("%s\n", p))
continue
}
b.WriteString(fmt.Sprintf("%s%*s%s\n", mark, depth*2+1, "", p))
}
}
for _, n := range ns {
duplicateDepth := pathDuplicateDepth(n.Path, prePath)
prePath = n.Path
pathLen := len(n.Path)
var array bool
for i := duplicateDepth; i < pathLen-1; i++ {
if n.Path[i].Type == SliceIndexPathStep {
b.WriteString(fmt.Sprintf("%*s-", (r.leftPadding+i)*2, ""))
array = true
continue
}
if array {
b.WriteString(fmt.Sprintf(" %s:\n", n.Path[i].String()))
array = false
continue
}
b.WriteString(fmt.Sprintf("%*s%s:\n", (r.leftPadding+i)*2, "", n.Path[i].String()))
}
if array {
b.WriteString("\n")
}
lastStep := n.Path[pathLen-1]
valueX, valueY := n.ValueX, n.ValueY
if r.maskPathPrefix != "" && strings.HasPrefix(n.PathString, r.maskPathPrefix) {
valueX = reflect.ValueOf(maskString)
valueY = reflect.ValueOf(maskString)
}
b.WriteString(fmt.Sprintf("%*s#%s\n", (r.leftPadding+pathLen-1)*2, "", n.PathString))
printValue("-", valueX, lastStep, r.leftPadding+pathLen-1)
printValue("+", valueY, lastStep, r.leftPadding+pathLen-1)
b.WriteString("\n")
}
return b.String()
}
func pathDuplicateDepth(x, y []PathStep) int {
minLen := len(x)
if minLen > len(y) {
minLen = len(y)
}
for i := 0; i < minLen; i++ {
if x[i] == y[i] {
continue
}
return i
}
return 0
}
func renderNodeValue(v reflect.Value, prefix string) (string, bool) {
switch v.Kind() {
case reflect.Map:
out := make([]string, 0, v.Len())
keys := v.MapKeys()
sort.Slice(keys, func(i, j int) bool {
return keys[i].String() < keys[j].String()
})
for _, k := range keys {
sub := v.MapIndex(k)
subString, nl := renderNodeValue(sub, prefix+" ")
if !nl {
out = append(out, fmt.Sprintf("%s%s: %s", prefix, k.String(), subString))
continue
}
out = append(out, fmt.Sprintf("%s%s:\n%s", prefix, k.String(), subString))
}
if len(out) == 0 {
return "", false
}
return strings.Join(out, "\n"), true
case reflect.Slice, reflect.Array:
out := make([]string, 0, v.Len())
for i := 0; i < v.Len(); i++ {
sub, _ := renderNodeValue(v.Index(i), prefix+" ")
parts := strings.Split(sub, "\n")
for i, p := range parts {
p = strings.TrimPrefix(p, prefix+" ")
if i == 0 {
out = append(out, fmt.Sprintf("%s- %s", prefix, p))
continue
}
out = append(out, fmt.Sprintf("%s %s", prefix, p))
}
}
return strings.Join(out, "\n"), true
case reflect.Interface:
return renderNodeValue(v.Elem(), prefix)
case reflect.String:
return v.String(), false
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64,
reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
return strconv.FormatInt(v.Int(), 10), false
case reflect.Float32, reflect.Float64:
return strconv.FormatFloat(v.Float(), 'f', -1, 64), false
default:
return v.String(), false
}
}
func RenderPrimitiveValue(v reflect.Value) string {
switch v.Kind() {
case reflect.String:
return v.String()
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64,
reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
return strconv.FormatInt(v.Int(), 10)
case reflect.Float32, reflect.Float64:
return strconv.FormatFloat(v.Float(), 'f', -1, 64)
default:
return v.String()
}
}