diff options
author | Robin Jarry <robin@jarry.cc> | 2023-10-03 22:12:10 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-10-28 19:24:49 +0200 |
commit | e54486ee40c9cedde9d4dae3e89d8b5f932188ee (patch) | |
tree | 254f032ef94920c28fbb9be8f918e61082a2015d /commands/move-tab.go | |
parent | 9a4518476d8c8f28340c6b44cd808e6d58fbeb98 (diff) | |
download | aerc-e54486ee40c9cedde9d4dae3e89d8b5f932188ee.tar.gz |
commands: parse arguments with go-opt
Use the argument parsing framework introduced earlier to unify the
parsing of (almost) all command options. Remove custom parsing code and
to avoid extraneous types, add fields with `opt` tags on command structs
that have options and arguments. Commands that take no argument do not
need anything.
Since the command objects now carry data, create a new temporary
instance of them before passing them to opt.ArgsToStruct when executing
a command.
A few of the commands use specific semantics for parsing (:choose), or
are delegating argument parsing to another function (:sort, :search,
:filter). For these commands, simply add a dummy "-" passthrough
argument. Since all commands still have the argument list (after split)
nothing needs to be changed in this area.
There should be no functional change besides the Usage strings and
reported errors which are now generated automatically.
Signed-off-by: Robin Jarry <robin@jarry.cc>
Reviewed-by: Koni Marti <koni.marti@gmail.com>
Tested-by: Moritz Poldrack <moritz@poldrack.dev>
Tested-by: Inwit <inwit@sindominio.net>
Diffstat (limited to 'commands/move-tab.go')
-rw-r--r-- | commands/move-tab.go | 38 |
1 files changed, 18 insertions, 20 deletions
diff --git a/commands/move-tab.go b/commands/move-tab.go index 1aa20880..23580f2d 100644 --- a/commands/move-tab.go +++ b/commands/move-tab.go @@ -1,19 +1,33 @@ package commands import ( - "fmt" "strconv" "strings" "git.sr.ht/~rjarry/aerc/app" ) -type MoveTab struct{} +type MoveTab struct { + Index int `opt:"index" metavar:"[+|-]<index>" action:"ParseIndex"` + Relative bool +} func init() { register(MoveTab{}) } +func (m *MoveTab) ParseIndex(arg string) error { + i, err := strconv.ParseInt(arg, 10, 64) + if err != nil { + return err + } + m.Index = int(i) + if strings.HasPrefix(arg, "+") || strings.HasPrefix(arg, "-") { + m.Relative = true + } + return nil +} + func (MoveTab) Aliases() []string { return []string{"move-tab"} } @@ -22,23 +36,7 @@ func (MoveTab) Complete(args []string) []string { return nil } -func (MoveTab) Execute(args []string) error { - if len(args) == 1 { - return fmt.Errorf("Usage: %s [+|-]<index>", args[0]) - } - - joinedArgs := strings.Join(args[1:], "") - - n, err := strconv.Atoi(joinedArgs) - if err != nil { - return fmt.Errorf("failed to parse index argument: %w", err) - } - - var relative bool - if strings.HasPrefix(joinedArgs, "+") || strings.HasPrefix(joinedArgs, "-") { - relative = true - } - app.MoveTab(n, relative) - +func (m MoveTab) Execute(args []string) error { + app.MoveTab(m.Index, m.Relative) return nil } |