-
Notifications
You must be signed in to change notification settings - Fork 22
/
trade.go
87 lines (74 loc) · 3.08 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
// 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/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)
GetByMarket(ctx context.Context, market string, p entities.OffsetPagination) ([]entities.Trade, error)
GetByParty(ctx context.Context, party string, market *string, pagination entities.OffsetPagination) ([]entities.Trade, error)
GetByOrderID(ctx context.Context, order string, market *string, pagination entities.OffsetPagination) ([]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,
marketID entities.MarketID,
partyID entities.PartyID,
orderID entities.OrderID,
pagination entities.CursorPagination,
dateRange entities.DateRange,
) ([]entities.Trade, entities.PageInfo, error) {
return t.store.List(ctx, marketID, partyID, orderID, pagination, dateRange)
}
func (t *Trade) GetByMarket(ctx context.Context, market string, p entities.OffsetPagination) ([]entities.Trade, error) {
return t.store.GetByMarket(ctx, market, p)
}
func (t *Trade) GetByParty(ctx context.Context, party string, market *string, pagination entities.OffsetPagination) ([]entities.Trade, error) {
return t.store.GetByParty(ctx, party, market, pagination)
}
func (t *Trade) GetByOrderID(ctx context.Context, order string, market *string, pagination entities.OffsetPagination) ([]entities.Trade, error) {
return t.store.GetByOrderID(ctx, order, market, pagination)
}
func (t *Trade) Observe(ctx context.Context, retries int, marketID *string, partyID *string) (<-chan []*entities.Trade, uint64) {
ch, ref := t.observer.Observe(ctx,
retries,
func(trade *entities.Trade) bool {
return (marketID == nil || *marketID == trade.MarketID.String()) &&
(partyID == nil || *partyID == trade.Buyer.String() || *partyID == trade.Seller.String())
})
return ch, ref
}