-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7355 from filecoin-project/feat/shed-fr32
lotus shed: fr32 utils
- Loading branch information
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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() | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,6 +61,7 @@ func main() { | |
minerTypesCmd, | ||
minerMultisigsCmd, | ||
splitstoreCmd, | ||
fr32Cmd, | ||
} | ||
|
||
app := &cli.App{ | ||
|