123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- #include "private/qhttpserver_private.hpp"
- ///////////////////////////////////////////////////////////////////////////////
- namespace qhttp {
- namespace server {
- ///////////////////////////////////////////////////////////////////////////////
- QHttpServer::QHttpServer(QObject *parent)
- : QObject(parent), d_ptr(new QHttpServerPrivate) {
- }
- QHttpServer::QHttpServer(QHttpServerPrivate &dd, QObject *parent)
- : QObject(parent), d_ptr(&dd) {
- }
- QHttpServer::~QHttpServer() {
- stopListening();
- }
- bool
- QHttpServer::listen(const QString &socketOrPort, const TServerHandler &handler) {
- Q_D(QHttpServer);
- bool isNumber = false;
- quint16 tcpPort = socketOrPort.toUShort(&isNumber);
- if ( isNumber && tcpPort > 0 )
- return listen(QHostAddress::Any, tcpPort, handler);
- d->initialize(ELocalSocket, this);
- d->ihandler = handler;
- return d->ilocalServer->listen(socketOrPort);
- }
- bool
- QHttpServer::listen(const QHostAddress& address, quint16 port, const qhttp::server::TServerHandler& handler) {
- Q_D(QHttpServer);
- d->initialize(ETcpSocket, this);
- d->ihandler = handler;
- return d->itcpServer->listen(address, port);
- }
- bool
- QHttpServer::isListening() const {
- const Q_D(QHttpServer);
- if ( d->ibackend == ETcpSocket && d->itcpServer )
- return d->itcpServer->isListening();
- else if ( d->ibackend == ELocalSocket && d->ilocalServer )
- return d->ilocalServer->isListening();
- return false;
- }
- void
- QHttpServer::stopListening() {
- Q_D(QHttpServer);
- if ( d->itcpServer )
- d->itcpServer->close();
- if ( d->ilocalServer ) {
- d->ilocalServer->close();
- QLocalServer::removeServer( d->ilocalServer->fullServerName() );
- }
- }
- quint32
- QHttpServer::timeOut() const {
- return d_func()->itimeOut;
- }
- void
- QHttpServer::setTimeOut(quint32 newValue) {
- d_func()->itimeOut = newValue;
- }
- TBackend
- QHttpServer::backendType() const {
- return d_func()->ibackend;
- }
- QTcpServer*
- QHttpServer::tcpServer() const {
- return d_func()->itcpServer.data();
- }
- QLocalServer*
- QHttpServer::localServer() const {
- return d_func()->ilocalServer.data();
- }
- void
- QHttpServer::incomingConnection(qintptr handle) {
- QHttpConnection* conn = new QHttpConnection(this);
- conn->setSocketDescriptor(handle, backendType());
- conn->setTimeOut(d_func()->itimeOut);
- emit newConnection(conn);
- Q_D(QHttpServer);
- if ( d->ihandler )
- QObject::connect(conn, &QHttpConnection::newRequest, d->ihandler);
- else
- incomingConnection(conn);
- }
- void
- QHttpServer::incomingConnection(QHttpConnection *connection) {
- QObject::connect(connection, &QHttpConnection::newRequest,
- this, &QHttpServer::newRequest);
- }
- ///////////////////////////////////////////////////////////////////////////////
- } // namespace server
- } // namespace qhttp
- ///////////////////////////////////////////////////////////////////////////////
|