2024-01-09 01:16:00 -06:00
|
|
|
package main
|
|
|
|
|
2024-01-18 00:58:14 -06:00
|
|
|
import (
|
2024-01-15 08:11:08 -06:00
|
|
|
"embed"
|
2024-01-26 02:04:19 -06:00
|
|
|
"time"
|
2024-01-09 10:21:58 -06:00
|
|
|
|
2024-02-13 09:18:04 -06:00
|
|
|
"go.wit.com/lib/debugger"
|
2024-01-09 02:00:51 -06:00
|
|
|
"go.wit.com/log"
|
|
|
|
|
2024-01-18 05:03:04 -06:00
|
|
|
"go.wit.com/gui"
|
2024-01-09 01:16:00 -06:00
|
|
|
)
|
|
|
|
|
2024-01-15 21:11:28 -06:00
|
|
|
//go:embed resources/*
|
2024-01-15 08:11:08 -06:00
|
|
|
var resToolkit embed.FS
|
|
|
|
|
2024-01-09 01:16:00 -06:00
|
|
|
func main() {
|
2024-01-23 11:22:33 -06:00
|
|
|
me = new(autoType)
|
2024-01-24 22:22:34 -06:00
|
|
|
me.allrepos = make(map[string]*repo)
|
2024-01-18 05:03:04 -06:00
|
|
|
|
|
|
|
me.myGui = gui.New()
|
|
|
|
me.myGui.InitEmbed(resToolkit)
|
|
|
|
me.myGui.Default()
|
2024-01-09 01:16:00 -06:00
|
|
|
|
2024-02-13 09:18:04 -06:00
|
|
|
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-11 20:24:40 -06:00
|
|
|
|
2024-02-13 16:18:37 -06:00
|
|
|
vbox1 := me.mainbox.NewVerticalBox("BOX1")
|
2024-02-12 15:24:35 -06:00
|
|
|
globalDisplayOptions(vbox1)
|
2024-02-13 13:24:07 -06:00
|
|
|
docsBox(vbox1)
|
2024-02-13 09:18:04 -06:00
|
|
|
if debugger.ArgDebug() {
|
|
|
|
debuggerBox(vbox1)
|
|
|
|
}
|
2024-02-13 16:18:37 -06:00
|
|
|
// disable the interface while everything is scanned
|
|
|
|
me.Disable()
|
2024-02-12 15:24:35 -06:00
|
|
|
|
2024-02-13 16:18:37 -06:00
|
|
|
vbox2 := me.mainbox.NewVerticalBox("BOX2")
|
2024-02-12 15:24:35 -06:00
|
|
|
globalBuildOptions(vbox2)
|
2024-02-13 13:33:04 -06:00
|
|
|
me.summary = submitPatchesBox(vbox2)
|
2024-02-12 15:24:35 -06:00
|
|
|
|
2024-02-13 16:18:37 -06:00
|
|
|
globalResetOptions(me.mainbox)
|
2024-02-11 20:24:40 -06:00
|
|
|
|
2024-01-30 13:09:24 -06:00
|
|
|
repolistWindow()
|
|
|
|
|
2024-02-10 16:35:58 -06:00
|
|
|
// process everything on the command line
|
|
|
|
handleCmdLine()
|
|
|
|
|
2024-01-30 13:09:24 -06:00
|
|
|
for _, repo := range me.allrepos {
|
|
|
|
repo.newScan()
|
|
|
|
}
|
2024-02-13 16:18:37 -06:00
|
|
|
me.Enable()
|
2024-01-20 17:17:48 -06:00
|
|
|
|
2024-02-14 13:43:43 -06:00
|
|
|
// processing is done. update the repo summary box
|
|
|
|
me.summary.Update()
|
|
|
|
|
2024-02-16 17:55:53 -06:00
|
|
|
// scan repos every i seconds
|
|
|
|
// check every 'delay seconds for the checkbox changing
|
|
|
|
// this logic is unintuitive because I want it to fluidly
|
|
|
|
// never tricker quickly but also want to print something
|
|
|
|
// out that the app is alive since, technically
|
|
|
|
// the GUI is *NOT* this app and could be alive when
|
|
|
|
// the application is actually stalled somewhere
|
|
|
|
// plus these things are fun for me and a distraction when
|
|
|
|
// I've been working 50 days in a row on this gui code
|
|
|
|
|
|
|
|
// this also means that if you click the checkbox after
|
|
|
|
// the delay, then the scan will run right away, but if
|
|
|
|
// you check the checkbox twice in 5 seconds, it won't
|
|
|
|
// rerun until the delay again
|
|
|
|
var delay int = 99
|
|
|
|
var i int = delay
|
2024-01-26 11:59:59 -06:00
|
|
|
myTicker(1*time.Second, "newScan()", func() {
|
2024-01-26 02:04:19 -06:00
|
|
|
i += 1
|
2024-02-16 17:55:53 -06:00
|
|
|
// check if the checkbox is checked
|
|
|
|
if !me.autoScanReposCB.Checked() {
|
|
|
|
if i < delay {
|
|
|
|
i = delay
|
2024-01-26 02:04:19 -06:00
|
|
|
}
|
2024-02-16 17:55:53 -06:00
|
|
|
// print every 'delay' seconds
|
|
|
|
if i%delay == 0 {
|
2024-01-26 02:04:19 -06:00
|
|
|
log.Info("Not auto scanning", i)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2024-02-16 17:55:53 -06:00
|
|
|
if i < delay {
|
2024-01-26 02:04:19 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
i = 0
|
2024-02-16 17:55:53 -06:00
|
|
|
scanRepositories()
|
2024-01-26 02:04:19 -06:00
|
|
|
})
|
2024-01-09 01:16:00 -06:00
|
|
|
}
|