ctxtool/osctx/osctx.go (28 lines of code) (raw):

// Licensed to Elasticsearch B.V. under one or more contributor // license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright // ownership. Elasticsearch B.V. licenses this file to you under // the Apache License, Version 2.0 (the "License"); you may // not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, // software distributed under the License is distributed on an // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. package osctx import ( "context" "os" "os/signal" "github.com/elastic/go-concert/ctxtool" "github.com/elastic/go-concert/unison" ) // WithSignal creates a context that will be cancelled if any of the configured // signals is received by the process. The signal handler will be removed automatically in case the parent context // gets cancelled or when the cancel function is called. // // The context should be used to trigger application shutdown. If the signal is // received again, the signal handler will force shutdown the process with exit // code 3. // // example: // // func main() { // ctx, cancel := osctx.WithSignal(context.Background(), os.Kill) // defer cancel() // // for ctx.Err == nil { // // main run loop // } // } func WithSignal(parent unison.Canceler, sigs ...os.Signal) (context.Context, context.CancelFunc) { ctx, cancel := context.WithCancel(ctxtool.FromCanceller(parent)) ch := make(chan os.Signal, 1) go func() { defer func() { signal.Stop(ch) cancel() }() select { case <-ctx.Done(): return case <-ch: cancel() // force shutdown in case we receive another signal <-ch os.Exit(3) } }() signal.Notify(ch, sigs...) return ctx, cancel }