Browse Source

Update README.md

Vova Tkach 5 years ago
parent
commit
d20c9a9f60
1 changed files with 72 additions and 0 deletions
  1. 72 0
      README.md

+ 72 - 0
README.md

@@ -1,2 +1,74 @@
 # golang-ctrlc
 Wrapper with context for safe application closing by signals like ctrl+c or kill
+
+## How to use
+```
+go get github.com/vladimirok5959/golang-ctrlc
+```
+```
+package main
+
+import (
+	"context"
+	"fmt"
+	"net/http"
+	"time"
+
+	"github.com/vladimirok5959/golang-ctrlc/ctrlc"
+)
+
+func main() {
+	MyAppFunc := func(ctx context.Context, cancel context.CancelFunc) *[]ctrlc.Iface {
+		// Some custom logic
+		// With goroutine inside
+		test := Run()
+
+		// Http web server
+		mux := http.NewServeMux()
+		mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
+			fmt.Printf("New web request (%s)!\n", r.URL.Path)
+
+			// Do something hard inside (12 seconds)
+			for i := 0; i < 12000; i++ {
+				select {
+				case <-ctx.Done():
+					// Interrupt request by server
+					fmt.Printf("[BY SERVER] OK, I will cancel (%s)!\n", r.URL.Path)
+					return
+				case <-r.Context().Done():
+					// Interrupt request by client
+					fmt.Printf("[BY CLIENT] OK, I will cancel (%s)!\n", r.URL.Path)
+					return
+				default:
+					// Main some logic
+					// Some very long logic, just for example
+					time.Sleep(1 * time.Millisecond)
+				}
+			}
+
+			fmt.Printf("After 12 seconds!\n")
+			w.Header().Set("Content-Type", "text/html")
+			w.Write([]byte(`<div>After 12 seconds!</div>`))
+			w.Write([]byte(`<div>` + r.URL.Path + `</div>`))
+		})
+		srv := &http.Server{Addr: "127.0.0.1:8080", Handler: mux}
+		go func() {
+			fmt.Printf("Starting web server: http://127.0.0.1:8080/\n")
+			if err := srv.ListenAndServe(); err != nil {
+				if err != http.ErrServerClosed {
+					fmt.Printf("Web server startup error: %s\n", err.Error())
+					// Application can't working without http web server
+					// Call cancel context func on error
+					cancel()
+					return
+				}
+			}
+		}()
+
+		return &[]ctrlc.Iface{test, srv}
+	}
+
+	// Run application
+	ctrlc.App(8*time.Second, MyAppFunc)
+}
+```