Merge pull request #3434 from filecoin-project/feat/shed-import-object-cmd

add a command to import an ipld object into the chainstore
This commit is contained in:
Łukasz Magiera 2020-09-29 15:02:31 +02:00 committed by GitHub
commit 867ca2f25d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 58 additions and 0 deletions

View File

@ -1,10 +1,13 @@
package main package main
import ( import (
"encoding/hex"
"fmt" "fmt"
"io" "io"
"os" "os"
block "github.com/ipfs/go-block-format"
"github.com/ipfs/go-cid"
"github.com/ipld/go-car" "github.com/ipld/go-car"
"github.com/urfave/cli/v2" "github.com/urfave/cli/v2"
"golang.org/x/xerrors" "golang.org/x/xerrors"
@ -81,3 +84,57 @@ var importCarCmd = &cli.Command{
} }
}, },
} }
var importObjectCmd = &cli.Command{
Name: "import-obj",
Usage: "import a raw ipld object into your datastore",
Action: func(cctx *cli.Context) error {
r, err := repo.NewFS(cctx.String("repo"))
if err != nil {
return xerrors.Errorf("opening fs repo: %w", err)
}
exists, err := r.Exists()
if err != nil {
return err
}
if !exists {
return xerrors.Errorf("lotus repo doesn't exist")
}
lr, err := r.Lock(repo.FullNode)
if err != nil {
return err
}
defer lr.Close() //nolint:errcheck
ds, err := lr.Datastore("/chain")
if err != nil {
return err
}
bs := blockstore.NewBlockstore(ds)
c, err := cid.Decode(cctx.Args().Get(0))
if err != nil {
return err
}
data, err := hex.DecodeString(cctx.Args().Get(1))
if err != nil {
return err
}
blk, err := block.NewBlockWithCid(data, c)
if err != nil {
return err
}
if err := bs.Put(blk); err != nil {
return err
}
return nil
},
}

View File

@ -25,6 +25,7 @@ func main() {
staterootCmd, staterootCmd,
auditsCmd, auditsCmd,
importCarCmd, importCarCmd,
importObjectCmd,
commpToCidCmd, commpToCidCmd,
fetchParamCmd, fetchParamCmd,
proofsCmd, proofsCmd,