forked from Argus-Labs/world-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composedsearch.go
307 lines (267 loc) · 6.29 KB
/
composedsearch.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
297
298
299
300
301
302
303
304
305
306
307
package cardinal
import (
"github.com/rotisserie/eris"
"pkg.world.dev/world-engine/cardinal/search/filter"
"pkg.world.dev/world-engine/cardinal/types"
)
type OrSearch struct {
searches []Searchable
}
type AndSearch struct {
searches []Searchable
}
type NotSearch struct {
search Searchable
}
func (orSearch *OrSearch) evaluateSearch(wCtx WorldContext) []types.ArchetypeID {
acc := make([]types.ArchetypeID, 0)
for _, search := range orSearch.searches {
acc = append(acc, search.evaluateSearch(wCtx)...)
}
return acc
}
func (orSearch *OrSearch) Each(wCtx WorldContext, callback CallbackFn) error {
// deduplicate
idCount := make(map[types.EntityID]int)
for _, search := range orSearch.searches {
subids, err := search.Collect(wCtx)
if err != nil {
return err
}
for _, id := range subids {
idCount[id]++
}
}
idSlice := make([]types.EntityID, 0, len(idCount))
for id := range idCount {
idSlice = append(idSlice, id)
}
// sort
fastSortIDs(idSlice)
// execute
for _, id := range idSlice {
if !callback(id) {
return nil
}
}
return nil
}
func (orSearch *OrSearch) Collect(wCtx WorldContext) ([]types.EntityID, error) {
// deduplicate
idExists := make(map[types.EntityID]bool)
res := make([]types.EntityID, 0)
for _, search := range orSearch.searches {
ids, err := search.Collect(wCtx)
if err != nil {
return nil, err
}
for _, id := range ids {
idExists[id] = true
}
}
for id := range idExists {
res = append(res, id)
}
// sort
fastSortIDs(res)
return res, nil
}
func (orSearch *OrSearch) First(wCtx WorldContext) (types.EntityID, error) {
ids, err := orSearch.Collect(wCtx)
if err != nil {
return 0, err
}
if len(ids) == 0 {
return 0, eris.New("No search results")
}
return ids[0], nil
}
func (orSearch *OrSearch) MustFirst(wCtx WorldContext) types.EntityID {
id, err := orSearch.First(wCtx)
if err != nil {
panic("no search results")
}
return id
}
func (orSearch *OrSearch) Count(wCtx WorldContext) (int, error) {
ids, err := orSearch.Collect(wCtx)
if err != nil {
return 0, err
}
return len(ids), nil
}
func (andSearch *AndSearch) Each(wCtx WorldContext, callback CallbackFn) error {
// count
idCount := make(map[types.EntityID]int)
for _, search := range andSearch.searches {
subIDs, err := search.Collect(wCtx)
if err != nil {
return err
}
for _, subid := range subIDs {
idCount[subid]++
}
}
// filter
idSlice := make([]types.EntityID, 0, len(idCount))
for id, count := range idCount {
if count == len(andSearch.searches) {
idSlice = append(idSlice, id)
}
}
// sort
fastSortIDs(idSlice)
// execute
for _, id := range idSlice {
if !callback(id) {
return nil
}
}
return nil
}
func (andSearch *AndSearch) Collect(wCtx WorldContext) ([]types.EntityID, error) {
// filter
results := make([]types.EntityID, 0)
err := andSearch.Each(wCtx, func(id types.EntityID) bool {
results = append(results, id)
return true
})
if err != nil {
return nil, err
}
// sort
fastSortIDs(results)
return results, nil
}
func (andSearch *AndSearch) First(wCtx WorldContext) (types.EntityID, error) {
ids, err := andSearch.Collect(wCtx)
if err != nil {
return 0, err
}
if len(ids) == 0 {
return 0, eris.New("No search results")
}
return ids[0], nil
}
func (andSearch *AndSearch) MustFirst(wCtx WorldContext) types.EntityID {
id, err := andSearch.First(wCtx)
if err != nil {
panic("No search results")
}
return id
}
func (andSearch *AndSearch) Count(wCtx WorldContext) (int, error) {
ids, err := andSearch.Collect(wCtx)
if err != nil {
return 0, err
}
return len(ids), nil
}
func (andSearch *AndSearch) evaluateSearch(wCtx WorldContext) []types.ArchetypeID {
searchCounts := make(map[types.ArchetypeID]int)
for _, search := range andSearch.searches {
ids := search.evaluateSearch(wCtx)
for _, id := range ids {
searchCounts[id]++
}
}
acc := make([]types.ArchetypeID, 0)
for key, searchCount := range searchCounts {
if searchCount == len(andSearch.searches) {
acc = append(acc, key)
}
}
return acc
}
func (notSearch *NotSearch) Each(wCtx WorldContext, callback CallbackFn) error {
// sort
ids, err := notSearch.Collect(wCtx)
if err != nil {
return err
}
// execute
for _, id := range ids {
if !callback(id) {
return nil
}
}
return nil
}
func (notSearch *NotSearch) Collect(wCtx WorldContext) ([]types.EntityID, error) {
// Get all ids
allsearch := NewSearch().Entity(filter.All())
allids, err := allsearch.Collect(wCtx)
if err != nil {
return nil, err
}
// Get ids to exclude
excludedIDsMap := make(map[types.EntityID]bool)
excludedids, err := notSearch.search.Collect(wCtx)
if err != nil {
return nil, err
}
for _, id := range excludedids {
excludedIDsMap[id] = true
}
// subtract excluded ids from all ids
result := make([]types.EntityID, 0)
for _, id := range allids {
_, ok := excludedIDsMap[id]
if !ok {
result = append(result, id)
}
}
// sort ids
fastSortIDs(result)
return result, nil
}
func (notSearch *NotSearch) First(wCtx WorldContext) (types.EntityID, error) {
ids, err := notSearch.Collect(wCtx)
if err != nil {
return 0, err
}
if len(ids) == 0 {
return 0, eris.New("No results found")
}
return ids[0], nil
}
func (notSearch *NotSearch) MustFirst(wCtx WorldContext) types.EntityID {
id, err := notSearch.First(wCtx)
if err != nil {
panic("No search results")
}
return id
}
func (notSearch *NotSearch) Count(wCtx WorldContext) (int, error) {
ids, err := notSearch.Collect(wCtx)
if err != nil {
return 0, err
}
return len(ids), nil
}
func (notSearch *NotSearch) evaluateSearch(wCtx WorldContext) []types.ArchetypeID {
searchBuilder := NewSearch()
allResults := searchBuilder.Entity(filter.All()).evaluateSearch(wCtx)
allResultsMap := make(map[types.ArchetypeID]bool)
for _, result := range allResults {
allResultsMap[result] = true
}
subResults := notSearch.search.evaluateSearch(wCtx)
finalResult := make([]types.ArchetypeID, 0)
for _, subResult := range subResults {
_, ok := allResultsMap[subResult]
if ok {
finalResult = append(finalResult, subResult)
}
}
return finalResult
}
func Or(searches ...Searchable) Searchable {
return &OrSearch{searches: searches}
}
func And(searches ...Searchable) Searchable {
return &AndSearch{searches: searches}
}
func Not(search Searchable) Searchable {
return &NotSearch{search: search}
}