mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-24 08:02:18 +02:00
e34daae0cf
* Refactor: move cncd/pipeline/ to pipeline/ * Refactor: move pipeline/pipeline/ to pipeline/
37 lines
801 B
Go
37 lines
801 B
Go
package interrupt
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"os/signal"
|
|
)
|
|
|
|
// WithContext returns a copy of parent context whose Done channel is closed
|
|
// when an os interrupt signal is received.
|
|
func WithContext(ctx context.Context) context.Context {
|
|
return WithContextFunc(ctx, func() {
|
|
println("ctrl+c received, terminating process")
|
|
})
|
|
}
|
|
|
|
// WithContextFunc returns a copy of parent context that is cancelled when
|
|
// an os interrupt signal is received. The callback function f is invoked
|
|
// before cancellation.
|
|
func WithContextFunc(ctx context.Context, f func()) context.Context {
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
go func() {
|
|
c := make(chan os.Signal)
|
|
signal.Notify(c, os.Interrupt)
|
|
defer signal.Stop(c)
|
|
|
|
select {
|
|
case <-ctx.Done():
|
|
case <-c:
|
|
f()
|
|
cancel()
|
|
}
|
|
}()
|
|
|
|
return ctx
|
|
}
|