summaryrefslogtreecommitdiffstats
path: root/vendor/gopkg.in/throttled/throttled.v1/examples/interval-many/main.go
blob: 51a4ca0237f1bd11074dbfd24b7274b1371e1b53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package main

import (
	"flag"
	"fmt"
	"log"
	"math/rand"
	"net/http"
	"sync"
	"time"

	"gopkg.in/throttled/throttled.v1"
)

var (
	delay    = flag.Duration("delay", 200*time.Millisecond, "delay between calls")
	bursts   = flag.Int("bursts", 10, "number of bursts allowed")
	delayRes = flag.Duration("delay-response", 0, "delay the response by a random duration between 0 and this value")
	output   = flag.String("output", "v", "type of output, one of `v`erbose, `q`uiet, `ok`-only, `ko`-only")
)

func main() {
	flag.Parse()

	var ok, ko int
	var mu sync.Mutex

	// Keep start time to log since-time
	start := time.Now()

	// Create the interval throttle
	t := throttled.Interval(throttled.D(*delay), *bursts, nil, 0)
	// Set its denied handler
	t.DeniedHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
		if *output == "v" || *output == "ko" {
			log.Printf("%s: KO: %s", r.URL.Path, time.Since(start))
		}
		throttled.DefaultDeniedHandler.ServeHTTP(w, r)
		mu.Lock()
		defer mu.Unlock()
		ko++
	})
	// Create OK handlers
	rand.Seed(time.Now().Unix())
	makeHandler := func(ix int) http.Handler {
		return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
			if *output == "v" || *output == "ok" {
				log.Printf("handler %d: %s: ok: %s", ix, r.URL.Path, time.Since(start))
			}
			if *delayRes > 0 {
				wait := time.Duration(rand.Intn(int(*delayRes)))
				time.Sleep(wait)
			}
			w.WriteHeader(200)
			mu.Lock()
			defer mu.Unlock()
			ok++
		})
	}
	// Throttle them using the same interval throttler
	h1 := t.Throttle(makeHandler(1))
	h2 := t.Throttle(makeHandler(2))

	// Handle two paths
	mux := http.NewServeMux()
	mux.Handle("/a", h1)
	mux.Handle("/b", h2)

	// Print stats once in a while
	go func() {
		for _ = range time.Tick(10 * time.Second) {
			mu.Lock()
			log.Printf("ok: %d, ko: %d", ok, ko)
			mu.Unlock()
		}
	}()
	fmt.Println("server listening on port 9000")
	http.ListenAndServe(":9000", mux)
}