Skip to content

Commit fb9e8ad

Browse files
committed
add generic json/yaml parsing utilities
1 parent 9594640 commit fb9e8ad

File tree

1 file changed

+96
-2
lines changed

1 file changed

+96
-2
lines changed

pkg/utils/utils.go

+96-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ package utils
33
import (
44
"encoding/json"
55
"fmt"
6+
"github.com/pkg/errors"
67
log "github.com/sirupsen/logrus"
8+
"io/fs"
9+
"io/ioutil"
10+
"os"
711
"sigs.k8s.io/yaml"
812
)
913

@@ -15,16 +19,106 @@ func DoOrDie(err error) {
1519

1620
func JsonString(obj interface{}) string {
1721
bytes, err := json.MarshalIndent(obj, "", " ")
18-
DoOrDie(err)
22+
DoOrDie(errors.Wrapf(err, "unable to marshal json"))
1923
return string(bytes)
2024
}
2125

26+
func ParseJson[T any](bs []byte) (*T, error) {
27+
var t T
28+
if err := json.Unmarshal(bs, &t); err != nil {
29+
return nil, errors.Wrapf(err, "unable to unmarshal json")
30+
}
31+
return &t, nil
32+
}
33+
34+
func ParseJsonFromFile[T any](path string) (*T, error) {
35+
bytes, err := ReadFileBytes(path)
36+
if err != nil {
37+
return nil, err
38+
}
39+
return ParseJson[T](bytes)
40+
}
41+
42+
func ParseYaml[T any](bs []byte) (*T, error) {
43+
var t T
44+
if err := yaml.Unmarshal(bs, &t); err != nil {
45+
return nil, errors.Wrapf(err, "unable to unmarshal yaml")
46+
}
47+
return &t, nil
48+
}
49+
50+
func ParseYamlStrict[T any](bs []byte) (*T, error) {
51+
var t T
52+
if err := yaml.UnmarshalStrict(bs, &t); err != nil {
53+
return nil, errors.Wrapf(err, "unable to unmarshal yaml")
54+
}
55+
return &t, nil
56+
}
57+
58+
func ParseYamlFromFile[T any](path string) (*T, error) {
59+
bytes, err := ReadFileBytes(path)
60+
if err != nil {
61+
return nil, err
62+
}
63+
return ParseYaml[T](bytes)
64+
}
65+
66+
func ParseYamlFromFileStrict[T any](path string) (*T, error) {
67+
bytes, err := ReadFileBytes(path)
68+
if err != nil {
69+
return nil, err
70+
}
71+
return ParseYamlStrict[T](bytes)
72+
}
73+
2274
func YamlString(obj interface{}) string {
2375
bytes, err := yaml.Marshal(obj)
24-
DoOrDie(err)
76+
DoOrDie(errors.Wrapf(err, "unable to marshal yaml"))
2577
return string(bytes)
2678
}
2779

2880
func PrintJson(obj interface{}) {
2981
fmt.Printf("%s\n", JsonString(obj))
3082
}
83+
84+
func DumpJSON(obj interface{}) string {
85+
bytes, err := json.MarshalIndent(obj, "", " ")
86+
DoOrDie(err)
87+
return string(bytes)
88+
}
89+
90+
func WriteJsonToFile(obj interface{}, path string) error {
91+
content := DumpJSON(obj)
92+
return WriteFile(path, content, 0644)
93+
}
94+
95+
func PrintJSON(obj interface{}) {
96+
fmt.Printf("%s\n", DumpJSON(obj))
97+
}
98+
99+
func DoesFileExist(path string) bool {
100+
if _, err := os.Stat(path); err == nil {
101+
return true
102+
} else if errors.Is(err, os.ErrNotExist) {
103+
return false
104+
} else {
105+
panic(errors.Wrapf(err, "unable to determine if file %s exists", path))
106+
}
107+
}
108+
109+
// WriteFile wraps calls to ioutil.WriteFile, ensuring that errors are wrapped in a stack trace
110+
func WriteFile(filename string, contents string, perm fs.FileMode) error {
111+
return errors.Wrapf(ioutil.WriteFile(filename, []byte(contents), perm), "unable to write file %s", filename)
112+
}
113+
114+
// ReadFile wraps calls to ioutil.ReadFile, ensuring that errors are wrapped in a stack trace
115+
func ReadFile(filename string) (string, error) {
116+
bytes, err := ioutil.ReadFile(filename)
117+
return string(bytes), errors.Wrapf(err, "unable to read file %s", filename)
118+
}
119+
120+
// ReadFileBytes wraps calls to ioutil.ReadFile, ensuring that errors are wrapped in a stack trace
121+
func ReadFileBytes(filename string) ([]byte, error) {
122+
bytes, err := ioutil.ReadFile(filename)
123+
return bytes, errors.Wrapf(err, "unable to read file %s", filename)
124+
}

0 commit comments

Comments
 (0)