mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 15:09:42 +00:00
* Bybit: Fix race in TestUpdateAccountInfo and TestWSHandleData * DriveBy rename TestWSHandleData * This doesn't address running with -race=2+ due to the singleton * Accounts: Add account.GetService() * exchange: Assertify TestSetupDefaults * Exchanges: Add account.Service override for testing * Exchanges: Remove duplicate IsWebsocketEnabled test from TestSetupDefaults * Dispatch: Replace nil checks with NilGuard * Engine: Remove deprecated printAccountHoldingsChangeSummary * Dispatcher: Add EnsureRunning method * Accounts: Move singleton accounts service to exchange Accounts * Move singleton accounts service to exchange Accounts This maintains the concept of a global store, whilst allowing exchanges to override it when needed, particularly for testing. APIServer: * Remove getAllActiveAccounts from apiserver Deprecated apiserver only thing using this, so remove it instead of updating it * Update comment for UpdateAccountBalances everywhere * Docs: Add punctuation to function comments * Bybit: Coverage for wsProcessWalletPushData Save
91 lines
1.9 KiB
Go
91 lines
1.9 KiB
Go
package dispatch
|
|
|
|
import (
|
|
"errors"
|
|
"sync/atomic"
|
|
|
|
"github.com/gofrs/uuid"
|
|
"github.com/thrasher-corp/gocryptotrader/common"
|
|
)
|
|
|
|
var (
|
|
errIDNotSet = errors.New("id not set")
|
|
errNoIDs = errors.New("no IDs to publish data to")
|
|
)
|
|
|
|
// GetNewMux returns a new multiplexer to track subsystem updates, if nil
|
|
// dispatcher provided it will default to the global Dispatcher.
|
|
func GetNewMux(d *Dispatcher) *Mux {
|
|
if d == nil {
|
|
d = dispatcher
|
|
}
|
|
return &Mux{d: d}
|
|
}
|
|
|
|
// Subscribe takes in a package defined signature element pointing to an ID set
|
|
// and returns the associated pipe
|
|
func (m *Mux) Subscribe(id uuid.UUID) (Pipe, error) {
|
|
if err := common.NilGuard(m); err != nil {
|
|
return Pipe{}, err
|
|
}
|
|
|
|
if id.IsNil() {
|
|
return Pipe{}, errIDNotSet
|
|
}
|
|
|
|
ch, err := m.d.subscribe(id)
|
|
if err != nil {
|
|
return Pipe{}, err
|
|
}
|
|
|
|
return Pipe{c: ch, id: id, m: m}, nil
|
|
}
|
|
|
|
// Unsubscribe returns channel to the pool for the full signature set
|
|
func (m *Mux) Unsubscribe(id uuid.UUID, ch chan any) error {
|
|
if err := common.NilGuard(m); err != nil {
|
|
return err
|
|
}
|
|
return m.d.unsubscribe(id, ch)
|
|
}
|
|
|
|
// Publish takes in a persistent memory address and dispatches changes to
|
|
// required pipes.
|
|
func (m *Mux) Publish(data any, ids ...uuid.UUID) error {
|
|
if err := common.NilGuard(m, data); err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(ids) == 0 {
|
|
return errNoIDs
|
|
}
|
|
if atomic.LoadInt32(&m.d.subscriberCount) == 0 {
|
|
return nil
|
|
}
|
|
|
|
for i := range ids {
|
|
if err := m.d.publish(ids[i], data); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// GetID a new unique ID to track routing information in the dispatch system
|
|
func (m *Mux) GetID() (uuid.UUID, error) {
|
|
if err := common.NilGuard(m); err != nil {
|
|
return uuid.UUID{}, err
|
|
}
|
|
return m.d.getNewID(uuid.NewV4)
|
|
}
|
|
|
|
// Release returns the channel to the communications pool to be reused
|
|
func (p *Pipe) Release() error {
|
|
return p.m.Unsubscribe(p.id, p.c)
|
|
}
|
|
|
|
// Channel returns the Pipe's channel
|
|
func (p *Pipe) Channel() <-chan any {
|
|
return p.c
|
|
}
|