urfave-cli/context.go

165 lines
3.9 KiB
Go
Raw Normal View History

package cli
import (
"flag"
2013-11-20 08:05:18 +00:00
"errors"
"strconv"
2013-11-18 23:37:59 +00:00
"strings"
)
// Context is a type that is passed through to
// each Handler action in a cli application. Context
// can be used to retrieve context-specific Args and
// parsed command-line options.
type Context struct {
App *App
flagSet *flag.FlagSet
globalSet *flag.FlagSet
}
2013-11-01 14:31:37 +00:00
// Creates a new context. For use in when invoking an App or Command action.
func NewContext(app *App, set *flag.FlagSet, globalSet *flag.FlagSet) *Context {
return &Context{app, set, globalSet}
}
// Looks up the value of a local int flag, returns 0 if no int flag exists
func (c *Context) Int(name string) int {
2013-11-18 23:35:23 +00:00
return lookupInt(name, c.flagSet)
}
// Looks up the value of a local bool flag, returns false if no bool flag exists
func (c *Context) Bool(name string) bool {
2013-11-18 23:35:23 +00:00
return lookupBool(name, c.flagSet)
}
// Looks up the value of a local string flag, returns "" if no string flag exists
func (c *Context) String(name string) string {
2013-11-18 23:35:23 +00:00
return lookupString(name, c.flagSet)
}
// Looks up the value of a local string slice flag, returns nil if no string slice flag exists
func (c *Context) StringSlice(name string) []string {
2013-11-18 23:35:23 +00:00
return lookupStringSlice(name, c.flagSet)
2013-09-24 01:41:31 +00:00
}
// Looks up the value of a local int slice flag, returns nil if no int slice flag exists
func (c *Context) IntSlice(name string) []int {
2013-11-18 23:35:23 +00:00
return lookupIntSlice(name, c.flagSet)
}
// Looks up the value of a global int flag, returns 0 if no int flag exists
func (c *Context) GlobalInt(name string) int {
2013-11-18 23:35:23 +00:00
return lookupInt(name, c.globalSet)
}
// Looks up the value of a global bool flag, returns false if no bool flag exists
func (c *Context) GlobalBool(name string) bool {
2013-11-18 23:35:23 +00:00
return lookupBool(name, c.globalSet)
}
// Looks up the value of a global string flag, returns "" if no string flag exists
func (c *Context) GlobalString(name string) string {
2013-11-18 23:35:23 +00:00
return lookupString(name, c.globalSet)
}
// Looks up the value of a global string slice flag, returns nil if no string slice flag exists
func (c *Context) GlobalStringSlice(name string) []string {
2013-11-18 23:35:23 +00:00
return lookupStringSlice(name, c.globalSet)
}
// Looks up the value of a global int slice flag, returns nil if no int slice flag exists
func (c *Context) GlobalIntSlice(name string) []int {
2013-11-18 23:35:23 +00:00
return lookupIntSlice(name, c.globalSet)
}
2013-11-01 14:31:37 +00:00
// Returns the command line arguments associated with the context.
func (c *Context) Args() []string {
return c.flagSet.Args()
}
2013-11-18 23:35:23 +00:00
func lookupInt(name string, set *flag.FlagSet) int {
f := set.Lookup(name)
if f != nil {
val, err := strconv.Atoi(f.Value.String())
if err != nil {
return 0
}
return val
}
2013-07-24 14:35:45 +00:00
return 0
}
2013-11-18 23:35:23 +00:00
func lookupString(name string, set *flag.FlagSet) string {
f := set.Lookup(name)
if f != nil {
return f.Value.String()
}
2013-07-24 14:35:45 +00:00
return ""
}
2013-11-18 23:35:23 +00:00
func lookupStringSlice(name string, set *flag.FlagSet) []string {
2013-09-24 01:41:31 +00:00
f := set.Lookup(name)
if f != nil {
return (f.Value.(*StringSlice)).Value()
}
return nil
}
2013-11-18 23:35:23 +00:00
func lookupIntSlice(name string, set *flag.FlagSet) []int {
f := set.Lookup(name)
if f != nil {
return (f.Value.(*IntSlice)).Value()
2013-09-24 01:41:31 +00:00
}
return nil
}
2013-11-18 23:35:23 +00:00
func lookupBool(name string, set *flag.FlagSet) bool {
f := set.Lookup(name)
if f != nil {
val, err := strconv.ParseBool(f.Value.String())
if err != nil {
return false
}
return val
}
2013-07-24 14:35:45 +00:00
return false
}
2013-11-18 23:35:23 +00:00
2013-11-20 08:05:18 +00:00
func normalizeFlags(flags []Flag, set *flag.FlagSet) error {
visited := make(map[string]bool)
set.Visit(func(f *flag.Flag) {
visited[f.Name] = true
})
2013-11-18 23:35:23 +00:00
for _, f := range flags {
2013-11-20 08:05:18 +00:00
parts := strings.Split(f.GetName(), ",")
2013-11-18 23:35:23 +00:00
if len(parts) == 1 {
continue
}
var ff *flag.Flag
for _, name := range parts {
2013-11-20 08:05:18 +00:00
name = strings.Trim(name, " ")
if visited[name] {
if ff != nil {
return errors.New("Cannot use two forms of the same flag: " + name + " " + ff.Name)
}
ff = set.Lookup(name)
2013-11-18 23:35:23 +00:00
}
}
if ff == nil {
continue
}
for _, name := range parts {
2013-11-20 08:05:18 +00:00
name = strings.Trim(name, " ")
2013-11-18 23:35:23 +00:00
set.Set(name, ff.Value.String())
}
}
2013-11-20 08:05:18 +00:00
return nil
2013-11-18 23:35:23 +00:00
}