bref
API 2014 of the Zia HTTP server.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines
Classes | Typedefs | Variables
Bridge
Pipeline

Contains hooks to run for content generation. More...

Classes

class  bref::Pipeline::IContentRequestHandler
 Handler called to execute a request. More...

Typedefs

typedef Function
< IContentRequestHandler
*(const Environment
&environment, const
HttpRequest &request,
HttpResponse &response, FdType
&fd)> 
bref::Pipeline::ContentHook
 Generate Pipeline::ContentRequestHandler.

Variables

std::list< std::pair
< ContentHook, float > > 
bref::Pipeline::contentHooks
 List of content hooks.

Detailed Description

Contains hooks to run for content generation.

This is where modules like CGI, static pages, directory listing, ... should be plugged.


Typedef Documentation

typedef Function<IContentRequestHandler *(const Environment & environment, const HttpRequest & request, HttpResponse & response, FdType & fd)> bref::Pipeline::ContentHook

Generate Pipeline::ContentRequestHandler.

Parameters:
[out]fdIf you set this param in your Hook, the server will register your fd in its event system (kqueue / epoll / select) and call back your handle on new activity.
Warning:
Server has to set a default value (depending on the system, for example -1 on UNIX integer, NULL on Windows HANDLE) for fd, to detect that the hook provides a fd.
Returns:
A 0 pointer if the hook can not process the request, a valid pointer to Pipeline::IContentRequestHandler otherwise.
See also:
contentHooks, ContentRequestHandler

Variable Documentation

std::list<std::pair<ContentHook, float> > bref::Pipeline::contentHooks

List of content hooks.

Only one content hook can be used for a given request, the content hook with the highest priority should be choosed by the server.

See also:
ContentRequestHandler, ContentHook