minio/main.go

191 lines
5.3 KiB
Go
Raw Normal View History

2015-02-08 11:54:21 +01:00
/*
* Minio Cloud 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
"runtime"
2016-02-11 01:40:09 +01:00
"sort"
2015-04-02 21:48:22 +02:00
"strconv"
2015-01-29 01:07:53 +01:00
"github.com/dustin/go-humanize"
"github.com/minio/cli"
"github.com/minio/mc/pkg/console"
2016-02-11 01:40:09 +01:00
"github.com/minio/minio/pkg/probe"
)
// Help template for minio.
var minioHelpTemplate = `NAME:
{{.Name}} - {{.Usage}}
DESCRIPTION:
{{.Description}}
USAGE:
minio {{if .Flags}}[flags] {{end}}command{{if .Flags}}{{end}} [arguments...]
COMMANDS:
{{range .Commands}}{{join .Names ", "}}{{ "\t" }}{{.Usage}}
{{end}}{{if .Flags}}
FLAGS:
{{range .Flags}}{{.}}
{{end}}{{end}}
VERSION:
` + minioVersion +
`{{ "\n"}}{{range $key, $value := ExtraInfo}}
{{$key}}:
{{$value}}
{{end}}`
2016-02-15 13:26:56 +01:00
// init - check the environment before main starts
2015-04-02 21:48:22 +02:00
func init() {
// Check if minio was compiled using a supported version of Golang.
2016-02-15 13:26:56 +01:00
checkGoVersion()
2016-02-15 13:26:56 +01:00
// It is an unsafe practice to run network services as
// root. Containers are an exception.
if !isContainerized() && os.Geteuid() == 0 {
console.Fatalln("Please run minio as a non-root user.")
}
2015-09-19 08:27:04 +02:00
}
func migrate() {
// Migrate config file
migrateConfig()
}
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 findClosestCommands(command string) []string {
var closestCommands []string
for _, value := range commandsTree.PrefixMatch(command) {
closestCommands = append(closestCommands, value.(string))
}
2016-02-11 01:40:09 +01:00
sort.Strings(closestCommands)
// Suggest other close commands - allow missed, wrongly added and
// even transposed characters
for _, value := range commandsTree.walk(commandsTree.root) {
if sort.SearchStrings(closestCommands, value.(string)) < len(closestCommands) {
continue
}
// 2 is arbitrary and represents the max
// allowed number of typed errors
if DamerauLevenshteinDistance(command, value.(string)) < 2 {
closestCommands = append(closestCommands, value.(string))
}
}
return closestCommands
}
func registerApp() *cli.App {
// register all commands
registerCommand(serverCmd)
registerCommand(configCmd)
registerCommand(versionCmd)
2015-10-18 00:03:46 +02:00
registerCommand(updateCmd)
// register all flags
registerFlag(configFolderFlag)
registerFlag(addressFlag)
2015-10-19 21:15:19 +02:00
registerFlag(accessLogFlag)
registerFlag(certFlag)
registerFlag(keyFlag)
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.Author = "Minio.io"
app.Usage = "Cloud Storage Server for Micro Services."
2015-10-27 19:38:28 +01:00
app.Description = `Micro services environment provisions one Minio server per application instance. Scalability is achieved through large number of smaller personalized instances. This version of the Minio binary is built using Filesystem storage backend for magnetic and solid state disks.`
app.Flags = flags
2015-04-23 06:31:29 +02:00
app.Commands = commands
app.CustomAppHelpTemplate = minioHelpTemplate
2015-08-04 03:01:18 +02:00
app.CommandNotFound = func(ctx *cli.Context, command string) {
msg := fmt.Sprintf("%s is not a minio sub-command. See minio --help.", command)
closestCommands := findClosestCommands(command)
if len(closestCommands) > 0 {
msg += fmt.Sprintf("\n\nDid you mean one of these?\n")
for _, cmd := range closestCommands {
msg += fmt.Sprintf(" %s\n", cmd)
}
}
console.Fatalln(msg)
2015-08-04 03:01:18 +02:00
}
return app
}
func checkMainSyntax(c *cli.Context) {
configPath, err := getConfigPath()
if err != nil {
console.Fatalf("Unable to obtain user's home directory. \nError: %s\n", err)
}
if configPath == "" {
console.Fatalln("Config folder cannot be empty, please specify --config-folder <foldername>.")
}
}
func main() {
probe.Init() // Set project's root source path.
probe.SetAppInfo("Release-Tag", minioReleaseTag)
probe.SetAppInfo("Commit-ID", minioShortCommitID)
2015-10-24 04:59:08 +02:00
app := registerApp()
2015-09-09 21:46:20 +02:00
app.Before = func(c *cli.Context) error {
// Sets new config folder.
setGlobalConfigPath(c.GlobalString("config-folder"))
// Valid input arguments to main.
checkMainSyntax(c)
// Migrate any old version of config / state files to newer format.
migrate()
2015-09-09 21:46:20 +02:00
return nil
}
app.ExtraInfo = func() map[string]string {
2015-09-09 21:46:20 +02:00
return getSystemData()
}
app.RunAndExitOnError()
}