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
c9b6d268
Commit
c9b6d268
authored
Mar 10, 2015
by
Jeffrey Wilcke
Browse files
Options
Downloads
Plain Diff
Merge pull request #438 from ethersphere/poc9/cli
Poc9/cli (exportchain)
parents
08d396fd
41a89e18
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
cmd/ethereum/main.go
+32
-11
32 additions, 11 deletions
cmd/ethereum/main.go
cmd/utils/cmd.go
+17
-24
17 additions, 24 deletions
cmd/utils/cmd.go
with
49 additions
and
35 deletions
cmd/ethereum/main.go
+
32
−
11
View file @
c9b6d268
...
...
@@ -87,6 +87,11 @@ runtime will execute the file and exit.
Name
:
"import"
,
Usage
:
`import a blockchain file`
,
},
{
Action
:
exportchain
,
Name
:
"export"
,
Usage
:
`export blockchain into file`
,
},
}
app
.
Author
=
""
app
.
Email
=
""
...
...
@@ -171,25 +176,39 @@ func importchain(ctx *cli.Context) {
if
len
(
ctx
.
Args
())
!=
1
{
utils
.
Fatalf
(
"This command requires an argument."
)
}
chain
,
_
,
_
:=
utils
.
GetChain
(
ctx
)
chain
mgr
,
_
,
_
:=
utils
.
GetChain
(
ctx
)
start
:=
time
.
Now
()
err
:=
utils
.
ImportChain
(
chain
,
ctx
.
Args
()
.
First
())
err
:=
utils
.
ImportChain
(
chain
mgr
,
ctx
.
Args
()
.
First
())
if
err
!=
nil
{
utils
.
Fatalf
(
"Import error: %v
\n
"
,
err
)
}
fmt
.
Printf
(
"Import done in"
,
time
.
Since
(
start
))
fmt
.
Printf
(
"Import done in %v"
,
time
.
Since
(
start
))
return
}
func
exportchain
(
ctx
*
cli
.
Context
)
{
if
len
(
ctx
.
Args
())
!=
1
{
utils
.
Fatalf
(
"This command requires an argument."
)
}
chainmgr
,
_
,
_
:=
utils
.
GetChain
(
ctx
)
start
:=
time
.
Now
()
err
:=
utils
.
ExportChain
(
chainmgr
,
ctx
.
Args
()
.
First
())
if
err
!=
nil
{
utils
.
Fatalf
(
"Export error: %v
\n
"
,
err
)
}
fmt
.
Printf
(
"Export done in %v"
,
time
.
Since
(
start
))
return
}
func
dump
(
ctx
*
cli
.
Context
)
{
chain
,
_
,
stateDb
:=
utils
.
GetChain
(
ctx
)
chain
mgr
,
_
,
stateDb
:=
utils
.
GetChain
(
ctx
)
for
_
,
arg
:=
range
ctx
.
Args
()
{
var
block
*
types
.
Block
if
hashish
(
arg
)
{
block
=
chain
.
GetBlock
(
ethutil
.
Hex2Bytes
(
arg
))
block
=
chain
mgr
.
GetBlock
(
ethutil
.
Hex2Bytes
(
arg
))
}
else
{
num
,
_
:=
strconv
.
Atoi
(
arg
)
block
=
chain
.
GetBlockByNumber
(
uint64
(
num
))
block
=
chain
mgr
.
GetBlockByNumber
(
uint64
(
num
))
}
if
block
==
nil
{
fmt
.
Println
(
"{}"
)
...
...
@@ -209,11 +228,13 @@ func hashish(x string) bool {
}
func
version
(
c
*
cli
.
Context
)
{
fmt
.
Printf
(
`%v %v
PV=%d
GOOS=%s
GO=%s
fmt
.
Printf
(
`%v
Version: %v
Protocol Version: %d
Network Id: %d
GO: %s
OS: %s
GOPATH=%s
GOROOT=%s
`
,
ClientIdentifier
,
Version
,
eth
.
ProtocolVersion
,
runtime
.
GOOS
,
runtime
.
Version
(),
os
.
Getenv
(
"GOPATH"
),
runtime
.
GOROOT
())
`
,
ClientIdentifier
,
Version
,
eth
.
ProtocolVersion
,
eth
.
NetworkId
,
runtime
.
Version
(),
runtime
.
GOOS
,
os
.
Getenv
(
"GOPATH"
),
runtime
.
GOROOT
())
}
This diff is collapsed.
Click to expand it.
cmd/utils/cmd.go
+
17
−
24
View file @
c9b6d268
...
...
@@ -35,7 +35,6 @@ import (
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/rlp"
rpchttp
"github.com/ethereum/go-ethereum/rpc/http"
"github.com/ethereum/go-ethereum/state"
"github.com/ethereum/go-ethereum/xeth"
)
...
...
@@ -188,27 +187,8 @@ func FormatTransactionData(data string) []byte {
return
d
}
// Replay block
func
BlockDo
(
ethereum
*
eth
.
Ethereum
,
hash
[]
byte
)
error
{
block
:=
ethereum
.
ChainManager
()
.
GetBlock
(
hash
)
if
block
==
nil
{
return
fmt
.
Errorf
(
"unknown block %x"
,
hash
)
}
parent
:=
ethereum
.
ChainManager
()
.
GetBlock
(
block
.
ParentHash
())
statedb
:=
state
.
New
(
parent
.
Root
(),
ethereum
.
StateDb
())
_
,
err
:=
ethereum
.
BlockProcessor
()
.
TransitionState
(
statedb
,
parent
,
block
,
true
)
if
err
!=
nil
{
return
err
}
return
nil
}
func
ImportChain
(
chain
*
core
.
ChainManager
,
fn
string
)
error
{
fmt
.
Printf
(
"importing chain '%s'
\n
"
,
fn
)
func
ImportChain
(
chainmgr
*
core
.
ChainManager
,
fn
string
)
error
{
fmt
.
Printf
(
"importing blockchain '%s'
\n
"
,
fn
)
fh
,
err
:=
os
.
OpenFile
(
fn
,
os
.
O_RDONLY
,
os
.
ModePerm
)
if
err
!=
nil
{
return
err
...
...
@@ -220,11 +200,24 @@ func ImportChain(chain *core.ChainManager, fn string) error {
return
err
}
chain
.
Reset
()
if
err
:=
chain
.
InsertChain
(
blocks
);
err
!=
nil
{
chain
mgr
.
Reset
()
if
err
:=
chain
mgr
.
InsertChain
(
blocks
);
err
!=
nil
{
return
err
}
fmt
.
Printf
(
"imported %d blocks
\n
"
,
len
(
blocks
))
return
nil
}
func
ExportChain
(
chainmgr
*
core
.
ChainManager
,
fn
string
)
error
{
fmt
.
Printf
(
"exporting blockchain '%s'
\n
"
,
fn
)
data
:=
chainmgr
.
Export
()
if
err
:=
ethutil
.
WriteFile
(
fn
,
data
);
err
!=
nil
{
return
err
}
fmt
.
Printf
(
"exported blockchain
\n
"
)
return
nil
}
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