-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsnapshotdb.go
198 lines (162 loc) · 4.42 KB
/
snapshotdb.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
package diff
import (
"bufio"
"encoding/json"
"errors"
"fmt"
"os"
snapshot "code.vegaprotocol.io/vega/protos/vega/snapshot/v1"
db "github.com/cometbft/cometbft-db"
"github.com/cosmos/iavl"
"github.com/gogo/protobuf/jsonpb"
"github.com/syndtr/goleveldb/leveldb/opt"
"google.golang.org/protobuf/proto"
)
// SnapshotData is a representation of the information we an scrape from the avl tree
type SnapshotData struct {
Version int64 `json:"version"`
Height uint64 `json:"height"`
Size int64 `json:"size"`
}
func displaySnapshotData(tree *iavl.MutableTree, versions []int) error {
j := struct {
Snapshots []SnapshotData `json:"snapshots"`
}{}
for _, version := range versions {
v, err := tree.LazyLoadVersion(int64(version))
if err != nil {
return err
}
_, blockHeight, _ := getAllPayloads(tree)
j.Snapshots = append(j.Snapshots, SnapshotData{
Version: v,
Height: blockHeight,
Size: tree.Size(),
})
}
b, err := json.Marshal(j)
if err != nil {
return err
}
fmt.Println(string(b))
return nil
}
func getAllPayloads(tree *iavl.MutableTree) ([]*snapshot.Payload, uint64, error) {
payloads := []*snapshot.Payload{}
var err error
var blockHeight uint64
tree.Iterate(func(key []byte, val []byte) (stop bool) {
p := &snapshot.Payload{}
err = proto.Unmarshal(val, p)
if err != nil {
return true
}
// grab block-height while we're here
switch dt := p.Data.(type) {
case *snapshot.Payload_AppState:
blockHeight = dt.AppState.Height
}
payloads = append(payloads, p)
return false
})
return payloads, blockHeight, err
}
func writeSnapshotAsJSON(tree *iavl.MutableTree, outputPath string) error {
// traverse the tree and get the payloads
payloads, _, err := getAllPayloads(tree)
if err != nil {
return err
}
f, _ := os.Create(outputPath)
defer f.Close()
w := bufio.NewWriter(f)
m := jsonpb.Marshaler{Indent: " "}
for _, p := range payloads {
s, _ := m.MarshalToString(p)
w.WriteString(s)
}
w.Flush()
fmt.Println("snapshot payloads written to:", outputPath)
return nil
}
// writeSnapshotAsProtobuf saves the snapshot as a binary slice of payloads which is more useful for loading when comparing against datanode.
func writeSnapshotAsProtobuf(tree *iavl.MutableTree, outputPath string) error {
// traverse the tree and get the payloads
payloads, _, err := getAllPayloads(tree)
if err != nil {
return err
}
f, _ := os.Create(outputPath)
defer f.Close()
w := bufio.NewWriter(f)
chunk := &snapshot.Chunk{Data: payloads}
bytes, err := proto.Marshal(chunk)
if err != nil {
return err
}
w.WriteString(string(bytes))
w.Flush()
fmt.Println("snapshot payloads written to:", outputPath)
return nil
}
func displayNumberOfVersions(versions int) error {
j := struct {
Versions int64 `json:"n_versions"`
}{
Versions: int64(versions),
}
b, err := json.Marshal(j)
if err != nil {
return err
}
fmt.Println(string(b))
return nil
}
// SnapshotRun is the main entry point for this tool
func SnapshotRun(dbpath string, versionsOnly bool, outputPath string, heightToOutput int64, outputFormat string) error {
// Attempt to open the database
options := &opt.Options{
ErrorIfMissing: true,
ReadOnly: true,
}
db, err := db.NewGoLevelDBWithOpts("snapshot", dbpath, options)
if err != nil {
return fmt.Errorf("failed to open database located at %s : %w", dbpath, err)
}
tree, err := iavl.NewMutableTree(db, 0, false)
if err != nil {
return err
}
if _, err := tree.Load(); err != nil {
return err
}
versions := tree.AvailableVersions()
switch {
case len(outputPath) != 0:
// find the tree version for the heigh
for i := len(versions) - 1; i > -1; i-- {
version := versions[i]
_, err := tree.LazyLoadVersion(int64(version))
if err != nil {
return err
}
_, blockHeight, _ := getAllPayloads(tree)
// either a height wasn't specified so we take the latest
if heightToOutput == 0 || blockHeight == uint64(heightToOutput) {
fmt.Println("found snapshot for block-height", blockHeight)
if outputFormat == "json" {
return writeSnapshotAsJSON(tree, outputPath)
}
if outputFormat == "proto" {
return writeSnapshotAsProtobuf(tree, outputPath)
}
return errors.New("unknown output format requested")
}
}
return fmt.Errorf("could not find snapshot for height %d", heightToOutput)
case versionsOnly:
return displayNumberOfVersions(len(versions))
default:
return displaySnapshotData(tree, versions)
}
}