-
Notifications
You must be signed in to change notification settings - Fork 22
/
last-block.go
121 lines (101 loc) · 3.27 KB
/
last-block.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
// 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/>.
package commands
import (
"context"
"fmt"
"os"
"time"
coreConfig "code.vegaprotocol.io/vega/core/config"
"code.vegaprotocol.io/vega/datanode/config"
vgjson "code.vegaprotocol.io/vega/libs/json"
"code.vegaprotocol.io/vega/logging"
"code.vegaprotocol.io/vega/paths"
"github.com/cenkalti/backoff/v4"
"github.com/jackc/pgx/v4"
"github.com/jessevdk/go-flags"
)
type LastBlockCmd struct {
config.VegaHomeFlag
coreConfig.OutputFlag
*config.Config
Timeout time.Duration `default:"10s" description:"Database connection timeout" long:"timeout"`
}
var lastBlockCmd LastBlockCmd
func (cmd *LastBlockCmd) Execute(_ []string) error {
log := logging.NewLoggerFromConfig(logging.NewDefaultConfig())
defer log.AtExit()
vegaPaths := paths.New(cmd.VegaHome)
cfgLoader, err := config.InitialiseLoader(vegaPaths)
if err != nil {
return fmt.Errorf("couldn't initialise configuration loader: %w", err)
}
cmd.Config, err = cfgLoader.Get()
if err != nil {
handleErr(log, cmd.Output.IsJSON(), "couldn't load configuration", err)
os.Exit(1)
}
connectionString := cmd.Config.SQLStore.ConnectionConfig.GetConnectionString()
ctx, cancel := context.WithTimeout(context.Background(), cmd.Timeout)
defer cancel()
var conn *pgx.Conn
expBackoff := backoff.NewExponentialBackOff()
expBackoff.InitialInterval = time.Second
expBackoff.MaxInterval = time.Second
expBackoff.MaxElapsedTime = cmd.Timeout
// Retry the connect in case we have to wait for the database to start
err = backoff.Retry(func() (opErr error) {
conn, opErr = pgx.Connect(ctx, connectionString)
return opErr
}, expBackoff)
if err != nil {
handleErr(log, cmd.Output.IsJSON(), "Failed to connect to database", err)
os.Exit(1)
}
var lastBlock int64
err = conn.QueryRow(ctx, "select max(height) from blocks").Scan(&lastBlock)
if err != nil {
handleErr(log, cmd.Output.IsJSON(), "Failed to get last block", err)
os.Exit(1)
}
if cmd.Output.IsJSON() {
return vgjson.Print(struct {
LastBlock int64 `json:"last_block"`
}{
LastBlock: lastBlock,
})
}
log.Info("Last block", logging.Int64("height", lastBlock))
return nil
}
func LastBlock(ctx context.Context, parser *flags.Parser) error {
cfg := config.NewDefaultConfig()
lastBlockCmd = LastBlockCmd{
Config: &cfg,
}
_, err := parser.AddCommand("last-block", "Get last block", "Get last block", &lastBlockCmd)
return err
}
func handleErr(log *logging.Logger, outputJSON bool, msg string, err error) {
if outputJSON {
_ = vgjson.Print(struct {
Error string `json:"error"`
}{
Error: err.Error(),
})
return
}
log.Error(msg, logging.Error(err))
}