tufao  0.8.1
An asynchronous web framework for C++ built on top of Qt
 All Classes Namespaces Functions Variables Enumerations Enumerator Pages
httpserver.h
1 /*
2  Copyright (c) 2012 Vinícius dos Santos Oliveira
3 
4  Permission is hereby granted, free of charge, to any person obtaining a copy
5  of this software and associated documentation files (the "Software"), to deal
6  in the Software without restriction, including without limitation the rights
7  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8  copies of the Software, and to permit persons to whom the Software is
9  furnished to do so, subject to the following conditions:
10 
11  The above copyright notice and this permission notice shall be included in all
12  copies or substantial portions of the Software.
13 
14  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20  SOFTWARE.
21  */
22 
23 #ifndef TUFAO_SERVER_H
24 #define TUFAO_SERVER_H
25 
26 #include <QtNetwork/QTcpServer>
27 #include "tufao_global.h"
28 
29 class QAbstractSocket;
30 
31 namespace Tufao {
32 
33 class HttpServerRequest;
34 class HttpServerResponse;
35 class HttpUpgradeRouter;
36 
54 class TUFAO_EXPORT HttpServer : public QObject
55 {
56  Q_OBJECT
57 public:
63  explicit HttpServer(QObject *parent = 0);
64 
68  ~HttpServer();
69 
86  bool listen(const QHostAddress &address = QHostAddress::Any,
87  quint16 port = 0);
88 
92  bool isListening() const;
93 
101  quint16 serverPort() const;
102 
114  void setTimeout(int msecs = 0);
115 
119  int timeout() const;
120 
136  void setHttpUpgradeRouter(HttpUpgradeRouter *router);
137 
138 signals:
161  void requestReady(Tufao::HttpServerRequest *request,
162  Tufao::HttpServerResponse *response);
163 
164 public slots:
169  void close();
170 
171 protected:
179  void handleConnection(QAbstractSocket *connection);
180 
191 #if QT_VERSION >= QT_VERSION_CHECK(5,0,0)
192  virtual void incomingConnection(qintptr socketDescriptor);
193 #else
194  virtual void incomingConnection(int socketDescriptor);
195 #endif
196 
212  virtual void checkContinue(HttpServerRequest *request,
213  HttpServerResponse *response);
214 
234  virtual void upgrade(HttpServerRequest *request, const QByteArray &head);
235 
236 private slots:
237 #if QT_VERSION >= QT_VERSION_CHECK(5,0,0)
238  void onNewConnection(qintptr socketDescriptor);
239 #else
240  void onNewConnection(int socketDescriptor);
241 #endif
242  void onRequestReady();
243  void onUpgrade(const QByteArray &head);
244 
245 private:
246  struct Priv;
247  Priv *priv;
248 };
249 
250 } // namespace Tufao
251 
252 #endif // TUFAO_SERVER_H
The Tufao::HttpServerResponse is used to respond to a Tufao::HttpServerRequest.
Definition: httpserverresponse.h:57
The Tufao::HttpServer represents a HTTP request received by Tufao::HttpServer.
Definition: httpserverrequest.h:47
This class provides a robust and high performance HTTP upgrade router.
Definition: httpupgraderouter.h:58
The Tufao::HttpServer class provides an implementation of the HTTP protocol.
Definition: httpserver.h:54