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

The pipeline contains all the hooks points available for the bref API. More...

Modules

 Gate
 

Connections, data reception and sending events handling.


 Upstream
 

Represents the pre-processing of a request.


 Bridge
 

Contains hooks to run for content generation.


 Downstream
 

Handle all stages between the content generation and sending data back to the client.


Classes

struct  bref::Environment
 This structure defines the environment of a request. More...
struct  bref::Pipeline
 Where the AModule classes register their hooks. More...

Typedefs

typedef BrefValue bref::ServerConfig
 The value used for the configuration settings of the server.
typedef int bref::FdType
 Define fd type (system dependant : fd on UNIX systems, HANDLE for Windows systems) for ContentHook.

Detailed Description

The pipeline contains all the hooks points available for the bref API.

When a module is initialized by the method AModule::registerHooks(Pipeline &) it initializes its hook points in the Pipeline.

This page describes how the Pipeline class works and how it interacts with the different hook points.

Vocabulary:

Example for a CGI module:

  1. Register a Pipeline::ContentHook with a high priority (1.0) that returns a valid Pipeline::ContentRequestHandler if it detects a request asking a PHP file (by checking the .php extension for example and some configuration variables), otherwise it should return an empty handler.
  1. Create the Pipeline::ContentRequestHandler that creates a process when it's constructed, and has a function operator() that takes each chunk of the request body and send them to the CGI process, and fill a buffer in return.

Typedef Documentation

typedef int bref::FdType

Define fd type (system dependant : fd on UNIX systems, HANDLE for Windows systems) for ContentHook.

See also:
ContentHook
typedef BrefValue bref::ServerConfig

The value used for the configuration settings of the server.

A typedef is used here for a better readability.