1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
/****************************************************************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
** Contact: Qt Software Information (qt-info@nokia.com)
**
** This file is part of the WebClient project on Trolltech Labs.
**
** This file may be used under the terms of the GNU General Public
** License version 2.0 or 3.0 as published by the Free Software Foundation
** and appearing in the file LICENSE.GPL included in the packaging of
** this file. Please review the following information to ensure GNU
** General Public Licensing requirements will be met:
** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
** http://www.gnu.org/copyleft/gpl.html.
**
** If you are unsure which license is appropriate for your use, please
** contact the sales department at qt-sales@nokia.com.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
****************************************************************************/
#ifndef CONTENTSERVER_H
#define CONTENTSERVER_H
#include <webclient.h>
#include <QtCore>
#include <QtNetwork>
class HttpRequest
{
public:
HttpRequest();
HttpRequest(const QList<QByteArray> &text);
HttpRequest(QTcpSocket *socket);
QByteArray path();
QByteArray cookies();
QList<QNetworkCookie> parsedCookies();
QByteArray hostName();
// QHash<QByteArray, QByteArray> cookieValues();
//private:
void readText();
void parseText();
QByteArray m_path;
QByteArray m_cookies;
QList<QNetworkCookie> m_parsedCookies;
QByteArray m_hostName;
QList<QByteArray> m_text;
QTcpSocket *m_socket;
QByteArray m_ifNoneMatch;
};
class HttpResponse
{
public:
HttpResponse();
void setBody(const QByteArray &body);
void setCookie(const QByteArray &name, const QByteArray &value);
void setContentType(const QByteArray &contentType);
void seteTag(const QByteArray &eTag);
void set304Response();
void setNeverExpires();
bool isHandled() const;
QByteArray toText();
QByteArray body;
QByteArray cookie;
QByteArray contentType;
QByteArray eTag;
bool response304;
bool neverExpires;
};
class Server;
class Session : public QObject
{
Q_OBJECT
public:
Session(Server *server, int sessionId);
int sessionId();
void setIdleSocket(QTcpSocket *socket);
QTcpSocket * idleSocket();
void emitRequestContent(HttpRequest *request, HttpResponse *response);
signals:
void sessionEnd();
void requestContent(HttpRequest *request, HttpResponse *response);
public slots:
void contentAvailable();
void idleSocketDisconnect();
public:
int m_sessionId;
QHostAddress address;
QTcpSocket *m_idleSocket;
HttpRequest m_idleRequest;
HttpResponse m_idleResponse;
Server *m_server;
QDateTime lastActivityTime;
};
class FileServer : public QObject
{
Q_OBJECT
public:
FileServer();
public slots:
virtual void handleRequest(HttpRequest *request, HttpResponse *response);
private:
QSet<QString> allowedFileNames;
QHash<QString, QByteArray> fileData;
QHash<QString, QByteArray> fileDataDeflated;
QHash<QString, QByteArray> eTags;
};
class Server : public QTcpServer
{
Q_OBJECT
public:
Server(quint16 port = 1818);
~Server();
signals:
// void authenticate(Session *session);
void sessionBegin(Session *session);
void sessionEnd(int sessionId);
public slots:
// void authenticated(Session *session);
void contentAvailable(Session *session);
private slots:
void connectionAvailable();
void dataOnSocket();
private slots:
void purgeInactiveSessions();
private:
void printRequest(const QList<QByteArray> &request);
QHash<int, Session *> activeSessions;
QTimer purgeInactiveSessionsTimer; // kills inactive sessions
int lastSessionVisited;
int nextCookieId;
quint16 port;
FileServer fileServer;
// statistics
int bytesRead;
int dynamicBytesWritten;
int staticBytesWritten;
int totalSessions;
QDateTime serverStart;
QByteArray createStatiticsPage();
public:
int activeSessionLimit;
QByteArray activeSessionLimitHtml;
int inactiveSessionTimeout;
bool sendUpdatesForPlainQWidgets;
bool shouldSkipUpdate(const QByteArray &className);
QSet<QByteArray> skipUpdatesClasses;
bool testHint(QWidget *widget, int widgetHint);
QHash<QWidget *, QSet</*WebClient::WidgetHint*/ int> > widgetHints;
};
#endif
|