ctrlc.go 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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. select {
  35. case <-sctx.Done():
  36. fmt.Printf(
  37. "\r"+C_ICON_WARN+" %s\n",
  38. cly(
  39. fmt.Sprintf(
  40. "Shutting down (application) (%d sec)",
  41. t/time.Second,
  42. ),
  43. ),
  44. )
  45. case val := <-stop:
  46. switch val {
  47. case syscall.SIGINT:
  48. fmt.Printf(
  49. "\r"+C_ICON_WARN+" %s\n",
  50. cly(
  51. fmt.Sprintf(
  52. "Shutting down (interrupt) (%d sec)",
  53. t/time.Second,
  54. ),
  55. ),
  56. )
  57. case syscall.SIGTERM:
  58. fmt.Printf(
  59. C_ICON_WARN+" %s\n",
  60. cly(
  61. fmt.Sprintf(
  62. "Shutting down (terminate) (%d sec)",
  63. t/time.Second,
  64. ),
  65. ),
  66. )
  67. default:
  68. fmt.Printf(
  69. C_ICON_WARN+" %s\n",
  70. cly(
  71. fmt.Sprintf(
  72. "Shutting down (%d sec)",
  73. t/time.Second,
  74. ),
  75. ),
  76. )
  77. }
  78. }
  79. shutdown()
  80. errors := false
  81. ctx, cancel := context.WithTimeout(context.Background(), t)
  82. for _, iface := range *ifaces {
  83. if err := iface.Shutdown(ctx); err != nil {
  84. errors = true
  85. fmt.Printf(
  86. C_ICON_HOT+" %s\n",
  87. clr(fmt.Sprintf(
  88. "Shutdown error (%T): %s",
  89. iface,
  90. err.Error(),
  91. )),
  92. )
  93. }
  94. }
  95. cancel()
  96. if errors {
  97. fmt.Printf(
  98. C_ICON_MAG+" %s\n",
  99. cly(
  100. fmt.Sprintf(
  101. "Application exited with errors (%d sec)",
  102. t/time.Second,
  103. ),
  104. ),
  105. )
  106. os.Exit(1)
  107. } else {
  108. fmt.Printf(
  109. C_ICON_SC+" %s\n",
  110. clg(
  111. fmt.Sprintf(
  112. "Application exited successfully (%d sec)",
  113. t/time.Second,
  114. ),
  115. ),
  116. )
  117. }
  118. }