QDjango
 All Classes Functions Typedefs Enumerations Enumerator Properties Groups Pages
QDjangoHttpServer.h
1 /*
2  * Copyright (C) 2010-2012 Jeremy LainĂ©
3  * Contact: http://code.google.com/p/qdjango/
4  *
5  * This file is part of the QDjango Library.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  */
17 
18 #ifndef QDJANGO_HTTP_SERVER_H
19 #define QDJANGO_HTTP_SERVER_H
20 
21 #include <QHostAddress>
22 #include <QObject>
23 
24 #include "QDjangoHttp_p.h"
25 
26 class QDjangoHttpRequest;
28 class QDjangoHttpServer;
29 class QDjangoHttpServerPrivate;
30 class QDjangoUrlResolver;
31 
42 class QDJANGO_EXPORT QDjangoHttpServer : public QObject
43 {
44  Q_OBJECT
45 
46 public:
47  QDjangoHttpServer(QObject *parent = 0);
49 
50  void close();
51  bool listen(const QHostAddress &address, quint16 port);
52  QDjangoUrlResolver *urls() const;
53 
54 signals:
57  void requestFinished(QDjangoHttpRequest *request, QDjangoHttpResponse *response);
58 
59 private slots:
60  void _q_newTcpConnection();
61 
62 private:
63  Q_DISABLE_COPY(QDjangoHttpServer)
64  QDjangoHttpServerPrivate* const d;
65 };
66 
67 #endif