-
Notifications
You must be signed in to change notification settings - Fork 6
Developer Guide
The internals of the library are laid out as such:
The Http Backend
- Consumes network input from the remote client
- Converts it to the normalized
HttpRequest
(source) form - Hands the request to the
Router
(source) to get a futureTask<HttpResponse>
outcome (source) - Awaits on the future and writes the response back to the client
The Router
- Takes in a
HttpRequest
from the backend - Enumerates the RouteTable, performs URL matching (and path-variables extraction) on the request to resolve its associated Endpoint
- Hands the (converted)
Request
(source) off to the resolved Endpoint handler for execution - Returns a future
Task<HttpResponse>
of the handler outcome to the backend
The RouteTable
(source) bridges the library into the client application code space. It composes a collection of Endpoints which define what client code methods to invoke for handling requests.
An Endpoint associates a URI path pattern (represented by the Route
class (source)) to its Handler. Examples of path patterns include
/accounts
/accounts/{id}/history
/files/*
A handler takes a Request
and returns a Task<HttpResponse>
, ie. a handler is a function conforming to the Func<Request, Task<HttpResponse>>
type signature. The Endpoint
class (source) is implemented as such
public class Endpoint
{
public Method Method { get; protected set; }
public Route Route { get; protected set; }
public Func<Request, Task<HttpResponse>> Handler { get; protected set; }
protected Endpoint() { }
public Endpoint(Method method, Route route, Func<Request, Task<HttpResponse>> handler)
{
Method = method;
Route = route;
Handler = handler;
}
}
The library restricts handlers to the normalized form of Func<Request, Task<HttpResponse>>
; the application code will thus be required to implement its (endpoint) methods signature to match before they may be accepted by the Endpoint
class for construction and insertion into the RouteTable
.
This restriction can be somewhat ameliorated with function lifting. The Handlers namespace provides helper methods to lift possibly commonly desired application method shapes to the required form.