@@ -3,7 +3,11 @@ package utils
3
3
import (
4
4
"encoding/json"
5
5
"fmt"
6
+ "github.com/pkg/errors"
6
7
log "github.com/sirupsen/logrus"
8
+ "io/fs"
9
+ "io/ioutil"
10
+ "os"
7
11
"sigs.k8s.io/yaml"
8
12
)
9
13
@@ -15,16 +19,106 @@ func DoOrDie(err error) {
15
19
16
20
func JsonString (obj interface {}) string {
17
21
bytes , err := json .MarshalIndent (obj , "" , " " )
18
- DoOrDie (err )
22
+ DoOrDie (errors . Wrapf ( err , "unable to marshal json" ) )
19
23
return string (bytes )
20
24
}
21
25
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
+
22
74
func YamlString (obj interface {}) string {
23
75
bytes , err := yaml .Marshal (obj )
24
- DoOrDie (err )
76
+ DoOrDie (errors . Wrapf ( err , "unable to marshal yaml" ) )
25
77
return string (bytes )
26
78
}
27
79
28
80
func PrintJson (obj interface {}) {
29
81
fmt .Printf ("%s\n " , JsonString (obj ))
30
82
}
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