summaryrefslogtreecommitdiff
path: root/plugins/websockets/storage/storage.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/websockets/storage/storage.go')
-rw-r--r--plugins/websockets/storage/storage.go90
1 files changed, 0 insertions, 90 deletions
diff --git a/plugins/websockets/storage/storage.go b/plugins/websockets/storage/storage.go
deleted file mode 100644
index 43834658..00000000
--- a/plugins/websockets/storage/storage.go
+++ /dev/null
@@ -1,90 +0,0 @@
-package storage
-
-import (
- "sync"
-
- "github.com/spiral/roadrunner/v2/pkg/bst"
-)
-
-type Storage struct {
- sync.RWMutex
- BST bst.Storage
-}
-
-func NewStorage() *Storage {
- return &Storage{
- BST: bst.NewBST(),
- }
-}
-
-func (s *Storage) InsertMany(connID string, topics []string) {
- s.Lock()
- defer s.Unlock()
-
- for i := 0; i < len(topics); i++ {
- s.BST.Insert(connID, topics[i])
- }
-}
-
-func (s *Storage) Insert(connID string, topic string) {
- s.Lock()
- defer s.Unlock()
-
- s.BST.Insert(connID, topic)
-}
-
-func (s *Storage) RemoveMany(connID string, topics []string) {
- s.Lock()
- defer s.Unlock()
-
- for i := 0; i < len(topics); i++ {
- s.BST.Remove(connID, topics[i])
- }
-}
-
-func (s *Storage) Remove(connID string, topic string) {
- s.Lock()
- defer s.Unlock()
-
- s.BST.Remove(connID, topic)
-}
-
-// GetByPtrTS Thread safe get
-func (s *Storage) GetByPtrTS(topics []string, res map[string]struct{}) {
- s.Lock()
- defer s.Unlock()
-
- for i := 0; i < len(topics); i++ {
- d := s.BST.Get(topics[i])
- if len(d) > 0 {
- for ii := range d {
- res[ii] = struct{}{}
- }
- }
- }
-}
-func (s *Storage) GetOneByPtr(topic string, res map[string]struct{}) {
- s.RLock()
- defer s.RUnlock()
-
- d := s.BST.Get(topic)
- if len(d) > 0 {
- for ii := range d {
- res[ii] = struct{}{}
- }
- }
-}
-
-func (s *Storage) GetByPtr(topics []string, res map[string]struct{}) {
- s.RLock()
- defer s.RUnlock()
-
- for i := 0; i < len(topics); i++ {
- d := s.BST.Get(topics[i])
- if len(d) > 0 {
- for ii := range d {
- res[ii] = struct{}{}
- }
- }
- }
-}