-
Notifications
You must be signed in to change notification settings - Fork 22
/
trade.go
88 lines (74 loc) · 2.89 KB
/
trade.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// Copyright (c) 2022 Gobalsky Labs Limited
//
// Use of this software is governed by the Business Source License included
// in the LICENSE.DATANODE file and at https://www.mariadb.com/bsl11.
//
// Change Date: 18 months from the later of the date of the first publicly
// available Distribution of this version of the repository, and 25 June 2022.
//
// On the date above, in accordance with the Business Source License, use
// of this software will be governed by version 3 or later of the GNU General
// Public License.
package service
import (
"context"
"code.vegaprotocol.io/vega/libs/slice"
"code.vegaprotocol.io/vega/datanode/entities"
"code.vegaprotocol.io/vega/datanode/utils"
"code.vegaprotocol.io/vega/logging"
)
type tradeStore interface {
Flush(ctx context.Context) ([]*entities.Trade, error)
Add(t *entities.Trade) error
List(context.Context, []entities.MarketID, []entities.PartyID, []entities.OrderID, entities.CursorPagination, entities.DateRange) ([]entities.Trade, entities.PageInfo, error)
GetLastTradeByMarket(ctx context.Context, market string) ([]entities.Trade, error)
GetByTxHash(ctx context.Context, txHash entities.TxHash) ([]entities.Trade, error)
}
type Trade struct {
store tradeStore
observer utils.Observer[*entities.Trade]
}
func NewTrade(store tradeStore, log *logging.Logger) *Trade {
return &Trade{
store: store,
observer: utils.NewObserver[*entities.Trade]("trade", log, 0, 0),
}
}
func (t *Trade) Flush(ctx context.Context) error {
flushed, err := t.store.Flush(ctx)
if err != nil {
return err
}
t.observer.Notify(flushed)
return nil
}
func (t *Trade) Add(trade *entities.Trade) error {
return t.store.Add(trade)
}
func (t *Trade) List(ctx context.Context,
marketIDs []entities.MarketID,
partyIDs []entities.PartyID,
orderIDs []entities.OrderID,
pagination entities.CursorPagination,
dateRange entities.DateRange,
) ([]entities.Trade, entities.PageInfo, error) {
return t.store.List(ctx, marketIDs, partyIDs, orderIDs, pagination, dateRange)
}
func (t *Trade) GetLastTradeByMarket(ctx context.Context, market string) ([]entities.Trade, error) {
return t.store.GetLastTradeByMarket(ctx, market)
}
func (t *Trade) GetByTxHash(ctx context.Context, txHash entities.TxHash) ([]entities.Trade, error) {
return t.store.GetByTxHash(ctx, txHash)
}
func (t *Trade) Observe(ctx context.Context, retries int, marketIDs []string, partyIDs []string) (<-chan []*entities.Trade, uint64) {
ch, ref := t.observer.Observe(ctx,
retries,
func(trade *entities.Trade) bool {
// match market filter if any, or if no filter is provided
marketsOk := len(marketIDs) == 0 || slice.Contains(marketIDs, trade.MarketID.String())
// match party filter if any, or if no filter is provided
partiesOk := len(partyIDs) == 0 || slice.Contains(partyIDs, trade.Buyer.String()) || slice.Contains(partyIDs, trade.Seller.String())
return marketsOk && partiesOk
})
return ch, ref
}