2019-09-30 21:06:47 +00:00
|
|
|
package cli
|
|
|
|
|
|
|
|
import (
|
2019-12-04 00:25:18 +00:00
|
|
|
"context"
|
2019-09-30 21:06:47 +00:00
|
|
|
"fmt"
|
2019-10-13 07:33:25 +00:00
|
|
|
"time"
|
2019-09-30 21:06:47 +00:00
|
|
|
|
2019-10-13 07:33:25 +00:00
|
|
|
cid "github.com/ipfs/go-cid"
|
2019-09-30 21:06:47 +00:00
|
|
|
"gopkg.in/urfave/cli.v2"
|
|
|
|
|
2019-10-18 04:47:41 +00:00
|
|
|
"github.com/filecoin-project/lotus/api"
|
2019-11-16 22:34:05 +00:00
|
|
|
"github.com/filecoin-project/lotus/build"
|
2019-10-18 04:47:41 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain"
|
2019-09-30 21:06:47 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var syncCmd = &cli.Command{
|
|
|
|
Name: "sync",
|
|
|
|
Usage: "Inspect or interact with the chain syncer",
|
|
|
|
Subcommands: []*cli.Command{
|
|
|
|
syncStatusCmd,
|
2019-10-13 07:33:25 +00:00
|
|
|
syncWaitCmd,
|
2019-09-30 21:06:47 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
var syncStatusCmd = &cli.Command{
|
|
|
|
Name: "status",
|
|
|
|
Usage: "check sync status",
|
|
|
|
Action: func(cctx *cli.Context) error {
|
2019-10-03 18:12:30 +00:00
|
|
|
api, closer, err := GetFullNodeAPI(cctx)
|
2019-09-30 21:06:47 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-10-03 18:12:30 +00:00
|
|
|
defer closer()
|
2019-09-30 21:06:47 +00:00
|
|
|
ctx := ReqContext(cctx)
|
|
|
|
|
2019-11-16 01:05:16 +00:00
|
|
|
state, err := api.SyncState(ctx)
|
2019-09-30 21:06:47 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Println("sync status:")
|
2019-11-16 01:05:16 +00:00
|
|
|
for i, ss := range state.ActiveSyncs {
|
|
|
|
fmt.Printf("worker %d:\n", i)
|
|
|
|
var base, target []cid.Cid
|
2019-11-20 19:44:38 +00:00
|
|
|
var heightDiff int64
|
2019-11-16 01:05:16 +00:00
|
|
|
if ss.Base != nil {
|
|
|
|
base = ss.Base.Cids()
|
2019-11-20 19:44:38 +00:00
|
|
|
heightDiff = int64(ss.Base.Height())
|
2019-11-16 01:05:16 +00:00
|
|
|
}
|
|
|
|
if ss.Target != nil {
|
|
|
|
target = ss.Target.Cids()
|
2019-11-20 19:44:38 +00:00
|
|
|
heightDiff = int64(ss.Target.Height()) - heightDiff
|
|
|
|
} else {
|
|
|
|
heightDiff = 0
|
2019-11-16 01:05:16 +00:00
|
|
|
}
|
|
|
|
fmt.Printf("\tBase:\t%s\n", base)
|
|
|
|
fmt.Printf("\tTarget:\t%s\n", target)
|
2019-11-20 19:44:38 +00:00
|
|
|
fmt.Printf("\tHeight diff:\t%d\n", heightDiff)
|
2019-11-16 01:05:16 +00:00
|
|
|
fmt.Printf("\tStage: %s\n", chain.SyncStageString(ss.Stage))
|
|
|
|
fmt.Printf("\tHeight: %d\n", ss.Height)
|
|
|
|
}
|
2019-09-30 21:06:47 +00:00
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
2019-10-13 07:33:25 +00:00
|
|
|
|
|
|
|
var syncWaitCmd = &cli.Command{
|
|
|
|
Name: "wait",
|
|
|
|
Usage: "Wait for sync to be complete",
|
|
|
|
Action: func(cctx *cli.Context) error {
|
|
|
|
napi, closer, err := GetFullNodeAPI(cctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer closer()
|
|
|
|
ctx := ReqContext(cctx)
|
|
|
|
|
2019-12-04 00:25:18 +00:00
|
|
|
return SyncWait(ctx, napi)
|
|
|
|
},
|
|
|
|
}
|
2019-10-13 07:33:25 +00:00
|
|
|
|
2019-12-04 00:25:18 +00:00
|
|
|
func SyncWait(ctx context.Context, napi api.FullNode) error {
|
|
|
|
for {
|
|
|
|
state, err := napi.SyncState(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
head, err := napi.ChainHead(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-11-16 22:34:05 +00:00
|
|
|
|
2019-12-04 00:25:18 +00:00
|
|
|
working := 0
|
|
|
|
for i, ss := range state.ActiveSyncs {
|
|
|
|
switch ss.Stage {
|
|
|
|
case api.StageSyncComplete:
|
|
|
|
default:
|
|
|
|
working = i
|
|
|
|
case api.StageIdle:
|
|
|
|
// not complete, not actively working
|
2019-11-16 01:05:16 +00:00
|
|
|
}
|
2019-12-04 00:25:18 +00:00
|
|
|
}
|
2019-11-16 01:05:16 +00:00
|
|
|
|
2019-12-04 00:25:18 +00:00
|
|
|
ss := state.ActiveSyncs[working]
|
2019-11-16 01:05:16 +00:00
|
|
|
|
2019-12-04 00:25:18 +00:00
|
|
|
var target []cid.Cid
|
|
|
|
if ss.Target != nil {
|
|
|
|
target = ss.Target.Cids()
|
|
|
|
}
|
2019-10-13 07:33:25 +00:00
|
|
|
|
2019-12-04 00:25:18 +00:00
|
|
|
fmt.Printf("\r\x1b[2KWorker %d: Target: %s\tState: %s\tHeight: %d", working, target, chain.SyncStageString(ss.Stage), ss.Height)
|
2019-11-16 22:34:05 +00:00
|
|
|
|
2019-12-04 00:25:18 +00:00
|
|
|
if time.Now().Unix()-int64(head.MinTimestamp()) < build.BlockDelay {
|
|
|
|
fmt.Println("\nDone!")
|
|
|
|
return nil
|
|
|
|
}
|
2019-10-13 07:33:25 +00:00
|
|
|
|
2019-12-04 00:25:18 +00:00
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
fmt.Println("\nExit by user")
|
|
|
|
return nil
|
|
|
|
case <-time.After(1 * time.Second):
|
2019-10-13 07:33:25 +00:00
|
|
|
}
|
2019-12-04 00:25:18 +00:00
|
|
|
}
|
2019-10-13 07:33:25 +00:00
|
|
|
}
|