2019-11-21 18:32:02 +00:00
// Copyright 2019 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package graceful
import (
2019-11-30 14:40:22 +00:00
"context"
2019-12-15 09:51:28 +00:00
"sync"
2019-11-21 18:32:02 +00:00
"time"
"code.gitea.io/gitea/modules/log"
2019-11-30 14:40:22 +00:00
"code.gitea.io/gitea/modules/process"
2019-11-21 18:32:02 +00:00
"code.gitea.io/gitea/modules/setting"
)
type state uint8
const (
stateInit state = iota
stateRunning
stateShuttingDown
stateTerminate
)
// There are three places that could inherit sockets:
//
// * HTTP or HTTPS main listener
// * HTTP redirection fallback
// * SSH
//
// If you add an additional place you must increment this number
// and add a function to call manager.InformCleanup if it's not going to be used
const numberOfServersToCreate = 3
// Manager represents the graceful server manager interface
2019-12-15 09:51:28 +00:00
var manager * Manager
var initOnce = sync . Once { }
// GetManager returns the Manager
func GetManager ( ) * Manager {
InitManager ( context . Background ( ) )
return manager
}
// InitManager creates the graceful manager in the provided context
func InitManager ( ctx context . Context ) {
initOnce . Do ( func ( ) {
manager = newGracefulManager ( ctx )
// Set the process default context to the HammerContext
process . DefaultContext = manager . HammerContext ( )
} )
2019-11-21 18:32:02 +00:00
}
2019-11-30 14:40:22 +00:00
// CallbackWithContext is combined runnable and context to watch to see if the caller has finished
type CallbackWithContext func ( ctx context . Context , callback func ( ) )
// RunnableWithShutdownFns is a runnable with functions to run at shutdown and terminate
// After the callback to atShutdown is called and is complete, the main function must return.
// Similarly the callback function provided to atTerminate must return once termination is complete.
// Please note that use of the atShutdown and atTerminate callbacks will create go-routines that will wait till their respective signals
// - users must therefore be careful to only call these as necessary.
// If run is not expected to run indefinitely RunWithShutdownChan is likely to be more appropriate.
type RunnableWithShutdownFns func ( atShutdown , atTerminate func ( context . Context , func ( ) ) )
// RunWithShutdownFns takes a function that has both atShutdown and atTerminate callbacks
// After the callback to atShutdown is called and is complete, the main function must return.
// Similarly the callback function provided to atTerminate must return once termination is complete.
// Please note that use of the atShutdown and atTerminate callbacks will create go-routines that will wait till their respective signals
// - users must therefore be careful to only call these as necessary.
// If run is not expected to run indefinitely RunWithShutdownChan is likely to be more appropriate.
2019-12-15 09:51:28 +00:00
func ( g * Manager ) RunWithShutdownFns ( run RunnableWithShutdownFns ) {
2019-11-30 14:40:22 +00:00
g . runningServerWaitGroup . Add ( 1 )
defer g . runningServerWaitGroup . Done ( )
run ( func ( ctx context . Context , atShutdown func ( ) ) {
go func ( ) {
select {
case <- g . IsShutdown ( ) :
atShutdown ( )
case <- ctx . Done ( ) :
return
}
} ( )
} , func ( ctx context . Context , atTerminate func ( ) ) {
g . RunAtTerminate ( ctx , atTerminate )
} )
}
// RunnableWithShutdownChan is a runnable with functions to run at shutdown and terminate.
// After the atShutdown channel is closed, the main function must return once shutdown is complete.
// (Optionally IsHammer may be waited for instead however, this should be avoided if possible.)
// The callback function provided to atTerminate must return once termination is complete.
// Please note that use of the atTerminate function will create a go-routine that will wait till terminate - users must therefore be careful to only call this as necessary.
type RunnableWithShutdownChan func ( atShutdown <- chan struct { } , atTerminate CallbackWithContext )
// RunWithShutdownChan takes a function that has channel to watch for shutdown and atTerminate callbacks
// After the atShutdown channel is closed, the main function must return once shutdown is complete.
// (Optionally IsHammer may be waited for instead however, this should be avoided if possible.)
// The callback function provided to atTerminate must return once termination is complete.
// Please note that use of the atTerminate function will create a go-routine that will wait till terminate - users must therefore be careful to only call this as necessary.
2019-12-15 09:51:28 +00:00
func ( g * Manager ) RunWithShutdownChan ( run RunnableWithShutdownChan ) {
2019-11-30 14:40:22 +00:00
g . runningServerWaitGroup . Add ( 1 )
defer g . runningServerWaitGroup . Done ( )
run ( g . IsShutdown ( ) , func ( ctx context . Context , atTerminate func ( ) ) {
g . RunAtTerminate ( ctx , atTerminate )
} )
}
// RunWithShutdownContext takes a function that has a context to watch for shutdown.
// After the provided context is Done(), the main function must return once shutdown is complete.
// (Optionally the HammerContext may be obtained and waited for however, this should be avoided if possible.)
2019-12-15 09:51:28 +00:00
func ( g * Manager ) RunWithShutdownContext ( run func ( context . Context ) ) {
2019-11-30 14:40:22 +00:00
g . runningServerWaitGroup . Add ( 1 )
defer g . runningServerWaitGroup . Done ( )
run ( g . ShutdownContext ( ) )
}
// RunAtTerminate adds to the terminate wait group and creates a go-routine to run the provided function at termination
2019-12-15 09:51:28 +00:00
func ( g * Manager ) RunAtTerminate ( ctx context . Context , terminate func ( ) ) {
2019-11-30 14:40:22 +00:00
g . terminateWaitGroup . Add ( 1 )
go func ( ) {
select {
case <- g . IsTerminate ( ) :
terminate ( )
case <- ctx . Done ( ) :
}
g . terminateWaitGroup . Done ( )
} ( )
}
// RunAtShutdown creates a go-routine to run the provided function at shutdown
2019-12-15 09:51:28 +00:00
func ( g * Manager ) RunAtShutdown ( ctx context . Context , shutdown func ( ) ) {
2019-11-30 14:40:22 +00:00
go func ( ) {
select {
case <- g . IsShutdown ( ) :
shutdown ( )
case <- ctx . Done ( ) :
}
} ( )
}
// RunAtHammer creates a go-routine to run the provided function at shutdown
2019-12-15 09:51:28 +00:00
func ( g * Manager ) RunAtHammer ( ctx context . Context , hammer func ( ) ) {
2019-11-30 14:40:22 +00:00
go func ( ) {
select {
case <- g . IsHammer ( ) :
hammer ( )
case <- ctx . Done ( ) :
}
} ( )
}
2019-12-15 09:51:28 +00:00
func ( g * Manager ) doShutdown ( ) {
2019-11-21 18:32:02 +00:00
if ! g . setStateTransition ( stateRunning , stateShuttingDown ) {
return
}
g . lock . Lock ( )
close ( g . shutdown )
g . lock . Unlock ( )
if setting . GracefulHammerTime >= 0 {
go g . doHammerTime ( setting . GracefulHammerTime )
}
go func ( ) {
g . WaitForServers ( )
2019-11-30 14:40:22 +00:00
// Mop up any remaining unclosed events.
g . doHammerTime ( 0 )
2019-11-21 18:32:02 +00:00
<- time . After ( 1 * time . Second )
g . doTerminate ( )
2019-12-15 09:51:28 +00:00
g . WaitForTerminate ( )
g . lock . Lock ( )
close ( g . done )
g . lock . Unlock ( )
2019-11-21 18:32:02 +00:00
} ( )
}
2019-12-15 09:51:28 +00:00
func ( g * Manager ) doHammerTime ( d time . Duration ) {
2019-11-21 18:32:02 +00:00
time . Sleep ( d )
2019-12-15 09:51:28 +00:00
g . lock . Lock ( )
2019-11-21 18:32:02 +00:00
select {
case <- g . hammer :
default :
log . Warn ( "Setting Hammer condition" )
close ( g . hammer )
}
2019-12-15 09:51:28 +00:00
g . lock . Unlock ( )
2019-11-21 18:32:02 +00:00
}
2019-12-15 09:51:28 +00:00
func ( g * Manager ) doTerminate ( ) {
2019-11-21 18:32:02 +00:00
if ! g . setStateTransition ( stateShuttingDown , stateTerminate ) {
return
}
g . lock . Lock ( )
2019-12-15 09:51:28 +00:00
select {
case <- g . terminate :
default :
log . Warn ( "Terminating" )
close ( g . terminate )
}
2019-11-21 18:32:02 +00:00
g . lock . Unlock ( )
}
// IsChild returns if the current process is a child of previous Gitea process
2019-12-15 09:51:28 +00:00
func ( g * Manager ) IsChild ( ) bool {
2019-11-21 18:32:02 +00:00
return g . isChild
}
// IsShutdown returns a channel which will be closed at shutdown.
// The order of closure is IsShutdown, IsHammer (potentially), IsTerminate
2019-12-15 09:51:28 +00:00
func ( g * Manager ) IsShutdown ( ) <- chan struct { } {
2019-11-21 18:32:02 +00:00
return g . shutdown
}
// IsHammer returns a channel which will be closed at hammer
// The order of closure is IsShutdown, IsHammer (potentially), IsTerminate
// Servers running within the running server wait group should respond to IsHammer
// if not shutdown already
2019-12-15 09:51:28 +00:00
func ( g * Manager ) IsHammer ( ) <- chan struct { } {
2019-11-21 18:32:02 +00:00
return g . hammer
}
// IsTerminate returns a channel which will be closed at terminate
// The order of closure is IsShutdown, IsHammer (potentially), IsTerminate
// IsTerminate will only close once all running servers have stopped
2019-12-15 09:51:28 +00:00
func ( g * Manager ) IsTerminate ( ) <- chan struct { } {
2019-11-21 18:32:02 +00:00
return g . terminate
}
// ServerDone declares a running server done and subtracts one from the
// running server wait group. Users probably do not want to call this
// and should use one of the RunWithShutdown* functions
2019-12-15 09:51:28 +00:00
func ( g * Manager ) ServerDone ( ) {
2019-11-21 18:32:02 +00:00
g . runningServerWaitGroup . Done ( )
}
// WaitForServers waits for all running servers to finish. Users should probably
// instead use AtTerminate or IsTerminate
2019-12-15 09:51:28 +00:00
func ( g * Manager ) WaitForServers ( ) {
2019-11-21 18:32:02 +00:00
g . runningServerWaitGroup . Wait ( )
}
// WaitForTerminate waits for all terminating actions to finish.
// Only the main go-routine should use this
2019-12-15 09:51:28 +00:00
func ( g * Manager ) WaitForTerminate ( ) {
2019-11-21 18:32:02 +00:00
g . terminateWaitGroup . Wait ( )
}
2019-12-15 09:51:28 +00:00
func ( g * Manager ) getState ( ) state {
2019-11-21 18:32:02 +00:00
g . lock . RLock ( )
defer g . lock . RUnlock ( )
return g . state
}
2019-12-15 09:51:28 +00:00
func ( g * Manager ) setStateTransition ( old , new state ) bool {
2019-11-21 18:32:02 +00:00
if old != g . getState ( ) {
return false
}
g . lock . Lock ( )
if g . state != old {
g . lock . Unlock ( )
return false
}
g . state = new
g . lock . Unlock ( )
return true
}
2019-12-15 09:51:28 +00:00
func ( g * Manager ) setState ( st state ) {
2019-11-21 18:32:02 +00:00
g . lock . Lock ( )
defer g . lock . Unlock ( )
g . state = st
}
// InformCleanup tells the cleanup wait group that we have either taken a listener
// or will not be taking a listener
2019-12-15 09:51:28 +00:00
func ( g * Manager ) InformCleanup ( ) {
2019-11-21 18:32:02 +00:00
g . createServerWaitGroup . Done ( )
}
2019-12-15 09:51:28 +00:00
// Done allows the manager to be viewed as a context.Context, it returns a channel that is closed when the server is finished terminating
func ( g * Manager ) Done ( ) <- chan struct { } {
return g . done
}
// Err allows the manager to be viewed as a context.Context done at Terminate, it returns ErrTerminate
func ( g * Manager ) Err ( ) error {
select {
case <- g . Done ( ) :
return ErrTerminate
default :
return nil
}
}
// Value allows the manager to be viewed as a context.Context done at Terminate, it has no values
func ( g * Manager ) Value ( key interface { } ) interface { } {
return nil
}
// Deadline returns nil as there is no fixed Deadline for the manager, it allows the manager to be viewed as a context.Context
func ( g * Manager ) Deadline ( ) ( deadline time . Time , ok bool ) {
return
}