t.w.h.HTTPFactory(protocol.ServerFactory) : class documentation

Part of twisted.web.http View Source View In Hierarchy

Known subclasses: twisted.web.server.Site

Factory for HTTP server.
Method __init__ Undocumented
Method buildProtocol Create an instance of a subclass of Protocol.
Method startFactory Set up request logging if necessary.
Method stopFactory This will be called before I stop listening on all Ports/Connectors.
Method log Log a request's result to the logfile, by default in combined log format.
Instance Variable _logDateTime A cached datetime string for log messages, updated by _logDateTimeCall. (type: str)
Instance Variable _logDateTimeCall A delayed call for the next update to the cached log datetime string. (type: IDelayedCall provided)
Method _updateLogDateTime Update log datetime periodically, so we aren't always recalculating it.
Method _openLogFile Override in subclasses, e.g. to use twisted.python.logfile.
Method _escape Undocumented

Inherited from Factory (via ServerFactory):

Class Method forProtocol Create a factory for the given protocol.
Method logPrefix Describe this factory for log messages.
Method doStart Make sure startFactory is called.
Method doStop Make sure stopFactory is called.
_logDateTime =
A cached datetime string for log messages, updated by _logDateTimeCall. (type: str)
_logDateTimeCall =
A delayed call for the next update to the cached log datetime string. (type: IDelayedCall provided)
def __init__(self, logPath=None, timeout=60 * 60 * 12): (source)
Undocumented
def _updateLogDateTime(self): (source)
Update log datetime periodically, so we aren't always recalculating it.
def buildProtocol(self, addr): (source)
Create an instance of a subclass of Protocol.

The returned instance will handle input on an incoming server connection, and an attribute "factory" pointing to the creating factory.

Override this method to alter how Protocol instances get created.

Parametersaddran object implementing twisted.internet.interfaces.IAddress
def startFactory(self): (source)
Set up request logging if necessary.
def stopFactory(self): (source)
This will be called before I stop listening on all Ports/Connectors.

This can be overridden to perform 'shutdown' tasks such as disconnecting database connections, closing files, etc.

It will be called, for example, before an application shuts down, if it was connected to a port. User code should not call this function directly.

def _openLogFile(self, path): (source)
Override in subclasses, e.g. to use twisted.python.logfile.
def _escape(self, s): (source)
Undocumented
def log(self, request): (source)
Log a request's result to the logfile, by default in combined log format.
API Documentation for Twisted, generated by pydoctor at 2013-11-08 22:07:30.