lotus/cmd/curio/main.go

190 lines
4.5 KiB
Go
Raw Normal View History

2023-08-23 23:57:34 +00:00
package main
import (
"context"
2023-10-16 15:28:58 +00:00
"fmt"
"os"
"os/signal"
2023-12-12 05:15:41 +00:00
"runtime/pprof"
2023-10-16 15:28:58 +00:00
"syscall"
2023-08-23 23:57:34 +00:00
"github.com/docker/go-units"
2023-08-23 23:57:34 +00:00
"github.com/fatih/color"
logging "github.com/ipfs/go-log/v2"
"github.com/mitchellh/go-homedir"
2023-08-23 23:57:34 +00:00
"github.com/urfave/cli/v2"
"golang.org/x/xerrors"
"github.com/filecoin-project/go-paramfetch"
2023-08-23 23:57:34 +00:00
"github.com/filecoin-project/lotus/build"
lcli "github.com/filecoin-project/lotus/cli"
cliutil "github.com/filecoin-project/lotus/cli/util"
"github.com/filecoin-project/lotus/cmd/curio/deps"
"github.com/filecoin-project/lotus/cmd/curio/guidedsetup"
2023-08-23 23:57:34 +00:00
"github.com/filecoin-project/lotus/lib/lotuslog"
"github.com/filecoin-project/lotus/lib/tracing"
"github.com/filecoin-project/lotus/node/repo"
)
var log = logging.Logger("main")
2024-03-28 09:09:41 +00:00
const (
FlagMinerRepo = "miner-repo"
)
func setupCloseHandler() {
2023-10-16 15:28:58 +00:00
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
go func() {
<-c
fmt.Println("\r- Ctrl+C pressed in Terminal")
2023-12-15 00:13:44 +00:00
_ = pprof.Lookup("goroutine").WriteTo(os.Stdout, 1)
2023-12-12 05:15:41 +00:00
panic(1)
2023-10-16 15:28:58 +00:00
}()
}
2023-08-23 23:57:34 +00:00
func main() {
lotuslog.SetupLogLevels()
local := []*cli.Command{
cliCmd,
2023-08-23 23:57:34 +00:00
runCmd,
stopCmd,
2023-08-28 16:37:36 +00:00
configCmd,
2023-11-21 00:05:59 +00:00
testCmd,
webCmd,
guidedsetup.GuidedsetupCmd,
sealCmd,
marketCmd,
fetchParamCmd,
2023-08-23 23:57:34 +00:00
}
jaeger := tracing.SetupJaegerTracing("curio")
2023-08-23 23:57:34 +00:00
defer func() {
if jaeger != nil {
_ = jaeger.ForceFlush(context.Background())
}
}()
for _, cmd := range local {
cmd := cmd
originBefore := cmd.Before
cmd.Before = func(cctx *cli.Context) error {
if jaeger != nil {
_ = jaeger.Shutdown(cctx.Context)
}
jaeger = tracing.SetupJaegerTracing("curio/" + cmd.Name)
2023-08-23 23:57:34 +00:00
if cctx.IsSet("color") {
color.NoColor = !cctx.Bool("color")
}
if originBefore != nil {
return originBefore(cctx)
}
return nil
}
}
app := &cli.App{
Name: "curio",
2023-08-23 23:57:34 +00:00
Usage: "Filecoin decentralized storage network provider",
Version: build.UserVersion(),
EnableBashCompletion: true,
Before: func(c *cli.Context) error {
setupCloseHandler()
return nil
},
2023-08-23 23:57:34 +00:00
Flags: []cli.Flag{
&cli.BoolFlag{
// examined in the Before above
Name: "color",
Usage: "use color in display output",
DefaultText: "depends on output being a TTY",
},
&cli.StringFlag{
Name: "panic-reports",
EnvVars: []string{"CURIO_PANIC_REPORT_PATH"},
2023-08-23 23:57:34 +00:00
Hidden: true,
Value: "~/.curio", // should follow --repo default
2023-08-23 23:57:34 +00:00
},
&cli.StringFlag{
2023-09-20 03:48:39 +00:00
Name: "db-host",
EnvVars: []string{"CURIO_DB_HOST", "CURIO_HARMONYDB_HOSTS"},
2023-09-20 03:48:39 +00:00
Usage: "Command separated list of hostnames for yugabyte cluster",
Value: "127.0.0.1",
2023-09-20 03:48:39 +00:00
},
&cli.StringFlag{
Name: "db-name",
EnvVars: []string{"CURIO_DB_NAME", "CURIO_HARMONYDB_NAME"},
2023-09-20 03:48:39 +00:00
Value: "yugabyte",
},
&cli.StringFlag{
Name: "db-user",
EnvVars: []string{"CURIO_DB_USER", "CURIO_HARMONYDB_USERNAME"},
2023-09-20 03:48:39 +00:00
Value: "yugabyte",
},
&cli.StringFlag{
Name: "db-password",
EnvVars: []string{"CURIO_DB_PASSWORD", "CURIO_HARMONYDB_PASSWORD"},
2023-09-20 03:48:39 +00:00
Value: "yugabyte",
},
&cli.StringFlag{
Name: "db-port",
EnvVars: []string{"CURIO_DB_PORT", "CURIO_HARMONYDB_PORT"},
2023-09-20 03:48:39 +00:00
Value: "5433",
},
2023-09-27 03:06:00 +00:00
&cli.StringFlag{
Name: deps.FlagRepoPath,
EnvVars: []string{"CURIO_REPO_PATH"},
Value: "~/.curio",
2023-09-27 03:06:00 +00:00
},
2023-08-23 23:57:34 +00:00
cliutil.FlagVeryVerbose,
},
Commands: local,
2023-08-23 23:57:34 +00:00
After: func(c *cli.Context) error {
if r := recover(); r != nil {
p, err := homedir.Expand(c.String(FlagMinerRepo))
if err != nil {
log.Errorw("could not expand repo path for panic report", "error", err)
panic(r)
}
// Generate report in CURIO_PATH and re-raise panic
build.GeneratePanicReport(c.String("panic-reports"), p, c.App.Name)
2023-08-23 23:57:34 +00:00
panic(r)
}
return nil
},
}
app.Setup()
app.Metadata["repoType"] = repo.Curio
2023-08-23 23:57:34 +00:00
lcli.RunApp(app)
}
var fetchParamCmd = &cli.Command{
Name: "fetch-params",
Usage: "Fetch proving parameters",
ArgsUsage: "[sectorSize]",
Action: func(cctx *cli.Context) error {
if cctx.NArg() != 1 {
return xerrors.Errorf("incorrect number of arguments")
}
sectorSizeInt, err := units.RAMInBytes(cctx.Args().First())
if err != nil {
return xerrors.Errorf("error parsing sector size (specify as \"32GiB\", for instance): %w", err)
}
sectorSize := uint64(sectorSizeInt)
err = paramfetch.GetParams(lcli.ReqContext(cctx), build.ParametersJSON(), build.SrsJSON(), sectorSize)
if err != nil {
return xerrors.Errorf("fetching proof parameters: %w", err)
}
return nil
},
}