@@ -77,24 +77,15 @@ type endpointData struct {
77
77
ports []model.EndpointPort
78
78
parents []* npParentData
79
79
80
- cachedMatchingIPSetIDs set.Set [string ] /* or, as an optimization, nil if there are none */
80
+ cachedMatchingIPSetIDs set.Adaptive [string ]
81
81
}
82
82
83
83
func (d * endpointData ) AddMatchingIPSetID (id string ) {
84
- if d .cachedMatchingIPSetIDs == nil {
85
- d .cachedMatchingIPSetIDs = set .New [string ]()
86
- }
87
84
d .cachedMatchingIPSetIDs .Add (id )
88
85
}
89
86
90
87
func (d * endpointData ) RemoveMatchingIPSetID (id string ) {
91
- if d .cachedMatchingIPSetIDs == nil {
92
- return
93
- }
94
88
d .cachedMatchingIPSetIDs .Discard (id )
95
- if d .cachedMatchingIPSetIDs .Len () == 0 {
96
- d .cachedMatchingIPSetIDs = nil
97
- }
98
89
}
99
90
100
91
func (d * endpointData ) HasParent (parent * npParentData ) bool {
@@ -717,7 +708,7 @@ func (idx *SelectorAndNamedPortIndex) scanEndpointAgainstIPSets(
717
708
) {
718
709
// Remove any previous match from the endpoint's cache. We'll re-add it
719
710
// below if the match is still correct.
720
- epData .cachedMatchingIPSetIDs = nil
711
+ epData .cachedMatchingIPSetIDs . Clear ()
721
712
722
713
// Iterate over potential new matches and incref any members that
723
714
// that produces. (This may temporarily over count.)
@@ -887,7 +878,7 @@ func (idx *SelectorAndNamedPortIndex) CalculateEndpointContribution(d *endpointD
887
878
// RecalcCachedContributions uses the cached set of matching IP set IDs in the endpoint
888
879
// struct to quickly recalculate the endpoint's contribution to all IP sets.
889
880
func (idx * SelectorAndNamedPortIndex ) RecalcCachedContributions (epData * endpointData ) map [string ][]IPSetMember {
890
- if epData .cachedMatchingIPSetIDs == nil {
881
+ if epData .cachedMatchingIPSetIDs . Len () == 0 {
891
882
return nil
892
883
}
893
884
contrib := map [string ][]IPSetMember {}
0 commit comments