mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
60c5339042
* Graceful: Create callbacks to with contexts * Graceful: Say when Gitea is completely finished * Graceful: Git and Process within HammerTime Force all git commands to terminate at HammerTime Force all process commands to terminate at HammerTime Move almost all git processes to run as git Commands * Graceful: Always Hammer after Shutdown * ProcessManager: Add cancel functionality * Fix tests * Make sure that process.Manager.Kill() cancels * Make threadsafe access to Processes and remove own unused Kill * Remove cmd from the process manager as it is no longer used * the default context is the correct context * get rid of double till
91 lines
2.6 KiB
Go
91 lines
2.6 KiB
Go
// 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 (
|
|
"context"
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
// Errors for context.Err()
|
|
var (
|
|
ErrShutdown = fmt.Errorf("Graceful Manager called Shutdown")
|
|
ErrHammer = fmt.Errorf("Graceful Manager called Hammer")
|
|
ErrTerminate = fmt.Errorf("Graceful Manager called Terminate")
|
|
)
|
|
|
|
// ChannelContext is a context that wraps a channel and error as a context
|
|
type ChannelContext struct {
|
|
done <-chan struct{}
|
|
err error
|
|
}
|
|
|
|
// NewChannelContext creates a ChannelContext from a channel and error
|
|
func NewChannelContext(done <-chan struct{}, err error) *ChannelContext {
|
|
return &ChannelContext{
|
|
done: done,
|
|
err: err,
|
|
}
|
|
}
|
|
|
|
// Deadline returns the time when work done on behalf of this context
|
|
// should be canceled. There is no Deadline for a ChannelContext
|
|
func (ctx *ChannelContext) Deadline() (deadline time.Time, ok bool) {
|
|
return
|
|
}
|
|
|
|
// Done returns the channel provided at the creation of this context.
|
|
// When closed, work done on behalf of this context should be canceled.
|
|
func (ctx *ChannelContext) Done() <-chan struct{} {
|
|
return ctx.done
|
|
}
|
|
|
|
// Err returns nil, if Done is not closed. If Done is closed,
|
|
// Err returns the error provided at the creation of this context
|
|
func (ctx *ChannelContext) Err() error {
|
|
select {
|
|
case <-ctx.done:
|
|
return ctx.err
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// Value returns nil for all calls as no values are or can be associated with this context
|
|
func (ctx *ChannelContext) Value(key interface{}) interface{} {
|
|
return nil
|
|
}
|
|
|
|
// ShutdownContext returns a context.Context that is Done at shutdown
|
|
// Callers using this context should ensure that they are registered as a running server
|
|
// in order that they are waited for.
|
|
func (g *gracefulManager) ShutdownContext() context.Context {
|
|
return &ChannelContext{
|
|
done: g.IsShutdown(),
|
|
err: ErrShutdown,
|
|
}
|
|
}
|
|
|
|
// HammerContext returns a context.Context that is Done at hammer
|
|
// Callers using this context should ensure that they are registered as a running server
|
|
// in order that they are waited for.
|
|
func (g *gracefulManager) HammerContext() context.Context {
|
|
return &ChannelContext{
|
|
done: g.IsHammer(),
|
|
err: ErrHammer,
|
|
}
|
|
}
|
|
|
|
// TerminateContext returns a context.Context that is Done at terminate
|
|
// Callers using this context should ensure that they are registered as a terminating server
|
|
// in order that they are waited for.
|
|
func (g *gracefulManager) TerminateContext() context.Context {
|
|
return &ChannelContext{
|
|
done: g.IsTerminate(),
|
|
err: ErrTerminate,
|
|
}
|
|
}
|