Browse Source

Emoji icons and color by --color flag, disabled by default

Vova Tkach 5 years ago
parent
commit
ecb01174a8
5 changed files with 76 additions and 20 deletions
  1. 1 1
      Makefile
  2. 6 6
      ctrlc/colors.go
  3. 30 13
      ctrlc/ctrlc.go
  4. 36 0
      ctrlc/icons.go
  5. 3 0
      ctrlc/icons_test.go

+ 1 - 1
Makefile

@@ -10,7 +10,7 @@ test:
 	go test ./...
 
 run:
-	@./out
+	@./out --color=always
 
 update:
 	go mod vendor

+ 6 - 6
ctrlc/colors.go

@@ -4,22 +4,22 @@ import (
 	"fmt"
 )
 
-func clr(str string) string {
-	if !IS_WIN_PLATFORM {
+func clr(use bool, str string) string {
+	if !IS_WIN_PLATFORM && use {
 		return fmt.Sprintf("\033[1;31m%s\033[0m", str)
 	}
 	return str
 }
 
-func clg(str string) string {
-	if !IS_WIN_PLATFORM {
+func clg(use bool, str string) string {
+	if !IS_WIN_PLATFORM && use {
 		return fmt.Sprintf("\033[1;32m%s\033[0m", str)
 	}
 	return str
 }
 
-func cly(str string) string {
-	if !IS_WIN_PLATFORM {
+func cly(use bool, str string) string {
+	if !IS_WIN_PLATFORM && use {
 		return fmt.Sprintf("\033[1;33m%s\033[0m", str)
 	}
 	return str

+ 30 - 13
ctrlc/ctrlc.go

@@ -2,6 +2,7 @@ package ctrlc
 
 import (
 	"context"
+	"flag"
 	"fmt"
 	"os"
 	"os/signal"
@@ -22,13 +23,20 @@ type Iface interface {
 type CallbackFunc func(ctx context.Context, shutdown context.CancelFunc) *[]Iface
 
 func App(t time.Duration, f CallbackFunc) {
+	var ParamColor string
+	flag.StringVar(&ParamColor, "color", "auto", "color output (auto/always/never)")
+	flag.Parse()
+
+	useColors := !IS_WIN_PLATFORM && ParamColor == "always"
+
 	stop := make(chan os.Signal)
 	signal.Notify(stop, syscall.SIGTERM)
 	signal.Notify(stop, syscall.SIGINT)
 
 	fmt.Printf(
-		C_ICON_START+" %s\n",
+		icon_start(useColors)+"%s\n",
 		cly(
+			useColors,
 			fmt.Sprintf(
 				"Application started (%d sec)",
 				t/time.Second,
@@ -42,8 +50,9 @@ func App(t time.Duration, f CallbackFunc) {
 	select {
 	case <-sctx.Done():
 		fmt.Printf(
-			"\r"+C_ICON_WARN+" %s\n",
+			"\r"+icon_warn(useColors)+"%s\n",
 			cly(
+				useColors,
 				fmt.Sprintf(
 					"Shutting down (application) (%d sec)",
 					t/time.Second,
@@ -54,8 +63,9 @@ func App(t time.Duration, f CallbackFunc) {
 		switch val {
 		case syscall.SIGINT:
 			fmt.Printf(
-				"\r"+C_ICON_WARN+" %s\n",
+				"\r"+icon_warn(useColors)+"%s\n",
 				cly(
+					useColors,
 					fmt.Sprintf(
 						"Shutting down (interrupt) (%d sec)",
 						t/time.Second,
@@ -64,8 +74,9 @@ func App(t time.Duration, f CallbackFunc) {
 			)
 		case syscall.SIGTERM:
 			fmt.Printf(
-				C_ICON_WARN+" %s\n",
+				icon_warn(useColors)+"%s\n",
 				cly(
+					useColors,
 					fmt.Sprintf(
 						"Shutting down (terminate) (%d sec)",
 						t/time.Second,
@@ -74,8 +85,9 @@ func App(t time.Duration, f CallbackFunc) {
 			)
 		default:
 			fmt.Printf(
-				C_ICON_WARN+" %s\n",
+				icon_warn(useColors)+"%s\n",
 				cly(
+					useColors,
 					fmt.Sprintf(
 						"Shutting down (%d sec)",
 						t/time.Second,
@@ -93,12 +105,15 @@ func App(t time.Duration, f CallbackFunc) {
 		if err := iface.Shutdown(ctx); err != nil {
 			errors = true
 			fmt.Printf(
-				C_ICON_HOT+" %s\n",
-				clr(fmt.Sprintf(
-					"Shutdown error (%T): %s",
-					iface,
-					err.Error(),
-				)),
+				icon_hot(useColors)+"%s\n",
+				clr(
+					useColors,
+					fmt.Sprintf(
+						"Shutdown error (%T): %s",
+						iface,
+						err.Error(),
+					),
+				),
 			)
 		}
 	}
@@ -106,8 +121,9 @@ func App(t time.Duration, f CallbackFunc) {
 
 	if errors {
 		fmt.Printf(
-			C_ICON_MAG+" %s\n",
+			icon_mag(useColors)+"%s\n",
 			cly(
+				useColors,
 				fmt.Sprintf(
 					"Application exited with errors (%d sec)",
 					t/time.Second,
@@ -117,8 +133,9 @@ func App(t time.Duration, f CallbackFunc) {
 		os.Exit(1)
 	} else {
 		fmt.Printf(
-			C_ICON_SC+" %s\n",
+			icon_sc(useColors)+"%s\n",
 			clg(
+				useColors,
 				fmt.Sprintf(
 					"Application exited successfully (%d sec)",
 					t/time.Second,

+ 36 - 0
ctrlc/icons.go

@@ -0,0 +1,36 @@
+package ctrlc
+
+func icon_start(use bool) string {
+	if use {
+		return C_ICON_START + " "
+	}
+	return ""
+}
+
+func icon_warn(use bool) string {
+	if use {
+		return C_ICON_WARN + " "
+	}
+	return ""
+}
+
+func icon_hot(use bool) string {
+	if use {
+		return C_ICON_HOT + " "
+	}
+	return ""
+}
+
+func icon_mag(use bool) string {
+	if use {
+		return C_ICON_MAG + " "
+	}
+	return ""
+}
+
+func icon_sc(use bool) string {
+	if use {
+		return C_ICON_SC + " "
+	}
+	return ""
+}

+ 3 - 0
ctrlc/icons_test.go

@@ -0,0 +1,3 @@
+package ctrlc
+
+// Nothing to test here