-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprettyp.go
82 lines (69 loc) · 1.52 KB
/
prettyp.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
package util
import (
"bytes"
"encoding/json"
"fmt"
"strings"
"unicode"
)
func PrettyPrint(v interface{}) error {
var buf bytes.Buffer
encoder := json.NewEncoder(&buf)
encoder.SetIndent("", " ")
if err := encoder.Encode(v); err != nil {
return fmt.Errorf("error encoding JSON: %w", err)
}
jsonStr := buf.String()
var coloredOutput strings.Builder
var inString bool
var isKey bool
var insideArray bool
for i := 0; i < len(jsonStr); i++ {
char := jsonStr[i]
if char == '"' {
inString = !inString
if !inString {
coloredOutput.WriteString(colorString(string(char), isKey))
if isKey {
isKey = false
}
} else {
if !insideArray {
for j := i - 1; j >= 0; j-- {
if jsonStr[j] == '{' || jsonStr[j] == ',' {
isKey = true
break
}
if !unicode.IsSpace(rune(jsonStr[j])) {
break
}
}
}
coloredOutput.WriteString(colorString(string(char), isKey))
}
} else if !inString {
switch char {
case '{', '}', '[', ']', ':', ',':
if char == '[' {
insideArray = true
} else if char == ']' {
insideArray = false
}
coloredOutput.WriteString(colorString(string(char), false))
default:
coloredOutput.WriteString(string(char))
}
} else {
coloredOutput.WriteString(colorString(string(char), isKey))
}
}
fmt.Println(coloredOutput.String())
return nil
}
func colorString(str string, isKey bool) string {
if isKey {
return "\x1b[36m" + str + "\x1b[0m"
} else {
return "\x1b[33m" + str + "\x1b[0m"
}
}