1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
|
// --------------------------------------------------------------------------
//
// File
// Name: HTTPServer.cpp
// Purpose: HTTP server class
// Created: 26/3/04
//
// --------------------------------------------------------------------------
#include "Box.h"
#include <stdio.h>
#include "HTTPServer.h"
#include "HTTPRequest.h"
#include "HTTPResponse.h"
#include "IOStreamGetLine.h"
#include "MemLeakFindOn.h"
// --------------------------------------------------------------------------
//
// Function
// Name: HTTPServer::HTTPServer()
// Purpose: Constructor
// Created: 26/3/04
//
// --------------------------------------------------------------------------
HTTPServer::HTTPServer()
: mTimeout(20000) // default timeout leaves a little while for clients to get the second request in.
{
}
// --------------------------------------------------------------------------
//
// Function
// Name: HTTPServer::~HTTPServer()
// Purpose: Destructor
// Created: 26/3/04
//
// --------------------------------------------------------------------------
HTTPServer::~HTTPServer()
{
}
// --------------------------------------------------------------------------
//
// Function
// Name: HTTPServer::DaemonName()
// Purpose: As interface, generic name for daemon
// Created: 26/3/04
//
// --------------------------------------------------------------------------
const char *HTTPServer::DaemonName() const
{
return "generic-httpserver";
}
// --------------------------------------------------------------------------
//
// Function
// Name: HTTPServer::GetConfigVerify()
// Purpose: As interface -- return most basic config so it's only necessary to
// provide this if you want to add extra directives.
// Created: 26/3/04
//
// --------------------------------------------------------------------------
const ConfigurationVerify *HTTPServer::GetConfigVerify() const
{
static ConfigurationVerifyKey verifyserverkeys[] =
{
HTTPSERVER_VERIFY_SERVER_KEYS(ConfigurationVerifyKey::NoDefaultValue) // no default addresses
};
static ConfigurationVerify verifyserver[] =
{
{
"Server",
0,
verifyserverkeys,
ConfigTest_Exists | ConfigTest_LastEntry,
0
}
};
static ConfigurationVerifyKey verifyrootkeys[] =
{
HTTPSERVER_VERIFY_ROOT_KEYS
};
static ConfigurationVerify verify =
{
"root",
verifyserver,
verifyrootkeys,
ConfigTest_Exists | ConfigTest_LastEntry,
0
};
return &verify;
}
// --------------------------------------------------------------------------
//
// Function
// Name: HTTPServer::Run()
// Purpose: As interface.
// Created: 26/3/04
//
// --------------------------------------------------------------------------
void HTTPServer::Run()
{
// Do some configuration stuff
const Configuration &conf(GetConfiguration());
HTTPResponse::SetDefaultURIPrefix(conf.GetKeyValue("AddressPrefix"));
// Let the base class do the work
ServerStream<SocketStream, 80>::Run();
}
// --------------------------------------------------------------------------
//
// Function
// Name: HTTPServer::Connection(SocketStream &)
// Purpose: As interface, handle connection
// Created: 26/3/04
//
// --------------------------------------------------------------------------
void HTTPServer::Connection(SocketStream &rStream)
{
// Create a get line object to use
IOStreamGetLine getLine(rStream);
// Notify dervived claases
HTTPConnectionOpening();
bool handleRequests = true;
while(handleRequests)
{
// Parse the request
HTTPRequest request;
if(!request.Receive(getLine, mTimeout))
{
// Didn't get request, connection probably closed.
break;
}
// Generate a response
HTTPResponse response(&rStream);
try
{
Handle(request, response);
}
catch(BoxException &e)
{
char exceptionCode[256];
::sprintf(exceptionCode, "%s (%d/%d)", e.what(),
e.GetType(), e.GetSubType());
SendInternalErrorResponse(exceptionCode, response);
}
catch(...)
{
SendInternalErrorResponse("unknown", response);
}
// Keep alive?
if(request.GetClientKeepAliveRequested())
{
// Mark the response to the client as supporting keepalive
response.SetKeepAlive(true);
}
else
{
// Stop now
handleRequests = false;
}
// Send the response (omit any content if this is a HEAD method request)
response.Send(request.GetMethod() == HTTPRequest::Method_HEAD);
}
// Notify derived classes
HTTPConnectionClosing();
}
// --------------------------------------------------------------------------
//
// Function
// Name: HTTPServer::SendInternalErrorResponse(const char*,
// HTTPResponse&)
// Purpose: Generates an error message in the provided response
// Created: 26/3/04
//
// --------------------------------------------------------------------------
void HTTPServer::SendInternalErrorResponse(const std::string& rErrorMsg,
HTTPResponse& rResponse)
{
#define ERROR_HTML_1 "<html><head><title>Internal Server Error</title></head>\n" \
"<h1>Internal Server Error</h1>\n" \
"<p>An error, type "
#define ERROR_HTML_2 " occured when processing the request.</p>" \
"<p>Please try again later.</p>" \
"</body>\n</html>\n"
// Generate the error page
// rResponse.SetResponseCode(HTTPResponse::Code_InternalServerError);
rResponse.SetContentType("text/html");
rResponse.Write(ERROR_HTML_1, sizeof(ERROR_HTML_1) - 1);
rResponse.IOStream::Write(rErrorMsg.c_str());
rResponse.Write(ERROR_HTML_2, sizeof(ERROR_HTML_2) - 1);
}
// --------------------------------------------------------------------------
//
// Function
// Name: HTTPServer::HTTPConnectionOpening()
// Purpose: Override to get notifications of connections opening
// Created: 22/12/04
//
// --------------------------------------------------------------------------
void HTTPServer::HTTPConnectionOpening()
{
}
// --------------------------------------------------------------------------
//
// Function
// Name: HTTPServer::HTTPConnectionClosing()
// Purpose: Override to get notifications of connections closing
// Created: 22/12/04
//
// --------------------------------------------------------------------------
void HTTPServer::HTTPConnectionClosing()
{
}
|