ctrlc.go 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. package ctrlc
  2. import (
  3. "context"
  4. "fmt"
  5. "os"
  6. "os/signal"
  7. "syscall"
  8. "time"
  9. )
  10. const C_ICON_START = "🌟"
  11. const C_ICON_WARN = "⚡️"
  12. const C_ICON_HOT = "🔥"
  13. const C_ICON_MAG = "✨"
  14. const C_ICON_SC = "🌳"
  15. type Iface interface {
  16. Shutdown(ctx context.Context) error
  17. }
  18. type CallbackFunc func(ctx context.Context, cancel context.CancelFunc) *[]Iface
  19. func App(t time.Duration, f CallbackFunc) {
  20. stop := make(chan os.Signal)
  21. signal.Notify(stop, syscall.SIGTERM)
  22. signal.Notify(stop, syscall.SIGINT)
  23. fmt.Printf(
  24. C_ICON_START+" %s\n",
  25. cly(
  26. fmt.Sprintf(
  27. "Application started (%d sec)",
  28. t/time.Second,
  29. ),
  30. ),
  31. )
  32. sctx, shutdown := context.WithCancel(context.Background())
  33. ifaces := f(sctx, shutdown)
  34. switch val := <-stop; val {
  35. case syscall.SIGINT:
  36. fmt.Printf(
  37. "\r"+C_ICON_WARN+" %s\n",
  38. cly(
  39. fmt.Sprintf(
  40. "Shutting down (interrupt) (%d sec)",
  41. t/time.Second,
  42. ),
  43. ),
  44. )
  45. case syscall.SIGTERM:
  46. fmt.Printf(
  47. C_ICON_WARN+" %s\n",
  48. cly(
  49. fmt.Sprintf(
  50. "Shutting down (terminate) (%d sec)",
  51. t/time.Second,
  52. ),
  53. ),
  54. )
  55. default:
  56. fmt.Printf(
  57. C_ICON_WARN+" %s\n",
  58. cly(
  59. fmt.Sprintf(
  60. "Shutting down (%d sec)",
  61. t/time.Second,
  62. ),
  63. ),
  64. )
  65. }
  66. shutdown()
  67. errors := false
  68. ctx, cancel := context.WithTimeout(context.Background(), t)
  69. for _, iface := range *ifaces {
  70. if err := iface.Shutdown(ctx); err != nil {
  71. errors = true
  72. fmt.Printf(
  73. C_ICON_HOT+" %s\n",
  74. clr(fmt.Sprintf(
  75. "Shutdown error (%T): %s",
  76. iface,
  77. err.Error(),
  78. )),
  79. )
  80. }
  81. }
  82. cancel()
  83. if errors {
  84. fmt.Printf(
  85. C_ICON_MAG+" %s\n",
  86. cly(
  87. fmt.Sprintf(
  88. "Application exited with errors (%d sec)",
  89. t/time.Second,
  90. ),
  91. ),
  92. )
  93. os.Exit(1)
  94. } else {
  95. fmt.Printf(
  96. C_ICON_SC+" %s\n",
  97. clg(
  98. fmt.Sprintf(
  99. "Application exited successfully (%d sec)",
  100. t/time.Second,
  101. ),
  102. ),
  103. )
  104. }
  105. }