A polite webserver for Go.
Manners allows you to shut your Go webserver down gracefully, without dropping any requests. It can act as a drop-in replacement for the standard library's http.ListenAndServe function:
func main() {
handler := MyHTTPHandler()
manners.ListenAndServe(":7000", handler)
}
Then, when you want to shut the server down:
manners.Close()
(Note that this does not block until all the requests are finished. Rather, the call to manners.ListenAndServe will stop blocking when all the requests are finished.)
Manners ensures that all requests are served by incrementing a WaitGroup when a request comes in and decrementing it when the request finishes.
If your request handler spawns Goroutines that are not guaranteed to finish with the request, you can ensure they are also completed with the StartRoutine
and FinishRoutine
functions on the server.
Manners supports three protocols: HTTP, HTTPS and FCGI. HTTP is illustrated above. For HTTPS, Manners can likewise act as a drop-in replacement for the standard library's http.ListenAndServeTLS function:
func main() {
handler := MyHTTPHandler()
certFile := MyCertificate()
keyFile := MyKeyFile()
manners.ListenAndServeTLS(":https", certFile, keyFile, handler)
}
In Manners, FCGI only operates via local a Unix socket connected to a co-hosted proxy, such as Apache or Nginx.
func main() {
handler := MyHTTPHandler()
manners.ListenAndServe("/var/run/goserver.sock", handler)
}
To use FCGI, the port string must specify the Unix socket and start with a slash or dot, as in the example above. In this case, Manners will use fcgi.Serve.
In each of the protocols, Manners drains down the connections cleanly when manners.Close()
is called.
It's good to close down the server cleanly when OS signals are received. This is easy: just add
manners.CloseOnInterrupt()
before the ListenAndServe
call. This kicks off a separate goroutine to wait for an OS signal, upon which it simply calls manners.Close()
for you. Optionally, you can pass in a list of the particular signals you care about and you can find out which signal was received, if any, afterwards.
Manners does not correctly shut down long-lived keepalive connections when issued a shutdown command. Clients on an idle keepalive connection may see a connection reset error rather than a close. See braintree#13 for details.
Manners 0.3.0 and above uses standard library functionality introduced in Go 1.3.
go get github.com/braintree/manners