Files
TorrServerJellyfin/server/cmd/preconfig_win.go
2023-04-26 19:01:55 +03:00

59 lines
1.5 KiB
Go

//go:build windows
// +build windows
package main
import (
"syscall"
"time"
"server/torr"
"server/torr/state"
)
const (
EsSystemRequired = 0x00000001
EsAwaymodeRequired = 0x00000040 // Added for future improvements
EsContinuous = 0x80000000
)
var pulseTime = 1 * time.Minute
func Preconfig(kill bool) {
go func() {
// don't sleep/hibernate windows
kernel32 := syscall.NewLazyDLL("kernel32.dll")
setThreadExecStateProc := kernel32.NewProc("SetThreadExecutionState")
currentExecState := uintptr(EsContinuous)
normalExecutionState := uintptr(EsContinuous)
systemRequireState := uintptr(EsSystemRequired | EsContinuous)
pulse := time.NewTicker(pulseTime)
for {
select {
case <-pulse.C:
{
systemRequired := false
for _, torrent := range torr.ListTorrent() {
if torrent.Stat != state.TorrentInDB {
systemRequired = true
break
}
}
if systemRequired && currentExecState != systemRequireState {
// Looks like sending just EsSystemRequired to clear timer is broken in Win11.
// Enable system required to avoid the system to idle to sleep.
currentExecState = systemRequireState
setThreadExecStateProc.Call(systemRequireState)
}
if !systemRequired && currentExecState != normalExecutionState {
// Clear EXECUTION_STATE flags to disable away mode and allow the system to idle to sleep normally.
currentExecState = normalExecutionState
setThreadExecStateProc.Call(normalExecutionState)
}
}
}
}
}()
}