storj/cmd/storj-sim/cancelable.go
2019-01-16 18:09:57 -05:00

35 lines
596 B
Go

// Copyright (C) 2018 Storj Labs, Inc.
// See LICENSE for copying information.
package main
import (
"context"
"os"
"os/signal"
)
// NewCLIContext creates a context that can be canceled with Ctrl-C
func NewCLIContext(root context.Context) (context.Context, func()) {
// trap Ctrl+C and call cancel on the context
ctx, cancel := context.WithCancel(root)
signals := make(chan os.Signal, 1)
signal.Notify(signals, os.Interrupt)
stop := func() {
signal.Stop(signals)
cancel()
}
go func() {
select {
case <-signals:
stop()
case <-ctx.Done():
}
}()
return ctx, stop
}