Skip to content

Commit 1fa0e2a

Browse files
committed
use set instead of map
1 parent fd63bd0 commit 1fa0e2a

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

pkg/cli/analyze.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ func ExplainPolicies(explainedPolicies *matcher.Policy) {
161161
}
162162

163163
func Lint(kubePolicies []*networkingv1.NetworkPolicy) {
164-
warnings := linter.Lint(kubePolicies, map[linter.Check]bool{})
164+
warnings := linter.Lint(kubePolicies, collections.NewSet[linter.Check](nil))
165165
fmt.Println(linter.WarningsTable(warnings))
166166
}
167167

pkg/linter/checks.go

+8-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package linter
22

33
import (
44
"fmt"
5+
collections "github.com/mattfenwick/collections/pkg"
56
"github.com/mattfenwick/cyclonus/pkg/matcher"
67
"github.com/mattfenwick/cyclonus/pkg/utils"
78
"github.com/olekukonko/tablewriter"
@@ -43,6 +44,11 @@ const (
4344
// TODO add check that rule is unnecessary b/c another rule exactly supercedes it
4445
)
4546

47+
func (a Check) Equal(b Check) bool {
48+
// TODO why is this necessary? why can't we use existing String implementation?
49+
return a == b
50+
}
51+
4652
type Warning struct {
4753
Check Check
4854
Target *matcher.Target
@@ -76,15 +82,15 @@ func WarningsTable(warnings []*Warning) string {
7682
return str.String()
7783
}
7884

79-
func Lint(kubePolicies []*networkingv1.NetworkPolicy, skip map[Check]bool) []*Warning {
85+
func Lint(kubePolicies []*networkingv1.NetworkPolicy, skip *collections.Set[Check]) []*Warning {
8086
policies := matcher.BuildNetworkPolicies(false, kubePolicies)
8187
warnings := append(LintSourcePolicies(kubePolicies), LintResolvedPolicies(policies)...)
8288

8389
// TODO do some stuff with comparing simplified to non-simplified policies
8490

8591
var filtered []*Warning
8692
for _, warning := range warnings {
87-
if _, ok := skip[warning.Check]; !ok {
93+
if !skip.Contains(warning.Check) {
8894
filtered = append(filtered, warning)
8995
}
9096
}

0 commit comments

Comments
 (0)