Browse Source

Ability to cancel application by context cancel func inside logic, code comments

Vova Tkach 5 years ago
parent
commit
66b8413b12
2 changed files with 37 additions and 21 deletions
  1. 34 21
      ctrlc/ctrlc.go
  2. 3 0
      main.go

+ 34 - 21
ctrlc/ctrlc.go

@@ -39,37 +39,50 @@ func App(t time.Duration, f CallbackFunc) {
 	sctx, shutdown := context.WithCancel(context.Background())
 	ifaces := f(sctx, shutdown)
 
-	switch val := <-stop; val {
-	case syscall.SIGINT:
+	select {
+	case <-sctx.Done():
 		fmt.Printf(
 			"\r"+C_ICON_WARN+" %s\n",
 			cly(
 				fmt.Sprintf(
-					"Shutting down (interrupt) (%d sec)",
+					"Shutting down (application) (%d sec)",
 					t/time.Second,
 				),
 			),
 		)
-	case syscall.SIGTERM:
-		fmt.Printf(
-			C_ICON_WARN+" %s\n",
-			cly(
-				fmt.Sprintf(
-					"Shutting down (terminate) (%d sec)",
-					t/time.Second,
+	case val := <-stop:
+		switch val {
+		case syscall.SIGINT:
+			fmt.Printf(
+				"\r"+C_ICON_WARN+" %s\n",
+				cly(
+					fmt.Sprintf(
+						"Shutting down (interrupt) (%d sec)",
+						t/time.Second,
+					),
 				),
-			),
-		)
-	default:
-		fmt.Printf(
-			C_ICON_WARN+" %s\n",
-			cly(
-				fmt.Sprintf(
-					"Shutting down (%d sec)",
-					t/time.Second,
+			)
+		case syscall.SIGTERM:
+			fmt.Printf(
+				C_ICON_WARN+" %s\n",
+				cly(
+					fmt.Sprintf(
+						"Shutting down (terminate) (%d sec)",
+						t/time.Second,
+					),
 				),
-			),
-		)
+			)
+		default:
+			fmt.Printf(
+				C_ICON_WARN+" %s\n",
+				cly(
+					fmt.Sprintf(
+						"Shutting down (%d sec)",
+						t/time.Second,
+					),
+				),
+			)
+		}
 	}
 
 	shutdown()

+ 3 - 0
main.go

@@ -49,6 +49,9 @@ func main() {
 			if err := srv.ListenAndServe(); err != nil {
 				if err != http.ErrServerClosed {
 					fmt.Printf("Web server startup error: %s\n", err.Error())
+					// Application can't working without http web server
+					// Call cancel context func on error
+					cancel()
 					return
 				}
 			}