mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
48 lines
1 KiB
Go
48 lines
1 KiB
Go
|
package contextutil
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
// NewStopChanContext returns new context for the given stopCh, together with cancel function.
|
||
|
//
|
||
|
// The returned context is canceled on the following events:
|
||
|
//
|
||
|
// - when stopCh is closed
|
||
|
// - when the returned CancelFunc is called
|
||
|
//
|
||
|
// The caller must call the returned CancelFunc when the context is no longer needed.
|
||
|
func NewStopChanContext(stopCh <-chan struct{}) (context.Context, context.CancelFunc) {
|
||
|
ctx := &stopChanContext{
|
||
|
stopCh: stopCh,
|
||
|
}
|
||
|
return context.WithCancel(ctx)
|
||
|
}
|
||
|
|
||
|
// stopChanContext implements context.Context for stopCh passed to newStopChanContext.
|
||
|
type stopChanContext struct {
|
||
|
stopCh <-chan struct{}
|
||
|
}
|
||
|
|
||
|
func (ctx *stopChanContext) Deadline() (time.Time, bool) {
|
||
|
return time.Time{}, false
|
||
|
}
|
||
|
|
||
|
func (ctx *stopChanContext) Done() <-chan struct{} {
|
||
|
return ctx.stopCh
|
||
|
}
|
||
|
|
||
|
func (ctx *stopChanContext) Err() error {
|
||
|
select {
|
||
|
case <-ctx.stopCh:
|
||
|
return context.Canceled
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (ctx *stopChanContext) Value(key any) any {
|
||
|
return nil
|
||
|
}
|