2015-08-21 08:58:14 +00:00
|
|
|
package cli
|
|
|
|
|
2016-05-09 14:12:59 +00:00
|
|
|
// CommandCategories is a slice of *CommandCategory.
|
2015-08-21 08:58:14 +00:00
|
|
|
type CommandCategories []*CommandCategory
|
|
|
|
|
2016-05-09 14:12:59 +00:00
|
|
|
// CommandCategory is a category containing commands.
|
2015-08-21 08:58:14 +00:00
|
|
|
type CommandCategory struct {
|
|
|
|
Name string
|
|
|
|
Commands Commands
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c CommandCategories) Less(i, j int) bool {
|
2017-10-28 07:00:11 +00:00
|
|
|
return lexicographicLess(c[i].Name, c[j].Name)
|
2015-08-21 08:58:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c CommandCategories) Len() int {
|
|
|
|
return len(c)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c CommandCategories) Swap(i, j int) {
|
|
|
|
c[i], c[j] = c[j], c[i]
|
|
|
|
}
|
|
|
|
|
2016-05-09 14:12:59 +00:00
|
|
|
// AddCommand adds a command to a category.
|
2015-08-21 08:58:14 +00:00
|
|
|
func (c CommandCategories) AddCommand(category string, command Command) CommandCategories {
|
|
|
|
for _, commandCategory := range c {
|
|
|
|
if commandCategory.Name == category {
|
|
|
|
commandCategory.Commands = append(commandCategory.Commands, command)
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return append(c, &CommandCategory{Name: category, Commands: []Command{command}})
|
|
|
|
}
|
2016-05-03 10:54:05 +00:00
|
|
|
|
|
|
|
// VisibleCommands returns a slice of the Commands with Hidden=false
|
|
|
|
func (c *CommandCategory) VisibleCommands() []Command {
|
|
|
|
ret := []Command{}
|
|
|
|
for _, command := range c.Commands {
|
|
|
|
if !command.Hidden {
|
|
|
|
ret = append(ret, command)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|
2019-01-27 06:41:06 +00:00
|
|
|
|
|
|
|
// FlagCategories is a slice of *FlagCategory.
|
|
|
|
type FlagCategories []*FlagCategory
|
|
|
|
|
|
|
|
// FlagCategory is a category containing commands.
|
|
|
|
type FlagCategory struct {
|
|
|
|
Name string
|
|
|
|
Flags Flags
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f FlagCategories) Less(i, j int) bool {
|
|
|
|
return lexicographicLess(f[i].Name, f[j].Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f FlagCategories) Len() int {
|
|
|
|
return len(f)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f FlagCategories) Swap(i, j int) {
|
|
|
|
f[i], f[j] = f[j], f[i]
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddFlags adds a command to a category.
|
|
|
|
func (f FlagCategories) AddFlag(category string, flag Flag) FlagCategories {
|
|
|
|
for _, flagCategory := range f {
|
|
|
|
if flagCategory.Name == category {
|
|
|
|
flagCategory.Flags = append(flagCategory.Flags, flag)
|
|
|
|
return f
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return append(f, &FlagCategory{Name: category, Flags: []Flag{flag}})
|
|
|
|
}
|
|
|
|
|
|
|
|
// VisibleFlags returns a slice of the Flags with Hidden=false
|
|
|
|
func (c *FlagCategory) VisibleFlags() []Flag {
|
|
|
|
ret := []Flag{}
|
|
|
|
for _, flag := range c.Flags {
|
|
|
|
if !flag.GetHidden() {
|
|
|
|
ret = append(ret, flag)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|