summaryrefslogtreecommitdiff
path: root/watchdog.go
diff options
context:
space:
mode:
Diffstat (limited to 'watchdog.go')
-rw-r--r--watchdog.go75
1 files changed, 75 insertions, 0 deletions
diff --git a/watchdog.go b/watchdog.go
new file mode 100644
index 0000000..949d455
--- /dev/null
+++ b/watchdog.go
@@ -0,0 +1,75 @@
+package repolist
+
+import (
+ "fmt"
+ "time"
+
+ "go.wit.com/log"
+)
+
+// 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
+func Watchdog() {
+ var delay int = 99
+ var i int = delay
+ MyTicker(1*time.Second, "newScan()", func() {
+ i += 1
+ // check if the checkbox is checked
+ if !me.autoScan {
+ if i < delay {
+ i = delay
+ }
+ // print every 'delay' seconds
+ if i%delay == 0 {
+ log.Info("Not auto scanning", i)
+ }
+ return
+ }
+ if i < delay {
+ return
+ }
+ i = 0
+ ScanRepositories()
+ })
+}
+
+// timeFunction takes a function as an argument and returns the execution time.
+func timeFunction(f func()) time.Duration {
+ startTime := time.Now() // Record the start time
+ f() // Execute the function
+ return time.Since(startTime) // Calculate the elapsed time
+}
+
+func MyTicker(t time.Duration, name string, f func()) {
+ ticker := time.NewTicker(t)
+ defer ticker.Stop()
+ done := make(chan bool)
+ /*
+ go func() {
+ time.Sleep(10 * time.Second)
+ done <- true
+ }()
+ */
+ for {
+ select {
+ case <-done:
+ fmt.Println("Done!")
+ return
+ case t := <-ticker.C:
+ log.Verbose(name, "Current time: ", t)
+ f()
+ }
+ }
+}