@@ -2,18 +2,16 @@ package utils
2
2
3
3
import (
4
4
"encoding/json"
5
- "fmt"
5
+
6
+ "github.com/mattfenwick/collections/pkg/file"
6
7
"github.com/pkg/errors"
7
- log "github.com/sirupsen/logrus"
8
- "io/fs"
9
- "io/ioutil"
10
- "os"
8
+ "github.com/sirupsen/logrus"
11
9
"sigs.k8s.io/yaml"
12
10
)
13
11
14
12
func DoOrDie (err error ) {
15
13
if err != nil {
16
- log .Fatalf ("%+v" , err )
14
+ logrus .Fatalf ("%+v" , err )
17
15
}
18
16
}
19
17
@@ -23,28 +21,6 @@ func JsonStringNoIndent(obj interface{}) string {
23
21
return string (bytes )
24
22
}
25
23
26
- func JsonString (obj interface {}) string {
27
- bytes , err := json .MarshalIndent (obj , "" , " " )
28
- DoOrDie (errors .Wrapf (err , "unable to marshal json" ))
29
- return string (bytes )
30
- }
31
-
32
- func ParseJson [T any ](bs []byte ) (* T , error ) {
33
- var t T
34
- if err := json .Unmarshal (bs , & t ); err != nil {
35
- return nil , errors .Wrapf (err , "unable to unmarshal json" )
36
- }
37
- return & t , nil
38
- }
39
-
40
- func ParseJsonFromFile [T any ](path string ) (* T , error ) {
41
- bytes , err := ReadFileBytes (path )
42
- if err != nil {
43
- return nil , err
44
- }
45
- return ParseJson [T ](bytes )
46
- }
47
-
48
24
func ParseYaml [T any ](bs []byte ) (* T , error ) {
49
25
var t T
50
26
if err := yaml .Unmarshal (bs , & t ); err != nil {
@@ -62,15 +38,15 @@ func ParseYamlStrict[T any](bs []byte) (*T, error) {
62
38
}
63
39
64
40
func ParseYamlFromFile [T any ](path string ) (* T , error ) {
65
- bytes , err := ReadFileBytes (path )
41
+ bytes , err := file . Read (path )
66
42
if err != nil {
67
43
return nil , err
68
44
}
69
45
return ParseYaml [T ](bytes )
70
46
}
71
47
72
48
func ParseYamlFromFileStrict [T any ](path string ) (* T , error ) {
73
- bytes , err := ReadFileBytes (path )
49
+ bytes , err := file . Read (path )
74
50
if err != nil {
75
51
return nil , err
76
52
}
@@ -82,49 +58,3 @@ func YamlString(obj interface{}) string {
82
58
DoOrDie (errors .Wrapf (err , "unable to marshal yaml" ))
83
59
return string (bytes )
84
60
}
85
-
86
- func PrintJson (obj interface {}) {
87
- fmt .Printf ("%s\n " , JsonString (obj ))
88
- }
89
-
90
- func DumpJSON (obj interface {}) string {
91
- bytes , err := json .MarshalIndent (obj , "" , " " )
92
- DoOrDie (err )
93
- return string (bytes )
94
- }
95
-
96
- func WriteJsonToFile (obj interface {}, path string ) error {
97
- content := DumpJSON (obj )
98
- return WriteFile (path , content , 0644 )
99
- }
100
-
101
- func PrintJSON (obj interface {}) {
102
- fmt .Printf ("%s\n " , DumpJSON (obj ))
103
- }
104
-
105
- func DoesFileExist (path string ) bool {
106
- if _ , err := os .Stat (path ); err == nil {
107
- return true
108
- } else if errors .Is (err , os .ErrNotExist ) {
109
- return false
110
- } else {
111
- panic (errors .Wrapf (err , "unable to determine if file %s exists" , path ))
112
- }
113
- }
114
-
115
- // WriteFile wraps calls to ioutil.WriteFile, ensuring that errors are wrapped in a stack trace
116
- func WriteFile (filename string , contents string , perm fs.FileMode ) error {
117
- return errors .Wrapf (ioutil .WriteFile (filename , []byte (contents ), perm ), "unable to write file %s" , filename )
118
- }
119
-
120
- // ReadFile wraps calls to ioutil.ReadFile, ensuring that errors are wrapped in a stack trace
121
- func ReadFile (filename string ) (string , error ) {
122
- bytes , err := ioutil .ReadFile (filename )
123
- return string (bytes ), errors .Wrapf (err , "unable to read file %s" , filename )
124
- }
125
-
126
- // ReadFileBytes wraps calls to ioutil.ReadFile, ensuring that errors are wrapped in a stack trace
127
- func ReadFileBytes (filename string ) ([]byte , error ) {
128
- bytes , err := ioutil .ReadFile (filename )
129
- return bytes , errors .Wrapf (err , "unable to read file %s" , filename )
130
- }
0 commit comments