minio/commands.go

127 lines
2.7 KiB
Go
Raw Normal View History

2015-06-06 03:29:24 +02:00
package main
import (
"os"
"os/signal"
2015-06-06 03:29:24 +02:00
"os/user"
"syscall"
2015-06-06 03:29:24 +02:00
"github.com/minio/cli"
"github.com/minio/minio/pkg/controller"
"github.com/minio/minio/pkg/server"
"github.com/minio/minio/pkg/server/api"
2015-06-06 03:29:24 +02:00
)
var commands = []cli.Command{
2015-06-30 21:18:31 +02:00
serverCmd,
2015-07-05 19:13:24 +02:00
controllerCmd,
2015-06-06 03:29:24 +02:00
}
2015-06-30 21:18:31 +02:00
var serverCmd = cli.Command{
Name: "server",
Description: "Server mode",
Action: runServer,
CustomHelpTemplate: `NAME:
minio {{.Name}} - {{.Description}}
USAGE:
minio {{.Name}}
EXAMPLES:
1. Start in server mode
2015-07-05 19:13:24 +02:00
$ minio {{.Name}}
2015-06-06 03:29:24 +02:00
2015-06-30 21:18:31 +02:00
`,
2015-06-06 03:29:24 +02:00
}
2015-07-05 19:13:24 +02:00
var controllerCmd = cli.Command{
Name: "controller",
2015-06-30 21:18:31 +02:00
Description: "Control mode",
Action: runController,
2015-06-06 03:29:24 +02:00
CustomHelpTemplate: `NAME:
2015-06-30 21:18:31 +02:00
minio {{.Name}} - {{.Description}}
2015-06-06 03:29:24 +02:00
USAGE:
2015-06-30 21:18:31 +02:00
minio {{.Name}}
2015-06-06 03:29:24 +02:00
EXAMPLES:
1. Get disks from controller
$ minio {{.Name}} disks http://localhost:9001/rpc
2. Get memstats from controller
$ minio {{.Name}} mem http://localhost:9001/rpc
2015-06-06 03:29:24 +02:00
`,
}
2015-07-05 19:13:24 +02:00
func getServerConfig(c *cli.Context) api.Config {
certFile := c.GlobalString("cert")
keyFile := c.GlobalString("key")
if (certFile != "" && keyFile == "") || (certFile == "" && keyFile != "") {
Fatalln("Both certificate and key are required to enable https.")
}
tls := (certFile != "" && keyFile != "")
return api.Config{
Address: c.GlobalString("address"),
TLS: tls,
CertFile: certFile,
KeyFile: keyFile,
RateLimit: c.GlobalInt("ratelimit"),
}
}
func trapServer(doneCh chan struct{}) {
// Go signal notification works by sending `os.Signal`
// values on a channel.
sigs := make(chan os.Signal, 1)
// `signal.Notify` registers the given channel to
// receive notifications of the specified signals.
signal.Notify(sigs, syscall.SIGHUP, syscall.SIGUSR2)
// This executes a blocking receive for signals.
// When it gets one it'll then notify the program
// that it can finish.
<-sigs
doneCh <- struct{}{}
}
2015-06-30 21:18:31 +02:00
func runServer(c *cli.Context) {
_, err := user.Current()
2015-06-06 03:29:24 +02:00
if err != nil {
Fatalf("Unable to determine current user. Reason: %s\n", err)
}
doneCh := make(chan struct{})
go trapServer(doneCh)
2015-07-05 19:13:24 +02:00
apiServerConfig := getServerConfig(c)
err = server.StartServices(apiServerConfig, doneCh)
if err != nil {
Fatalln(err)
}
2015-06-30 21:18:31 +02:00
}
func runController(c *cli.Context) {
_, err := user.Current()
if err != nil {
Fatalf("Unable to determine current user. Reason: %s\n", err)
}
if len(c.Args()) != 2 || c.Args().First() == "help" {
cli.ShowCommandHelpAndExit(c, "controller", 1) // last argument is exit code
}
switch c.Args().First() {
case "disks":
disks, err := controller.GetDisks(c.Args().Tail().First())
if err != nil {
Fatalln(err)
}
Println(disks)
case "mem":
memstats, err := controller.GetMemStats(c.Args().Tail().First())
if err != nil {
Fatalln(err)
}
Println(string(memstats))
}
2015-06-06 03:29:24 +02:00
}