good morning!!!!
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
bor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open
bor
Commits
0f1cdfa5
Commit
0f1cdfa5
authored
Jun 8, 2015
by
Jeffrey Wilcke
Browse files
Options
Downloads
Plain Diff
Merge pull request #1193 from tgerring/hotbackup
Improve export command
parents
81ceac1b
4ab0cedf
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
cmd/geth/chaincmd.go
+26
-2
26 additions, 2 deletions
cmd/geth/chaincmd.go
cmd/utils/cmd.go
+15
-0
15 additions, 0 deletions
cmd/utils/cmd.go
core/chain_manager.go
+14
-3
14 additions, 3 deletions
core/chain_manager.go
with
55 additions
and
5 deletions
cmd/geth/chaincmd.go
+
26
−
2
View file @
0f1cdfa5
...
@@ -26,6 +26,12 @@ var (
...
@@ -26,6 +26,12 @@ var (
Action
:
exportChain
,
Action
:
exportChain
,
Name
:
"export"
,
Name
:
"export"
,
Usage
:
`export blockchain into file`
,
Usage
:
`export blockchain into file`
,
Description
:
`
Requires a first argument of the file to write to.
Optional second and third arguments control the first and
last block to write. In this mode, the file will be appended
if already existing.
`
,
}
}
upgradedbCommand
=
cli
.
Command
{
upgradedbCommand
=
cli
.
Command
{
Action
:
upgradeDB
,
Action
:
upgradeDB
,
...
@@ -63,12 +69,30 @@ func importChain(ctx *cli.Context) {
...
@@ -63,12 +69,30 @@ func importChain(ctx *cli.Context) {
}
}
func
exportChain
(
ctx
*
cli
.
Context
)
{
func
exportChain
(
ctx
*
cli
.
Context
)
{
if
len
(
ctx
.
Args
())
!=
1
{
if
len
(
ctx
.
Args
())
<
1
{
utils
.
Fatalf
(
"This command requires an argument."
)
utils
.
Fatalf
(
"This command requires an argument."
)
}
}
chain
,
_
,
_
,
_
:=
utils
.
MakeChain
(
ctx
)
chain
,
_
,
_
,
_
:=
utils
.
MakeChain
(
ctx
)
start
:=
time
.
Now
()
start
:=
time
.
Now
()
if
err
:=
utils
.
ExportChain
(
chain
,
ctx
.
Args
()
.
First
());
err
!=
nil
{
var
err
error
fp
:=
ctx
.
Args
()
.
First
()
if
len
(
ctx
.
Args
())
<
3
{
err
=
utils
.
ExportChain
(
chain
,
fp
)
}
else
{
// This can be improved to allow for numbers larger than 9223372036854775807
first
,
ferr
:=
strconv
.
ParseInt
(
ctx
.
Args
()
.
Get
(
1
),
10
,
64
)
last
,
lerr
:=
strconv
.
ParseInt
(
ctx
.
Args
()
.
Get
(
2
),
10
,
64
)
if
ferr
!=
nil
||
lerr
!=
nil
{
utils
.
Fatalf
(
"Export error in parsing parameters: block number not an integer
\n
"
)
}
if
first
<
0
||
last
<
0
{
utils
.
Fatalf
(
"Export error: block number must be greater than 0
\n
"
)
}
err
=
utils
.
ExportAppendChain
(
chain
,
fp
,
uint64
(
first
),
uint64
(
last
))
}
if
err
!=
nil
{
utils
.
Fatalf
(
"Export error: %v
\n
"
,
err
)
utils
.
Fatalf
(
"Export error: %v
\n
"
,
err
)
}
}
fmt
.
Printf
(
"Export done in %v"
,
time
.
Since
(
start
))
fmt
.
Printf
(
"Export done in %v"
,
time
.
Since
(
start
))
...
...
This diff is collapsed.
Click to expand it.
cmd/utils/cmd.go
+
15
−
0
View file @
0f1cdfa5
...
@@ -268,3 +268,18 @@ func ExportChain(chainmgr *core.ChainManager, fn string) error {
...
@@ -268,3 +268,18 @@ func ExportChain(chainmgr *core.ChainManager, fn string) error {
glog
.
Infoln
(
"Exported blockchain to"
,
fn
)
glog
.
Infoln
(
"Exported blockchain to"
,
fn
)
return
nil
return
nil
}
}
func
ExportAppendChain
(
chainmgr
*
core
.
ChainManager
,
fn
string
,
first
uint64
,
last
uint64
)
error
{
glog
.
Infoln
(
"Exporting blockchain to"
,
fn
)
// TODO verify mode perms
fh
,
err
:=
os
.
OpenFile
(
fn
,
os
.
O_CREATE
|
os
.
O_APPEND
|
os
.
O_WRONLY
,
os
.
ModePerm
)
if
err
!=
nil
{
return
err
}
defer
fh
.
Close
()
if
err
:=
chainmgr
.
ExportN
(
fh
,
first
,
last
);
err
!=
nil
{
return
err
}
glog
.
Infoln
(
"Exported blockchain to"
,
fn
)
return
nil
}
This diff is collapsed.
Click to expand it.
core/chain_manager.go
+
14
−
3
View file @
0f1cdfa5
...
@@ -347,13 +347,24 @@ func (bc *ChainManager) ResetWithGenesisBlock(gb *types.Block) {
...
@@ -347,13 +347,24 @@ func (bc *ChainManager) ResetWithGenesisBlock(gb *types.Block) {
// Export writes the active chain to the given writer.
// Export writes the active chain to the given writer.
func
(
self
*
ChainManager
)
Export
(
w
io
.
Writer
)
error
{
func
(
self
*
ChainManager
)
Export
(
w
io
.
Writer
)
error
{
if
err
:=
self
.
ExportN
(
w
,
uint64
(
0
),
self
.
currentBlock
.
NumberU64
());
err
!=
nil
{
return
err
}
return
nil
}
// ExportN writes a subset of the active chain to the given writer.
func
(
self
*
ChainManager
)
ExportN
(
w
io
.
Writer
,
first
uint64
,
last
uint64
)
error
{
self
.
mu
.
RLock
()
self
.
mu
.
RLock
()
defer
self
.
mu
.
RUnlock
()
defer
self
.
mu
.
RUnlock
()
glog
.
V
(
logger
.
Info
)
.
Infof
(
"exporting %v blocks...
\n
"
,
self
.
currentBlock
.
Header
()
.
Number
)
last
:=
self
.
currentBlock
.
NumberU64
()
if
first
>
last
{
return
fmt
.
Errorf
(
"export failed: first (%d) is greater than last (%d)"
,
first
,
last
)
}
glog
.
V
(
logger
.
Info
)
.
Infof
(
"exporting %d blocks...
\n
"
,
last
-
first
+
1
)
for
nr
:=
uint64
(
1
)
;
nr
<=
last
;
nr
++
{
for
nr
:=
first
;
nr
<=
last
;
nr
++
{
block
:=
self
.
GetBlockByNumber
(
nr
)
block
:=
self
.
GetBlockByNumber
(
nr
)
if
block
==
nil
{
if
block
==
nil
{
return
fmt
.
Errorf
(
"export failed on #%d: not found"
,
nr
)
return
fmt
.
Errorf
(
"export failed on #%d: not found"
,
nr
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment