qhttpserver.hpp 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /** HTTP server class.
  2. * https://github.com/azadkuh/qhttp
  3. *
  4. * @author amir zamani
  5. * @version 2.0.0
  6. * @date 2014-07-11
  7. */
  8. #ifndef QHTTPSERVER_HPP
  9. #define QHTTPSERVER_HPP
  10. ///////////////////////////////////////////////////////////////////////////////
  11. #include "qhttpfwd.hpp"
  12. #include <QObject>
  13. #include <QHostAddress>
  14. ///////////////////////////////////////////////////////////////////////////////
  15. namespace qhttp {
  16. namespace server {
  17. ///////////////////////////////////////////////////////////////////////////////
  18. /** The QHttpServer class is a fast, async (non-blocking) HTTP server. */
  19. class QHTTP_API QHttpServer : public QObject
  20. {
  21. Q_OBJECT
  22. Q_PROPERTY(quint32 timeOut READ timeOut WRITE setTimeOut)
  23. public:
  24. /** construct a new HTTP Server. */
  25. explicit QHttpServer(QObject *parent = nullptr);
  26. virtual ~QHttpServer();
  27. /** starts a TCP or Local (unix domain socket) server.
  28. * if you provide a server handler, the newRequest() signal won't be emitted.
  29. *
  30. * @param socketOrPort could be a tcp port number as "8080" or a unix socket name as
  31. * "/tmp/sample.socket" or "sample.socket".
  32. * @param handler optional server handler (a lambda, std::function, ...)
  33. * @return false if listening fails.
  34. */
  35. bool listen(const QString& socketOrPort,
  36. const TServerHandler& handler = nullptr);
  37. /** starts a TCP server on specified address and port.
  38. * if you provide a server handler, the newRequest() signal won't be emitted.
  39. *
  40. * @param address listening address as QHostAddress::Any.
  41. * @param port listening port.
  42. * @param handler optional server handler (a lambda, std::function, ...)
  43. * @return false if listening fails.
  44. */
  45. bool listen(const QHostAddress& address, quint16 port,
  46. const TServerHandler& handler = nullptr);
  47. /** @overload listen() */
  48. bool listen(quint16 port) {
  49. return listen(QHostAddress::Any, port);
  50. }
  51. /** returns true if server successfully listens. @sa listen() */
  52. bool isListening() const;
  53. /** closes the server and stops from listening. */
  54. void stopListening();
  55. /** returns timeout value [mSec] for open connections (sockets).
  56. * @sa setTimeOut(). */
  57. quint32 timeOut()const;
  58. /** set time-out for new open connections in miliseconds [mSec].
  59. * new incoming connections will be forcefully closed after this time out.
  60. * a zero (0) value disables timer for new connections. */
  61. void setTimeOut(quint32);
  62. /** returns the QHttpServer's backend type. */
  63. TBackend backendType() const;
  64. signals:
  65. /** emitted when a client makes a new request to the server if you do not override
  66. * incomingConnection(QHttpConnection *connection);
  67. * @sa incommingConnection(). */
  68. void newRequest(QHttpRequest *request, QHttpResponse *response);
  69. /** emitted when a new connection comes to the server if you do not override
  70. * incomingConnection(QHttpConnection *connection);
  71. * @sa incomingConnection(); */
  72. void newConnection(QHttpConnection* connection);
  73. protected:
  74. /** returns the tcp server instance if the backend() == ETcpSocket. */
  75. QTcpServer* tcpServer() const;
  76. /** returns the local server instance if the backend() == ELocalSocket. */
  77. QLocalServer* localServer() const;
  78. /** is called when server accepts a new connection.
  79. * you can override this function for using a thread-pool or ... some other reasons.
  80. *
  81. * the default implementation just connects QHttpConnection::newRequest signal.
  82. * @note if you override this method, the signal won't be emitted by QHttpServer.
  83. * (perhaps, you do not need it anymore).
  84. *
  85. * @param connection New incoming connection. */
  86. virtual void incomingConnection(QHttpConnection* connection);
  87. /** overrides QTcpServer::incomingConnection() to make a new QHttpConnection.
  88. * override this function if you like to create your derived QHttpConnection instances.
  89. *
  90. * @note if you override this method, incomingConnection(QHttpConnection*) or
  91. * newRequest(QHttpRequest *, QHttpResponse *) signal won't be called.
  92. *
  93. * @see example/benchmark/server.cpp to see how to override.
  94. */
  95. virtual void incomingConnection(qintptr handle);
  96. private:
  97. explicit QHttpServer(QHttpServerPrivate&, QObject *parent);
  98. Q_DECLARE_PRIVATE(QHttpServer)
  99. Q_DISABLE_COPY(QHttpServer)
  100. QScopedPointer<QHttpServerPrivate> d_ptr;
  101. };
  102. ///////////////////////////////////////////////////////////////////////////////
  103. } // namespace server
  104. } // namespace qhttp
  105. ///////////////////////////////////////////////////////////////////////////////
  106. #endif // define QHTTPSERVER_HPP