forked from dhconnelly/rtreego
-
Notifications
You must be signed in to change notification settings - Fork 0
/
filter.go
32 lines (28 loc) · 1.15 KB
/
filter.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
package rtreego
// Filter is an interface for filtering leaves during search. The parameters
// should be treated as read-only. If refuse is true, the current entry will
// not be added to the result set. If abort is true, the search is aborted and
// the current result set will be returned.
type Filter func(results []Spatial, object Spatial) (refuse, abort bool)
// ApplyFilters applies the given filters and returns whether the entry is
// refused and/or the search should be aborted. If a filter refuses an entry,
// the following filters are not applied for the entry. If a filter aborts, the
// search terminates without further applying any filter.
func applyFilters(results []Spatial, object Spatial, filters []Filter) (bool, bool) {
for _, filter := range filters {
refuse, abort := filter(results, object)
if refuse || abort {
return refuse, abort
}
}
return false, false
}
// LimitFilter checks if the results have reached the limit size and aborts if so.
func LimitFilter(limit int) Filter {
return func(results []Spatial, object Spatial) (refuse, abort bool) {
if len(results) >= limit {
return true, true
}
return false, false
}
}