-
Notifications
You must be signed in to change notification settings - Fork 179
/
httpserver.cpp
153 lines (122 loc) · 3.95 KB
/
httpserver.cpp
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
/* This file is part of the Tufão project
Copyright (C) 2011 Vinícius dos Santos Oliveira <vini.ipsmaker@gmail.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any
later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#include "priv/httpserver.h"
#include <QtNetwork/QTcpSocket>
#include "headers.h"
namespace Tufao {
HttpServer::HttpServer(QObject *parent) :
QObject(parent),
priv(new Priv)
{
connect(&priv->tcpServer, &TcpServerWrapper::newConnection,
this, &HttpServer::onNewConnection);
}
HttpServer::~HttpServer()
{
delete priv;
}
bool HttpServer::listen(const QHostAddress &address, quint16 port)
{
return priv->tcpServer.listen(address, port);
}
bool HttpServer::isListening() const
{
return priv->tcpServer.isListening();
}
quint16 HttpServer::serverPort() const
{
return priv->tcpServer.serverPort();
}
void HttpServer::setTimeout(int msecs)
{
priv->timeout = msecs;
}
int HttpServer::timeout() const
{
return priv->timeout;
}
void HttpServer::setUpgradeHandler(HttpServer::UpgradeHandler functor)
{
if (!functor)
return;
priv->upgradeHandler = functor;
}
HttpServer::UpgradeHandler HttpServer::defaultUpgradeHandler()
{
return Priv::defaultUpgradeHandler;
}
void HttpServer::close()
{
priv->tcpServer.close();
}
void HttpServer::incomingConnection(qintptr socketDescriptor)
{
QTcpSocket *socket = new QTcpSocket;
if (!socket->setSocketDescriptor(socketDescriptor)) {
delete socket;
return;
}
handleConnection(socket);
}
void HttpServer::checkContinue(HttpServerRequest &request,
HttpServerResponse &response)
{
response.writeContinue();
emit requestReady(request, response);
}
void HttpServer::handleConnection(QAbstractSocket *socket)
{
socket->setParent(this);
HttpServerRequest *handle = new HttpServerRequest(*socket, this);
if (priv->timeout)
handle->setTimeout(priv->timeout);
connect(handle, &HttpServerRequest::ready,
this, &HttpServer::onRequestReady);
connect(handle, &HttpServerRequest::upgrade, this, &HttpServer::onUpgrade);
connect(socket, &QAbstractSocket::disconnected,
handle, &QObject::deleteLater);
connect(socket, &QAbstractSocket::disconnected,
socket, &QObject::deleteLater);
}
void HttpServer::onNewConnection(qintptr socketDescriptor)
{
incomingConnection(socketDescriptor);
}
void HttpServer::onRequestReady()
{
HttpServerRequest *request = qobject_cast<HttpServerRequest *>(sender());
Q_ASSERT(request);
QAbstractSocket &socket = request->socket();
HttpServerResponse *response
= new HttpServerResponse(socket, request->responseOptions(), this);
connect(&socket, &QAbstractSocket::disconnected,
response, &QObject::deleteLater);
connect(response, &HttpServerResponse::finished,
request, &HttpServerRequest::resume);
connect(response, &HttpServerResponse::finished,
response, &QObject::deleteLater);
if (request->headers().contains("Expect", "100-continue"))
checkContinue(*request, *response);
else
emit requestReady(*request, *response);
}
void HttpServer::onUpgrade()
{
HttpServerRequest *request = qobject_cast<HttpServerRequest *>(sender());
Q_ASSERT(request);
priv->upgradeHandler(*request, request->readBody());
delete request;
}
} // namespace Tufao