gf/os/gcmd/gcmd.go

105 lines
2.5 KiB
Go
Raw Normal View History

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,
// You can obtain one at https://github.com/gogf/gf.
//
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.
package gcmd
2017-11-23 10:21:28 +08:00
2019-09-05 15:16:25 +08:00
import (
2021-10-11 21:41:56 +08:00
"github.com/gogf/gf/v2/container/gvar"
"github.com/gogf/gf/v2/internal/command"
"github.com/gogf/gf/v2/internal/utils"
2019-09-05 15:16:25 +08:00
"os"
)
var (
2019-09-16 20:57:43 +08:00
defaultCommandFuncMap = make(map[string]func())
2019-09-05 15:16:25 +08:00
)
// Init does custom initialization.
2020-12-04 23:29:20 +08:00
func Init(args ...string) {
command.Init(args...)
2019-09-05 15:16:25 +08:00
}
// GetOpt returns the option value named `name` as gvar.Var.
func GetOpt(name string, def ...string) *gvar.Var {
2020-12-04 23:29:20 +08:00
Init()
if v := command.GetOpt(name, def...); v != "" {
return gvar.New(v)
}
return nil
2019-09-05 15:16:25 +08:00
}
// GetOptAll returns all parsed options.
func GetOptAll() map[string]string {
2020-12-04 23:29:20 +08:00
Init()
return command.GetOptAll()
2019-09-05 15:16:25 +08:00
}
// ContainsOpt checks whether option named `name` exist in the arguments.
func ContainsOpt(name string) bool {
2020-12-04 23:29:20 +08:00
Init()
return command.ContainsOpt(name)
2019-09-05 15:16:25 +08:00
}
// GetArg returns the argument at `index` as gvar.Var.
func GetArg(index int, def ...string) *gvar.Var {
2020-12-04 23:29:20 +08:00
Init()
if v := command.GetArg(index, def...); v != "" {
return gvar.New(v)
}
return nil
2019-09-05 15:16:25 +08:00
}
// GetArgAll returns all parsed arguments.
func GetArgAll() []string {
2020-12-04 23:29:20 +08:00
Init()
return command.GetArgAll()
2019-09-05 15:16:25 +08:00
}
// GetOptWithEnv returns the command line argument of the specified `key`.
// 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>
func GetOptWithEnv(key string, def ...interface{}) *gvar.Var {
cmdKey := utils.FormatCmdKey(key)
if ContainsOpt(cmdKey) {
return gvar.New(GetOpt(cmdKey))
} else {
envKey := utils.FormatEnvKey(key)
if r, ok := os.LookupEnv(envKey); ok {
return gvar.New(r)
} else {
if len(def) > 0 {
return gvar.New(def[0])
}
}
}
return nil
}
// 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 := "-"
if len(prefix) > 0 {
2019-09-05 11:38:36 +08:00
leadStr = prefix[0]
}
for k, v := range m {
if len(options) > 0 {
options += " "
}
2019-09-05 11:38:36 +08:00
options += leadStr + k
if v != "" {
options += "=" + v
}
}
return options
}