mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-18 07:26:50 +00:00
* Websocket: Use ErrSubscribedAlready instead of errChannelAlreadySubscribed * Subscriptions: Replace Pair with Pairs Given that some subscriptions have multiple pairs, support that as the standard. * Docs: Update subscriptions in add new exch * RPC: Update Subscription Pairs * Linter: Disable testifylint.Len We deliberately use Equal over Len to avoid spamming the contents of large Slices * Websocket: Add suffix to state consts * Binance: Subscription Pairs support * Bitfinex: Subscription Pairs support * Bithumb: Subscription Pairs support * Bitmex: Subscription Pairs support * Bitstamp: Subscription Pairs support * BTCMarkets: Subscription Pairs support * BTSE: Subscription Pairs support * Coinbase: Subscription Pairs support * Coinut: Subscription Pairs support * GateIO: Subscription Pairs support * Gemini: Subscription Pairs support and improvement * Hitbtc: Subscription Pairs support * Huboi: Subscription Pairs support * Kucoin: Subscription Pairs support * Okcoin: Subscription Pairs support * Poloniex: Subscription Pairs support * Kraken: Add subscription Pairs support Note: This is a naieve implementation because we want to rebase the kraken websocket rewrite on top of this * Bybit: Subscription Pairs support * Okx: Subscription Pairs support * Bitmex: Subsription configuration * Fixes unauthenticated websocket left as CanUseAuth * Fixes auth subs happening privately * CoinbasePro: Subscription Configuration * Consolidate ProductIDs when all subscriptions are for the same list * Websocket: Log actual sent message when Verbose * Subscriptions: Improve clarity of which key is which in Match * Subscriptions: Lint fix for HugeParam * Subscriptions: Add AddPairs and move keys from test * Subscriptions: Simplify subscription keys and add key types * Subscriptions: Add List.GroupPairs Rename sub.AddPairs * Subscription: Fix ExactKey not matching 0 pairs * Subscriptions: Remove unused IdentityKey and HasPairKey * Subscriptions: Fix GetKey test * Subscriptions: Test coverage improvements * Websocket: Change State on Add/Remove * Subscriptions: Improve error context * Subscriptions: Fix Enable: false subs not ignored * Bitfinex: Fix WsAuth test failing on DataHandler DataHandler is eaten by dataMonitor now, so we need to use ToRoutine * Deribit: Subscription Pairs support * Websocket: Accept nil lists for checkSubscriptions If the user passes in a nil (implicitly empty) list, we would not panic. Therefore the burden of correctness about that data lies with them. The list of subscriptions is empty, and that's okay, and possibly convenient * Websocket: Add context to NilPointer errors * Subscriptions: Add context to nil errors * Exchange: Fix error expectations in UnsubToWSChans
89 lines
2.5 KiB
Go
89 lines
2.5 KiB
Go
package subscription
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/thrasher-corp/gocryptotrader/currency"
|
|
)
|
|
|
|
// MatchableKey interface should be implemented by Key types which want a more complex matching than a simple key equality check
|
|
// The Subscription method allows keys to compare against keys of other types
|
|
type MatchableKey interface {
|
|
Match(MatchableKey) bool
|
|
GetSubscription() *Subscription
|
|
String() string
|
|
}
|
|
|
|
// ExactKey is key type for subscriptions where all the pairs in a Subscription must match exactly
|
|
type ExactKey struct {
|
|
*Subscription
|
|
}
|
|
|
|
var _ MatchableKey = ExactKey{} // Enforce ExactKey must implement MatchableKey
|
|
|
|
// GetSubscription returns the underlying subscription
|
|
func (k ExactKey) GetSubscription() *Subscription {
|
|
return k.Subscription
|
|
}
|
|
|
|
// String implements Stringer; returns the Asset, Channel and Pairs
|
|
// Does not provide concurrency protection on the subscription it points to
|
|
func (k ExactKey) String() string {
|
|
s := k.Subscription
|
|
if s == nil {
|
|
return "Uninitialised ExactKey"
|
|
}
|
|
p := s.Pairs.Format(currency.PairFormat{Uppercase: true, Delimiter: "/"})
|
|
return fmt.Sprintf("%s %s %s", s.Channel, s.Asset, p.Join())
|
|
}
|
|
|
|
// Match implements MatchableKey
|
|
// Returns true if the key fields exactly matches the subscription, including all Pairs
|
|
func (k ExactKey) Match(eachKey MatchableKey) bool {
|
|
if eachKey == nil {
|
|
return false
|
|
}
|
|
eachSub := eachKey.GetSubscription()
|
|
return eachSub != nil &&
|
|
eachSub.Channel == k.Channel &&
|
|
eachSub.Asset == k.Asset &&
|
|
eachSub.Pairs.Equal(k.Pairs) &&
|
|
eachSub.Levels == k.Levels &&
|
|
eachSub.Interval == k.Interval
|
|
}
|
|
|
|
// IgnoringPairsKey is a key type for finding subscriptions to group together for requests
|
|
type IgnoringPairsKey struct {
|
|
*Subscription
|
|
}
|
|
|
|
var _ MatchableKey = IgnoringPairsKey{} // Enforce IgnoringPairsKey must implement MatchableKey
|
|
|
|
// GetSubscription returns the underlying subscription
|
|
func (k IgnoringPairsKey) GetSubscription() *Subscription {
|
|
return k.Subscription
|
|
}
|
|
|
|
// String implements Stringer; returns the asset and Channel name but no pairs
|
|
func (k IgnoringPairsKey) String() string {
|
|
s := k.Subscription
|
|
if s == nil {
|
|
return "Uninitialised IgnoringPairsKey"
|
|
}
|
|
return fmt.Sprintf("%s %s", s.Channel, s.Asset)
|
|
}
|
|
|
|
// Match implements MatchableKey
|
|
func (k IgnoringPairsKey) Match(eachKey MatchableKey) bool {
|
|
if eachKey == nil {
|
|
return false
|
|
}
|
|
eachSub := eachKey.GetSubscription()
|
|
|
|
return eachSub != nil &&
|
|
eachSub.Channel == k.Channel &&
|
|
eachSub.Asset == k.Asset &&
|
|
eachSub.Levels == k.Levels &&
|
|
eachSub.Interval == k.Interval
|
|
}
|