-
-
Notifications
You must be signed in to change notification settings - Fork 96
/
json_utils.go
82 lines (72 loc) · 2.03 KB
/
json_utils.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 utils
import (
"os"
"strings"
jsoniter "github.com/json-iterator/go"
)
// PrintAsJSON prints the provided value as YAML document to the console
func PrintAsJSON(data any) error {
j, err := ConvertToJSON(data)
if err != nil {
return err
}
PrintMessage(j)
return nil
}
// WriteToFileAsJSON converts the provided value to YAML and writes it to the specified file
func WriteToFileAsJSON(filePath string, data any, fileMode os.FileMode) error {
j, err := ConvertToJSON(data)
if err != nil {
return err
}
err = os.WriteFile(filePath, []byte(j), fileMode)
if err != nil {
return err
}
return nil
}
// ConvertToJSON converts the provided value to a JSON-encoded string
func ConvertToJSON(data any) (string, error) {
var json = jsoniter.Config{
EscapeHTML: true,
ObjectFieldMustBeSimpleString: false,
SortMapKeys: true,
ValidateJsonRawMessage: true,
}
j, err := json.Froze().MarshalIndent(data, "", strings.Repeat(" ", 3))
if err != nil {
return "", err
}
return string(j), nil
}
// ConvertToJSONFast converts the provided value to a JSON-encoded string using 'ConfigFastest' config and json.Marshal without indents
func ConvertToJSONFast(data any) (string, error) {
var json = jsoniter.Config{
EscapeHTML: false,
MarshalFloatWith6Digits: true,
ObjectFieldMustBeSimpleString: true,
SortMapKeys: true,
ValidateJsonRawMessage: true,
}
j, err := json.Froze().MarshalToString(data)
if err != nil {
return "", err
}
return j, nil
}
// ConvertFromJSON converts the provided JSON-encoded string to Go data types
func ConvertFromJSON(jsonString string) (any, error) {
var json = jsoniter.Config{
EscapeHTML: false,
MarshalFloatWith6Digits: true,
ObjectFieldMustBeSimpleString: true,
SortMapKeys: true,
ValidateJsonRawMessage: true,
}
var data any
err := json.Froze().Unmarshal([]byte(jsonString), &data)
if err != nil {
return "", err
}
return data, nil
}