Skip to content

Commit f7a7171

Browse files
committed
clean up unnecessary code
1 parent 235f8e3 commit f7a7171

File tree

8 files changed

+34
-137
lines changed

8 files changed

+34
-137
lines changed

pkg/cli/analyze.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import (
44
"fmt"
55
"strings"
66

7+
"github.com/mattfenwick/collections/pkg/json"
78
"github.com/mattfenwick/collections/pkg/set"
89
"github.com/mattfenwick/cyclonus/pkg/connectivity/probe"
910
"github.com/mattfenwick/cyclonus/pkg/generator"
@@ -123,7 +124,7 @@ func RunAnalyzeCommand(args *AnalyzeArgs) {
123124
kubePolicies = append(kubePolicies, netpol.AllExamples...)
124125
}
125126

126-
logrus.Debugf("parsed policies:\n%s", utils.JsonString(kubePolicies))
127+
logrus.Debugf("parsed policies:\n%s", json.MustMarshalToString(kubePolicies))
127128
policies := matcher.BuildNetworkPolicies(args.SimplifyPolicies, kubePolicies)
128129

129130
for _, mode := range args.Modes {
@@ -182,7 +183,7 @@ type QueryTargetPod struct {
182183

183184
func QueryTargets(explainedPolicies *matcher.Policy, podPath string, pods []*QueryTargetPod) {
184185
if podPath != "" {
185-
podsFromFile, err := utils.ParseJsonFromFile[[]*QueryTargetPod](podPath)
186+
podsFromFile, err := json.ParseFile[[]*QueryTargetPod](podPath)
186187
utils.DoOrDie(err)
187188
pods = append(pods, *podsFromFile...)
188189
}
@@ -220,7 +221,7 @@ func QueryTraffic(explainedPolicies *matcher.Policy, trafficPath string) {
220221
if trafficPath == "" {
221222
logrus.Fatalf("%+v", errors.Errorf("path to traffic file required for QueryTraffic command"))
222223
}
223-
allTraffics, err := utils.ParseJsonFromFile[[]*matcher.Traffic](trafficPath)
224+
allTraffics, err := json.ParseFile[[]*matcher.Traffic](trafficPath)
224225
utils.DoOrDie(err)
225226

226227
for _, traffic := range *allTraffics {
@@ -238,7 +239,7 @@ type SyntheticProbeConnectivityConfig struct {
238239

239240
func ProbeSyntheticConnectivity(explainedPolicies *matcher.Policy, modelPath string, kubePods []v1.Pod, kubeNamespaces []v1.Namespace) {
240241
if modelPath != "" {
241-
config, err := utils.ParseJsonFromFile[SyntheticProbeConnectivityConfig](modelPath)
242+
config, err := json.ParseFile[SyntheticProbeConnectivityConfig](modelPath)
242243
utils.DoOrDie(err)
243244

244245
jobBuilder := &probe.JobBuilder{TimeoutSeconds: 10}

pkg/cli/generate.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import (
44
"fmt"
55
"strings"
66

7+
"github.com/mattfenwick/collections/pkg/json"
78
"github.com/mattfenwick/cyclonus/pkg/connectivity"
89
"github.com/mattfenwick/cyclonus/pkg/connectivity/probe"
910
"github.com/mattfenwick/cyclonus/pkg/generator"
@@ -89,7 +90,7 @@ func SetupGenerateCommand() *cobra.Command {
8990
}
9091

9192
func RunGenerateCommand(args *GenerateArgs) {
92-
fmt.Printf("args: \n%s\n", utils.JsonString(args))
93+
fmt.Printf("args: \n%s\n", json.MustMarshalToString(args))
9394

9495
RunVersionCommand()
9596

@@ -105,7 +106,7 @@ func RunGenerateCommand(args *GenerateArgs) {
105106
utils.DoOrDie(err)
106107
info, err := kubeClient.ClientSet.ServerVersion()
107108
utils.DoOrDie(err)
108-
fmt.Printf("Kubernetes server version: \n%s\n", utils.JsonString(info))
109+
fmt.Printf("Kubernetes server version: \n%s\n", json.MustMarshalToString(info))
109110
kubernetes = kubeClient
110111
}
111112

pkg/cli/version.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ package cli
22

33
import (
44
"fmt"
5-
"github.com/mattfenwick/cyclonus/pkg/utils"
5+
6+
"github.com/mattfenwick/collections/pkg/json"
67
"github.com/spf13/cobra"
78
)
89

@@ -26,7 +27,7 @@ func SetupVersionCommand() *cobra.Command {
2627
}
2728

2829
func RunVersionCommand() {
29-
fmt.Printf("Cyclonus version: \n%s\n", utils.JsonString(map[string]string{
30+
fmt.Printf("Cyclonus version: \n%s\n", json.MustMarshalToString(map[string]string{
3031
"Version": version,
3132
"GitSHA": gitSHA,
3233
"BuildTime": buildTime,

pkg/connectivity/probe/jobrunner.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
package probe
22

33
import (
4+
"strings"
5+
6+
"github.com/mattfenwick/collections/pkg/json"
47
"github.com/mattfenwick/cyclonus/pkg/generator"
58
"github.com/mattfenwick/cyclonus/pkg/kube"
69
"github.com/mattfenwick/cyclonus/pkg/matcher"
7-
"github.com/mattfenwick/cyclonus/pkg/utils"
810
"github.com/mattfenwick/cyclonus/pkg/worker"
911
"github.com/sirupsen/logrus"
10-
"strings"
1112
)
1213

1314
type Runner struct {
@@ -78,7 +79,7 @@ func (s *SimulatedJobRunner) RunJob(job *Job) *JobResult {
7879
allowed := s.Policies.IsTrafficAllowed(job.Traffic())
7980
// TODO could also keep the whole `allowed` struct somewhere
8081

81-
logrus.Tracef("to %s\n%s\n", utils.JsonString(job), allowed.Table())
82+
logrus.Tracef("to %s\n%s\n", json.MustMarshalToString(job), allowed.Table())
8283

8384
var combined, ingress, egress = ConnectivityBlocked, ConnectivityBlocked, ConnectivityBlocked
8485
if allowed.Ingress.IsAllowed() {

pkg/kube/read.go

+9-8
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ import (
55
"path/filepath"
66

77
"github.com/mattfenwick/collections/pkg/builtin"
8+
"github.com/mattfenwick/collections/pkg/file"
89
"github.com/mattfenwick/collections/pkg/slice"
910
"github.com/mattfenwick/cyclonus/pkg/utils"
1011
"github.com/pkg/errors"
11-
log "github.com/sirupsen/logrus"
12+
"github.com/sirupsen/logrus"
1213
networkingv1 "k8s.io/api/networking/v1"
1314
)
1415

@@ -19,11 +20,11 @@ func ReadNetworkPoliciesFromPath(policyPath string) ([]*networkingv1.NetworkPoli
1920
return errors.Wrapf(err, "unable to walk path %s", path)
2021
}
2122
if info.IsDir() {
22-
log.Tracef("not opening dir %s", path)
23+
logrus.Tracef("not opening dir %s", path)
2324
return nil
2425
}
25-
log.Debugf("walking path %s", path)
26-
bytes, err := utils.ReadFileBytes(path)
26+
logrus.Debugf("walking path %s", path)
27+
bytes, err := file.Read(path)
2728
if err != nil {
2829
return err
2930
}
@@ -34,11 +35,11 @@ func ReadNetworkPoliciesFromPath(policyPath string) ([]*networkingv1.NetworkPoli
3435
// TODO try parsing multiple policies separated by '---' lines
3536
// policies, err := yaml.ParseMany[networkingv1.NetworkPolicy](bytes)
3637
// if err == nil {
37-
// log.Debugf("parsed %d policies from %s", len(policies), path)
38+
// logrus.Debugf("parsed %d policies from %s", len(policies), path)
3839
// allPolicies = append(allPolicies, refNetpolList(policies)...)
3940
// return nil
4041
// }
41-
// log.Errorf("unable to parse multiple policies separated by '---' lines: %+v", err)
42+
// logrus.Errorf("unable to parse multiple policies separated by '---' lines: %+v", err)
4243

4344
// try parsing a NetworkPolicyList
4445
policyList, err := utils.ParseYamlStrict[networkingv1.NetworkPolicyList](bytes)
@@ -47,14 +48,14 @@ func ReadNetworkPoliciesFromPath(policyPath string) ([]*networkingv1.NetworkPoli
4748
return nil
4849
}
4950

50-
log.Debugf("unable to parse list of policies: %+v", err)
51+
logrus.Debugf("unable to parse list of policies: %+v", err)
5152

5253
policy, err := utils.ParseYamlStrict[networkingv1.NetworkPolicy](bytes)
5354
if err != nil {
5455
return errors.WithMessagef(err, "unable to parse single policy from yaml at %s", path)
5556
}
5657

57-
log.Debugf("parsed single policy from %s: %+v", path, policy)
58+
logrus.Debugf("parsed single policy from %s: %+v", path, policy)
5859
allPolicies = append(allPolicies, policy)
5960
return nil
6061
})

pkg/matcher/explain.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@ package matcher
22

33
import (
44
"fmt"
5+
"strings"
6+
7+
"github.com/mattfenwick/collections/pkg/json"
58
"github.com/mattfenwick/collections/pkg/slice"
69
"github.com/mattfenwick/cyclonus/pkg/kube"
7-
"github.com/mattfenwick/cyclonus/pkg/utils"
810
"github.com/olekukonko/tablewriter"
911
"github.com/pkg/errors"
1012
networkingv1 "k8s.io/api/networking/v1"
11-
"strings"
1213
)
1314

1415
type SliceBuilder struct {
@@ -59,7 +60,7 @@ func (s *SliceBuilder) TargetsTableLines(targets []*Target, isIngress bool) {
5960
if len(target.Peers) == 0 {
6061
s.Append("no pods, no ips", "no ports, no protocols")
6162
} else {
62-
for _, peer := range slice.SortOn(func(p PeerMatcher) string { return utils.DumpJSON(p) }, target.Peers) {
63+
for _, peer := range slice.SortOn(func(p PeerMatcher) string { return json.MustMarshalToString(p) }, target.Peers) {
6364
switch a := peer.(type) {
6465
case *AllPeersMatcher:
6566
s.Append("all pods, all ips", "all ports, all protocols")

pkg/utils/command.go

-39
This file was deleted.

pkg/utils/utils.go

+6-76
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,16 @@ package utils
22

33
import (
44
"encoding/json"
5-
"fmt"
5+
6+
"github.com/mattfenwick/collections/pkg/file"
67
"github.com/pkg/errors"
7-
log "github.com/sirupsen/logrus"
8-
"io/fs"
9-
"io/ioutil"
10-
"os"
8+
"github.com/sirupsen/logrus"
119
"sigs.k8s.io/yaml"
1210
)
1311

1412
func DoOrDie(err error) {
1513
if err != nil {
16-
log.Fatalf("%+v", err)
14+
logrus.Fatalf("%+v", err)
1715
}
1816
}
1917

@@ -23,28 +21,6 @@ func JsonStringNoIndent(obj interface{}) string {
2321
return string(bytes)
2422
}
2523

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-
4824
func ParseYaml[T any](bs []byte) (*T, error) {
4925
var t T
5026
if err := yaml.Unmarshal(bs, &t); err != nil {
@@ -62,15 +38,15 @@ func ParseYamlStrict[T any](bs []byte) (*T, error) {
6238
}
6339

6440
func ParseYamlFromFile[T any](path string) (*T, error) {
65-
bytes, err := ReadFileBytes(path)
41+
bytes, err := file.Read(path)
6642
if err != nil {
6743
return nil, err
6844
}
6945
return ParseYaml[T](bytes)
7046
}
7147

7248
func ParseYamlFromFileStrict[T any](path string) (*T, error) {
73-
bytes, err := ReadFileBytes(path)
49+
bytes, err := file.Read(path)
7450
if err != nil {
7551
return nil, err
7652
}
@@ -82,49 +58,3 @@ func YamlString(obj interface{}) string {
8258
DoOrDie(errors.Wrapf(err, "unable to marshal yaml"))
8359
return string(bytes)
8460
}
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

Comments
 (0)