#include <http.h>
Inheritance diagram for PHTTPFile:
Public Member Functions | |
PHTTPFile (const PString &filename) | |
Contruct a new simple file resource for the HTTP space. | |
PHTTPFile (const PString &filename, const PHTTPAuthority &auth) | |
PHTTPFile (const PURL &url, const PFilePath &file) | |
PHTTPFile (const PURL &url, const PFilePath &file, const PString &contentType) | |
PHTTPFile (const PURL &url, const PFilePath &file, const PHTTPAuthority &auth) | |
PHTTPFile (const PURL &url, const PFilePath &file, const PString &contentType, const PHTTPAuthority &auth) | |
virtual PHTTPRequest * | CreateRequest (const PURL &url, const PMIMEInfo &inMIME, const PMultiPartList &multipartFormInfo, PHTTPServer &socket) |
Create a new request block for this type of resource. | |
virtual PBoolean | LoadHeaders (PHTTPRequest &request) |
Get the headers for block of data (eg HTML) that the resource contains. | |
virtual PBoolean | LoadData (PHTTPRequest &request, PCharArray &data) |
Get a block of data that the resource contains. | |
virtual PString | LoadText (PHTTPRequest &request) |
Get a block of text data (eg HTML) that the resource contains. | |
Protected Member Functions | |
PHTTPFile (const PURL &url, int dummy) | |
Protected Attributes | |
PFilePath | filePath |
The file can be anywhere in the file system and is mapped to the specified URL location in the HTTP name space defined by the PHTTPSpace
class.
PHTTPFile::PHTTPFile | ( | const PString & | filename | ) |
Contruct a new simple file resource for the HTTP space.
If no MIME content type is specified then a default type is used depending on the file type. For example, "text/html" is used of the file type is ".html" or ".htm". The default for an unknown type is "application/octet-stream".
PHTTPFile::PHTTPFile | ( | const PString & | filename, | |
const PHTTPAuthority & | auth | |||
) |
PHTTPFile::PHTTPFile | ( | const PURL & | url, | |
const PFilePath & | file, | |||
const PHTTPAuthority & | auth | |||
) |
PHTTPFile::PHTTPFile | ( | const PURL & | url, | |
const PFilePath & | file, | |||
const PString & | contentType, | |||
const PHTTPAuthority & | auth | |||
) |
PHTTPFile::PHTTPFile | ( | const PURL & | url, | |
int | dummy | |||
) | [protected] |
virtual PHTTPRequest* PHTTPFile::CreateRequest | ( | const PURL & | url, | |
const PMIMEInfo & | inMIME, | |||
const PMultiPartList & | multipartFormInfo, | |||
PHTTPServer & | socket | |||
) | [virtual] |
Create a new request block for this type of resource.
Reimplemented from PHTTPResource.
Reimplemented in PHTTPDirectory.
virtual PBoolean PHTTPFile::LoadData | ( | PHTTPRequest & | request, | |
PCharArray & | data | |||
) | [virtual] |
Get a block of data that the resource contains.
Reimplemented from PHTTPResource.
Reimplemented in PHTTPTailFile.
virtual PBoolean PHTTPFile::LoadHeaders | ( | PHTTPRequest & | request | ) | [virtual] |
Get the headers for block of data (eg HTML) that the resource contains.
This will fill in all the fields of the outMIME
parameter required by the resource and return the status for the load.
Implements PHTTPResource.
Reimplemented in PHTTPTailFile, and PHTTPDirectory.
virtual PString PHTTPFile::LoadText | ( | PHTTPRequest & | request | ) | [virtual] |
Get a block of text data (eg HTML) that the resource contains.
The default behaviour is to assert, one of LoadText()
or LoadData()
functions must be overridden for correct operation.
Reimplemented from PHTTPResource.
Reimplemented in PHTTPDirectory.
PFilePath PHTTPFile::filePath [protected] |