NuriaProject Framework  0.1
The NuriaProject Framework
fastcgibackend.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_FASTCGIBACKEND_HPP
18 #define NURIA_FASTCGIBACKEND_HPP
19 
20 #include <nuria/httpbackend.hpp>
21 #include <QLocalServer>
22 #include <QHostAddress>
23 
24 class QTcpSocket;
25 
26 namespace Nuria {
27 
28 namespace Internal { class FastCgiThreadObject; }
29 class FastCgiBackendPrivate;
30 class FastCgiTransport;
31 
92 class FastCgiBackend : public HttpBackend {
93  Q_OBJECT
94 public:
95 
97  explicit FastCgiBackend (HttpServer *server);
98 
100  ~FastCgiBackend () override;
101 
106  bool listen ();
107 
109  bool listen (int port, const QHostAddress &iface = QHostAddress::Any);
110 
112  bool listenLocal (const QString &name, QLocalServer::SocketOptions options = QLocalServer::NoOptions);
113 
115  bool listenLocal (qintptr handle);
116 
118  void stop ();
119 
124  int maxConcurrentConnections () const;
125 
127  void setMaxConcurrentConnections (int count);
128 
133  int maxConcurrentRequests () const;
134 
136  void setMaxConcurrentRequests (int count) const;
137 
145  void setCustomConfiguration (const QByteArray &name, const QByteArray &value);
146 
148  QMap< QByteArray, QByteArray > customConfiguration () const;
149 
154  int currentConnectionCount () const;
155 
156  // HttpBackend interface
157  bool isListening () const;
158  int port () const;
159  bool isSecure () const;
160 
161 signals:
162 
167  void connectionAdded ();
168 
174  void connectionClosed ();
175 
176 protected:
177 
178  void serverThreadCreated (QThread *thread) override;
179 
180 private:
181  friend class Internal::FastCgiThreadObject;
182  FastCgiBackendPrivate *d_ptr;
183 
184  void addTcpConnection (qintptr handle);
185  void addLocalConnection (qintptr handle);
186 
187 };
188 
189 }
190 
191 #endif // NURIA_FASTCGIBACKEND_HPP
FastCGI integration for HttpServer.
Definition: fastcgibackend.hpp:92
bool isListening() const
Definition: abstractsessionmanager.hpp:24
bool isSecure() const
void setMaxConcurrentConnections(int count)
QMap< QByteArray, QByteArray > customConfiguration() const
~FastCgiBackend() override
int maxConcurrentConnections() const
Server for the HyperText Transfer Protocol.
Definition: httpserver.hpp:71
FastCgiBackend(HttpServer *server)
void setCustomConfiguration(const QByteArray &name, const QByteArray &value)
void serverThreadCreated(QThread *thread) override
Base class for HttpServer back-ends.
Definition: httpbackend.hpp:34
void setMaxConcurrentRequests(int count) const
int currentConnectionCount() const
bool listenLocal(const QString &name, QLocalServer::SocketOptions options=QLocalServer::NoOptions)
int maxConcurrentRequests() const