mirror of
https://github.com/soypat/lneto.git
synced 2026-08-05 23:43:40 +00:00
d05cd14018
* httphi: RouterConfig refactor to enable DefaultRouterConfig * RequestHeader not case sensitive anymore * httphi: use DefaultRouterConfig in examples * httphi: remove gated stage complexity Misusing Stage methods by calling them once header has been written is totally harmless as far as I can tell. We simplify the codebase on this occasion by removing the headerWritten check for all stage methods * httphi: improve APIs * httphi: remove status
httφ
Heapless HTTP/1.1 router with net/http-shaped handlers. Benchmarked against net/http and friends at soypat/httpbench.
Why
net/http allocates per request: Request, header map, response buffer, goroutine. Fine on a
server, fatal on a microcontroller. httφ pays that cost once, at Router.Configure:
- Exchanges and goroutines are fixed there. Serving allocates nothing; memory does not grow with load.
- No free exchange means
Handlerefuses the connection unclosed, rather than allocating one more of everything. Handletakes anio.ReadWriteCloser, so the router runs over a raw socket, anlnetoTCP stack or a test pipe. No listener, no OS, no clock.
Parsing is httpraw.
Example
var mux httphi.MuxSlice
mux.Handle("GET /", func(ex *httphi.Exchange) {
ex.WriteBody([]byte("hello world"))
})
var router httphi.Router
cfg := httphi.DefaultRouterConfig(numWorkers, memoryPerConn, mux.MaxPathValues())
err := router.Configure(&mux, cfg)
if err != nil {
log.Fatal(err)
}
for {
conn, err := listener.Accept() // Accepting is the caller's job.
if err != nil {
log.Fatal(err)
}
if err = router.Handle(conn); err != nil {
conn.Close() // Refused: never blocks, never queues unboundedly.
}
}
FixedNumGoroutines: -1 gives the unbounded flavor, a goroutine and an exchange per connection.
Runnable server over raw Linux sockets, plus query, form and multipart handlers:
example_test.go.
Naming
Gonna be honest with y'all. I initially wanted it to be named httplo until I saw I could write httphi.MethHead with a small change.