-
Notifications
You must be signed in to change notification settings - Fork 22
/
ledger.go
127 lines (111 loc) · 4 KB
/
ledger.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// Copyright (C) 2023 Gobalsky Labs Limited
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// 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"
"io"
"code.vegaprotocol.io/vega/datanode/entities"
"code.vegaprotocol.io/vega/datanode/utils"
"code.vegaprotocol.io/vega/logging"
"code.vegaprotocol.io/vega/protos/vega"
)
type ledgerStore interface {
Flush(ctx context.Context) ([]entities.LedgerEntry, error)
Add(le entities.LedgerEntry) error
Query(ctx context.Context, filter *entities.LedgerEntryFilter, dateRange entities.DateRange, pagination entities.CursorPagination) (*[]entities.AggregatedLedgerEntry, entities.PageInfo, error)
Export(ctx context.Context, partyID string, assetID *string, dateRange entities.DateRange, writer io.Writer) error
GetByTxHash(ctx context.Context, txHash entities.TxHash) ([]entities.LedgerEntry, error)
}
type LedgerEntriesStore interface {
Query(filter *entities.LedgerEntryFilter, dateRange entities.DateRange, pagination entities.CursorPagination) (*[]entities.AggregatedLedgerEntry, entities.PageInfo, error)
Export(ctx context.Context, partyID, assetID string, dateRange entities.DateRange, pagination entities.CursorPagination) ([]byte, entities.PageInfo, error)
}
type Ledger struct {
store ledgerStore
transferResponses []*vega.LedgerMovement
observer utils.Observer[*vega.LedgerMovement]
}
func NewLedger(store ledgerStore, log *logging.Logger) *Ledger {
return &Ledger{
store: store,
observer: utils.NewObserver[*vega.LedgerMovement]("ledger", log, 0, 0),
}
}
func (l *Ledger) Flush(ctx context.Context) error {
_, err := l.store.Flush(ctx)
if err != nil {
return err
}
l.observer.Notify(l.transferResponses)
l.transferResponses = []*vega.LedgerMovement{}
return nil
}
func (l *Ledger) AddLedgerEntry(le entities.LedgerEntry) error {
return l.store.Add(le)
}
func (l *Ledger) AddTransferResponse(le *vega.LedgerMovement) {
l.transferResponses = append(l.transferResponses, le)
}
func (l *Ledger) Observe(ctx context.Context, retries int) (<-chan []*vega.LedgerMovement, uint64) {
ch, ref := l.observer.Observe(ctx,
retries,
func(tr *vega.LedgerMovement) bool {
return true
})
return ch, ref
}
func (l *Ledger) GetSubscribersCount() int32 {
return l.observer.GetSubscribersCount()
}
func (l *Ledger) Query(
ctx context.Context,
filter *entities.LedgerEntryFilter,
dateRange entities.DateRange,
pagination entities.CursorPagination,
) (*[]entities.AggregatedLedgerEntry, entities.PageInfo, error) {
return l.store.Query(
ctx,
filter,
dateRange,
pagination)
}
func (l *Ledger) GetByTxHash(ctx context.Context, txHash entities.TxHash) ([]entities.LedgerEntry, error) {
return l.store.GetByTxHash(ctx, txHash)
}
func (l *Ledger) Export(
ctx context.Context,
partyID string,
assetID *string,
dateRange entities.DateRange,
writer io.Writer,
) error {
return l.store.Export(
ctx,
partyID,
assetID,
dateRange,
writer)
}