minio/main.go

144 lines
3.4 KiB
Go
Raw Normal View History

2015-02-08 11:54:21 +01:00
/*
* Minimalist Object Storage, (C) 2015 Minio, Inc.
2015-02-08 11:54:21 +01:00
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package main
import (
2015-04-02 21:48:22 +02:00
"fmt"
2015-01-29 04:52:30 +01:00
"os"
2015-04-02 21:48:22 +02:00
"os/user"
"runtime"
"strconv"
2015-03-25 19:49:04 +01:00
"time"
2015-01-29 01:07:53 +01:00
"github.com/dustin/go-humanize"
2015-05-12 01:23:10 +02:00
"github.com/minio/cli"
"github.com/minio/minio/pkg/iodine"
)
2015-04-02 21:48:22 +02:00
var globalDebugFlag = false
var flags = []cli.Flag{
cli.StringFlag{
Name: "address",
Value: ":9000",
Usage: "ADDRESS:PORT for object storage access",
},
2015-06-09 05:10:59 +02:00
cli.StringFlag{
Name: "address-mgmt",
Hide: true,
Value: ":9001",
Usage: "ADDRESS:PORT for management console access",
},
2015-06-06 23:22:51 +02:00
cli.IntFlag{
Name: "ratelimit",
2015-06-06 23:22:51 +02:00
Value: 16,
Usage: "Limit for total concurrent requests: [DEFAULT: 16]",
2015-06-06 23:22:51 +02:00
},
cli.StringFlag{
2015-04-28 05:20:03 +02:00
Name: "cert",
2015-06-09 05:10:59 +02:00
Usage: "Provide your domain certificate",
},
cli.StringFlag{
2015-04-28 05:20:03 +02:00
Name: "key",
2015-06-09 05:10:59 +02:00
Usage: "Provide your domain private key",
},
2015-04-02 21:48:22 +02:00
cli.BoolFlag{
Name: "debug",
Usage: "print debug information",
},
}
func init() {
// Check for the environment early on and gracefuly report.
_, err := user.Current()
if err != nil {
2015-04-29 06:12:18 +02:00
Fatalf("Unable to obtain user's home directory. \nError: %s\n", err)
2015-04-02 21:48:22 +02:00
}
}
2015-04-02 21:48:22 +02:00
// Tries to get os/arch/platform specific information
// Returns a map of current os/arch/platform/memstats
func getSystemData() map[string]string {
host, err := os.Hostname()
if err != nil {
host = ""
}
memstats := &runtime.MemStats{}
runtime.ReadMemStats(memstats)
mem := fmt.Sprintf("Used: %s | Allocated: %s | Used-Heap: %s | Allocated-Heap: %s",
humanize.Bytes(memstats.Alloc),
humanize.Bytes(memstats.TotalAlloc),
humanize.Bytes(memstats.HeapAlloc),
humanize.Bytes(memstats.HeapSys))
2015-04-02 21:48:22 +02:00
platform := fmt.Sprintf("Host: %s | OS: %s | Arch: %s",
host,
runtime.GOOS,
runtime.GOARCH)
goruntime := fmt.Sprintf("Version: %s | CPUs: %s", runtime.Version(), strconv.Itoa(runtime.NumCPU()))
return map[string]string{
"PLATFORM": platform,
"RUNTIME": goruntime,
"MEM": mem,
}
}
func main() {
2015-03-25 19:44:43 +01:00
// set up iodine
iodine.SetGlobalState("minio.version", Version)
2015-03-25 19:44:43 +01:00
iodine.SetGlobalState("minio.starttime", time.Now().Format(time.RFC3339))
// set up go max processes
runtime.GOMAXPROCS(runtime.NumCPU())
2015-03-25 19:44:43 +01:00
// set up app
2015-01-29 04:52:30 +01:00
app := cli.NewApp()
app.Name = "minio"
app.Version = getVersion()
app.Compiled = getVersion()
app.Author = "Minio.io"
app.Usage = "Minimalist Object Storage"
app.Flags = flags
2015-04-23 06:31:29 +02:00
app.Commands = commands
2015-04-02 21:48:22 +02:00
app.Before = func(c *cli.Context) error {
2015-04-29 06:12:18 +02:00
if c.GlobalBool("debug") {
2015-04-02 21:48:22 +02:00
app.ExtraInfo = getSystemData()
}
return nil
}
app.CustomAppHelpTemplate = `NAME:
{{.Name}} - {{.Usage}}
USAGE:
{{.Name}} {{if .Flags}}[global flags] {{end}}command{{if .Flags}} [command flags]{{end}} [arguments...]
COMMANDS:
{{range .Commands}}{{join .Names ", "}}{{ "\t" }}{{.Usage}}
{{end}}{{if .Flags}}
GLOBAL FLAGS:
{{range .Flags}}{{.}}
{{end}}{{end}}
VERSION:
{{if .Compiled}}
{{.Compiled}}{{end}}
{{range $key, $value := .ExtraInfo}}
{{$key}}:
{{$value}}
{{end}}
`
app.RunAndExitOnError()
}