1 Star 0 Fork 0

天雨流芳/go-micro-framework

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
verflag.go 2.13 KB
一键复制 编辑 原始数据 按行查看 历史
天雨流芳 提交于 2024-03-19 15:24 . 增加通用文件
// Package verflag defines utility functions to handle command line flags
// related to version of IAM.
package verflag
import (
"fmt"
"gitee.com/tylf2018/go-micro-framework/pkg/common/version"
"os"
"strconv"
flag "github.com/spf13/pflag"
)
type versionValue int
// Define some const.
const (
VersionFalse versionValue = 0
VersionTrue versionValue = 1
VersionRaw versionValue = 2
)
const strRawVersion string = "raw"
func (v *versionValue) IsBoolFlag() bool {
return true
}
func (v *versionValue) Get() interface{} {
return v
}
func (v *versionValue) Set(s string) error {
if s == strRawVersion {
*v = VersionRaw
return nil
}
boolVal, err := strconv.ParseBool(s)
if boolVal {
*v = VersionTrue
} else {
*v = VersionFalse
}
return err
}
func (v *versionValue) String() string {
if *v == VersionRaw {
return strRawVersion
}
return fmt.Sprintf("%v", bool(*v == VersionTrue))
}
// The type of the flag as required by the pflag.Value interface.
func (v *versionValue) Type() string {
return "version"
}
// VersionVar defines a flag with the specified name and usage string.
func VersionVar(p *versionValue, name string, value versionValue, usage string) {
*p = value
flag.Var(p, name, usage)
// "--version" will be treated as "--version=true"
flag.Lookup(name).NoOptDefVal = "true"
}
// Version wraps the VersionVar function.
func Version(name string, value versionValue, usage string) *versionValue {
p := new(versionValue)
VersionVar(p, name, value, usage)
return p
}
const versionFlagName = "version"
var versionFlag = Version(versionFlagName, VersionFalse, "Print version information and quit.")
// AddFlags registers this package's flags on arbitrary FlagSets, such that they point to the
// same value as the global flags.
func AddFlags(fs *flag.FlagSet) {
fs.AddFlag(flag.Lookup(versionFlagName))
}
// PrintAndExitIfRequested will check if the -version flag was passed
// and, if so, print the version and exit.
func PrintAndExitIfRequested() {
if *versionFlag == VersionRaw {
fmt.Printf("%#v\n", version.Get())
os.Exit(0)
} else if *versionFlag == VersionTrue {
fmt.Printf("%s\n", version.Get())
os.Exit(0)
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/tylf2018/go-micro-framework.git
git@gitee.com:tylf2018/go-micro-framework.git
tylf2018
go-micro-framework
go-micro-framework
1eac8779039e

搜索帮助