mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-23 07:26:47 +00:00
* codebase: Rid base64/hex to string common funcs * codebase: Rid local scope variable usage and other improvements * codebase: Refactor currency pair usage across multiple exchanges - Updated HitBTC tests to use the new currency pair format. - Modified Kraken futures types to use currency.Pair instead of string for Symbol. - Adjusted Kraken wrapper methods to handle currency pairs correctly. - Refined OKX tests and types to utilize currency.Pair for instrument IDs. - Enhanced Poloniex tests to consistently use predefined currency pairs. - Streamlined order and orderbook tests to replace string pairs with currency.NewBTCUSD(). - Improved Yobit tests to utilize a standardized currency pair format. - Updated validator wrapper to use currency pairs directly instead of string conversions. * codebase: Use types.Number where possible * refactor: update PayoutFee type to types.Number for consistency * Refactor: Remove crypto functions to use standard library and other minor changes - Removed custom crypto functions for SHA256, SHA512, and MD5 from the common/crypto package. - Replaced usages of removed functions with standard library implementations in various files including: - cmd/websocket_client/main.go - engine/apiserver.go - exchanges/kraken/kraken.go - exchanges/lbank/lbank.go - exchanges/okx/okx_business_websocket.go - exchanges/kucoin/kucoin_websocket.go - gctscript/vm/vm.go - Updated tests to reflect changes in the crypto functions. - Renamed several functions for clarity, particularly in the context of order book updates across multiple exchanges. * refactor: replace assert with require for consistency in test assertions * refactor: Improve Binance futures candlestick test, standardise orderbook update function names and improve test parallelism * refactor: Replace require.Len with require.Equal for better output in TestGetFuturesKlineData
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}
|
|
}
|
|
|
|
// ProcessOrderbookUpdate processes an orderbook update by syncing snapshot, caching updates and applying them
|
|
func (m *wsOBUpdateManager) ProcessOrderbookUpdate(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
|
|
}
|