mirror of
https://github.com/safing/portmaster
synced 2025-09-01 18:19:12 +00:00
85 lines
2.2 KiB
Go
85 lines
2.2 KiB
Go
package updates
|
|
|
|
import (
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/tevino/abool"
|
|
|
|
"github.com/safing/portmaster/base/log"
|
|
)
|
|
|
|
var (
|
|
// RebootOnRestart defines whether the whole system, not just the service,
|
|
// should be restarted automatically when triggering a restart internally.
|
|
RebootOnRestart bool
|
|
|
|
restartPending = abool.New()
|
|
restartTriggered = abool.New()
|
|
|
|
restartTime time.Time
|
|
restartTimeLock sync.Mutex
|
|
)
|
|
|
|
// IsRestarting returns whether a restart has been triggered.
|
|
func IsRestarting() bool {
|
|
return restartTriggered.IsSet()
|
|
}
|
|
|
|
// RestartIsPending returns whether a restart is pending.
|
|
func RestartIsPending() (pending bool, restartAt time.Time) {
|
|
if restartPending.IsNotSet() {
|
|
return false, time.Time{}
|
|
}
|
|
|
|
restartTimeLock.Lock()
|
|
defer restartTimeLock.Unlock()
|
|
|
|
return true, restartTime
|
|
}
|
|
|
|
// DelayedRestart triggers a restart of the application by shutting down the
|
|
// module system gracefully and returning with RestartExitCode. The restart
|
|
// may be further delayed by up to 10 minutes by the internal task scheduling
|
|
// system. This only works if the process is managed by portmaster-start.
|
|
func DelayedRestart(delay time.Duration) {
|
|
// Check if restart is already pending.
|
|
if !restartPending.SetToIf(false, true) {
|
|
return
|
|
}
|
|
|
|
// Schedule the restart task.
|
|
log.Warningf("updates: restart triggered, will execute in %s", delay)
|
|
restartAt := time.Now().Add(delay)
|
|
// module.restartWorkerMgr.Delay(delay)
|
|
|
|
// Set restartTime.
|
|
restartTimeLock.Lock()
|
|
defer restartTimeLock.Unlock()
|
|
restartTime = restartAt
|
|
}
|
|
|
|
// AbortRestart aborts a (delayed) restart.
|
|
func AbortRestart() {
|
|
if restartPending.SetToIf(true, false) {
|
|
log.Warningf("updates: restart aborted")
|
|
|
|
// Cancel schedule.
|
|
// module.restartWorkerMgr.Delay(0)
|
|
}
|
|
}
|
|
|
|
// TriggerRestartIfPending triggers an automatic restart, if one is pending.
|
|
// This can be used to prepone a scheduled restart if the conditions are preferable.
|
|
func TriggerRestartIfPending() {
|
|
// if restartPending.IsSet() {
|
|
// module.restartWorkerMgr.Go()
|
|
// }
|
|
}
|
|
|
|
// RestartNow immediately executes a restart.
|
|
// This only works if the process is managed by portmaster-start.
|
|
func RestartNow() {
|
|
restartPending.Set()
|
|
// module.restartWorkerMgr.Go()
|
|
}
|