NuriaProject Framework  0.1
The NuriaProject Framework
httpserver.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef NURIA_HTTPSERVER_HPP
18 #define NURIA_HTTPSERVER_HPP
19 
20 #include "network_global.hpp"
21 #include <QSslCertificate>
22 #include <QHostAddress>
23 #include <QObject>
24 #include <QSslKey>
25 
26 class QTcpServer;
27 
28 namespace Nuria {
29 namespace Internal { class TcpServer; }
30 class HttpServerPrivate;
31 class HttpTransport;
32 class HttpBackend;
33 class HttpClient;
34 class HttpNode;
35 
71 class NURIA_NETWORK_EXPORT HttpServer : public QObject {
72  Q_OBJECT
73 public:
74 
77 
82  NoThreading = 0,
83 
89  OneThreadPerCore = -1
90  };
91 
96  HttpServer (QObject *parent = 0);
97 
99  ~HttpServer ();
100 
102  HttpNode *root () const;
103 
108  void setRoot (HttpNode *node);
109 
114  bool listen (const QHostAddress &interface = QHostAddress::Any, quint16 port = 80);
115 
116 #ifndef NURIA_NO_SSL_HTTP
117 
121  bool listenSecure (const QSslCertificate &certificate, const QSslKey &privateKey,
122  const QHostAddress &interface = QHostAddress::Any, quint16 port = 443);
123 #endif
124 
129  QString fqdn () const;
130 
134  void setFqdn (const QString &fqdn);
135 
141  void addBackend (HttpBackend *backend);
142 
144  QVector< HttpBackend * > backends () const;
145 
147  void stopListening (int port);
148 
153  int maxThreads () const;
154 
162  void setMaxThreads (int amount);
163 
164 private:
165  friend class HttpTransport;
166  friend class HttpClient;
167  friend class HttpNode;
168 
173  bool invokeByPath (HttpClient *client, const QString &path);
174  bool addTcpServerBackend (Internal::TcpServer *server, const QHostAddress &interface, quint16 port);
175  bool addTransport (HttpTransport *transport);
176  void startProcessingThreads (int amount);
177  void stopProcessingThreads (int lastN);
178  void notifyBackendsOfNewThread (QThread *serverThread);
179  void notifyBackendOfThreads (HttpBackend *backend);
180  int chooseThreadCount ();
181  void threadStopped (QObject *obj);
182 
183  //
184  HttpServerPrivate *d_ptr;
185 
186 };
187 }
188 
189 #endif // NURIA_HTTPSERVER_HPP
ThreadingMode
Definition: httpserver.hpp:76
Definition: abstractsessionmanager.hpp:24
Abstract data transport for HttpClient.
Definition: httptransport.hpp:53
Server for the HyperText Transfer Protocol.
Definition: httpserver.hpp:71
Virtual directory for HttpServer.
Definition: httpnode.hpp:176
Base class for HttpServer back-ends.
Definition: httpbackend.hpp:34
The HttpClient class represents a connection to a client.
Definition: httpclient.hpp:118