2019-07-27 21:08:10 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"gopkg.in/urfave/cli.v2"
|
|
|
|
|
|
|
|
lcli "github.com/filecoin-project/go-lotus/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
var storeGarbageCmd = &cli.Command{
|
|
|
|
Name: "store-garbage",
|
|
|
|
Usage: "store random data in a sector",
|
|
|
|
Action: func(cctx *cli.Context) error {
|
|
|
|
nodeApi, err := lcli.GetStorageMinerAPI(cctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ctx := lcli.ReqContext(cctx)
|
|
|
|
|
|
|
|
sectorId, err := nodeApi.StoreGarbageData(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Println(sectorId)
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
var sectorsCmd = &cli.Command{
|
|
|
|
Name: "sectors",
|
|
|
|
Usage: "interact with sector store",
|
|
|
|
Subcommands: []*cli.Command{
|
|
|
|
sectorsStatusCmd,
|
|
|
|
sectorsStagedListCmd,
|
|
|
|
sectorsStagedSealCmd,
|
2019-08-26 10:04:57 +00:00
|
|
|
sectorsRefsCmd,
|
2019-07-27 21:08:10 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
var sectorsStatusCmd = &cli.Command{
|
|
|
|
Name: "status",
|
|
|
|
Usage: "Get the seal status of a sector by its ID",
|
|
|
|
Action: func(cctx *cli.Context) error {
|
|
|
|
nodeApi, err := lcli.GetStorageMinerAPI(cctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ctx := lcli.ReqContext(cctx)
|
|
|
|
|
|
|
|
if !cctx.Args().Present() {
|
|
|
|
return fmt.Errorf("must specify sector ID to get status of")
|
|
|
|
}
|
|
|
|
|
|
|
|
id, err := strconv.ParseUint(cctx.Args().First(), 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
status, err := nodeApi.SectorsStatus(ctx, id)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("SectorID:\t%d\n", status.SectorID)
|
|
|
|
fmt.Printf("SealStatusCode:\t%d\n", status.SealStatusCode)
|
|
|
|
fmt.Printf("SealErrorMsg:\t%q\n", status.SealErrorMsg)
|
|
|
|
fmt.Printf("CommD:\t\t%x\n", status.CommD)
|
|
|
|
fmt.Printf("CommR:\t\t%x\n", status.CommR)
|
|
|
|
fmt.Printf("CommR*:\t\t%x\n", status.CommRStar)
|
|
|
|
fmt.Printf("Proof:\t\t%x\n", status.Proof)
|
2019-07-27 21:19:12 +00:00
|
|
|
fmt.Printf("Pieces:\t\t%v\n", status.Pieces)
|
2019-07-27 21:08:10 +00:00
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
var sectorsStagedListCmd = &cli.Command{
|
|
|
|
Name: "list-staged", // TODO: nest this under a 'staged' subcommand? idk
|
|
|
|
Usage: "List staged sectors",
|
|
|
|
Action: func(cctx *cli.Context) error {
|
|
|
|
nodeApi, err := lcli.GetStorageMinerAPI(cctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ctx := lcli.ReqContext(cctx)
|
|
|
|
|
|
|
|
staged, err := nodeApi.SectorsStagedList(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, s := range staged {
|
|
|
|
fmt.Println(s)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
var sectorsStagedSealCmd = &cli.Command{
|
|
|
|
Name: "seal-staged", // TODO: nest this under a 'staged' subcommand? idk
|
|
|
|
Usage: "Seal staged sectors",
|
|
|
|
Action: func(cctx *cli.Context) error {
|
|
|
|
nodeApi, err := lcli.GetStorageMinerAPI(cctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ctx := lcli.ReqContext(cctx)
|
|
|
|
|
|
|
|
return nodeApi.SectorsStagedSeal(ctx)
|
|
|
|
},
|
|
|
|
}
|
2019-08-26 10:04:57 +00:00
|
|
|
|
|
|
|
var sectorsRefsCmd = &cli.Command{
|
|
|
|
Name: "refs",
|
|
|
|
Usage: "List References to sectors",
|
|
|
|
Action: func(cctx *cli.Context) error {
|
|
|
|
nodeApi, err := lcli.GetStorageMinerAPI(cctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ctx := lcli.ReqContext(cctx)
|
|
|
|
|
|
|
|
refs, err := nodeApi.SectorsRefs(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for name, refs := range refs {
|
|
|
|
fmt.Printf("Block %s:\n", name)
|
|
|
|
for _, ref := range refs {
|
|
|
|
fmt.Printf("\t%s+%d %d bytes\n", ref.Piece, ref.Offset, ref.Size)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|