main.go 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. w.Write([]byte(`<div>After 12 seconds!</div>`))
  38. w.Write([]byte(`<div>` + r.URL.Path + `</div>`))
  39. })
  40. srv := &http.Server{Addr: "127.0.0.1:8080", Handler: mux}
  41. go func() {
  42. fmt.Printf("Starting web server: http://127.0.0.1:8080/\n")
  43. if err := srv.ListenAndServe(); err != nil {
  44. if err != http.ErrServerClosed {
  45. fmt.Printf("Web server startup error: %s\n", err.Error())
  46. // Application can't working without http web server
  47. // Call cancel context func on error
  48. shutdown()
  49. return
  50. }
  51. }
  52. }()
  53. return &[]ctrlc.Iface{test, srv}
  54. }
  55. // Run application
  56. ctrlc.App(8*time.Second, MyAppFunc)
  57. }