lotus/cmd/lotus-storage-miner/main.go

124 lines
3.1 KiB
Go
Raw Normal View History

2019-07-18 23:16:23 +00:00
package main
import (
"context"
2020-07-10 12:18:09 +00:00
"fmt"
2019-07-18 23:16:23 +00:00
logging "github.com/ipfs/go-log/v2"
"github.com/urfave/cli/v2"
"go.opencensus.io/trace"
"golang.org/x/xerrors"
2019-07-18 23:16:23 +00:00
"github.com/filecoin-project/go-address"
"github.com/filecoin-project/lotus/api"
"github.com/filecoin-project/lotus/build"
lcli "github.com/filecoin-project/lotus/cli"
2020-01-08 13:49:34 +00:00
"github.com/filecoin-project/lotus/lib/lotuslog"
2020-02-22 11:36:22 +00:00
"github.com/filecoin-project/lotus/lib/tracing"
"github.com/filecoin-project/lotus/node/repo"
2019-07-18 23:16:23 +00:00
)
var log = logging.Logger("main")
2020-07-08 10:38:59 +00:00
const FlagMinerRepo = "miner-repo"
2020-07-17 13:18:40 +00:00
2020-07-10 12:18:09 +00:00
// TODO remove after deprecation period
const FlagMinerRepoDeprecation = "storagerepo"
2019-07-23 21:50:52 +00:00
2019-07-18 23:16:23 +00:00
func main() {
build.RunningNodeType = build.NodeMiner
2020-01-08 13:49:34 +00:00
lotuslog.SetupLogLevels()
2019-10-29 19:51:44 +00:00
2019-07-18 23:16:23 +00:00
local := []*cli.Command{
initCmd,
runCmd,
stopCmd,
configCmd,
2020-07-21 17:19:47 +00:00
lcli.WithCategory("chain", actorCmd),
lcli.WithCategory("chain", infoCmd),
lcli.WithCategory("market", storageDealsCmd),
lcli.WithCategory("market", retrievalDealsCmd),
lcli.WithCategory("market", dataTransfersCmd),
2020-07-21 17:19:47 +00:00
lcli.WithCategory("storage", sectorsCmd),
lcli.WithCategory("storage", provingCmd),
lcli.WithCategory("storage", storageCmd),
2020-07-21 18:07:49 +00:00
lcli.WithCategory("storage", sealingCmd),
lcli.WithCategory("retrieval", piecesCmd),
2019-07-18 23:16:23 +00:00
}
jaeger := tracing.SetupJaegerTracing("lotus")
defer func() {
if jaeger != nil {
jaeger.Flush()
}
}()
for _, cmd := range local {
cmd := cmd
originBefore := cmd.Before
cmd.Before = func(cctx *cli.Context) error {
trace.UnregisterExporter(jaeger)
jaeger = tracing.SetupJaegerTracing("lotus/" + cmd.Name)
if originBefore != nil {
return originBefore(cctx)
}
return nil
}
}
2019-07-18 23:16:23 +00:00
app := &cli.App{
2020-07-08 10:38:59 +00:00
Name: "lotus-miner",
Usage: "Filecoin decentralized storage network miner",
Version: build.UserVersion(),
EnableBashCompletion: true,
2019-07-18 23:16:23 +00:00
Flags: []cli.Flag{
2020-07-02 16:48:39 +00:00
&cli.StringFlag{
2020-07-03 17:45:21 +00:00
Name: "actor",
Value: "",
Usage: "specify other actor to check state for (read only)",
Aliases: []string{"a"},
2020-07-02 16:48:39 +00:00
},
&cli.BoolFlag{
Name: "color",
},
2019-07-18 23:16:23 +00:00
&cli.StringFlag{
Name: "repo",
EnvVars: []string{"LOTUS_PATH"},
Hidden: true,
Value: "~/.lotus", // TODO: Consider XDG_DATA_HOME
},
&cli.StringFlag{
2020-07-08 10:38:59 +00:00
Name: FlagMinerRepo,
2020-07-10 12:18:09 +00:00
Aliases: []string{FlagMinerRepoDeprecation},
EnvVars: []string{"LOTUS_MINER_PATH", "LOTUS_STORAGE_PATH"},
2020-07-08 10:53:04 +00:00
Value: "~/.lotusminer", // TODO: Consider XDG_DATA_HOME
2020-07-10 12:18:09 +00:00
Usage: fmt.Sprintf("Specify miner repo path. flag(%s) and env(LOTUS_STORAGE_PATH) are DEPRECATION, will REMOVE SOON", FlagMinerRepoDeprecation),
2019-07-18 23:16:23 +00:00
},
},
2020-03-23 12:29:24 +00:00
Commands: append(local, lcli.CommonCommands...),
2019-07-18 23:16:23 +00:00
}
app.Setup()
app.Metadata["repoType"] = repo.StorageMiner
2019-07-18 23:16:23 +00:00
lcli.RunApp(app)
2019-07-18 23:16:23 +00:00
}
2020-07-03 17:49:21 +00:00
func getActorAddress(ctx context.Context, nodeAPI api.StorageMiner, overrideMaddr string) (maddr address.Address, err error) {
if overrideMaddr != "" {
maddr, err = address.NewFromString(overrideMaddr)
if err != nil {
return maddr, err
}
return
}
2020-07-03 17:49:21 +00:00
maddr, err = nodeAPI.ActorAddress(ctx)
if err != nil {
return maddr, xerrors.Errorf("getting actor address: %w", err)
}
return maddr, nil
}