Refactor TrapSignal

This commit is contained in:
Alessio Treglia 2018-11-02 13:44:40 +00:00
parent 48192ea3d4
commit 36bb4409b6
No known key found for this signature in database
GPG Key ID: E8A48AE5311D765A
2 changed files with 24 additions and 19 deletions

View File

@ -2,18 +2,13 @@ package lcd
import (
"errors"
"net"
"net/http"
"os"
"os/signal"
"syscall"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/client/context"
"github.com/cosmos/cosmos-sdk/client/keys"
"github.com/cosmos/cosmos-sdk/client/rpc"
"github.com/cosmos/cosmos-sdk/client/tx"
"github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/cosmos-sdk/server"
auth "github.com/cosmos/cosmos-sdk/x/auth/client/rest"
bank "github.com/cosmos/cosmos-sdk/x/bank/client/rest"
gov "github.com/cosmos/cosmos-sdk/x/gov/client/rest"
@ -25,6 +20,9 @@ import (
"github.com/spf13/viper"
"github.com/tendermint/tendermint/libs/log"
tmserver "github.com/tendermint/tendermint/rpc/lib/server"
"net"
"net/http"
"os"
)
const (
@ -59,23 +57,11 @@ func ServeCommand(cdc *codec.Codec) *cobra.Command {
var listener net.Listener
var fingerprint string
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
closeListener := func() {
err := listener.Close()
logger.Error("error closing listener", "err", err)
}
go func() {
sig := <-sigs
switch sig {
case syscall.SIGTERM:
defer closeListener()
os.Exit(128 + int(syscall.SIGTERM))
case syscall.SIGINT:
defer closeListener()
os.Exit(128 + int(syscall.SIGINT))
}
}()
server.TrapSignal(closeListener)
if viper.GetBool(flagInsecure) {
listener, err = tmserver.StartHTTPServer(

View File

@ -4,7 +4,9 @@ import (
"encoding/json"
"net"
"os"
"os/signal"
"path/filepath"
"syscall"
"github.com/pkg/errors"
"github.com/spf13/cobra"
@ -203,6 +205,23 @@ func ExternalIP() (string, error) {
return "", errors.New("are you connected to the network?")
}
// TrapSignal traps SIGINT and SIGTERM and terminates the server correctly.
func TrapSignal(cleanupFunc func()) {
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
go func() {
sig := <-sigs
switch sig {
case syscall.SIGTERM:
defer cleanupFunc()
os.Exit(128 + int(syscall.SIGTERM))
case syscall.SIGINT:
defer cleanupFunc()
os.Exit(128 + int(syscall.SIGINT))
}
}()
}
func skipInterface(iface net.Interface) bool {
if iface.Flags&net.FlagUp == 0 {
return true // interface down