-
Notifications
You must be signed in to change notification settings - Fork 0
/
margin_levels.go
82 lines (66 loc) · 2.18 KB
/
margin_levels.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
// 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 sqlsubscribers
import (
"context"
"github.com/pkg/errors"
"github.com/zeta-protocol/zeta/core/events"
"github.com/zeta-protocol/zeta/datanode/entities"
"github.com/zeta-protocol/zeta/protos/zeta"
)
type MarginLevelsEvent interface {
events.Event
MarginLevels() zeta.MarginLevels
}
type MarginLevelsStore interface {
Add(entities.MarginLevels) error
Flush(context.Context) error
}
type MarginLevels struct {
subscriber
store MarginLevelsStore
accountSource AccountSource
}
func NewMarginLevels(store MarginLevelsStore, accountSource AccountSource) *MarginLevels {
return &MarginLevels{
store: store,
accountSource: accountSource,
}
}
func (ml *MarginLevels) Types() []events.Type {
return []events.Type{events.MarginLevelsEvent}
}
func (ml *MarginLevels) Flush(ctx context.Context) error {
err := ml.flush(ctx)
if err != nil {
return errors.Wrap(err, "flushing margin levels")
}
return nil
}
func (ml *MarginLevels) Push(ctx context.Context, evt events.Event) error {
return ml.consume(ctx, evt.(MarginLevelsEvent))
}
func (ml *MarginLevels) flush(ctx context.Context) error {
err := ml.store.Flush(ctx)
return errors.Wrap(err, "flushing margin levels")
}
func (ml *MarginLevels) consume(ctx context.Context, event MarginLevelsEvent) error {
marginLevel := event.MarginLevels()
marginLevel.Timestamp = 0
proto := event.MarginLevels()
entity, err := entities.MarginLevelsFromProto(ctx, &proto, ml.accountSource, entities.TxHash(event.TxHash()), ml.zetaTime)
if err != nil {
return errors.Wrap(err, "converting margin level to database entity failed")
}
err = ml.store.Add(entity)
return errors.Wrap(err, "add margin level to store")
}