-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathset.go
296 lines (240 loc) · 6.11 KB
/
set.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
package cpe
import (
"fmt"
"sort"
"strings"
)
// CPESet 表示CPE集合
type CPESet struct {
// CPE列表
Items []*CPE
// 集合名称
Name string
// 集合描述
Description string
}
// NewCPESet 创建新的CPE集合
func NewCPESet(name string, description string) *CPESet {
return &CPESet{
Items: make([]*CPE, 0),
Name: name,
Description: description,
}
}
// Add 向集合中添加CPE
func (s *CPESet) Add(cpe *CPE) {
// 检查是否已存在相同的CPE
for _, item := range s.Items {
if item.Cpe23 == cpe.Cpe23 {
return // 已存在,不添加
}
}
s.Items = append(s.Items, cpe)
}
// Remove 从集合中移除CPE
func (s *CPESet) Remove(cpe *CPE) bool {
for i, item := range s.Items {
if item.Cpe23 == cpe.Cpe23 {
// 移除找到的CPE
s.Items = append(s.Items[:i], s.Items[i+1:]...)
return true
}
}
return false // 未找到CPE
}
// Contains 检查集合是否包含指定CPE
func (s *CPESet) Contains(cpe *CPE) bool {
for _, item := range s.Items {
if item.Cpe23 == cpe.Cpe23 {
return true
}
}
return false
}
// Size 返回集合大小
func (s *CPESet) Size() int {
return len(s.Items)
}
// Clear 清空集合
func (s *CPESet) Clear() {
s.Items = make([]*CPE, 0)
}
// Union 计算两个集合的并集
func (s *CPESet) Union(other *CPESet) *CPESet {
result := NewCPESet(
fmt.Sprintf("Union of %s and %s", s.Name, other.Name),
fmt.Sprintf("Union of sets %s and %s", s.Name, other.Name),
)
// 添加第一个集合的所有元素
for _, cpe := range s.Items {
result.Add(cpe)
}
// 添加第二个集合的所有元素
for _, cpe := range other.Items {
result.Add(cpe)
}
return result
}
// Intersection 计算两个集合的交集
func (s *CPESet) Intersection(other *CPESet) *CPESet {
result := NewCPESet(
fmt.Sprintf("Intersection of %s and %s", s.Name, other.Name),
fmt.Sprintf("Intersection of sets %s and %s", s.Name, other.Name),
)
// 添加同时在两个集合中的元素
for _, cpe := range s.Items {
if other.Contains(cpe) {
result.Add(cpe)
}
}
return result
}
// Difference 计算两个集合的差集 (s - other)
func (s *CPESet) Difference(other *CPESet) *CPESet {
result := NewCPESet(
fmt.Sprintf("Difference of %s and %s", s.Name, other.Name),
fmt.Sprintf("Elements in %s but not in %s", s.Name, other.Name),
)
// 添加在s中但不在other中的元素
for _, cpe := range s.Items {
if !other.Contains(cpe) {
result.Add(cpe)
}
}
return result
}
// Filter 根据条件过滤集合
func (s *CPESet) Filter(criteria *CPE, options *MatchOptions) *CPESet {
if options == nil {
options = DefaultMatchOptions()
}
result := NewCPESet(
fmt.Sprintf("Filtered %s", s.Name),
fmt.Sprintf("Filtered subset of %s", s.Name),
)
// 筛选匹配条件的CPE
for _, cpe := range s.Items {
if matchCPE(cpe, criteria, options) {
result.Add(cpe)
}
}
return result
}
// AdvancedFilter 使用高级匹配选项过滤集合
func (s *CPESet) AdvancedFilter(criteria *CPE, options *AdvancedMatchOptions) *CPESet {
if options == nil {
options = NewAdvancedMatchOptions()
}
result := NewCPESet(
fmt.Sprintf("Advanced filtered %s", s.Name),
fmt.Sprintf("Advanced filtered subset of %s", s.Name),
)
// 筛选匹配条件的CPE
for _, cpe := range s.Items {
if AdvancedMatchCPE(criteria, cpe, options) {
result.Add(cpe)
}
}
return result
}
// Sort 对集合进行排序
func (s *CPESet) Sort(sortBy string, ascending bool) {
sorter := &cpeSorter{
cpes: s.Items,
sortBy: sortBy,
ascending: ascending,
}
sort.Sort(sorter)
}
// Equals 检查两个集合是否相等
func (s *CPESet) Equals(other *CPESet) bool {
if s.Size() != other.Size() {
return false
}
for _, cpe := range s.Items {
if !other.Contains(cpe) {
return false
}
}
return true
}
// IsSubsetOf 检查当前集合是否是另一个集合的子集
func (s *CPESet) IsSubsetOf(other *CPESet) bool {
for _, cpe := range s.Items {
if !other.Contains(cpe) {
return false
}
}
return true
}
// IsSupersetOf 检查当前集合是否是另一个集合的超集
func (s *CPESet) IsSupersetOf(other *CPESet) bool {
return other.IsSubsetOf(s)
}
// ToString 返回集合的字符串表示
func (s *CPESet) ToString() string {
var builder strings.Builder
builder.WriteString(fmt.Sprintf("CPE Set: %s\n", s.Name))
builder.WriteString(fmt.Sprintf("Description: %s\n", s.Description))
builder.WriteString(fmt.Sprintf("Size: %d\n", s.Size()))
builder.WriteString("Items:\n")
for i, cpe := range s.Items {
builder.WriteString(fmt.Sprintf("%d. %s\n", i+1, cpe.Cpe23))
}
return builder.String()
}
// FromArray 从CPE数组创建集合
func FromArray(cpes []*CPE, name string, description string) *CPESet {
set := NewCPESet(name, description)
for _, cpe := range cpes {
set.Add(cpe)
}
return set
}
// FindRelated 查找与给定CPE相关的所有CPE
func (s *CPESet) FindRelated(cpe *CPE, options *AdvancedMatchOptions) *CPESet {
if options == nil {
options = NewAdvancedMatchOptions()
}
// 默认使用宽松匹配模式
options.MatchMode = "distance"
options.ScoreThreshold = 0.6 // 降低匹配阈值,更宽松
return s.AdvancedFilter(cpe, options)
}
// cpeSorter 辅助类型,用于排序CPE
type cpeSorter struct {
cpes []*CPE
sortBy string
ascending bool
}
// Len 实现sort.Interface
func (s *cpeSorter) Len() int {
return len(s.cpes)
}
// Swap 实现sort.Interface
func (s *cpeSorter) Swap(i, j int) {
s.cpes[i], s.cpes[j] = s.cpes[j], s.cpes[i]
}
// Less 实现sort.Interface
func (s *cpeSorter) Less(i, j int) bool {
var result bool
switch s.sortBy {
case "part":
result = s.cpes[i].Part.ShortName < s.cpes[j].Part.ShortName
case "vendor":
result = string(s.cpes[i].Vendor) < string(s.cpes[j].Vendor)
case "product":
result = string(s.cpes[i].ProductName) < string(s.cpes[j].ProductName)
case "version":
// 使用版本比较函数
compareResult := compareVersionsSimple(string(s.cpes[i].Version), string(s.cpes[j].Version))
result = compareResult < 0
default:
// 默认按照Cpe23排序
result = s.cpes[i].Cpe23 < s.cpes[j].Cpe23
}
if !s.ascending {
result = !result
}
return result
}