mirror of
https://github.com/minio/mc.git
synced 2025-11-12 01:02:26 +03:00
Refacture structure proposal. (#1793)
This commit is contained in:
committed by
Harshavardhana
parent
c9ecd023fa
commit
b51fb32054
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,5 +1,5 @@
|
|||||||
cover.out
|
cover.out
|
||||||
mc
|
./mc
|
||||||
*~
|
*~
|
||||||
*.test
|
*.test
|
||||||
release
|
release
|
||||||
|
|||||||
7
Makefile
7
Makefile
@@ -19,26 +19,32 @@ verifiers: vet fmt lint cyclo deadcode spelling
|
|||||||
vet:
|
vet:
|
||||||
@echo "Running $@:"
|
@echo "Running $@:"
|
||||||
@GO15VENDOREXPERIMENT=1 go tool vet -all *.go
|
@GO15VENDOREXPERIMENT=1 go tool vet -all *.go
|
||||||
|
@GO15VENDOREXPERIMENT=1 go tool vet -all ./command
|
||||||
@GO15VENDOREXPERIMENT=1 go tool vet -all ./pkg
|
@GO15VENDOREXPERIMENT=1 go tool vet -all ./pkg
|
||||||
@GO15VENDOREXPERIMENT=1 go tool vet -shadow=true *.go
|
@GO15VENDOREXPERIMENT=1 go tool vet -shadow=true *.go
|
||||||
|
@GO15VENDOREXPERIMENT=1 go tool vet -shadow=true ./command
|
||||||
@GO15VENDOREXPERIMENT=1 go tool vet -shadow=true ./pkg
|
@GO15VENDOREXPERIMENT=1 go tool vet -shadow=true ./pkg
|
||||||
|
|
||||||
spelling:
|
spelling:
|
||||||
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/misspell *.go
|
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/misspell *.go
|
||||||
|
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/misspell command/**/*
|
||||||
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/misspell pkg/**/*
|
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/misspell pkg/**/*
|
||||||
|
|
||||||
fmt:
|
fmt:
|
||||||
@echo "Running $@:"
|
@echo "Running $@:"
|
||||||
@GO15VENDOREXPERIMENT=1 gofmt -s -l *.go
|
@GO15VENDOREXPERIMENT=1 gofmt -s -l *.go
|
||||||
|
@GO15VENDOREXPERIMENT=1 gofmt -s -l command
|
||||||
@GO15VENDOREXPERIMENT=1 gofmt -s -l pkg
|
@GO15VENDOREXPERIMENT=1 gofmt -s -l pkg
|
||||||
lint:
|
lint:
|
||||||
@echo "Running $@:"
|
@echo "Running $@:"
|
||||||
@GO15VENDOREXPERIMENT=1 $(GOPATH)/bin/golint .
|
@GO15VENDOREXPERIMENT=1 $(GOPATH)/bin/golint .
|
||||||
|
@GO15VENDOREXPERIMENT=1 $(GOPATH)/bin/golint github.com/minio/mc/command
|
||||||
@GO15VENDOREXPERIMENT=1 $(GOPATH)/bin/golint github.com/minio/mc/pkg...
|
@GO15VENDOREXPERIMENT=1 $(GOPATH)/bin/golint github.com/minio/mc/pkg...
|
||||||
|
|
||||||
cyclo:
|
cyclo:
|
||||||
@echo "Running $@:"
|
@echo "Running $@:"
|
||||||
@GO15VENDOREXPERIMENT=1 $(GOPATH)/bin/gocyclo -over 40 *.go
|
@GO15VENDOREXPERIMENT=1 $(GOPATH)/bin/gocyclo -over 40 *.go
|
||||||
|
@GO15VENDOREXPERIMENT=1 $(GOPATH)/bin/gocyclo -over 40 command
|
||||||
@GO15VENDOREXPERIMENT=1 $(GOPATH)/bin/gocyclo -over 40 pkg
|
@GO15VENDOREXPERIMENT=1 $(GOPATH)/bin/gocyclo -over 40 pkg
|
||||||
|
|
||||||
deadcode:
|
deadcode:
|
||||||
@@ -51,6 +57,7 @@ build: getdeps verifiers
|
|||||||
test: getdeps verifiers
|
test: getdeps verifiers
|
||||||
@echo "Running all testing:"
|
@echo "Running all testing:"
|
||||||
@GO15VENDOREXPERIMENT=1 go test $(GOFLAGS) ./
|
@GO15VENDOREXPERIMENT=1 go test $(GOFLAGS) ./
|
||||||
|
@GO15VENDOREXPERIMENT=1 go test $(GOFLAGS) github.com/minio/mc/command
|
||||||
@GO15VENDOREXPERIMENT=1 go test $(GOFLAGS) github.com/minio/mc/pkg...
|
@GO15VENDOREXPERIMENT=1 go test $(GOFLAGS) github.com/minio/mc/pkg...
|
||||||
|
|
||||||
gomake-all: build
|
gomake-all: build
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
// isValidAccessPERM - is provided access perm string supported.
|
// isValidAccessPERM - is provided access perm string supported.
|
||||||
func (b accessPerms) isValidAccessPERM() bool {
|
func (b accessPerms) isValidAccessPERM() bool {
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"sync"
|
"sync"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
var (
|
var (
|
||||||
// mcVersion - version time.RFC3339.
|
// mcVersion - version time.RFC3339.
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import "fmt"
|
import "fmt"
|
||||||
|
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"io"
|
"io"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
// bucketHandler is an http.Handler that verifies bucket responses and validates incoming requests
|
// bucketHandler is an http.Handler that verifies bucket responses and validates incoming requests
|
||||||
import (
|
import (
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import . "gopkg.in/check.v1"
|
import . "gopkg.in/check.v1"
|
||||||
|
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"io"
|
"io"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"io"
|
"io"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import "github.com/minio/cli"
|
import "github.com/minio/cli"
|
||||||
|
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
/////////////////// Config V1 ///////////////////
|
/////////////////// Config V1 ///////////////////
|
||||||
type hostConfigV1 struct {
|
type hostConfigV1 struct {
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"regexp"
|
"regexp"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"sync"
|
"sync"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"math"
|
"math"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import "github.com/minio/cli"
|
import "github.com/minio/cli"
|
||||||
|
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
func normalizePath(path string) string {
|
func normalizePath(path string) string {
|
||||||
return path
|
return path
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
@@ -15,7 +15,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// This package contains all the global variables and constants. ONLY TO BE ACCESSED VIA GET/SET FUNCTIONS.
|
// This package contains all the global variables and constants. ONLY TO BE ACCESSED VIA GET/SET FUNCTIONS.
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/minio/cli"
|
"github.com/minio/cli"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"strings"
|
"strings"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
@@ -14,4 +14,4 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
268
command/main.go
Normal file
268
command/main.go
Normal file
@@ -0,0 +1,268 @@
|
|||||||
|
/*
|
||||||
|
* Minio Client (C) 2014, 2015 Minio, Inc.
|
||||||
|
*
|
||||||
|
* 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 command
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"fmt"
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
"runtime"
|
||||||
|
"sort"
|
||||||
|
"strconv"
|
||||||
|
|
||||||
|
"github.com/cheggaaa/pb"
|
||||||
|
"github.com/minio/cli"
|
||||||
|
"github.com/minio/mc/pkg/console"
|
||||||
|
"github.com/minio/minio/pkg/probe"
|
||||||
|
"github.com/pkg/profile"
|
||||||
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
// global flags for mc.
|
||||||
|
mcFlags = []cli.Flag{
|
||||||
|
cli.BoolFlag{
|
||||||
|
Name: "help, h",
|
||||||
|
Usage: "Show help.",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
// Help template for mc
|
||||||
|
var mcHelpTemplate = `NAME:
|
||||||
|
{{.Name}} - {{.Usage}}
|
||||||
|
|
||||||
|
USAGE:
|
||||||
|
{{.Name}} {{if .Flags}}[FLAGS] {{end}}COMMAND{{if .Flags}} [COMMAND FLAGS | -h]{{end}} [ARGUMENTS...]
|
||||||
|
|
||||||
|
COMMANDS:
|
||||||
|
{{range .Commands}}{{join .Names ", "}}{{ "\t" }}{{.Usage}}
|
||||||
|
{{end}}{{if .Flags}}
|
||||||
|
GLOBAL FLAGS:
|
||||||
|
{{range .Flags}}{{.}}
|
||||||
|
{{end}}{{end}}
|
||||||
|
VERSION:
|
||||||
|
` + mcVersion +
|
||||||
|
`{{ "\n"}}{{range $key, $value := ExtraInfo}}
|
||||||
|
{{$key}}:
|
||||||
|
{{$value}}
|
||||||
|
{{end}}`
|
||||||
|
|
||||||
|
// Main starts mc application
|
||||||
|
func Main() {
|
||||||
|
// Enable profiling supported modes are [cpu, mem, block].
|
||||||
|
// ``MC_PROFILER`` supported options are [cpu, mem, block].
|
||||||
|
switch os.Getenv("MC_PROFILER") {
|
||||||
|
case "cpu":
|
||||||
|
defer profile.Start(profile.CPUProfile, profile.ProfilePath(mustGetProfileDir())).Stop()
|
||||||
|
case "mem":
|
||||||
|
defer profile.Start(profile.MemProfile, profile.ProfilePath(mustGetProfileDir())).Stop()
|
||||||
|
case "block":
|
||||||
|
defer profile.Start(profile.BlockProfile, profile.ProfilePath(mustGetProfileDir())).Stop()
|
||||||
|
}
|
||||||
|
|
||||||
|
probe.Init() // Set project's root source path.
|
||||||
|
probe.SetAppInfo("Release-Tag", mcReleaseTag)
|
||||||
|
probe.SetAppInfo("Commit", mcShortCommitID)
|
||||||
|
|
||||||
|
app := registerApp()
|
||||||
|
app.Before = registerBefore
|
||||||
|
app.ExtraInfo = func() map[string]string {
|
||||||
|
if _, e := pb.GetTerminalWidth(); e != nil {
|
||||||
|
globalQuiet = true
|
||||||
|
}
|
||||||
|
if globalDebug {
|
||||||
|
return getSystemData()
|
||||||
|
}
|
||||||
|
return make(map[string]string)
|
||||||
|
}
|
||||||
|
|
||||||
|
app.RunAndExitOnError()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Function invoked when invalid command is passed.
|
||||||
|
func commandNotFound(ctx *cli.Context, command string) {
|
||||||
|
msg := fmt.Sprintf("‘%s’ is not a mc command. See ‘mc --help’.", command)
|
||||||
|
closestCommands := findClosestCommands(command)
|
||||||
|
if len(closestCommands) > 0 {
|
||||||
|
msg += fmt.Sprintf("\n\nDid you mean one of these?\n")
|
||||||
|
if len(closestCommands) == 1 {
|
||||||
|
cmd := closestCommands[0]
|
||||||
|
msg += fmt.Sprintf(" ‘%s’", cmd)
|
||||||
|
} else {
|
||||||
|
for _, cmd := range closestCommands {
|
||||||
|
msg += fmt.Sprintf(" ‘%s’\n", cmd)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fatalIf(errDummy().Trace(), msg)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check for sane config environment early on and gracefully report.
|
||||||
|
func checkConfig() {
|
||||||
|
// Refresh the config once.
|
||||||
|
loadMcConfig = loadMcConfigFactory()
|
||||||
|
// Ensures config file is sane.
|
||||||
|
config, err := loadMcConfig()
|
||||||
|
// Verify if the path is accesible before validating the config
|
||||||
|
fatalIf(err.Trace(mustGetMcConfigPath()), "Unable to access configuration file.")
|
||||||
|
|
||||||
|
// Validate and print error messges
|
||||||
|
ok, errMsgs := validateConfigFile(config)
|
||||||
|
if !ok {
|
||||||
|
var errorMsg bytes.Buffer
|
||||||
|
for index, errMsg := range errMsgs {
|
||||||
|
// Print atmost 10 errors
|
||||||
|
if index > 10 {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
errorMsg.WriteString(errMsg + "\n")
|
||||||
|
}
|
||||||
|
console.Fatalln(errorMsg.String())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func migrate() {
|
||||||
|
// Fix broken config files if any.
|
||||||
|
fixConfig()
|
||||||
|
|
||||||
|
// Migrate config files if any.
|
||||||
|
migrateConfig()
|
||||||
|
|
||||||
|
// Migrate session files if any.
|
||||||
|
migrateSession()
|
||||||
|
|
||||||
|
// Migrate shared urls if any.
|
||||||
|
migrateShare()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get os/arch/platform specific information.
|
||||||
|
// Returns a map of current os/arch/platform/memstats.
|
||||||
|
func getSystemData() map[string]string {
|
||||||
|
host, e := os.Hostname()
|
||||||
|
fatalIf(probe.NewError(e), "Unable to determine the hostname.")
|
||||||
|
|
||||||
|
memstats := &runtime.MemStats{}
|
||||||
|
runtime.ReadMemStats(memstats)
|
||||||
|
mem := fmt.Sprintf("Used: %s | Allocated: %s | UsedHeap: %s | AllocatedHeap: %s",
|
||||||
|
pb.Format(int64(memstats.Alloc)).To(pb.U_BYTES),
|
||||||
|
pb.Format(int64(memstats.TotalAlloc)).To(pb.U_BYTES),
|
||||||
|
pb.Format(int64(memstats.HeapAlloc)).To(pb.U_BYTES),
|
||||||
|
pb.Format(int64(memstats.HeapSys)).To(pb.U_BYTES))
|
||||||
|
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,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// initMC - initialize 'mc'.
|
||||||
|
func initMC() {
|
||||||
|
// Check if mc config exists.
|
||||||
|
if !isMcConfigExists() {
|
||||||
|
err := saveMcConfig(newMcConfig())
|
||||||
|
fatalIf(err.Trace(), "Unable to save new mc config.")
|
||||||
|
|
||||||
|
console.Infoln("Configuration written to ‘" + mustGetMcConfigPath() + "’. Please update your access credentials.")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if mc session folder exists.
|
||||||
|
if !isSessionDirExists() {
|
||||||
|
fatalIf(createSessionDir().Trace(), "Unable to create session config folder.")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if mc share folder exists.
|
||||||
|
if !isShareDirExists() {
|
||||||
|
initShareConfig()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func registerBefore(ctx *cli.Context) error {
|
||||||
|
// Check if mc was compiled using a supported version of Golang.
|
||||||
|
checkGoVersion()
|
||||||
|
|
||||||
|
// Set the config folder.
|
||||||
|
setMcConfigDir(ctx.GlobalString("config-folder"))
|
||||||
|
|
||||||
|
// Migrate any old version of config / state files to newer format.
|
||||||
|
migrate()
|
||||||
|
|
||||||
|
// Initialize default config files.
|
||||||
|
initMC()
|
||||||
|
|
||||||
|
// Set global flags.
|
||||||
|
setGlobalsFromContext(ctx)
|
||||||
|
|
||||||
|
// Check if config can be read.
|
||||||
|
checkConfig()
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// findClosestCommands to match a given string with commands trie tree.
|
||||||
|
func findClosestCommands(command string) []string {
|
||||||
|
var closestCommands []string
|
||||||
|
for _, value := range commandsTree.PrefixMatch(command) {
|
||||||
|
closestCommands = append(closestCommands, value.(string))
|
||||||
|
}
|
||||||
|
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 the commands (refer flags.go)
|
||||||
|
registerCmd(lsCmd) // List contents of a bucket.
|
||||||
|
registerCmd(mbCmd) // Make a bucket.
|
||||||
|
registerCmd(catCmd) // Display contents of a file.
|
||||||
|
registerCmd(pipeCmd) // Write contents of stdin to a file.
|
||||||
|
registerCmd(shareCmd) // Share documents via URL.
|
||||||
|
registerCmd(cpCmd) // Copy objects and files from multiple sources to single destination.
|
||||||
|
registerCmd(mirrorCmd) // Mirror objects and files from single source to multiple destinations.
|
||||||
|
registerCmd(diffCmd) // Computer differences between two files or folders.
|
||||||
|
registerCmd(rmCmd) // Remove a file or bucket
|
||||||
|
registerCmd(policyCmd) // Set policy permissions.
|
||||||
|
registerCmd(sessionCmd) // Manage sessions for copy and mirror.
|
||||||
|
registerCmd(configCmd) // Configure minio client.
|
||||||
|
registerCmd(updateCmd) // Check for new software updates.
|
||||||
|
registerCmd(versionCmd) // Print version.
|
||||||
|
|
||||||
|
app := cli.NewApp()
|
||||||
|
app.Usage = "Minio Client for cloud storage and filesystems."
|
||||||
|
app.Commands = commands
|
||||||
|
app.Author = "Minio.io"
|
||||||
|
app.Flags = append(mcFlags, globalFlags...)
|
||||||
|
app.CustomAppHelpTemplate = mcHelpTemplate
|
||||||
|
app.CommandNotFound = commandNotFound // handler function declared above.
|
||||||
|
return app
|
||||||
|
}
|
||||||
|
|
||||||
|
// mustGetProfilePath must get location that the profile will be written to.
|
||||||
|
func mustGetProfileDir() string {
|
||||||
|
return filepath.Join(mustGetMcConfigDir(), globalProfileDir)
|
||||||
|
}
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import "github.com/minio/mc/pkg/console"
|
import "github.com/minio/mc/pkg/console"
|
||||||
|
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"io"
|
"io"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
// Session V2 - Version 2 stores session header and session data in
|
// Session V2 - Version 2 stores session header and session data in
|
||||||
// two separate files. Session data contains fully prepared URL list.
|
// two separate files. Session data contains fully prepared URL list.
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"time"
|
"time"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
@@ -15,7 +15,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// This file implements a simple trie tree to be used for 'mc' cli commands.
|
// This file implements a simple trie tree to be used for 'mc' cli commands.
|
||||||
package main
|
package command
|
||||||
|
|
||||||
// This package borrows idea from - https://godoc.org/golang.org/x/text/internal/triegen.
|
// This package borrows idea from - https://godoc.org/golang.org/x/text/internal/triegen.
|
||||||
|
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"math/rand"
|
"math/rand"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
247
main.go
247
main.go
@@ -17,252 +17,9 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
command "github.com/minio/mc/command"
|
||||||
"fmt"
|
|
||||||
"os"
|
|
||||||
"path/filepath"
|
|
||||||
"runtime"
|
|
||||||
"sort"
|
|
||||||
"strconv"
|
|
||||||
|
|
||||||
"github.com/cheggaaa/pb"
|
|
||||||
"github.com/minio/cli"
|
|
||||||
"github.com/minio/mc/pkg/console"
|
|
||||||
"github.com/minio/minio/pkg/probe"
|
|
||||||
"github.com/pkg/profile"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
|
||||||
// global flags for mc.
|
|
||||||
mcFlags = []cli.Flag{
|
|
||||||
cli.BoolFlag{
|
|
||||||
Name: "help, h",
|
|
||||||
Usage: "Show help.",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
// Help template for mc
|
|
||||||
var mcHelpTemplate = `NAME:
|
|
||||||
{{.Name}} - {{.Usage}}
|
|
||||||
|
|
||||||
USAGE:
|
|
||||||
{{.Name}} {{if .Flags}}[FLAGS] {{end}}COMMAND{{if .Flags}} [COMMAND FLAGS | -h]{{end}} [ARGUMENTS...]
|
|
||||||
|
|
||||||
COMMANDS:
|
|
||||||
{{range .Commands}}{{join .Names ", "}}{{ "\t" }}{{.Usage}}
|
|
||||||
{{end}}{{if .Flags}}
|
|
||||||
GLOBAL FLAGS:
|
|
||||||
{{range .Flags}}{{.}}
|
|
||||||
{{end}}{{end}}
|
|
||||||
VERSION:
|
|
||||||
` + mcVersion +
|
|
||||||
`{{ "\n"}}{{range $key, $value := ExtraInfo}}
|
|
||||||
{{$key}}:
|
|
||||||
{{$value}}
|
|
||||||
{{end}}`
|
|
||||||
|
|
||||||
// Function invoked when invalid command is passed.
|
|
||||||
func commandNotFound(ctx *cli.Context, command string) {
|
|
||||||
msg := fmt.Sprintf("‘%s’ is not a mc command. See ‘mc --help’.", command)
|
|
||||||
closestCommands := findClosestCommands(command)
|
|
||||||
if len(closestCommands) > 0 {
|
|
||||||
msg += fmt.Sprintf("\n\nDid you mean one of these?\n")
|
|
||||||
if len(closestCommands) == 1 {
|
|
||||||
cmd := closestCommands[0]
|
|
||||||
msg += fmt.Sprintf(" ‘%s’", cmd)
|
|
||||||
} else {
|
|
||||||
for _, cmd := range closestCommands {
|
|
||||||
msg += fmt.Sprintf(" ‘%s’\n", cmd)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
fatalIf(errDummy().Trace(), msg)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check for sane config environment early on and gracefully report.
|
|
||||||
func checkConfig() {
|
|
||||||
// Refresh the config once.
|
|
||||||
loadMcConfig = loadMcConfigFactory()
|
|
||||||
// Ensures config file is sane.
|
|
||||||
config, err := loadMcConfig()
|
|
||||||
// Verify if the path is accesible before validating the config
|
|
||||||
fatalIf(err.Trace(mustGetMcConfigPath()), "Unable to access configuration file.")
|
|
||||||
|
|
||||||
// Validate and print error messges
|
|
||||||
ok, errMsgs := validateConfigFile(config)
|
|
||||||
if !ok {
|
|
||||||
var errorMsg bytes.Buffer
|
|
||||||
for index, errMsg := range errMsgs {
|
|
||||||
// Print atmost 10 errors
|
|
||||||
if index > 10 {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
errorMsg.WriteString(errMsg + "\n")
|
|
||||||
}
|
|
||||||
console.Fatalln(errorMsg.String())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func migrate() {
|
|
||||||
// Fix broken config files if any.
|
|
||||||
fixConfig()
|
|
||||||
|
|
||||||
// Migrate config files if any.
|
|
||||||
migrateConfig()
|
|
||||||
|
|
||||||
// Migrate session files if any.
|
|
||||||
migrateSession()
|
|
||||||
|
|
||||||
// Migrate shared urls if any.
|
|
||||||
migrateShare()
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get os/arch/platform specific information.
|
|
||||||
// Returns a map of current os/arch/platform/memstats.
|
|
||||||
func getSystemData() map[string]string {
|
|
||||||
host, e := os.Hostname()
|
|
||||||
fatalIf(probe.NewError(e), "Unable to determine the hostname.")
|
|
||||||
|
|
||||||
memstats := &runtime.MemStats{}
|
|
||||||
runtime.ReadMemStats(memstats)
|
|
||||||
mem := fmt.Sprintf("Used: %s | Allocated: %s | UsedHeap: %s | AllocatedHeap: %s",
|
|
||||||
pb.Format(int64(memstats.Alloc)).To(pb.U_BYTES),
|
|
||||||
pb.Format(int64(memstats.TotalAlloc)).To(pb.U_BYTES),
|
|
||||||
pb.Format(int64(memstats.HeapAlloc)).To(pb.U_BYTES),
|
|
||||||
pb.Format(int64(memstats.HeapSys)).To(pb.U_BYTES))
|
|
||||||
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,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// initMC - initialize 'mc'.
|
|
||||||
func initMC() {
|
|
||||||
// Check if mc config exists.
|
|
||||||
if !isMcConfigExists() {
|
|
||||||
err := saveMcConfig(newMcConfig())
|
|
||||||
fatalIf(err.Trace(), "Unable to save new mc config.")
|
|
||||||
|
|
||||||
console.Infoln("Configuration written to ‘" + mustGetMcConfigPath() + "’. Please update your access credentials.")
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check if mc session folder exists.
|
|
||||||
if !isSessionDirExists() {
|
|
||||||
fatalIf(createSessionDir().Trace(), "Unable to create session config folder.")
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check if mc share folder exists.
|
|
||||||
if !isShareDirExists() {
|
|
||||||
initShareConfig()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func registerBefore(ctx *cli.Context) error {
|
|
||||||
// Check if mc was compiled using a supported version of Golang.
|
|
||||||
checkGoVersion()
|
|
||||||
|
|
||||||
// Set the config folder.
|
|
||||||
setMcConfigDir(ctx.GlobalString("config-folder"))
|
|
||||||
|
|
||||||
// Migrate any old version of config / state files to newer format.
|
|
||||||
migrate()
|
|
||||||
|
|
||||||
// Initialize default config files.
|
|
||||||
initMC()
|
|
||||||
|
|
||||||
// Set global flags.
|
|
||||||
setGlobalsFromContext(ctx)
|
|
||||||
|
|
||||||
// Check if config can be read.
|
|
||||||
checkConfig()
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// findClosestCommands to match a given string with commands trie tree.
|
|
||||||
func findClosestCommands(command string) []string {
|
|
||||||
var closestCommands []string
|
|
||||||
for _, value := range commandsTree.PrefixMatch(command) {
|
|
||||||
closestCommands = append(closestCommands, value.(string))
|
|
||||||
}
|
|
||||||
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 the commands (refer flags.go)
|
|
||||||
registerCmd(lsCmd) // List contents of a bucket.
|
|
||||||
registerCmd(mbCmd) // Make a bucket.
|
|
||||||
registerCmd(catCmd) // Display contents of a file.
|
|
||||||
registerCmd(pipeCmd) // Write contents of stdin to a file.
|
|
||||||
registerCmd(shareCmd) // Share documents via URL.
|
|
||||||
registerCmd(cpCmd) // Copy objects and files from multiple sources to single destination.
|
|
||||||
registerCmd(mirrorCmd) // Mirror objects and files from single source to multiple destinations.
|
|
||||||
registerCmd(diffCmd) // Computer differences between two files or folders.
|
|
||||||
registerCmd(rmCmd) // Remove a file or bucket
|
|
||||||
registerCmd(policyCmd) // Set policy permissions.
|
|
||||||
registerCmd(sessionCmd) // Manage sessions for copy and mirror.
|
|
||||||
registerCmd(configCmd) // Configure minio client.
|
|
||||||
registerCmd(updateCmd) // Check for new software updates.
|
|
||||||
registerCmd(versionCmd) // Print version.
|
|
||||||
|
|
||||||
app := cli.NewApp()
|
|
||||||
app.Usage = "Minio Client for cloud storage and filesystems."
|
|
||||||
app.Commands = commands
|
|
||||||
app.Author = "Minio.io"
|
|
||||||
app.Flags = append(mcFlags, globalFlags...)
|
|
||||||
app.CustomAppHelpTemplate = mcHelpTemplate
|
|
||||||
app.CommandNotFound = commandNotFound // handler function declared above.
|
|
||||||
return app
|
|
||||||
}
|
|
||||||
|
|
||||||
// mustGetProfilePath must get location that the profile will be written to.
|
|
||||||
func mustGetProfileDir() string {
|
|
||||||
return filepath.Join(mustGetMcConfigDir(), globalProfileDir)
|
|
||||||
}
|
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
// Enable profiling supported modes are [cpu, mem, block].
|
command.Main()
|
||||||
// ``MC_PROFILER`` supported options are [cpu, mem, block].
|
|
||||||
switch os.Getenv("MC_PROFILER") {
|
|
||||||
case "cpu":
|
|
||||||
defer profile.Start(profile.CPUProfile, profile.ProfilePath(mustGetProfileDir())).Stop()
|
|
||||||
case "mem":
|
|
||||||
defer profile.Start(profile.MemProfile, profile.ProfilePath(mustGetProfileDir())).Stop()
|
|
||||||
case "block":
|
|
||||||
defer profile.Start(profile.BlockProfile, profile.ProfilePath(mustGetProfileDir())).Stop()
|
|
||||||
}
|
|
||||||
|
|
||||||
probe.Init() // Set project's root source path.
|
|
||||||
probe.SetAppInfo("Release-Tag", mcReleaseTag)
|
|
||||||
probe.SetAppInfo("Commit", mcShortCommitID)
|
|
||||||
|
|
||||||
app := registerApp()
|
|
||||||
app.Before = registerBefore
|
|
||||||
|
|
||||||
app.ExtraInfo = func() map[string]string {
|
|
||||||
if _, e := pb.GetTerminalWidth(); e != nil {
|
|
||||||
globalQuiet = true
|
|
||||||
}
|
|
||||||
if globalDebug {
|
|
||||||
return getSystemData()
|
|
||||||
}
|
|
||||||
return make(map[string]string)
|
|
||||||
}
|
|
||||||
|
|
||||||
app.RunAndExitOnError()
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user