2024-03-26 11:44:19 +00:00
|
|
|
package background
|
|
|
|
|
|
|
|
import (
|
2024-04-08 21:22:56 +01:00
|
|
|
"fmt"
|
|
|
|
"runtime"
|
2024-03-26 11:44:19 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"git.fjla.uk/owlboard/timetable-mgr/cif"
|
2024-03-26 22:33:11 +00:00
|
|
|
"git.fjla.uk/owlboard/timetable-mgr/corpus"
|
2024-03-26 11:44:19 +00:00
|
|
|
"git.fjla.uk/owlboard/timetable-mgr/helpers"
|
|
|
|
"git.fjla.uk/owlboard/timetable-mgr/log"
|
|
|
|
)
|
|
|
|
|
2024-04-08 21:22:56 +01:00
|
|
|
const frequency = 2 * time.Hour // Figure out a sensible frequency!
|
2024-03-26 11:44:19 +00:00
|
|
|
|
2024-03-29 14:01:57 +00:00
|
|
|
// Starts a background ticker to run background tasks. Uses the frequency configured in the background/ticker.go file
|
2024-03-26 11:44:19 +00:00
|
|
|
func InitTicker(cfg *helpers.Configuration, stop <-chan struct{}) {
|
|
|
|
go runTicker(cfg, stop)
|
2024-04-08 21:22:56 +01:00
|
|
|
|
|
|
|
// Run goroutine logging ticker if runtime set to debug
|
|
|
|
if helpers.Runtime == "debug" {
|
|
|
|
go goroutineTicker(stop)
|
|
|
|
}
|
2024-03-26 11:44:19 +00:00
|
|
|
}
|
|
|
|
|
2024-03-29 14:01:57 +00:00
|
|
|
// Runs the ticker and handles tick events
|
2024-03-26 11:44:19 +00:00
|
|
|
func runTicker(cfg *helpers.Configuration, stop <-chan struct{}) {
|
|
|
|
log.Msg.Sugar().Infof("Starting background ticker, runs every %s", frequency)
|
|
|
|
ticker := time.NewTicker(frequency)
|
|
|
|
defer ticker.Stop()
|
|
|
|
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-stop:
|
|
|
|
return
|
|
|
|
case <-ticker.C:
|
2024-04-03 22:25:27 +01:00
|
|
|
go cif.CheckCif(cfg)
|
2024-03-26 22:33:11 +00:00
|
|
|
go corpus.CheckCorpus(cfg)
|
2024-03-26 11:44:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-04-08 21:22:56 +01:00
|
|
|
|
|
|
|
// Starts a ticker that logs how many goroutines are running every two seconds
|
|
|
|
func goroutineTicker(stop <-chan struct{}) {
|
|
|
|
log.Msg.Warn("Starting goroutine Tracker ticker - DEBUG USE ONLY")
|
|
|
|
ticker := time.NewTicker(1000 * time.Millisecond)
|
|
|
|
defer ticker.Stop()
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-stop:
|
|
|
|
return
|
|
|
|
case <-ticker.C:
|
2024-04-08 21:39:52 +01:00
|
|
|
debugLog()
|
2024-04-08 21:22:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-04-08 21:39:52 +01:00
|
|
|
|
|
|
|
func debugLog() {
|
|
|
|
var memStats runtime.MemStats
|
|
|
|
runtime.ReadMemStats(&memStats)
|
|
|
|
|
|
|
|
goroutines := runtime.NumGoroutine()
|
|
|
|
|
|
|
|
fmt.Printf("\nNumber of goroutines: %d\n", goroutines)
|
|
|
|
fmt.Printf("Heap Allocated memory: %2f MB\n\n", float64(memStats.HeapAlloc)/(1024*1024))
|
|
|
|
}
|