]> Cypherpunks.ru repositories - gocheese.git/commitdiff
Add graceful shutdown
authorElena Balakhonova <balakhonova@rnd.stcnet.ru>
Wed, 4 Dec 2019 10:58:00 +0000 (13:58 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Wed, 4 Dec 2019 13:40:25 +0000 (16:40 +0300)
gocheese.go

index 835e8c5b392a2f66ab0c2a7e0500c0a976445477..7a6d9ffc85ab9e8d54f99386e30e3b2e6304e743 100644 (file)
@@ -20,6 +20,7 @@ package main
 
 import (
        "bytes"
+       "context"
        "crypto/sha256"
        "encoding/hex"
        "flag"
@@ -36,6 +37,7 @@ import (
        "runtime"
        "strings"
        "syscall"
+       "time"
 )
 
 const (
@@ -441,14 +443,34 @@ func main() {
        refreshPasswd()
        log.Println("root:", *root, "bind:", *bind)
        needsRefreshPasswd := make(chan os.Signal, 0)
+       needsShutdown := make(chan os.Signal, 0)
+       killed := make(chan error, 0)
+       http.HandleFunc(*norefreshURLPath, handler)
+       http.HandleFunc(*refreshURLPath, handler)
+       s := &http.Server{
+               Addr:           *bind,
+               ReadTimeout:    time.Minute,
+               WriteTimeout:   time.Minute,
+       }
        signal.Notify(needsRefreshPasswd, syscall.SIGHUP)
+       signal.Notify(needsShutdown, syscall.SIGTERM, syscall.SIGINT)
        go func() {
                for range needsRefreshPasswd {
                        log.Println("Refreshing passwords")
                        refreshPasswd()
                }
        }()
-       http.HandleFunc(*norefreshURLPath, handler)
-       http.HandleFunc(*refreshURLPath, handler)
-       log.Fatal(http.ListenAndServe(*bind, nil))
+       go func(s *http.Server) {
+               <-needsShutdown
+               log.Println("Shutting down")
+               ctx, cancel := context.WithTimeout(context.TODO(), time.Minute)
+               killed <- s.Shutdown(ctx)
+               cancel()
+       }(s)
+       if err := s.ListenAndServe(); err != http.ErrServerClosed {
+               log.Fatal(err)
+       }
+       if err := <-killed; err != nil {
+               log.Fatal(err)
+       }
 }