-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathhttp.go
111 lines (95 loc) · 3.47 KB
/
http.go
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
package main
import (
swaggersvr "beam/cmd/tracker/gen/http/swagger/server"
tracksvr "beam/cmd/tracker/gen/http/track/server"
track "beam/cmd/tracker/gen/track"
"context"
"log"
"net/http"
"os"
"sync"
"time"
goahttp "goa.design/goa/v3/http"
httpmdlwr "goa.design/goa/v3/http/middleware"
"goa.design/goa/v3/middleware"
)
// handleHTTPServer starts configures and starts a HTTP server on the given
// URL. It shuts down the server if any error is received in the error channel.
func handleHTTPServer(ctx context.Context, addr string, trackEndpoints *track.Endpoints, wg *sync.WaitGroup, errc chan error, logger *log.Logger, debug bool) {
// Setup goa log adapter.
adapter := middleware.NewLogger(logger)
// Provide the transport specific request decoder and response encoder.
// The goa http package has built-in support for JSON, XML and gob.
// Other encodings can be used by providing the corresponding functions,
// see goa.design/implement/encoding.
var (
dec = goahttp.RequestDecoder
enc = goahttp.ResponseEncoder
)
// Build the service HTTP request multiplexer and configure it to serve
// HTTP requests to the service endpoints.
mux := goahttp.NewMuxer()
// Wrap the endpoints with the transport specific layers. The generated
// server packages contains code generated from the design which maps
// the service input and output data structures to HTTP requests and
// responses.
eh := errorHandler(logger)
swaggerServer := swaggersvr.New(nil, mux, dec, enc, eh, nil, nil, nil)
trackServer := tracksvr.New(trackEndpoints, mux, dec, enc, eh, nil)
if debug {
servers := goahttp.Servers{
swaggerServer,
trackServer,
}
servers.Use(httpmdlwr.Debug(mux, os.Stdout))
}
// Configure the mux.
swaggersvr.Mount(mux, swaggerServer)
tracksvr.Mount(mux, trackServer)
// Wrap the multiplexer with additional middlewares. Middlewares mounted
// here apply to all the service endpoints.
var handler http.Handler = mux
{
if debug {
handler = httpmdlwr.Log(adapter)(handler)
}
handler = httpmdlwr.RequestID()(handler)
}
// Start HTTP server using default configuration, change the code to
// configure the server as required by your service.
srv := &http.Server{Addr: addr, Handler: handler, ReadHeaderTimeout: time.Second * 60}
for _, m := range swaggerServer.Mounts {
logger.Printf("HTTP %q mounted on %s %s", m.Method, m.Verb, m.Pattern)
}
for _, m := range trackServer.Mounts {
logger.Printf("HTTP %q mounted on %s %s", m.Method, m.Verb, m.Pattern)
}
(*wg).Add(1)
go func() {
defer (*wg).Done()
// Start HTTP server in a separate goroutine.
go func() {
logger.Printf("HTTP server listening on %q", addr)
errc <- srv.ListenAndServe()
}()
<-ctx.Done()
logger.Printf("shutting down HTTP server at %q", addr)
// Shutdown gracefully with a 30s timeout.
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
defer cancel()
err := srv.Shutdown(ctx)
if err != nil {
logger.Printf("failed to shutdown: %v", err)
}
}()
}
// errorHandler returns a function that writes and logs the given error.
// The function also writes and logs the error unique ID so that it's possible
// to correlate.
func errorHandler(logger *log.Logger) func(context.Context, http.ResponseWriter, error) {
return func(ctx context.Context, w http.ResponseWriter, err error) {
id := ctx.Value(middleware.RequestIDKey).(string)
_, _ = w.Write([]byte("[" + id + "] encoding: " + err.Error()))
logger.Printf("[%s] ERROR: %s", id, err.Error())
}
}