main.go 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. ctrlc.App(8*time.Second, func(ctx context.Context) *[]ctrlc.Iface {
  11. // Some custom logic
  12. test := Run()
  13. // Http web server
  14. mux := http.NewServeMux()
  15. mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
  16. fmt.Printf("New web request (%s)!\n", r.URL.Path)
  17. // Do something hard inside (12 seconds)
  18. for i := 0; i < 12000; i++ {
  19. select {
  20. case <-ctx.Done():
  21. // Interrupt request by server
  22. fmt.Printf("[BY SERVER] OK, I will cancel (%s)!\n", r.URL.Path)
  23. return
  24. case <-r.Context().Done():
  25. // Interrupt request by client
  26. fmt.Printf("[BY CLIENT] OK, I will cancel (%s)!\n", r.URL.Path)
  27. return
  28. default:
  29. // Main some logic
  30. time.Sleep(1 * time.Millisecond)
  31. }
  32. }
  33. fmt.Printf("After 12 seconds!\n")
  34. w.Header().Set("Content-Type", "text/html")
  35. w.Write([]byte(`<div>After 12 seconds!</div>`))
  36. w.Write([]byte(`<div>` + r.URL.Path + `</div>`))
  37. })
  38. srv := &http.Server{Addr: "127.0.0.1:8080", Handler: mux}
  39. go func() {
  40. fmt.Printf("Starting web server: http://127.0.0.1:8080/\n")
  41. if err := srv.ListenAndServe(); err != nil {
  42. if err != http.ErrServerClosed {
  43. fmt.Printf("Web server startup error: %s\n", err.Error())
  44. return
  45. }
  46. }
  47. }()
  48. return &[]ctrlc.Iface{test, srv}
  49. })
  50. }