Chris@208
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@208
|
2
|
Chris@208
|
3 /*
|
Chris@208
|
4 Sonic Visualiser
|
Chris@208
|
5 An audio file viewer and annotation editor.
|
Chris@208
|
6 Centre for Digital Music, Queen Mary, University of London.
|
Chris@208
|
7 This file copyright 2007 QMUL.
|
Chris@208
|
8
|
Chris@208
|
9 This program is free software; you can redistribute it and/or
|
Chris@208
|
10 modify it under the terms of the GNU General Public License as
|
Chris@208
|
11 published by the Free Software Foundation; either version 2 of the
|
Chris@208
|
12 License, or (at your option) any later version. See the file
|
Chris@208
|
13 COPYING included with this distribution for more information.
|
Chris@208
|
14 */
|
Chris@208
|
15
|
Chris@208
|
16 #ifndef _REMOTE_FILE_H_
|
Chris@208
|
17 #define _REMOTE_FILE_H_
|
Chris@208
|
18
|
Chris@208
|
19 #include <QUrl>
|
Chris@208
|
20 #include <QMutex>
|
Chris@208
|
21 #include <QString>
|
Chris@210
|
22 #include <QTimer>
|
Chris@208
|
23
|
Chris@304
|
24 #include <map>
|
Chris@304
|
25
|
Chris@208
|
26 class QFtp;
|
Chris@208
|
27 class QHttp;
|
Chris@208
|
28 class QFile;
|
Chris@208
|
29 class QProgressDialog;
|
Chris@210
|
30 class QHttpResponseHeader;
|
Chris@208
|
31
|
Chris@325
|
32 /**
|
Chris@325
|
33 * FileSource is a class used to refer to the contents of a file that
|
Chris@325
|
34 * may be either local or at a remote location such as a HTTP URL.
|
Chris@325
|
35 *
|
Chris@325
|
36 * When a FileSource object is constructed, the file or URL passed to
|
Chris@325
|
37 * its constructor is tested for validity, and if it refers to a
|
Chris@325
|
38 * remote HTTP or FTP location it is retrieved asynchronously (the Qt
|
Chris@325
|
39 * event loop must be running) and cached locally. You can then query
|
Chris@325
|
40 * a local path for the file and refer to that as a normal filename.
|
Chris@325
|
41 *
|
Chris@325
|
42 * Use isAvailable() to test whether the file or remote URL exists,
|
Chris@325
|
43 * and isOK() to test for internal validity or transmission errors.
|
Chris@325
|
44 * Call waitForStatus() to block until the availability and validity
|
Chris@325
|
45 * of the URL have been established so that isAvailable may be called,
|
Chris@325
|
46 * and waitForData() to block until the entire file has been cached.
|
Chris@325
|
47 *
|
Chris@325
|
48 * FileSource handles reference counting for cache files. You can
|
Chris@325
|
49 * construct many FileSource objects with the same URL and you will
|
Chris@325
|
50 * receive the same cached file for each; it is also reasonable to
|
Chris@325
|
51 * pass FileSource objects by value. FileSource only makes sense for
|
Chris@325
|
52 * stateless URLs that result in the same data on each request.
|
Chris@325
|
53 *
|
Chris@325
|
54 * Cached files share a lifetime with their "owning" FileSource
|
Chris@325
|
55 * objects; when the last FileSource referring to a given URL is
|
Chris@325
|
56 * deleted or goes out of scope, its cached file (if any) is also
|
Chris@325
|
57 * removed.
|
Chris@325
|
58 */
|
Chris@317
|
59 class FileSource : public QObject
|
Chris@208
|
60 {
|
Chris@208
|
61 Q_OBJECT
|
Chris@208
|
62
|
Chris@208
|
63 public:
|
Chris@325
|
64
|
Chris@325
|
65 /**
|
Chris@325
|
66 * Construct a FileSource using the given local file path or URL.
|
Chris@325
|
67 * The URL may be raw or encoded. If showProgress is true, a
|
Chris@325
|
68 * progress dialog will be shown for any network transfers.
|
Chris@325
|
69 */
|
Chris@324
|
70 FileSource(QString fileOrUrl, bool showProgress = false);
|
Chris@325
|
71
|
Chris@325
|
72 /**
|
Chris@325
|
73 * Construct a FileSource using the given remote URL. If
|
Chris@325
|
74 * showProgress is true, a progress dialog will be shown for any
|
Chris@325
|
75 * network transfers.
|
Chris@325
|
76 */
|
Chris@324
|
77 FileSource(QUrl url, bool showProgress = false);
|
Chris@325
|
78
|
Chris@317
|
79 FileSource(const FileSource &);
|
Chris@316
|
80
|
Chris@317
|
81 virtual ~FileSource();
|
Chris@208
|
82
|
Chris@325
|
83 /**
|
Chris@325
|
84 * Block on a sub-event-loop until the availability of the file or
|
Chris@325
|
85 * remote URL is known.
|
Chris@325
|
86 */
|
Chris@325
|
87 void waitForStatus();
|
Chris@325
|
88
|
Chris@325
|
89 /**
|
Chris@325
|
90 * Block on a sub-event-loop until the whole of the data has been
|
Chris@325
|
91 * retrieved (if it is remote).
|
Chris@325
|
92 */
|
Chris@325
|
93 void waitForData();
|
Chris@325
|
94
|
Chris@325
|
95 /**
|
Chris@325
|
96 * Return true if the FileSource object is valid and no error
|
Chris@325
|
97 * occurred in looking up the file or remote URL. Non-existence
|
Chris@325
|
98 * of the file or URL is not an error -- call isAvailable() to
|
Chris@325
|
99 * test for that.
|
Chris@325
|
100 */
|
Chris@325
|
101 bool isOK() const;
|
Chris@325
|
102
|
Chris@325
|
103 /**
|
Chris@325
|
104 * Return true if the file or remote URL exists. This may block
|
Chris@325
|
105 * on a sub-event-loop (calling waitForStatus) if the status is
|
Chris@325
|
106 * not yet available.
|
Chris@325
|
107 */
|
Chris@210
|
108 bool isAvailable();
|
Chris@210
|
109
|
Chris@325
|
110 /**
|
Chris@325
|
111 * Return true if the entire file has been retrieved and is
|
Chris@325
|
112 * available.
|
Chris@325
|
113 */
|
Chris@325
|
114 bool isDone() const;
|
Chris@316
|
115
|
Chris@325
|
116 /**
|
Chris@325
|
117 * Return true if this FileSource is referring to a remote URL.
|
Chris@325
|
118 */
|
Chris@325
|
119 bool isRemote() const;
|
Chris@325
|
120
|
Chris@325
|
121 /**
|
Chris@325
|
122 * Return the location filename or URL as passed to the
|
Chris@325
|
123 * constructor.
|
Chris@325
|
124 */
|
Chris@325
|
125 QString getLocation() const;
|
Chris@325
|
126
|
Chris@325
|
127 /**
|
Chris@325
|
128 * Return the name of the local file this FileSource refers to.
|
Chris@325
|
129 * This is the filename that should be used when reading normally
|
Chris@325
|
130 * from the FileSource. If the filename passed to the constructor
|
Chris@325
|
131 * was a local file, this will return the same filename; otherwise
|
Chris@325
|
132 * this will be the name of the temporary cache file owned by the
|
Chris@325
|
133 * FileSource.
|
Chris@325
|
134 */
|
Chris@325
|
135 QString getLocalFilename() const;
|
Chris@325
|
136
|
Chris@325
|
137 /**
|
Chris@325
|
138 * Return the MIME content type of this file, if known.
|
Chris@325
|
139 */
|
Chris@325
|
140 QString getContentType() const;
|
Chris@325
|
141
|
Chris@325
|
142 /**
|
Chris@325
|
143 * Return the file extension for this file, if any.
|
Chris@325
|
144 */
|
Chris@325
|
145 QString getExtension() const;
|
Chris@325
|
146
|
Chris@325
|
147 /**
|
Chris@325
|
148 * Return an error message, if isOK() is false.
|
Chris@325
|
149 */
|
Chris@325
|
150 QString getErrorString() const;
|
Chris@325
|
151
|
Chris@325
|
152 /**
|
Chris@325
|
153 * Specify whether any local, cached file should remain on disc
|
Chris@325
|
154 * after this FileSource has been destroyed. The default is false
|
Chris@325
|
155 * (cached files share their FileSource owners' lifespans).
|
Chris@325
|
156 */
|
Chris@316
|
157 void setLeaveLocalFile(bool leave);
|
Chris@208
|
158
|
Chris@325
|
159 /**
|
Chris@325
|
160 * Return true if the given filename or URL refers to a remote
|
Chris@325
|
161 * URL.
|
Chris@325
|
162 */
|
Chris@325
|
163 static bool isRemote(QString fileOrUrl);
|
Chris@210
|
164
|
Chris@325
|
165 /**
|
Chris@325
|
166 * Return true if FileSource can handle the retrieval scheme for
|
Chris@325
|
167 * the given URL (or if the URL is for a local file).
|
Chris@325
|
168 */
|
Chris@208
|
169 static bool canHandleScheme(QUrl url);
|
Chris@208
|
170
|
Chris@208
|
171 signals:
|
Chris@325
|
172 /**
|
Chris@325
|
173 * Emitted during URL retrieval, when the retrieval progress
|
Chris@325
|
174 * notches up to a new percentage.
|
Chris@325
|
175 */
|
Chris@208
|
176 void progress(int percent);
|
Chris@325
|
177
|
Chris@325
|
178 /**
|
Chris@325
|
179 * Emitted when the file's existence has been tested and/or
|
Chris@325
|
180 * response header received. Calls to isAvailable() after this
|
Chris@325
|
181 * has been emitted will not block.
|
Chris@325
|
182 */
|
Chris@325
|
183 void statusAvailable();
|
Chris@325
|
184
|
Chris@325
|
185 /**
|
Chris@325
|
186 * Emitted when the entire file data has been retrieved and the
|
Chris@325
|
187 * local file is complete (if no error has occurred).
|
Chris@325
|
188 */
|
Chris@208
|
189 void ready();
|
Chris@208
|
190
|
Chris@208
|
191 protected slots:
|
Chris@208
|
192 void dataReadProgress(int done, int total);
|
Chris@214
|
193 void httpResponseHeaderReceived(const QHttpResponseHeader &resp);
|
Chris@214
|
194 void ftpCommandFinished(int, bool);
|
Chris@208
|
195 void dataTransferProgress(qint64 done, qint64 total);
|
Chris@208
|
196 void done(bool error);
|
Chris@210
|
197 void showProgressDialog();
|
Chris@210
|
198 void cancelled();
|
Chris@208
|
199
|
Chris@208
|
200 protected:
|
Chris@317
|
201 FileSource &operator=(const FileSource &); // not provided
|
Chris@316
|
202
|
Chris@304
|
203 QUrl m_url;
|
Chris@208
|
204 QFtp *m_ftp;
|
Chris@208
|
205 QHttp *m_http;
|
Chris@208
|
206 QFile *m_localFile;
|
Chris@208
|
207 QString m_localFilename;
|
Chris@208
|
208 QString m_errorString;
|
Chris@315
|
209 QString m_contentType;
|
Chris@208
|
210 bool m_ok;
|
Chris@210
|
211 int m_lastStatus;
|
Chris@316
|
212 bool m_remote;
|
Chris@208
|
213 bool m_done;
|
Chris@316
|
214 bool m_leaveLocalFile;
|
Chris@208
|
215 QProgressDialog *m_progressDialog;
|
Chris@210
|
216 QTimer m_progressShowTimer;
|
Chris@208
|
217
|
Chris@304
|
218 typedef std::map<QUrl, int> RemoteRefCountMap;
|
Chris@304
|
219 typedef std::map<QUrl, QString> RemoteLocalMap;
|
Chris@304
|
220 static RemoteRefCountMap m_refCountMap;
|
Chris@304
|
221 static RemoteLocalMap m_remoteLocalMap;
|
Chris@304
|
222 static QMutex m_mapMutex;
|
Chris@316
|
223 bool m_refCounted;
|
Chris@316
|
224
|
Chris@316
|
225 void init(bool showProgress);
|
Chris@316
|
226 void initHttp();
|
Chris@316
|
227 void initFtp();
|
Chris@304
|
228
|
Chris@211
|
229 void cleanup();
|
Chris@211
|
230
|
Chris@316
|
231 // Create a local file for m_url. If it already existed, return true.
|
Chris@316
|
232 // The local filename is stored in m_localFilename.
|
Chris@316
|
233 bool createCacheFile();
|
Chris@316
|
234 void deleteCacheFile();
|
Chris@208
|
235
|
Chris@208
|
236 static QMutex m_fileCreationMutex;
|
Chris@208
|
237 static int m_count;
|
Chris@208
|
238 };
|
Chris@208
|
239
|
Chris@327
|
240 class FileSourceProgressPrinter : public QObject
|
Chris@327
|
241 {
|
Chris@327
|
242 Q_OBJECT
|
Chris@327
|
243
|
Chris@327
|
244 public:
|
Chris@327
|
245 FileSourceProgressPrinter();
|
Chris@327
|
246 virtual ~FileSourceProgressPrinter();
|
Chris@327
|
247
|
Chris@327
|
248 public slots:
|
Chris@327
|
249 void progress(int);
|
Chris@327
|
250
|
Chris@327
|
251 protected:
|
Chris@327
|
252 int m_lastProgress;
|
Chris@327
|
253 };
|
Chris@327
|
254
|
Chris@208
|
255 #endif
|