mirror of
https://github.com/minio/minio.git
synced 2024-12-24 22:25:54 -05:00
Update cli to minio-io/cli
This commit is contained in:
parent
7a117bb6c5
commit
92136d49fd
4
Godeps/Godeps.json
generated
4
Godeps/Godeps.json
generated
@ -23,8 +23,8 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "github.com/minio-io/cli",
|
"ImportPath": "github.com/minio-io/cli",
|
||||||
"Comment": "1.2.0-99-g1ee5c11",
|
"Comment": "1.2.0-100-g6d6f8d3",
|
||||||
"Rev": "1ee5c115af7856a16f133e2f2d3d9f91895c2ddb"
|
"Rev": "6d6f8d3cc162bfcb60379888e2f37d73ff6a6253"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "github.com/minio-io/erasure",
|
"ImportPath": "github.com/minio-io/erasure",
|
||||||
|
7
Godeps/_workspace/src/github.com/minio-io/cli/app.go
generated
vendored
7
Godeps/_workspace/src/github.com/minio-io/cli/app.go
generated
vendored
@ -3,12 +3,13 @@ package cli
|
|||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"io/ioutil"
|
||||||
"text/tabwriter"
|
"text/tabwriter"
|
||||||
"text/template"
|
"text/template"
|
||||||
"time"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// App is the main structure of a cli application. It is recomended that
|
// App is the main structure of a cli application. It is recomended that
|
||||||
@ -44,6 +45,8 @@ type App struct {
|
|||||||
CommandNotFound func(context *Context, command string)
|
CommandNotFound func(context *Context, command string)
|
||||||
// Compilation date
|
// Compilation date
|
||||||
Compiled time.Time
|
Compiled time.Time
|
||||||
|
// ExtraInfo pass additional info as a key value map
|
||||||
|
ExtraInfo map[string]string
|
||||||
// List of all authors who contributed
|
// List of all authors who contributed
|
||||||
Authors []Author
|
Authors []Author
|
||||||
// Name of Author (Note: Use App.Authors, this is deprecated)
|
// Name of Author (Note: Use App.Authors, this is deprecated)
|
||||||
|
9
Godeps/_workspace/src/github.com/minio-io/cli/help.go
generated
vendored
9
Godeps/_workspace/src/github.com/minio-io/cli/help.go
generated
vendored
@ -14,9 +14,12 @@ USAGE:
|
|||||||
VERSION:
|
VERSION:
|
||||||
{{.Version}}
|
{{.Version}}
|
||||||
|
|
||||||
AUTHOR(S):
|
BUILD:
|
||||||
{{range .Authors}}{{ . }} {{end}}
|
{{.Compiled}}
|
||||||
|
{{range $key, $value := .ExtraInfo}}
|
||||||
|
{{ $key }}:
|
||||||
|
{{ $value }}
|
||||||
|
{{ end }}
|
||||||
COMMANDS:
|
COMMANDS:
|
||||||
{{range .Commands}}{{join .Names ", "}}{{ "\t" }}{{.Usage}}
|
{{range .Commands}}{{join .Names ", "}}{{ "\t" }}{{.Usage}}
|
||||||
{{end}}{{if .Flags}}
|
{{end}}{{if .Flags}}
|
||||||
|
@ -10,10 +10,9 @@ cat > $CONST_FILE <<EOF
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
const (
|
const (
|
||||||
gitCommitHash = "__GIT_COMMIT_HASH__"
|
minioGitCommitHash = "__GIT_COMMIT_HASH__"
|
||||||
)
|
)
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
commit_id=$(git log --format="%H" -n 1)
|
commit_id=$(git log --format="%H" -n 1)
|
||||||
sed -i "s/__GIT_COMMIT_HASH__/$commit_id/" $CONST_FILE
|
sed -i "s/__GIT_COMMIT_HASH__/$commit_id/" $CONST_FILE
|
||||||
|
|
||||||
|
74
main.go
74
main.go
@ -17,7 +17,12 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
|
"os/user"
|
||||||
|
"runtime"
|
||||||
|
"strconv"
|
||||||
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/minio-io/cli"
|
"github.com/minio-io/cli"
|
||||||
@ -26,6 +31,8 @@ import (
|
|||||||
"github.com/minio-io/minio/pkg/utils/log"
|
"github.com/minio-io/minio/pkg/utils/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var globalDebugFlag = false
|
||||||
|
|
||||||
var flags = []cli.Flag{
|
var flags = []cli.Flag{
|
||||||
cli.StringFlag{
|
cli.StringFlag{
|
||||||
Name: "domain,d",
|
Name: "domain,d",
|
||||||
@ -59,6 +66,18 @@ var flags = []cli.Flag{
|
|||||||
Value: "donut",
|
Value: "donut",
|
||||||
Usage: "valid entries: file,inmemory,donut",
|
Usage: "valid entries: file,inmemory,donut",
|
||||||
},
|
},
|
||||||
|
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 {
|
||||||
|
log.Fatalf("minio: Unable to obtain user's home directory. \nError: %s\n", err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func getDriverType(input string) server.DriverType {
|
func getDriverType(input string) server.DriverType {
|
||||||
@ -117,20 +136,71 @@ func runCmd(c *cli.Context) {
|
|||||||
server.Start(serverConfigs)
|
server.Start(serverConfigs)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Convert bytes to human readable string. Like a 2 MB, 64.2 KB, 52 B
|
||||||
|
func formatBytes(i int64) (result string) {
|
||||||
|
switch {
|
||||||
|
case i > (1024 * 1024 * 1024 * 1024):
|
||||||
|
result = fmt.Sprintf("%.02f TB", float64(i)/1024/1024/1024/1024)
|
||||||
|
case i > (1024 * 1024 * 1024):
|
||||||
|
result = fmt.Sprintf("%.02f GB", float64(i)/1024/1024/1024)
|
||||||
|
case i > (1024 * 1024):
|
||||||
|
result = fmt.Sprintf("%.02f MB", float64(i)/1024/1024)
|
||||||
|
case i > 1024:
|
||||||
|
result = fmt.Sprintf("%.02f KB", float64(i)/1024)
|
||||||
|
default:
|
||||||
|
result = fmt.Sprintf("%d B", i)
|
||||||
|
}
|
||||||
|
result = strings.Trim(result, " ")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// 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",
|
||||||
|
formatBytes(int64(memstats.Alloc)),
|
||||||
|
formatBytes(int64(memstats.TotalAlloc)),
|
||||||
|
formatBytes(int64(memstats.HeapAlloc)),
|
||||||
|
formatBytes(int64(memstats.HeapSys)))
|
||||||
|
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() {
|
func main() {
|
||||||
// set up iodine
|
// set up iodine
|
||||||
iodine.SetGlobalState("minio.git", gitCommitHash)
|
iodine.SetGlobalState("minio.git", minioGitCommitHash)
|
||||||
iodine.SetGlobalState("minio.starttime", time.Now().Format(time.RFC3339))
|
iodine.SetGlobalState("minio.starttime", time.Now().Format(time.RFC3339))
|
||||||
|
|
||||||
// set up app
|
// set up app
|
||||||
app := cli.NewApp()
|
app := cli.NewApp()
|
||||||
app.Name = "minio"
|
app.Name = "minio"
|
||||||
app.Version = gitCommitHash
|
app.Version = minioGitCommitHash
|
||||||
app.Author = "Minio.io"
|
app.Author = "Minio.io"
|
||||||
app.Usage = "Minimalist Object Storage"
|
app.Usage = "Minimalist Object Storage"
|
||||||
app.EnableBashCompletion = true
|
app.EnableBashCompletion = true
|
||||||
app.Flags = flags
|
app.Flags = flags
|
||||||
app.Action = runCmd
|
app.Action = runCmd
|
||||||
|
app.Before = func(c *cli.Context) error {
|
||||||
|
globalDebugFlag = c.GlobalBool("debug")
|
||||||
|
if globalDebugFlag {
|
||||||
|
app.ExtraInfo = getSystemData()
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
err := app.Run(os.Args)
|
err := app.Run(os.Args)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Error.Println(err)
|
log.Error.Println(err)
|
||||||
|
Loading…
Reference in New Issue
Block a user