2021-01-17 21:46:25 +08:00
|
|
|
|
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
2017-12-29 16:03:30 +08:00
|
|
|
|
//
|
|
|
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
|
|
|
// If a copy of the MIT was not distributed with this file,
|
2019-02-02 16:18:25 +08:00
|
|
|
|
// You can obtain one at https://github.com/gogf/gf.
|
2017-12-30 23:49:55 +08:00
|
|
|
|
//
|
2017-12-31 18:19:58 +08:00
|
|
|
|
|
2019-09-05 11:38:36 +08:00
|
|
|
|
// Package gcmd provides console operations, like options/arguments reading and command running.
|
2017-12-30 23:49:55 +08:00
|
|
|
|
package gcmd
|
2017-11-23 10:21:28 +08:00
|
|
|
|
|
2019-09-05 15:16:25 +08:00
|
|
|
|
import (
|
2021-02-04 00:10:13 +08:00
|
|
|
|
"github.com/gogf/gf/container/gvar"
|
|
|
|
|
"github.com/gogf/gf/internal/command"
|
2019-09-05 15:16:25 +08:00
|
|
|
|
"os"
|
2020-12-04 23:44:54 +08:00
|
|
|
|
"strings"
|
2019-09-05 15:16:25 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var (
|
2019-09-16 20:57:43 +08:00
|
|
|
|
defaultCommandFuncMap = make(map[string]func())
|
2019-09-05 15:16:25 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Custom initialization.
|
2020-12-04 23:29:20 +08:00
|
|
|
|
func Init(args ...string) {
|
2021-02-04 00:10:13 +08:00
|
|
|
|
command.Init(args...)
|
2019-09-05 15:16:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetOpt returns the option value named <name>.
|
|
|
|
|
func GetOpt(name string, def ...string) string {
|
2020-12-04 23:29:20 +08:00
|
|
|
|
Init()
|
2021-02-04 00:10:13 +08:00
|
|
|
|
return command.GetOpt(name, def...)
|
2019-09-05 15:16:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-16 17:38:05 +08:00
|
|
|
|
// GetOptVar returns the option value named <name> as gvar.Var.
|
2020-06-29 13:40:19 +08:00
|
|
|
|
func GetOptVar(name string, def ...string) *gvar.Var {
|
2020-12-04 23:29:20 +08:00
|
|
|
|
Init()
|
2019-09-05 15:16:25 +08:00
|
|
|
|
return gvar.New(GetOpt(name, def...))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetOptAll returns all parsed options.
|
|
|
|
|
func GetOptAll() map[string]string {
|
2020-12-04 23:29:20 +08:00
|
|
|
|
Init()
|
2021-02-04 00:10:13 +08:00
|
|
|
|
return command.GetOptAll()
|
2019-09-05 15:16:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ContainsOpt checks whether option named <name> exist in the arguments.
|
2021-02-04 00:10:13 +08:00
|
|
|
|
func ContainsOpt(name string) bool {
|
2020-12-04 23:29:20 +08:00
|
|
|
|
Init()
|
2021-02-04 00:10:13 +08:00
|
|
|
|
return command.ContainsOpt(name)
|
2019-09-05 15:16:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetArg returns the argument at <index>.
|
|
|
|
|
func GetArg(index int, def ...string) string {
|
2020-12-04 23:29:20 +08:00
|
|
|
|
Init()
|
2021-02-04 00:10:13 +08:00
|
|
|
|
return command.GetArg(index, def...)
|
2019-09-05 15:16:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-16 17:38:05 +08:00
|
|
|
|
// GetArgVar returns the argument at <index> as gvar.Var.
|
2020-06-29 13:40:19 +08:00
|
|
|
|
func GetArgVar(index int, def ...string) *gvar.Var {
|
2020-12-04 23:29:20 +08:00
|
|
|
|
Init()
|
2019-09-05 15:16:25 +08:00
|
|
|
|
return gvar.New(GetArg(index, def...))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetArgAll returns all parsed arguments.
|
|
|
|
|
func GetArgAll() []string {
|
2020-12-04 23:29:20 +08:00
|
|
|
|
Init()
|
2021-02-04 00:10:13 +08:00
|
|
|
|
return command.GetArgAll()
|
2019-09-05 15:16:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-02-02 15:16:09 +08:00
|
|
|
|
// GetWithEnv is alias of GetOptWithEnv.
|
2021-03-30 13:43:08 +08:00
|
|
|
|
// Deprecated, use GetOptWithEnv instead.
|
2021-02-02 15:16:09 +08:00
|
|
|
|
func GetWithEnv(key string, def ...interface{}) *gvar.Var {
|
|
|
|
|
return GetOptWithEnv(key, def...)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetOptWithEnv returns the command line argument of the specified <key>.
|
2020-12-04 23:44:54 +08:00
|
|
|
|
// If the argument does not exist, then it returns the environment variable with specified <key>.
|
|
|
|
|
// It returns the default value <def> if none of them exists.
|
|
|
|
|
//
|
|
|
|
|
// Fetching Rules:
|
|
|
|
|
// 1. Command line arguments are in lowercase format, eg: gf.<package name>.<variable name>;
|
|
|
|
|
// 2. Environment arguments are in uppercase format, eg: GF_<package name>_<variable name>;
|
2021-02-02 15:16:09 +08:00
|
|
|
|
func GetOptWithEnv(key string, def ...interface{}) *gvar.Var {
|
2020-12-04 23:44:54 +08:00
|
|
|
|
cmdKey := strings.ToLower(strings.Replace(key, "_", ".", -1))
|
2021-02-04 00:10:13 +08:00
|
|
|
|
if ContainsOpt(cmdKey) {
|
|
|
|
|
return gvar.New(GetOpt(cmdKey))
|
2020-12-04 23:44:54 +08:00
|
|
|
|
} else {
|
|
|
|
|
envKey := strings.ToUpper(strings.Replace(key, ".", "_", -1))
|
2021-02-04 00:10:13 +08:00
|
|
|
|
if r, ok := os.LookupEnv(envKey); ok {
|
|
|
|
|
return gvar.New(r)
|
|
|
|
|
} else {
|
|
|
|
|
if len(def) > 0 {
|
|
|
|
|
return gvar.New(def[0])
|
|
|
|
|
}
|
2020-12-04 23:44:54 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-02-04 00:10:13 +08:00
|
|
|
|
return gvar.New(nil)
|
2020-12-04 23:44:54 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-25 21:01:04 +08:00
|
|
|
|
// BuildOptions builds the options as string.
|
|
|
|
|
func BuildOptions(m map[string]string, prefix ...string) string {
|
|
|
|
|
options := ""
|
2019-09-05 11:38:36 +08:00
|
|
|
|
leadStr := "-"
|
2019-07-25 21:01:04 +08:00
|
|
|
|
if len(prefix) > 0 {
|
2019-09-05 11:38:36 +08:00
|
|
|
|
leadStr = prefix[0]
|
2019-07-25 21:01:04 +08:00
|
|
|
|
}
|
|
|
|
|
for k, v := range m {
|
|
|
|
|
if len(options) > 0 {
|
|
|
|
|
options += " "
|
|
|
|
|
}
|
2019-09-05 11:38:36 +08:00
|
|
|
|
options += leadStr + k
|
2019-07-25 21:01:04 +08:00
|
|
|
|
if v != "" {
|
|
|
|
|
options += "=" + v
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return options
|
|
|
|
|
}
|