summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-26 10:06:13 -0500
committerJeff Carr <[email protected]>2025-10-26 10:06:13 -0500
commita75e4796680ecf33b74db60b6b780d6e7e6cc0f3 (patch)
treec53b12dc434b1b4d32edb6356388ea181efb4de2
parent7f6a5e689d5dee439a037ef815eaee24867c5f84 (diff)
new argv (much better than before)v0.0.129
-rw-r--r--argv.go (renamed from argv.struct.go)0
-rw-r--r--argv.template.go81
-rw-r--r--complete.go (renamed from argv.custom.go)32
-rw-r--r--doStrict.go6
-rw-r--r--exit.go9
-rw-r--r--main.go4
-rw-r--r--structs.go2
7 files changed, 30 insertions, 104 deletions
diff --git a/argv.struct.go b/argv.go
index 9e0db4b..9e0db4b 100644
--- a/argv.struct.go
+++ b/argv.go
diff --git a/argv.template.go b/argv.template.go
deleted file mode 100644
index 6948afe..0000000
--- a/argv.template.go
+++ /dev/null
@@ -1,81 +0,0 @@
-package main
-
-// these are stubbed in functions needed
-// just copy this file from another working app for now
-// you shouldn't need to change anything here
-// TODO: clean this up in argv
-
-import (
- "os"
-
- "go.wit.com/dev/alexflint/arg"
- "go.wit.com/gui"
- "go.wit.com/lib/env"
- "go.wit.com/lib/fhelp"
- "go.wit.com/log"
-)
-
-func (args) InitArgv() (string, string, string) {
- return APPNAME, BUILDTIME, VERSION
-}
-
-// this function will send the current argv PB to go-args for parsing
-func (args) ParseFlags(flags []string) error {
- var err error
- if me.pp == nil {
- // log.Info("Parse Flags GOT flags:", flags)
- me.pp, err = arg.ParseFlags(flags, &argv)
- // panic("got to the app's ParseFlags()")
- } else {
- panic("me.pp was not nil")
- }
- return err
-}
-
-// add this funcgion: this will print the help
-func (args) WriteHelpForSubcommand(cmd string) error {
- me.pp.WriteHelpForSubcommand(os.Stderr, cmd)
- return nil
-}
-
-// this will print the help for the subcmd
-func (args) WriteHelpForAutocomplete(part string, subcmd ...string) error {
- return me.pp.WriteHelpForAutocomplete(os.Stderr, os.Stdout, part, subcmd...)
-}
-
-func (args) WriteHelpForAutocompleteDebug(part string, subcmd ...string) error {
- f, _ := os.OpenFile("/tmp/argv.junk", os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)
- return me.pp.WriteHelpForAutocomplete(f, os.Stdout, part, subcmd...)
-}
-
-// add this funcgion: this will print the help
-func (args) WriteHelp() error {
- me.pp.WriteHelp(os.Stderr)
- return nil
-}
-
-func (args) InitGui() error {
- // panic("got here")
- arg.Register(&gui.ArgvGui)
- // me.gui = gui.PreInit()
- me.myGui = fhelp.Gui()
- return nil
-}
-
-func (args) Exit() {
- gui.UnloadToolkits()
- if env.Verbose() {
- log.Info("argv.Exit() called", APPNAME+".Exit()")
- }
- // remove this from the template for your app (or make one for youself if you need it)
- // forgeExit() // custom forge shutdown function
-}
-
-func (args) Help() string {
- return "got app help"
-}
-
-func (args) MustParse() error {
- me.pp = arg.MustParse(&argv)
- return nil
-}
diff --git a/argv.custom.go b/complete.go
index f41830a..07147d2 100644
--- a/argv.custom.go
+++ b/complete.go
@@ -1,8 +1,10 @@
package main
import (
- "os"
+ "fmt"
+ "strings"
+ "go.wit.com/dev/alexflint/arg"
"go.wit.com/lib/protobuf/argvpb"
)
@@ -24,17 +26,25 @@ go-mod-clean will try to verify your go.* files are using the newest package ver
`
}
-/*
- handles shell autocomplete
-*/
+func (args) MustParse() error {
+ me.pp = arg.MustParse(&argv)
+ return nil
+}
// sends the strings to bash or zsh that will be your options
-func (a args) SendCompletionStrings(pb *argvpb.Argv) {
- if pb.GetCmd() == "" {
- base := []string{"strict", "--restore", "purge", "lax", "--version"}
- pb.SendStrings(base)
- } else {
- pb.SubCommand(pb.Goargs...)
+func (a args) DoAutoComplete() error {
+ if argvpb.PB.GetCmd() == "" {
+ matches := []string{"strict", "--restore", "purge", "lax", "--version"}
+ fmt.Fprintf(argvpb.Stdout, " %s", strings.Join(matches, " "))
+ return nil
+ }
+ var err error
+ if me.pp == nil {
+ me.pp, err = arg.ParseFlagsArgv(&argv)
+ if err != nil {
+ return err
+ }
}
- os.Exit(0)
+ err = me.pp.WriteHelpForAutocomplete(argvpb.PB.Partial, argvpb.PB.Real...)
+ return err
}
diff --git a/doStrict.go b/doStrict.go
index c36278a..0df6ce7 100644
--- a/doStrict.go
+++ b/doStrict.go
@@ -32,10 +32,10 @@ func doStrict(repo *gitpb.Repo) error {
if repo.GetMasterBranchName() != repo.GetCurrentBranchName() {
log.Info("")
- log.Info("You are not operating on your git master branch.")
- log.Info("Publishing go.mod & go.sum files must come from from git version tag on the master branch")
+ log.Info("ERR: You are not operating on your git master branch.")
+ log.Info("ERR: Publishing go.mod & go.sum files must come from from git version tag on the master branch")
log.Info("")
- return errors.New(repo.GetGoPath() + " not in the git master branch")
+ return errors.New("not on the git master branch")
}
// not sure if this really needs to be run a second time. probably not, but whatever. who cares
diff --git a/exit.go b/exit.go
index 4e87fd2..b091f20 100644
--- a/exit.go
+++ b/exit.go
@@ -2,8 +2,8 @@ package main
import (
"fmt"
- "path/filepath"
+ "go.wit.com/lib/protobuf/argvpb"
"go.wit.com/lib/protobuf/gitpb"
"go.wit.com/log"
)
@@ -11,7 +11,7 @@ import (
func okExit(check *gitpb.Repo, msg string) {
log.Info("exit() go-mod-clean on", check.Namespace, "ok")
log.DaemonMode(true)
- me.argv.GoodExit(msg)
+ argvpb.GoodExit(msg)
}
func badExit(check *gitpb.Repo, err error) {
@@ -22,7 +22,6 @@ func badExit(check *gitpb.Repo, err error) {
eraseGoMod(check)
}
}
- fullpath := filepath.Join(check.FullPath)
- s := fmt.Sprintf("failed in %s", fullpath)
- me.argv.BadExit(s, err)
+ s := fmt.Sprintf("failed in %s", check.FullPath)
+ argvpb.BadExit(s, err)
}
diff --git a/main.go b/main.go
index e0f7373..e94f7dc 100644
--- a/main.go
+++ b/main.go
@@ -15,7 +15,7 @@ var configSave bool
func main() {
me = new(mainType)
- me.argv = argvpb.Autocomplete(&argv) // adds shell auto complete to go-args
+ argvpb.Init(&argv, APPNAME, BUILDTIME, VERSION) // adds shell auto-complete
me.forge, _ = forgepb.Init()
// figure out what directory we are running in
@@ -34,7 +34,7 @@ func main() {
badExit(nil, nil)
}
log.Info("todo: check return values here in go-mod-clean")
- me.argv.GoodExit("may have worked somewhat") // exits back to the shell via argv (with timing)
+ argvpb.GoodExit("may have worked somewhat") // exits back to the shell via argv (with timing)
}
// deletes all the git notes
diff --git a/structs.go b/structs.go
index c767cbb..d10069b 100644
--- a/structs.go
+++ b/structs.go
@@ -6,7 +6,6 @@ package main
import (
"go.wit.com/dev/alexflint/arg"
"go.wit.com/lib/fhelp"
- "go.wit.com/lib/protobuf/argvpb"
"go.wit.com/lib/protobuf/forgepb"
)
@@ -14,7 +13,6 @@ var me *mainType
// this app's variables
type mainType struct {
- argv *argvpb.Argv // more experiments for bash handling
pp *arg.Parser // for parsing the command line args. Yay to alexf lint!
myGui *fhelp.GuiPrep // for initializing the GUI toolkits
forge *forgepb.Forge