submit-patchset/main.go

72 lines
1.5 KiB
Go
Raw Normal View History

package main
import (
"embed"
2024-02-17 08:38:44 -06:00
"os/user"
"strings"
"go.wit.com/lib/debugger"
2024-02-17 08:38:44 -06:00
"go.wit.com/lib/gui/repolist"
"go.wit.com/lib/gui/repostatus"
"go.wit.com/log"
"go.wit.com/gui"
)
//go:embed resources/*
var resToolkit embed.FS
func main() {
me = new(autoType)
me.myGui = gui.New()
me.myGui.InitEmbed(resToolkit)
me.myGui.Default()
me.autotypistWindow = me.myGui.NewWindow("autotypist: it types faster than you can.")
2024-02-13 16:18:37 -06:00
me.mainbox = me.autotypistWindow.NewBox("bw hbox", true)
2024-02-13 16:18:37 -06:00
vbox1 := me.mainbox.NewVerticalBox("BOX1")
globalDisplayOptions(vbox1)
docsBox(vbox1)
if debugger.ArgDebug() {
debuggerBox(vbox1)
}
2024-02-13 16:18:37 -06:00
// disable the interface while everything is scanned
me.Disable()
2024-02-13 16:18:37 -06:00
vbox2 := me.mainbox.NewVerticalBox("BOX2")
globalBuildOptions(vbox2)
me.summary = submitPatchesBox(vbox2)
2024-02-13 16:18:37 -06:00
globalResetOptions(me.mainbox)
2024-02-17 08:38:44 -06:00
me.repoView = repolist.AutotypistView()
usr, _ := user.Current()
if args.OnlyMe {
log.Info("not scanning everything")
} else {
log.Info("scanning everything in ~/go/src")
for i, path := range repostatus.ListGitDirectories() {
// log.Info("addRepo()", i, path)
path = strings.TrimPrefix(path, me.goSrcPwd.String())
path = strings.Trim(path, "/")
log.Info("addRepo()", i, path)
me.repoView.AddRepo(path, "master", "devel", usr.Username)
}
}
// process everything on the command line
handleCmdLine()
2024-02-17 08:38:44 -06:00
repolist.ScanRepositories()
2024-02-13 16:18:37 -06:00
me.Enable()
2024-02-14 13:43:43 -06:00
// processing is done. update the repo summary box
me.summary.Update()
2024-02-17 08:38:44 -06:00
// intermittently scans the status indefinitly
repolist.Watchdog()
}