-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
166 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
package filter | ||
|
||
import ( | ||
"context" | ||
"sync" | ||
"time" | ||
|
||
"github.com/waku-org/go-waku/waku/v2/protocol" | ||
"github.com/waku-org/go-waku/waku/v2/protocol/filter" | ||
"github.com/waku-org/go-waku/waku/v2/protocol/subscription" | ||
) | ||
|
||
type FilterConfig struct { | ||
MaxPeers uint | ||
} | ||
|
||
type Sub struct { | ||
sync.RWMutex | ||
ContentFilter protocol.ContentFilter | ||
DataCh chan *protocol.Envelope | ||
Config FilterConfig | ||
subs subscription.SubscriptionSet | ||
wf *filter.WakuFilterLightNode | ||
ctx context.Context | ||
cancel context.CancelFunc | ||
} | ||
|
||
func Subscribe(ctx context.Context, wf *filter.WakuFilterLightNode, contentFilter protocol.ContentFilter, config FilterConfig) (*Sub, error) { | ||
sub := new(Sub) | ||
sub.wf = wf | ||
sub.ctx, sub.cancel = context.WithCancel(ctx) | ||
sub.subs = make(subscription.SubscriptionSet) | ||
sub.DataCh = make(chan *protocol.Envelope) | ||
sub.ContentFilter = contentFilter | ||
sub.Config = config | ||
|
||
err := sub.subscribe(contentFilter, sub.Config.MaxPeers) | ||
|
||
if err == nil { | ||
sub.healthCheckLoop() | ||
return sub, nil | ||
} else { | ||
return nil, err | ||
} | ||
} | ||
|
||
func Unsubscribe(apiSub *Sub) error { | ||
apiSub.RLock() | ||
defer apiSub.RUnlock() | ||
for _, s := range apiSub.subs { | ||
apiSub.wf.UnsubscribeWithSubscription(apiSub.ctx, s) | ||
} | ||
apiSub.cancel() | ||
return nil | ||
} | ||
|
||
func (apiSub *Sub) healthCheckLoop() { | ||
// Health checks | ||
ticker := time.NewTicker(5 * time.Second) | ||
defer ticker.Stop() | ||
for { | ||
select { | ||
case <-apiSub.ctx.Done(): | ||
return | ||
case <-ticker.C: | ||
// Returns a map of pubsub topics to peer counts | ||
m := apiSub.checkAliveness() | ||
for t, cnt := range m { | ||
if cnt < apiSub.Config.MaxPeers { | ||
cFilter := protocol.ContentFilter{t, apiSub.ContentFilter.ContentTopics} | ||
apiSub.subscribe(cFilter, apiSub.Config.MaxPeers-cnt) | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
func (apiSub *Sub) checkAliveness() map[string]uint { | ||
apiSub.RLock() | ||
defer apiSub.RUnlock() | ||
ch := make(chan string, len(apiSub.subs)) | ||
wg := &sync.WaitGroup{} | ||
wg.Add(len(apiSub.subs)) | ||
for _, subDetails := range apiSub.subs { | ||
go func(subDetails *subscription.SubscriptionDetails) { | ||
defer wg.Done() | ||
err := apiSub.wf.IsSubscriptionAlive(apiSub.ctx, subDetails) | ||
|
||
if err != nil { | ||
subDetails.Close() | ||
apiSub.Lock() | ||
defer apiSub.Unlock() | ||
delete(apiSub.subs, subDetails.ID) | ||
} else { | ||
ch <- subDetails.ContentFilter.PubsubTopic | ||
} | ||
}(subDetails) | ||
|
||
} | ||
wg.Wait() | ||
close(ch) | ||
// Collect healthy topics | ||
m := make(map[string]uint) | ||
for topic := range ch { | ||
m[topic]++ | ||
} | ||
|
||
return m | ||
|
||
} | ||
func (apiSub *Sub) subscribe(contentFilter protocol.ContentFilter, peerCount uint) error { | ||
// Low-level subscribe, returns a set of SubscriptionDetails | ||
subs, err := apiSub.wf.Subscribe(apiSub.ctx, contentFilter, filter.WithMaxPeersPerContentFilter(int(peerCount))) | ||
if err != nil { | ||
// TODO what if fails? | ||
return err | ||
} | ||
apiSub.Lock() | ||
defer apiSub.Unlock() | ||
for _, s := range subs { | ||
apiSub.subs[s.ID] = s | ||
} | ||
// Multiplex onto single channel | ||
// Goroutines will exit once sub channels are closed | ||
for _, subDetails := range subs { | ||
go func(subDetails *subscription.SubscriptionDetails) { | ||
for env := range subDetails.C { | ||
apiSub.DataCh <- env | ||
} | ||
}(subDetails) | ||
} | ||
return nil | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters