Skip to content

Commit

Permalink
Merge pull request #8371 from filecoin-project/raulk/shed-compute-sta…
Browse files Browse the repository at this point in the history
…te-range

feat: lotus-shed: add command to compute state over a range of tipsets.
  • Loading branch information
magik6k committed Mar 25, 2022
2 parents b5ce847 + 977e302 commit d49297f
Showing 1 changed file with 60 additions and 1 deletion.
61 changes: 60 additions & 1 deletion cmd/lotus-shed/chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,17 @@ package main
import (
"fmt"

lcli "github.com/filecoin-project/lotus/cli"
"github.com/urfave/cli/v2"

lcli "github.com/filecoin-project/lotus/cli"
)

var chainCmd = &cli.Command{
Name: "chain",
Usage: "chain-related utilities",
Subcommands: []*cli.Command{
chainNullTsCmd,
computeStateRangeCmd,
},
}

Expand Down Expand Up @@ -47,3 +49,60 @@ var chainNullTsCmd = &cli.Command{
}
},
}

var computeStateRangeCmd = &cli.Command{
Name: "compute-state-range",
Usage: "forces the computation of a range of tipsets",
ArgsUsage: "[START_TIPSET_REF] [END_TIPSET_REF]",
Action: func(cctx *cli.Context) error {
if cctx.NArg() != 2 {
return fmt.Errorf("expected two arguments: a start and an end tipset")
}

api, closer, err := lcli.GetFullNodeAPI(cctx)
if err != nil {
return err
}

defer closer()
ctx := lcli.ReqContext(cctx)

startTs, err := lcli.ParseTipSetRef(ctx, api, cctx.Args().First())
if err != nil {
return err
}

endTs, err := lcli.ParseTipSetRef(ctx, api, cctx.Args().Get(1))
if err != nil {
return err
}

fmt.Printf("computing tipset at height %d (start)\n", startTs.Height())
if _, err := api.StateCompute(ctx, startTs.Height(), nil, startTs.Key()); err != nil {
return err
}

for height := startTs.Height() + 1; height < endTs.Height(); height++ {
fmt.Printf("computing tipset at height %d\n", height)

// The fact that the tipset lookup method takes a tipset is rather annoying.
// This is because we walk back from the supplied tipset (which could be the HEAD)
// to locate the desired one.
ts, err := api.ChainGetTipSetByHeight(ctx, height, endTs.Key())
if err != nil {
return err
}

if _, err := api.StateCompute(ctx, height, nil, ts.Key()); err != nil {
return err
}
}

fmt.Printf("computing tipset at height %d (end)\n", endTs.Height())
if _, err := api.StateCompute(ctx, endTs.Height(), nil, endTs.Key()); err != nil {
return err
}

return nil
},
}

0 comments on commit d49297f

Please sign in to comment.