main.go 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package main
  2. import (
  3. "context"
  4. "fmt"
  5. "net/http"
  6. "time"
  7. "github.com/vladimirok5959/golang-ctrlc/ctrlc"
  8. )
  9. func main() {
  10. MyAppFunc := func(ctx context.Context, shutdown context.CancelFunc) *[]ctrlc.Iface {
  11. // Some custom logic
  12. // With goroutine inside
  13. test := Run()
  14. // Http web server
  15. mux := http.NewServeMux()
  16. mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
  17. fmt.Printf("New web request (%s)!\n", r.URL.Path)
  18. // Do something hard inside (12 seconds)
  19. for i := 0; i < 12000; i++ {
  20. select {
  21. case <-ctx.Done():
  22. // Interrupt request by server
  23. fmt.Printf("[BY SERVER] OK, I will cancel (%s)!\n", r.URL.Path)
  24. return
  25. case <-r.Context().Done():
  26. // Interrupt request by client
  27. fmt.Printf("[BY CLIENT] OK, I will cancel (%s)!\n", r.URL.Path)
  28. return
  29. default:
  30. // Main some logic
  31. // Some very long logic, just for example
  32. time.Sleep(1 * time.Millisecond)
  33. }
  34. }
  35. fmt.Printf("After 12 seconds!\n")
  36. w.Header().Set("Content-Type", "text/html")
  37. if _, err := w.Write([]byte(`<div>After 12 seconds!</div>`)); err != nil {
  38. fmt.Printf("%s\n", err.Error())
  39. return
  40. }
  41. if _, err := w.Write([]byte(`<div>` + r.URL.Path + `</div>`)); err != nil {
  42. fmt.Printf("%s\n", err.Error())
  43. return
  44. }
  45. })
  46. srv := &http.Server{Addr: "127.0.0.1:8080", Handler: mux}
  47. go func() {
  48. fmt.Printf("Starting web server: http://127.0.0.1:8080/\n")
  49. if err := srv.ListenAndServe(); err != nil {
  50. if err != http.ErrServerClosed {
  51. fmt.Printf("Web server startup error: %s\n", err.Error())
  52. // Application can't working without http web server
  53. // Call cancel context func on error
  54. shutdown()
  55. return
  56. }
  57. }
  58. }()
  59. return &[]ctrlc.Iface{test, srv}
  60. }
  61. // Run application
  62. ctrlc.App(MyAppFunc)
  63. }