1 | /**************************************************************************** |
2 | ** |
3 | ** Copyright (C) 2016 The Qt Company Ltd. |
4 | ** Contact: https://www.qt.io/licensing/ |
5 | ** |
6 | ** This file is part of the QtNetwork module of the Qt Toolkit. |
7 | ** |
8 | ** $QT_BEGIN_LICENSE:LGPL$ |
9 | ** Commercial License Usage |
10 | ** Licensees holding valid commercial Qt licenses may use this file in |
11 | ** accordance with the commercial license agreement provided with the |
12 | ** Software or, alternatively, in accordance with the terms contained in |
13 | ** a written agreement between you and The Qt Company. For licensing terms |
14 | ** and conditions see https://www.qt.io/terms-conditions. For further |
15 | ** information use the contact form at https://www.qt.io/contact-us. |
16 | ** |
17 | ** GNU Lesser General Public License Usage |
18 | ** Alternatively, this file may be used under the terms of the GNU Lesser |
19 | ** General Public License version 3 as published by the Free Software |
20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the |
21 | ** packaging of this file. Please review the following information to |
22 | ** ensure the GNU Lesser General Public License version 3 requirements |
23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. |
24 | ** |
25 | ** GNU General Public License Usage |
26 | ** Alternatively, this file may be used under the terms of the GNU |
27 | ** General Public License version 2.0 or (at your option) the GNU General |
28 | ** Public license version 3 or any later version approved by the KDE Free |
29 | ** Qt Foundation. The licenses are as published by the Free Software |
30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 |
31 | ** included in the packaging of this file. Please review the following |
32 | ** information to ensure the GNU General Public License requirements will |
33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and |
34 | ** https://www.gnu.org/licenses/gpl-3.0.html. |
35 | ** |
36 | ** $QT_END_LICENSE$ |
37 | ** |
38 | ****************************************************************************/ |
39 | |
40 | #ifndef QNETWORKACCESSCACHE_P_H |
41 | #define QNETWORKACCESSCACHE_P_H |
42 | |
43 | // |
44 | // W A R N I N G |
45 | // ------------- |
46 | // |
47 | // This file is not part of the Qt API. It exists for the convenience |
48 | // of the Network Access API. This header file may change from |
49 | // version to version without notice, or even be removed. |
50 | // |
51 | // We mean it. |
52 | // |
53 | |
54 | #include <QtNetwork/private/qtnetworkglobal_p.h> |
55 | #include "QtCore/qobject.h" |
56 | #include "QtCore/qbasictimer.h" |
57 | #include "QtCore/qbytearray.h" |
58 | #include "QtCore/qhash.h" |
59 | #include "QtCore/qmetatype.h" |
60 | |
61 | QT_BEGIN_NAMESPACE |
62 | |
63 | class QNetworkRequest; |
64 | class QUrl; |
65 | |
66 | // this class is not about caching files but about |
67 | // caching objects used by QNetworkAccessManager, e.g. existing TCP connections |
68 | // or credentials. |
69 | class QNetworkAccessCache: public QObject |
70 | { |
71 | Q_OBJECT |
72 | public: |
73 | struct Node; |
74 | typedef QHash<QByteArray, Node> NodeHash; |
75 | |
76 | class CacheableObject |
77 | { |
78 | friend class QNetworkAccessCache; |
79 | QByteArray key; |
80 | bool expires; |
81 | bool shareable; |
82 | public: |
83 | CacheableObject(); |
84 | virtual ~CacheableObject(); |
85 | virtual void dispose() = 0; |
86 | inline QByteArray cacheKey() const { return key; } |
87 | |
88 | protected: |
89 | void setExpires(bool enable); |
90 | void setShareable(bool enable); |
91 | }; |
92 | |
93 | QNetworkAccessCache(); |
94 | ~QNetworkAccessCache(); |
95 | |
96 | void clear(); |
97 | |
98 | void addEntry(const QByteArray &key, CacheableObject *entry); |
99 | bool hasEntry(const QByteArray &key) const; |
100 | bool requestEntry(const QByteArray &key, QObject *target, const char *member); |
101 | CacheableObject *requestEntryNow(const QByteArray &key); |
102 | void releaseEntry(const QByteArray &key); |
103 | void removeEntry(const QByteArray &key); |
104 | |
105 | signals: |
106 | void entryReady(QNetworkAccessCache::CacheableObject *); |
107 | |
108 | protected: |
109 | void timerEvent(QTimerEvent *) override; |
110 | |
111 | private: |
112 | // idea copied from qcache.h |
113 | NodeHash hash; |
114 | Node *oldest; |
115 | Node *newest; |
116 | |
117 | QBasicTimer timer; |
118 | |
119 | void linkEntry(const QByteArray &key); |
120 | bool unlinkEntry(const QByteArray &key); |
121 | void updateTimer(); |
122 | bool emitEntryReady(Node *node, QObject *target, const char *member); |
123 | }; |
124 | |
125 | QT_END_NAMESPACE |
126 | |
127 | Q_DECLARE_METATYPE(QNetworkAccessCache::CacheableObject*) |
128 | |
129 | #endif |
130 | |