cleanup code
This commit is contained in:
parent
b58e786943
commit
e660d5937a
4 changed files with 48 additions and 69 deletions
66
cron.go
66
cron.go
|
@ -1,66 +0,0 @@
|
||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
"log"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"git.1e99.eu/1e99/wolbodge/devices"
|
|
||||||
"git.1e99.eu/1e99/wolbodge/sessions"
|
|
||||||
)
|
|
||||||
|
|
||||||
func DeviceCheck(logger *log.Logger, device devices.Device, wantStatus func() (bool, error), exit <-chan bool) {
|
|
||||||
for {
|
|
||||||
select {
|
|
||||||
case <-exit:
|
|
||||||
break
|
|
||||||
default:
|
|
||||||
status, err := device.Status()
|
|
||||||
if err != nil {
|
|
||||||
logger.Printf("Failed to fetch device status, waiting 1 minute until next attempt: %s", err)
|
|
||||||
time.Sleep(1 * time.Minute)
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
want, err := wantStatus()
|
|
||||||
if err != nil {
|
|
||||||
logger.Printf("Failed to fetch want status, waiting 1 minute until next attempt: %s", err)
|
|
||||||
time.Sleep(1 * time.Minute)
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
if status == want {
|
|
||||||
// Don't lock up our single-threaded session storage too much
|
|
||||||
time.Sleep(2 * time.Second)
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
err = device.PushPowerButton()
|
|
||||||
if err != nil {
|
|
||||||
logger.Printf("Failed to push power button, waiting 2 minutes until next attempt: %s", err)
|
|
||||||
// Cooldown to not overwhelm the device with start/stop requests
|
|
||||||
time.Sleep(2 * time.Minute)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
logger.Printf("Pushed power button")
|
|
||||||
time.Sleep(2 * time.Minute)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func PruneStorage(logger *log.Logger, storage sessions.Storage, interval time.Duration, exit <-chan bool) {
|
|
||||||
for {
|
|
||||||
select {
|
|
||||||
case <-exit:
|
|
||||||
break
|
|
||||||
default:
|
|
||||||
/*pruned, err := storage.PruneTickets()
|
|
||||||
if err != nil {
|
|
||||||
logger.Printf("Failed to prune tickets: %s", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
logger.Printf("Pruned %d tickets", pruned)
|
|
||||||
time.Sleep(interval)*/
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,6 +1,51 @@
|
||||||
package devices
|
package devices
|
||||||
|
|
||||||
|
import (
|
||||||
|
"log"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
type Device interface {
|
type Device interface {
|
||||||
Status() (bool, error)
|
Status() (bool, error)
|
||||||
PushPowerButton() error
|
PushPowerButton() error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func KeepDeviceInSync(logger *log.Logger, device Device, wantStatus func() (bool, error), exit <-chan bool) {
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-exit:
|
||||||
|
break
|
||||||
|
default:
|
||||||
|
status, err := device.Status()
|
||||||
|
if err != nil {
|
||||||
|
logger.Printf("Failed to fetch device status, waiting 1 minute until next attempt: %s", err)
|
||||||
|
time.Sleep(1 * time.Minute)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
want, err := wantStatus()
|
||||||
|
if err != nil {
|
||||||
|
logger.Printf("Failed to fetch want status, waiting 1 minute until next attempt: %s", err)
|
||||||
|
time.Sleep(1 * time.Minute)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if status == want {
|
||||||
|
// Don't lock up our single-threaded session storage too much
|
||||||
|
time.Sleep(2 * time.Second)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
err = device.PushPowerButton()
|
||||||
|
if err != nil {
|
||||||
|
logger.Printf("Failed to push power button, waiting 2 minutes until next attempt: %s", err)
|
||||||
|
// Cooldown to not overwhelm the device with start/stop requests
|
||||||
|
time.Sleep(2 * time.Minute)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.Printf("Pushed power button")
|
||||||
|
time.Sleep(2 * time.Minute)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -8,6 +8,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// TODO: Do not use subprocesses here, they are unreliable, provide hidden dependencies and are a common target for vulnerabilities.
|
// TODO: Do not use subprocesses here, they are unreliable, provide hidden dependencies and are a common target for vulnerabilities.
|
||||||
|
// TODO: Improve pulldown, pullup
|
||||||
func NewLibgpiod(gpiochip string, powerButtonPin int, powerLEDPin int) Device {
|
func NewLibgpiod(gpiochip string, powerButtonPin int, powerLEDPin int) Device {
|
||||||
device := &libgpiod{
|
device := &libgpiod{
|
||||||
gpiochip: gpiochip,
|
gpiochip: gpiochip,
|
||||||
|
|
5
main.go
5
main.go
|
@ -5,8 +5,8 @@ import (
|
||||||
"html/template"
|
"html/template"
|
||||||
"log"
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
"time"
|
|
||||||
|
|
||||||
|
"git.1e99.eu/1e99/wolbodge/devices"
|
||||||
"git.1e99.eu/1e99/wolbodge/routes"
|
"git.1e99.eu/1e99/wolbodge/routes"
|
||||||
|
|
||||||
_ "embed"
|
_ "embed"
|
||||||
|
@ -46,8 +46,7 @@ func Run() error {
|
||||||
mux.Handle("DELETE /api/session/{session_id}", routes.APIEndSession(storage))
|
mux.Handle("DELETE /api/session/{session_id}", routes.APIEndSession(storage))
|
||||||
|
|
||||||
exit := make(chan bool)
|
exit := make(chan bool)
|
||||||
go PruneStorage(logger, storage, 10*time.Second, exit)
|
go devices.KeepDeviceInSync(logger, device, storage.HasSessions, exit)
|
||||||
go DeviceCheck(logger, device, storage.HasSessions, exit)
|
|
||||||
|
|
||||||
logger.Printf("Listening on %s", address)
|
logger.Printf("Listening on %s", address)
|
||||||
err = http.ListenAndServe(address, mux)
|
err = http.ListenAndServe(address, mux)
|
||||||
|
|
Loading…
Add table
Reference in a new issue