Files
node/pubsub/filter_param.go

88 lines
1.4 KiB
Go

// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package pubsub
import (
"sync"
"github.com/luxfi/math/set"
"github.com/luxfi/node/pubsub/bloom"
)
type FilterParam struct {
lock sync.RWMutex
set set.Set[string]
filter bloom.Filter
}
func NewFilterParam() *FilterParam {
return &FilterParam{
set: make(set.Set[string]),
}
}
func (f *FilterParam) NewSet() {
f.lock.Lock()
defer f.lock.Unlock()
f.set = make(set.Set[string])
f.filter = nil
}
func (f *FilterParam) Filter() bloom.Filter {
f.lock.RLock()
defer f.lock.RUnlock()
return f.filter
}
func (f *FilterParam) SetFilter(filter bloom.Filter) bloom.Filter {
f.lock.Lock()
defer f.lock.Unlock()
f.filter = filter
f.set = nil
return f.filter
}
func (f *FilterParam) Check(addr []byte) bool {
f.lock.RLock()
defer f.lock.RUnlock()
if f.filter != nil && f.filter.Check(addr) {
return true
}
return f.set.Contains(string(addr))
}
func (f *FilterParam) Add(bl ...[]byte) error {
filter := f.Filter()
if filter != nil {
filter.Add(bl...)
return nil
}
f.lock.Lock()
defer f.lock.Unlock()
if f.set == nil {
return ErrFilterNotInitialized
}
if len(f.set)+len(bl) > MaxAddresses {
return ErrAddressLimit
}
for _, b := range bl {
f.set.Add(string(b))
}
return nil
}
func (f *FilterParam) Len() int {
f.lock.RLock()
defer f.lock.RUnlock()
return len(f.set)
}