forge/argv.go

135 lines
6.8 KiB
Go
Raw Normal View History

2025-02-01 11:57:52 -06:00
// Copyright 2017-2025 WIT.COM Inc. All rights reserved.
// Use of this source code is governed by the GPL 3.0
2024-12-02 06:59:56 -06:00
package main
2025-01-06 15:44:56 -06:00
import (
"fmt"
"os"
)
2024-12-02 06:59:56 -06:00
/*
2025-01-06 21:29:19 -06:00
this parses the command line arguements using alex flint's go-arg
2024-12-02 06:59:56 -06:00
*/
var argv args
2025-01-06 21:29:19 -06:00
type args struct {
2025-02-22 09:42:49 -06:00
Checkout *CheckoutCmd `arg:"subcommand:checkout" help:"switch branches using 'git checkout'"`
Clean *CleanCmd `arg:"subcommand:clean" help:"start over at the beginning"`
Commit *EmptyCmd `arg:"subcommand:commit" help:"'git commit' but errors out if on wrong branch"`
Config *ConfigCmd `arg:"subcommand:config" help:"show your .config/forge/ settings"`
Dirty *DirtyCmd `arg:"subcommand:dirty" help:"show repos git says are dirty"`
GitFetch *FindCmd `arg:"subcommand:fetch" help:"run 'git fetch master'"`
List *FindCmd `arg:"subcommand:list" help:"print a table of the current repos"`
Patch *PatchCmd `arg:"subcommand:patch" help:"make patchsets"`
GitPull *FindCmd `arg:"subcommand:pull" help:"run 'git pull'"`
URL string `arg:"--connect" help:"forge url"`
All bool `arg:"--all" help:"git commit --all"`
Build string `arg:"--build" help:"build a repo"`
Install string `arg:"--install" help:"install a repo"`
BuildForge bool `arg:"--forge-rebuild" help:"download and rebuild forge"`
Force bool `arg:"--force" help:"try to strong arm things"`
Verbose bool `arg:"--verbose" help:"show more output"`
Bash bool `arg:"--bash" help:"generate bash completion"`
BashAuto []string `arg:"--auto-complete" help:"todo: move this to go-arg"`
// Show string `arg:"--show" help:"show a repo"`
2025-01-06 21:29:19 -06:00
}
type EmptyCmd struct {
}
2025-01-07 22:27:54 -06:00
type testCmd string
2025-01-18 15:50:06 -06:00
type CleanCmd struct {
2025-01-28 17:35:18 -06:00
Delete *EmptyCmd `arg:"subcommand:delete" help:"rescan repo"`
Devel *CleanDevelCmd `arg:"subcommand:devel" help:"clean and verify the devel branches"`
2025-01-28 17:35:18 -06:00
Force *EmptyCmd `arg:"subcommand:force" help:"do destructive stuff"`
GitReset *EmptyCmd `arg:"subcommand:git-reset" help:"git reset --hard"`
2025-01-29 19:59:55 -06:00
Pub *EmptyCmd `arg:"subcommand:pub" help:"clean target version numbers"`
2025-01-28 17:35:18 -06:00
User *EmptyCmd `arg:"subcommand:user" help:"clean the user branches"`
2025-01-28 21:56:43 -06:00
Repo string `arg:"--repo" help:"which repo to look at"`
2025-01-28 19:18:23 -06:00
}
2025-01-19 16:07:17 -06:00
type CleanDevelCmd struct {
Force bool `arg:"--force" help:"try to strong arm things"`
2025-01-18 15:50:06 -06:00
}
2025-01-06 15:44:56 -06:00
type PatchCmd struct {
2025-01-30 17:59:47 -06:00
List *EmptyCmd `arg:"subcommand:list" help:"your downloaded patchsets"`
Get *EmptyCmd `arg:"subcommand:get" help:"get the new patchsets"`
Show *EmptyCmd `arg:"subcommand:show" help:"your pending commits to your code"`
Submit string `arg:"--submit" help:"submit your commits"`
2025-01-06 15:44:56 -06:00
}
2025-01-06 19:16:00 -06:00
type ConfigAddCmd struct {
2025-01-06 21:29:19 -06:00
Path string `arg:"--path" help:"absolute path of the git repo"`
GoPath string `arg:"--gopath" help:"GO path of the git repo"`
2025-01-06 19:16:00 -06:00
Directory bool `arg:"--directory" default:"false" help:"repo is a directory to match against"`
ReadOnly bool `arg:"--readonly" default:"false" help:"repo is readonly"`
Writable bool `arg:"--writable" default:"false" help:"repo is writable"`
Favorite bool `arg:"--favorite" default:"false" help:"forge will always go-clone or git clone this"`
Private bool `arg:"--private" default:"false" help:"repo can not be published"`
Interesting bool `arg:"--interesting" default:"false" help:"something you decided was cool"`
2025-01-18 10:34:13 -06:00
DebName string `arg:"--debname" help:"the name of the debian package (or rpm, etc)"`
2025-01-06 19:16:00 -06:00
Master string `arg:"--master" help:"the git 'master' or 'main' branch name"`
Devel string `arg:"--devel" help:"the git devel branch name"`
User string `arg:"--user" help:"the git user branch name"`
}
type ConfigCmd struct {
2025-01-06 19:16:00 -06:00
Add *ConfigAddCmd `arg:"subcommand:add" help:"add a config setting"`
Fix *EmptyCmd `arg:"subcommand:fix" help:"fix .config/forge/ and/or repos.pb protobuf file"`
List *EmptyCmd `arg:"subcommand:list" help:"list your config settings"`
Delete string `arg:"--delete" help:"delete this repo"`
Register string `arg:"--register" help:"register your git URL (foo.com/mystuff) or (github.com/foo/bar)"`
}
2025-01-06 15:44:56 -06:00
type CheckoutCmd struct {
User *FindCmd `arg:"subcommand:user" help:"git checkout user"`
Devel *FindCmd `arg:"subcommand:devel" help:"git checkout devel"`
Master *FindCmd `arg:"subcommand:master" help:"git checkout master"`
}
2025-01-17 03:30:43 -06:00
type DirtyCmd struct {
}
2024-12-24 01:54:33 -06:00
type FindCmd struct {
2025-02-07 19:10:37 -06:00
All bool `arg:"--all" help:"select every repo (the default)"`
Mine bool `arg:"--mine" help:"your repos as defined in the forge config"`
Favorites bool `arg:"--favorites" help:"your repos configured as favorites"`
Private bool `arg:"--private" help:"your private repos from your .config/forge/"`
Dirty bool `arg:"--dirty" help:"only use dirty git repos"`
User bool `arg:"--user" help:"show repos on the user branch"`
2024-12-27 04:36:29 -06:00
// ReadOnly bool `arg:"--readonly" help:"include read-only repos"`
2024-12-24 01:54:33 -06:00
}
2024-12-02 06:59:56 -06:00
func (args) Version() string {
2025-01-07 17:16:03 -06:00
return ARGNAME + " " + VERSION + " Built on " + BUILDTIME
2024-12-02 06:59:56 -06:00
}
func (a args) Description() string {
return `
forge -- a tool to git repos at go.wit.com
2024-12-02 06:59:56 -06:00
but you can probably use it for other things
`
}
2025-01-06 16:53:13 -06:00
func (args) doBashHelpDebug() {
2025-01-06 15:44:56 -06:00
fmt.Fprintln(os.Stderr, "")
fmt.Fprintln(os.Stderr, "hello world")
var more string
p0 := "0" + argv.BashAuto[0]
p1 := "1" + argv.BashAuto[1]
p2 := "2" + argv.BashAuto[2]
if len(argv.BashAuto[1]) >= 0 {
more = "more"
} else {
more = "less"
}
p1a := fmt.Sprintf("1a.%s.%+v.\n", argv.BashAuto[1], len(argv.BashAuto[1]))
fmt.Fprintln(os.Stderr, "pull something else", argv.BashAuto, len(argv.BashAuto), p0, p1, p2, p1a, "end", more)
fmt.Fprintln(os.Stderr, "")
}