qhttpserver.cpp 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. #include "private/qhttpserver_private.hpp"
  2. ///////////////////////////////////////////////////////////////////////////////
  3. namespace qhttp {
  4. namespace server {
  5. ///////////////////////////////////////////////////////////////////////////////
  6. QHttpServer::QHttpServer(QObject *parent)
  7. : QObject(parent), d_ptr(new QHttpServerPrivate) {
  8. }
  9. QHttpServer::QHttpServer(QHttpServerPrivate &dd, QObject *parent)
  10. : QObject(parent), d_ptr(&dd) {
  11. }
  12. QHttpServer::~QHttpServer() {
  13. stopListening();
  14. }
  15. bool
  16. QHttpServer::listen(const QString &socketOrPort, const TServerHandler &handler) {
  17. Q_D(QHttpServer);
  18. bool isNumber = false;
  19. quint16 tcpPort = socketOrPort.toUShort(&isNumber);
  20. if ( isNumber && tcpPort > 0 )
  21. return listen(QHostAddress::Any, tcpPort, handler);
  22. d->initialize(ELocalSocket, this);
  23. d->ihandler = handler;
  24. return d->ilocalServer->listen(socketOrPort);
  25. }
  26. bool
  27. QHttpServer::listen(const QHostAddress& address, quint16 port, const qhttp::server::TServerHandler& handler) {
  28. Q_D(QHttpServer);
  29. d->initialize(ETcpSocket, this);
  30. d->ihandler = handler;
  31. return d->itcpServer->listen(address, port);
  32. }
  33. bool
  34. QHttpServer::isListening() const {
  35. const Q_D(QHttpServer);
  36. if ( d->ibackend == ETcpSocket && d->itcpServer )
  37. return d->itcpServer->isListening();
  38. else if ( d->ibackend == ELocalSocket && d->ilocalServer )
  39. return d->ilocalServer->isListening();
  40. return false;
  41. }
  42. void
  43. QHttpServer::stopListening() {
  44. Q_D(QHttpServer);
  45. if ( d->itcpServer )
  46. d->itcpServer->close();
  47. if ( d->ilocalServer ) {
  48. d->ilocalServer->close();
  49. QLocalServer::removeServer( d->ilocalServer->fullServerName() );
  50. }
  51. }
  52. quint32
  53. QHttpServer::timeOut() const {
  54. return d_func()->itimeOut;
  55. }
  56. void
  57. QHttpServer::setTimeOut(quint32 newValue) {
  58. d_func()->itimeOut = newValue;
  59. }
  60. TBackend
  61. QHttpServer::backendType() const {
  62. return d_func()->ibackend;
  63. }
  64. QTcpServer*
  65. QHttpServer::tcpServer() const {
  66. return d_func()->itcpServer.data();
  67. }
  68. QLocalServer*
  69. QHttpServer::localServer() const {
  70. return d_func()->ilocalServer.data();
  71. }
  72. void
  73. QHttpServer::incomingConnection(qintptr handle) {
  74. QHttpConnection* conn = new QHttpConnection(this);
  75. conn->setSocketDescriptor(handle, backendType());
  76. conn->setTimeOut(d_func()->itimeOut);
  77. emit newConnection(conn);
  78. Q_D(QHttpServer);
  79. if ( d->ihandler )
  80. QObject::connect(conn, &QHttpConnection::newRequest, d->ihandler);
  81. else
  82. incomingConnection(conn);
  83. }
  84. void
  85. QHttpServer::incomingConnection(QHttpConnection *connection) {
  86. QObject::connect(connection, &QHttpConnection::newRequest,
  87. this, &QHttpServer::newRequest);
  88. }
  89. ///////////////////////////////////////////////////////////////////////////////
  90. } // namespace server
  91. } // namespace qhttp
  92. ///////////////////////////////////////////////////////////////////////////////