forked from polynetwork/poly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexport_cmd.go
144 lines (133 loc) · 4.29 KB
/
export_cmd.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
/*
* Copyright (C) 2021 The poly network Authors
* This file is part of The poly network library.
*
* The poly network is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* The poly network 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with the poly network. If not, see <http://www.gnu.org/licenses/>.
*/
package cmd
import (
"bufio"
"fmt"
"github.com/gosuri/uiprogress"
"github.com/polynetwork/poly/cmd/utils"
"github.com/polynetwork/poly/common/serialization"
"github.com/urfave/cli"
"os"
"time"
)
var ExportCommand = cli.Command{
Name: "export",
Usage: "Export blocks in DB to a file",
ArgsUsage: "",
Action: exportBlocks,
Flags: []cli.Flag{
utils.RPCPortFlag,
utils.ExportFileFlag,
utils.ExportStartHeightFlag,
utils.ExportEndHeightFlag,
utils.ExportSpeedFlag,
},
Description: "",
}
func exportBlocks(ctx *cli.Context) error {
SetRpcPort(ctx)
exportFile := ctx.String(utils.GetFlagName(utils.ExportFileFlag))
if exportFile == "" {
PrintErrorMsg("Missing %s argument.", utils.ExportFileFlag.Name)
cli.ShowSubcommandHelp(ctx)
return nil
}
startHeight := ctx.Uint(utils.GetFlagName(utils.ExportStartHeightFlag))
endHeight := ctx.Uint(utils.GetFlagName(utils.ExportEndHeightFlag))
if endHeight > 0 && startHeight > endHeight {
return fmt.Errorf("export error: start height should smaller than end height")
}
blockCount, err := utils.GetBlockCount()
if err != nil {
return fmt.Errorf("GetBlockCount error:%s", err)
}
currentBlockHeight := uint(blockCount - 1)
if startHeight > currentBlockHeight {
PrintWarnMsg("StartBlockHeight:%d larger than CurrentBlockHeight:%d, No blocks to export.", startHeight, currentBlockHeight)
return nil
}
if endHeight == 0 || endHeight > currentBlockHeight {
endHeight = currentBlockHeight
}
speed := ctx.String(utils.GetFlagName(utils.ExportSpeedFlag))
var sleepTime time.Duration
switch speed {
case "h":
sleepTime = 0
case "m":
sleepTime = time.Millisecond * 2
default:
sleepTime = time.Millisecond * 5
}
exportFile = utils.GenExportBlocksFileName(exportFile, uint32(startHeight), uint32(endHeight))
ef, err := os.OpenFile(exportFile, os.O_RDWR|os.O_CREATE, 0664)
if err != nil {
return fmt.Errorf("open file:%s error:%s", exportFile, err)
}
defer ef.Close()
fWriter := bufio.NewWriter(ef)
metadata := utils.NewExportBlockMetadata()
metadata.StartBlockHeight = uint32(startHeight)
metadata.EndBlockHeight = uint32(endHeight)
err = metadata.Serialize(fWriter)
if err != nil {
return fmt.Errorf("write export metadata error:%s", err)
}
//progress bar
uiprogress.Start()
bar := uiprogress.AddBar(int(endHeight - startHeight + 1)).
AppendCompleted().
AppendElapsed().
PrependFunc(func(b *uiprogress.Bar) string {
return fmt.Sprintf("Block(%d/%d)", b.Current()+int(startHeight), int(endHeight))
})
PrintInfoMsg("Start export.")
for i := uint32(startHeight); i <= uint32(endHeight); i++ {
blockData, err := utils.GetBlockData(i)
if err != nil {
return fmt.Errorf("GetBlockData:%d error:%s", i, err)
}
data, err := utils.CompressBlockData(blockData, metadata.CompressType)
if err != nil {
return fmt.Errorf("CompressBlockData height:%d error:%s", i, err)
}
err = serialization.WriteUint32(fWriter, uint32(len(data)))
if err != nil {
return fmt.Errorf("write block data height:%d len:%d error:%s", i, uint32(len(data)), err)
}
_, err = fWriter.Write(data)
if err != nil {
return fmt.Errorf("write block data height:%d error:%s", i, err)
}
if sleepTime > 0 {
time.Sleep(sleepTime)
}
bar.Incr()
}
uiprogress.Stop()
err = fWriter.Flush()
if err != nil {
return fmt.Errorf("export flush file error:%s", err)
}
PrintInfoMsg("Export blocks successfully.")
PrintInfoMsg("StartBlockHeight:%d", startHeight)
PrintInfoMsg("EndBlockHeight:%d", endHeight)
PrintInfoMsg("Export file:%s", exportFile)
return nil
}