NuriaProject Framework  0.1
The NuriaProject Framework
httptransport.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_HTTPTRANSPORT_HPP
18 #define NURIA_HTTPTRANSPORT_HPP
19 
20 #include "network_global.hpp"
21 #include <QHostAddress>
22 #include <QIODevice>
23 
24 namespace Nuria {
25 
26 class HttpTransportPrivate;
27 class HttpBackend;
28 class HttpClient;
29 class HttpServer;
30 
53 class NURIA_NETWORK_EXPORT HttpTransport : public QObject {
54  Q_OBJECT
55  Q_ENUMS(Type Timeout)
56 public:
57 
58  // Default configuration
59  enum {
60 
62  MaxRequestsDefault = 10,
63 
65  DefaultConnectTimeout = 2000,
66 
68  DefaultDataTimeout = 5000,
69 
71  DefaultKeepAliveTimeout = 30000,
72 
73  };
74 
76  enum Type {
77 
79  Unknown = 0,
80 
82  TCP = 1,
83 
85  SSL = 2,
86 
88  Memory = 3,
89 
91  Custom = 4
92  };
93 
98  enum Timeout {
99 
101  ConnectTimeout = 0,
102 
107  DataTimeout = 1,
108 
114  KeepAliveTimeout = 2
115  };
116 
120  explicit HttpTransport (HttpBackend *backend, HttpServer *server);
121 
123  ~HttpTransport ();
124 
129  virtual Type type () const;
130 
136  virtual bool isSecure () const;
137 
142  virtual QHostAddress localAddress () const;
143 
148  virtual quint16 localPort () const;
149 
154  virtual QHostAddress peerAddress () const;
155 
160  virtual quint16 peerPort () const;
161 
163  virtual bool isOpen () const = 0;
164 
166  int currentRequestCount () const;
167 
172  int maxRequests () const;
173 
175  void setMaxRequests (int count);
176 
181  int timeout (Timeout which);
182 
184  void setTimeout (Timeout which, int msec);
185 
187  HttpBackend *backend ();
188 
189 public slots:
190 
195  virtual bool flush (HttpClient *client);
196 
203  virtual void forceClose () = 0;
204 
211  virtual void init ();
212 
213 signals:
214 
216  void connectionLost ();
217 
219  void timeoutChanged (Timeout timeout, int msec);
220 
221 protected:
222 
223  friend class HttpClient;
224 
226  void setCurrentRequestCount (int count);
227 
231  virtual void close (HttpClient *client) = 0;
232 
236  virtual bool sendToRemote (HttpClient *client, const QByteArray &data) = 0;
237 
244  void readFromRemote (HttpClient *client, QByteArray &data);
245 
250  void bytesSent (HttpClient *client, qint64 bytes);
251 
259  bool addToServer ();
260 
261 private:
262  HttpTransportPrivate *d_ptr;
263 };
264 
265 }
266 
267 Q_DECLARE_METATYPE(Nuria::HttpTransport::Timeout)
268 
269 #endif // NURIA_HTTPTRANSPORT_HPP
Timeout
Definition: httptransport.hpp:98
Type
Definition: httptransport.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
Base class for HttpServer back-ends.
Definition: httpbackend.hpp:34
The HttpClient class represents a connection to a client.
Definition: httpclient.hpp:118