~ubuntu-branches/ubuntu/gutsy/poco/gutsy

« back to all changes in this revision

Viewing changes to Net/src/HTTPServerConnection.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Krzysztof Burghardt
  • Date: 2007-04-27 18:33:48 UTC
  • Revision ID: james.westby@ubuntu.com-20070427183348-xgnpct0qd6a2ip34
Tags: upstream-1.2.9
ImportĀ upstreamĀ versionĀ 1.2.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// HTTPServerConnection.cpp
 
3
//
 
4
// $Id: //poco/1.2/Net/src/HTTPServerConnection.cpp#4 $
 
5
//
 
6
// Library: Net
 
7
// Package: HTTPServer
 
8
// Module:  HTTPServerConnection
 
9
//
 
10
// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
 
11
// and Contributors.
 
12
//
 
13
// Permission is hereby granted, free of charge, to any person or organization
 
14
// obtaining a copy of the software and accompanying documentation covered by
 
15
// this license (the "Software") to use, reproduce, display, distribute,
 
16
// execute, and transmit the Software, and to prepare derivative works of the
 
17
// Software, and to permit third-parties to whom the Software is furnished to
 
18
// do so, all subject to the following:
 
19
// 
 
20
// The copyright notices in the Software and this entire statement, including
 
21
// the above license grant, this restriction and the following disclaimer,
 
22
// must be included in all copies of the Software, in whole or in part, and
 
23
// all derivative works of the Software, unless such copies or derivative
 
24
// works are solely in the form of machine-executable object code generated by
 
25
// a source language processor.
 
26
// 
 
27
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
28
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
29
// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
 
30
// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
 
31
// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
 
32
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 
33
// DEALINGS IN THE SOFTWARE.
 
34
//
 
35
 
 
36
 
 
37
#include "Poco/Net/HTTPServerConnection.h"
 
38
#include "Poco/Net/HTTPServerSession.h"
 
39
#include "Poco/Net/HTTPServerRequest.h"
 
40
#include "Poco/Net/HTTPServerResponse.h"
 
41
#include "Poco/Net/HTTPRequestHandler.h"
 
42
#include "Poco/Net/HTTPRequestHandlerFactory.h"
 
43
#include "Poco/Net/HTTPServerParams.h"
 
44
#include "Poco/Net/NetException.h"
 
45
#include "Poco/NumberFormatter.h"
 
46
#include <memory>
 
47
 
 
48
 
 
49
namespace Poco {
 
50
namespace Net {
 
51
 
 
52
 
 
53
HTTPServerConnection::HTTPServerConnection(const StreamSocket& socket, HTTPServerParams* pParams, HTTPRequestHandlerFactory* pFactory):
 
54
        TCPServerConnection(socket),
 
55
        _pParams(pParams),
 
56
        _pFactory(pFactory)
 
57
{
 
58
        poco_check_ptr (pFactory);
 
59
        poco_check_ptr (pParams);
 
60
        
 
61
        _pParams->duplicate();
 
62
}
 
63
 
 
64
 
 
65
HTTPServerConnection::~HTTPServerConnection()
 
66
{
 
67
        _pParams->release();
 
68
}
 
69
 
 
70
 
 
71
void HTTPServerConnection::run()
 
72
{
 
73
        std::string server = _pParams->getSoftwareVersion();
 
74
        HTTPServerSession session(socket(), _pParams);
 
75
        while (session.hasMoreRequests())
 
76
        {
 
77
                try
 
78
                {
 
79
                        HTTPServerRequest request(session, _pParams);
 
80
                        HTTPServerResponse response(session);
 
81
                        response.setVersion(request.getVersion());
 
82
                        response.setKeepAlive(_pParams->getKeepAlive() && request.getKeepAlive() && session.canKeepAlive());
 
83
                        if (!server.empty())
 
84
                                response.set("Server", server);
 
85
                        try
 
86
                        {
 
87
                                std::auto_ptr<HTTPRequestHandler> pHandler(_pFactory->createRequestHandler(request));
 
88
                                if (pHandler.get())
 
89
                                {
 
90
                                        if (request.expectContinue())
 
91
                                                response.sendContinue();
 
92
                                        
 
93
                                        pHandler->handleRequest(request, response);
 
94
                                        session.setKeepAlive(_pParams->getKeepAlive() && response.getKeepAlive() && session.canKeepAlive());
 
95
                                }
 
96
                                else sendErrorResponse(session, HTTPResponse::HTTP_NOT_IMPLEMENTED);
 
97
                        }
 
98
                        catch (Poco::Exception&)
 
99
                        {
 
100
                                if (!response.sent())
 
101
                                        sendErrorResponse(session, HTTPResponse::HTTP_INTERNAL_SERVER_ERROR);
 
102
                                throw;
 
103
                        }
 
104
                }
 
105
                catch (NoMessageException&)
 
106
                {
 
107
                        break;
 
108
                }
 
109
                catch (MessageException&)
 
110
                {
 
111
                        sendErrorResponse(session, HTTPResponse::HTTP_BAD_REQUEST);
 
112
                }
 
113
        }
 
114
}
 
115
 
 
116
 
 
117
void HTTPServerConnection::sendErrorResponse(HTTPServerSession& session, HTTPResponse::HTTPStatus status)
 
118
{
 
119
        HTTPServerResponse response(session);
 
120
        response.setVersion(HTTPMessage::HTTP_1_1);
 
121
        response.setStatusAndReason(status);
 
122
        response.setKeepAlive(false);
 
123
        response.send();
 
124
        session.setKeepAlive(false);
 
125
}
 
126
 
 
127
 
 
128
} } // namespace Poco::Net