Kyoto Tycoon
Public Member Functions
kyototycoon::HTTPServer::Worker Class Reference

Interface to process each request. More...

#include <kthttp.h>

List of all members.

Public Member Functions

virtual ~Worker ()
 Destructor.
virtual int32_t process (HTTPServer *serv, Session *sess, const std::string &path, HTTPClient::Method method, const std::map< std::string, std::string > &reqheads, const std::string &reqbody, std::map< std::string, std::string > &resheads, std::string &resbody, const std::map< std::string, std::string > &misc)=0
 Process each request.
virtual bool process_binary (ThreadedServer *serv, ThreadedServer::Session *sess)
 Process each binary request.
virtual void process_idle (HTTPServer *serv)
 Process each idle event.
virtual void process_timer (HTTPServer *serv)
 Process each timer event.
virtual void process_start (HTTPServer *serv)
 Process the starting event.
virtual void process_finish (HTTPServer *serv)
 Process the finishing event.

Detailed Description

Interface to process each request.


Constructor & Destructor Documentation

Destructor.


Member Function Documentation

virtual int32_t kyototycoon::HTTPServer::Worker::process ( HTTPServer serv,
Session sess,
const std::string &  path,
HTTPClient::Method  method,
const std::map< std::string, std::string > &  reqheads,
const std::string &  reqbody,
std::map< std::string, std::string > &  resheads,
std::string &  resbody,
const std::map< std::string, std::string > &  misc 
) [pure virtual]

Process each request.

Parameters:
servthe server.
sessthe session with the client.
paththe path of the requested resource.
methodthe kind of the request methods.
reqheadsa string map which contains the headers of the request. Header names are converted into lower cases. The empty key means the request-line.
reqbodya string which contains the entity body of the request.
resheadsa string map to contain the headers of the response.
resbodya string to contain the entity body of the response.
misca string map which contains miscellaneous information. "url" means the absolute URL. "query" means the query string of the URL.
Returns:
the status code of the response. If it is less than 1, internal server error is sent to the client and the connection is closed.

Process each binary request.

Parameters:
servthe server.
sessthe session with the client.
Returns:
true to reuse the session, or false to close the session.
virtual void kyototycoon::HTTPServer::Worker::process_idle ( HTTPServer serv) [virtual]

Process each idle event.

Parameters:
servthe server.
virtual void kyototycoon::HTTPServer::Worker::process_timer ( HTTPServer serv) [virtual]

Process each timer event.

Parameters:
servthe server.
virtual void kyototycoon::HTTPServer::Worker::process_start ( HTTPServer serv) [virtual]

Process the starting event.

Parameters:
servthe server.
virtual void kyototycoon::HTTPServer::Worker::process_finish ( HTTPServer serv) [virtual]

Process the finishing event.

Parameters:
servthe server.