lotus shed: fr32 utils

This commit is contained in:
Łukasz Magiera 2021-09-20 13:26:05 +02:00
parent dbcb662f9c
commit 83c8e981b4
2 changed files with 56 additions and 0 deletions

55
cmd/lotus-shed/fr32.go Normal file
View File

@ -0,0 +1,55 @@
package main
import (
"io"
"os"
"github.com/urfave/cli/v2"
"golang.org/x/xerrors"
"github.com/filecoin-project/go-state-types/abi"
"github.com/filecoin-project/lotus/extern/sector-storage/fr32"
)
var fr32Cmd = &cli.Command{
Name: "fr32",
Description: "fr32 encode/decode",
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "decode",
Aliases: []string{"d"},
},
},
Action: func(context *cli.Context) error {
if context.Bool("decode") {
st, err := os.Stdin.Stat()
if err != nil {
return err
}
pps := abi.PaddedPieceSize(st.Size())
if pps == 0 {
return xerrors.Errorf("zero size input")
}
if err := pps.Validate(); err != nil {
return err
}
r, err := fr32.NewUnpadReader(os.Stdin, pps)
if err != nil {
return err
}
if _, err := io.Copy(os.Stdout, r); err != nil {
return err
}
return nil
}
w := fr32.NewPadWriter(os.Stdout)
if _, err := io.Copy(w, os.Stdin); err != nil {
return err
}
return w.Close()
},
}

View File

@ -61,6 +61,7 @@ func main() {
minerTypesCmd,
minerMultisigsCmd,
splitstoreCmd,
fr32Cmd,
}
app := &cli.App{