mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-22 23:16:48 +00:00
* gateio: Add websocket orderbook update manager * RM println * glorious: nit * Adds delivery futures update processing as well * Change to const value for delivery * Drop check out of order, can reinstate if required. * Adds in validation methods to ensure config changes are correct when expanding templates and return errors with correct info if not. * fix some things and add in todo when this gets updated * fix spelling * linter: fix * gk: initial nits * gk: nits shift to template only verification with funcmap, rm interface for single sub checking. * rm unused error * linter: fix * update to const frequency * gk: wrap with panic and single invocation in template, change name * gk: nits to check across stored subs with incoming subs * linter: fix * updates names, makes things slightly more efficient and adds tests * linter: fix * gk: sexc patch v2 * glorious: nits * gk: nits * Update exchanges/subscription/template.go Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> * gk: nits * linter: make peace with linter regulations * glorious: Add TODO for future template integration * glorious: commentary nits * fix name * give me a break, have a kit kat * revert whoops * update wording on comment * revert secondary call to expand templates and update tests * misc lint: fix * Add spot orderbook update interval for 20ms, expand tests, piggy back limit/level off loaded subscription. Thanks to @thrasher- * linter/spell: fix * ai nits: drop go routine on mtx RUnlock * Update exchanges/gateio/ws_ob_update_manager.go Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> * gk: revert to 100ms from 20ms waiting for config upgrade patch * test: fix * cranktakular: nits * strings quoted in fmt call * thrasher-: nits * Update exchanges/gateio/gateio_test.go Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> * Update exchanges/gateio/gateio_test.go Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com> * gk: nits --------- Co-authored-by: Ryan O'Hara-Reid <ryan.oharareid@thrasher.io> Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com>
208 lines
6.2 KiB
Go
208 lines
6.2 KiB
Go
package gateio
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/thrasher-corp/gocryptotrader/common/key"
|
|
"github.com/thrasher-corp/gocryptotrader/currency"
|
|
"github.com/thrasher-corp/gocryptotrader/exchange/websocket/buffer"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/asset"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/orderbook"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/subscription"
|
|
)
|
|
|
|
const defaultWSSnapshotSyncDelay = 2 * time.Second
|
|
|
|
var errOrderbookSnapshotOutdated = errors.New("orderbook snapshot is outdated")
|
|
|
|
type wsOBUpdateManager struct {
|
|
lookup map[key.PairAsset]*updateCache
|
|
snapshotSyncDelay time.Duration
|
|
mtx sync.RWMutex
|
|
}
|
|
|
|
type updateCache struct {
|
|
updates []pendingUpdate
|
|
updating bool
|
|
mtx sync.Mutex
|
|
}
|
|
|
|
type pendingUpdate struct {
|
|
update *orderbook.Update
|
|
firstUpdateID int64
|
|
}
|
|
|
|
func newWsOBUpdateManager(snapshotSyncDelay time.Duration) *wsOBUpdateManager {
|
|
return &wsOBUpdateManager{lookup: make(map[key.PairAsset]*updateCache), snapshotSyncDelay: snapshotSyncDelay}
|
|
}
|
|
|
|
// ProcessUpdate processes an orderbook update by syncing snapshot, caching updates and applying them
|
|
func (m *wsOBUpdateManager) ProcessUpdate(ctx context.Context, g *Gateio, firstUpdateID int64, update *orderbook.Update) error {
|
|
cache := m.LoadCache(update.Pair, update.Asset)
|
|
cache.mtx.Lock()
|
|
defer cache.mtx.Unlock()
|
|
|
|
if cache.updating {
|
|
cache.updates = append(cache.updates, pendingUpdate{update: update, firstUpdateID: firstUpdateID})
|
|
return nil
|
|
}
|
|
|
|
lastUpdateID, err := g.Websocket.Orderbook.LastUpdateID(update.Pair, update.Asset)
|
|
if err != nil && !errors.Is(err, buffer.ErrDepthNotFound) {
|
|
return err
|
|
}
|
|
|
|
if lastUpdateID+1 >= firstUpdateID {
|
|
return applyOrderbookUpdate(g, update)
|
|
}
|
|
|
|
// Orderbook is behind notifications, flush store to prevent trading on stale data
|
|
if err := g.Websocket.Orderbook.FlushOrderbook(update.Pair, update.Asset); err != nil && !errors.Is(err, buffer.ErrDepthNotFound) {
|
|
return err
|
|
}
|
|
|
|
cache.updating = true
|
|
cache.updates = append(cache.updates, pendingUpdate{update: update, firstUpdateID: firstUpdateID})
|
|
|
|
go func() {
|
|
select {
|
|
case <-ctx.Done():
|
|
return
|
|
case <-time.After(m.snapshotSyncDelay):
|
|
if err := cache.SyncOrderbook(ctx, g, update.Pair, update.Asset); err != nil {
|
|
g.Websocket.DataHandler <- fmt.Errorf("failed to sync orderbook for %v %v: %w", update.Pair, update.Asset, err)
|
|
}
|
|
}
|
|
}()
|
|
|
|
return nil
|
|
}
|
|
|
|
// LoadCache loads the cache for the given pair and asset. If the cache does not exist, it creates a new one.
|
|
func (m *wsOBUpdateManager) LoadCache(p currency.Pair, a asset.Item) *updateCache {
|
|
m.mtx.RLock()
|
|
cache, ok := m.lookup[key.PairAsset{Base: p.Base.Item, Quote: p.Quote.Item, Asset: a}]
|
|
m.mtx.RUnlock()
|
|
if !ok {
|
|
m.mtx.Lock()
|
|
cache = &updateCache{}
|
|
m.lookup[key.PairAsset{Base: p.Base.Item, Quote: p.Quote.Item, Asset: a}] = cache
|
|
m.mtx.Unlock()
|
|
}
|
|
return cache
|
|
}
|
|
|
|
// SyncOrderbook fetches and synchronises an orderbook snapshot to the limit size so that pending updates can be
|
|
// applied to the orderbook.
|
|
func (c *updateCache) SyncOrderbook(ctx context.Context, g *Gateio, pair currency.Pair, a asset.Item) error {
|
|
// TODO: When subscription config is added for all assets update limits to use sub.Levels
|
|
var limit uint64
|
|
switch a {
|
|
case asset.Spot:
|
|
sub := g.Websocket.GetSubscription(spotOrderbookUpdateKey)
|
|
if sub == nil {
|
|
return fmt.Errorf("no subscription found for %q", spotOrderbookUpdateKey)
|
|
}
|
|
// There is no way to set levels when we subscribe for this specific subscription case.
|
|
// Extract limit from interval e.g. 20ms == 20 limit book and 100ms == 100 limit book.
|
|
limit = uint64(sub.Interval.Duration().Milliseconds()) //nolint:gosec // No overflow risk
|
|
case asset.USDTMarginedFutures, asset.USDCMarginedFutures:
|
|
limit = futuresOrderbookUpdateLimit
|
|
case asset.DeliveryFutures:
|
|
limit = deliveryFuturesUpdateLimit
|
|
case asset.Options:
|
|
limit = optionOrderbookUpdateLimit
|
|
}
|
|
|
|
book, err := g.UpdateOrderbookWithLimit(ctx, pair, a, limit)
|
|
|
|
c.mtx.Lock() // lock here to prevent ws handle data interference with REST request above
|
|
defer func() {
|
|
c.updates = nil
|
|
c.updating = false
|
|
c.mtx.Unlock()
|
|
}()
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if a != asset.Spot {
|
|
if err := g.Websocket.Orderbook.LoadSnapshot(book); err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
// Spot, Margin, and Cross Margin books are all classified as spot
|
|
for i := range standardMarginAssetTypes {
|
|
if enabled, _ := g.IsPairEnabled(pair, standardMarginAssetTypes[i]); !enabled {
|
|
continue
|
|
}
|
|
book.Asset = standardMarginAssetTypes[i]
|
|
if err := g.Websocket.Orderbook.LoadSnapshot(book); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
return c.applyPendingUpdates(g, a)
|
|
}
|
|
|
|
// ApplyPendingUpdates applies all pending updates to the orderbook
|
|
func (c *updateCache) applyPendingUpdates(g *Gateio, a asset.Item) error {
|
|
for _, data := range c.updates {
|
|
lastUpdateID, err := g.Websocket.Orderbook.LastUpdateID(data.update.Pair, a)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
nextID := lastUpdateID + 1
|
|
if data.firstUpdateID > nextID {
|
|
return errOrderbookSnapshotOutdated
|
|
}
|
|
if data.update.UpdateID < nextID {
|
|
continue // skip updates that are behind the current orderbook
|
|
}
|
|
if err := applyOrderbookUpdate(g, data.update); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// applyOrderbookUpdate applies an orderbook update to the orderbook
|
|
func applyOrderbookUpdate(g *Gateio, update *orderbook.Update) error {
|
|
if update.Asset != asset.Spot {
|
|
return g.Websocket.Orderbook.Update(update)
|
|
}
|
|
|
|
for i := range standardMarginAssetTypes {
|
|
if enabled, _ := g.IsPairEnabled(update.Pair, standardMarginAssetTypes[i]); !enabled {
|
|
continue
|
|
}
|
|
update.Asset = standardMarginAssetTypes[i]
|
|
if err := g.Websocket.Orderbook.Update(update); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
var spotOrderbookUpdateKey = channelKey{&subscription.Subscription{Channel: subscription.OrderbookChannel}}
|
|
|
|
var _ subscription.MatchableKey = channelKey{}
|
|
|
|
type channelKey struct {
|
|
*subscription.Subscription
|
|
}
|
|
|
|
func (k channelKey) Match(eachKey subscription.MatchableKey) bool {
|
|
return k.Subscription.Channel == eachKey.GetSubscription().Channel
|
|
}
|
|
|
|
func (k channelKey) GetSubscription() *subscription.Subscription {
|
|
return k.Subscription
|
|
}
|