本文整理匯總了Golang中github.com/codegangsta/cli.Context.GlobalSet方法的典型用法代碼示例。如果您正苦於以下問題:Golang Context.GlobalSet方法的具體用法?Golang Context.GlobalSet怎麽用?Golang Context.GlobalSet使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/codegangsta/cli.Context
的用法示例。
在下文中一共展示了Context.GlobalSet方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: ApplyTo
func (config FlagsConfig) ApplyTo(cmd string, c *cli.Context) error {
entry := config[""]
if cmd != "" {
entry.Apply(config[cmd])
}
vars := entry.Vars()
if cmd == "" {
vars["local"] = vars["global"]
vars["global"] = nil
}
for key, val := range vars["global"] {
if !c.GlobalIsSet(key) {
switch val.(type) {
case string:
strVal := val.(string)
if strVal == "" {
continue
}
c.GlobalSet(key, strVal)
case []string:
strSlice := val.([]string)
if len(strSlice) == 0 {
continue
}
for _, valBit := range strSlice {
c.GlobalSet(key, valBit)
}
default:
return fmt.Errorf(`unknown value type %T (%s: %+v)`, val, key, val)
}
}
}
for key, val := range vars["local"] {
if !c.IsSet(key) {
switch val.(type) {
case string:
strVal := val.(string)
if strVal == "" {
continue
}
c.Set(key, strVal)
case []string:
strSlice := val.([]string)
if len(strSlice) == 0 {
continue
}
for _, valBit := range strSlice {
c.Set(key, valBit)
}
default:
return fmt.Errorf(`unknown value type %T (%s: %+v)`, val, key, val)
}
}
}
return nil
}