]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: filesys.h | |
ea6a2ccb | 3 | // Purpose: interface of wxFileSystem, wxFileSystemHandler, wxFSFile |
23324ae1 | 4 | // Author: wxWidgets team |
526954c5 | 5 | // Licence: wxWindows licence |
23324ae1 FM |
6 | ///////////////////////////////////////////////////////////////////////////// |
7 | ||
ea6a2ccb FM |
8 | |
9 | /** | |
10 | Open Bit Flags | |
11 | */ | |
12 | enum wxFileSystemOpenFlags | |
13 | { | |
14 | wxFS_READ = 1, /**< Open for reading */ | |
15 | wxFS_SEEKABLE = 4 /**< Returned stream will be seekable */ | |
16 | }; | |
17 | ||
18 | ||
23324ae1 FM |
19 | /** |
20 | @class wxFileSystem | |
7c913512 | 21 | |
ea6a2ccb FM |
22 | This class provides an interface for opening files on different file systems. |
23 | It can handle absolute and/or local filenames. | |
24 | ||
25 | It uses a system of handlers (see wxFileSystemHandler) to provide access to | |
26 | user-defined virtual file systems. | |
7c913512 | 27 | |
23324ae1 FM |
28 | @library{wxbase} |
29 | @category{vfs} | |
7c913512 | 30 | |
ea6a2ccb | 31 | @see wxFileSystemHandler, wxFSFile, @ref overview_fs |
23324ae1 FM |
32 | */ |
33 | class wxFileSystem : public wxObject | |
34 | { | |
35 | public: | |
36 | /** | |
37 | Constructor. | |
336aecf1 FM |
38 | |
39 | The initial current path of this object will be empty | |
40 | (i.e. GetPath() == wxEmptyString) which means that e.g. OpenFile() | |
41 | or FindFirst() functions will use current working directory as | |
42 | current path (see also wxGetCwd). | |
23324ae1 FM |
43 | */ |
44 | wxFileSystem(); | |
45 | ||
46 | /** | |
ea6a2ccb FM |
47 | This static function adds new handler into the list of handlers |
48 | (see wxFileSystemHandler) which provide access to virtual FS. | |
49 | ||
50 | Note that if two handlers for the same protocol are added, the last | |
51 | added one takes precedence. | |
52 | ||
53 | @note You can call: | |
54 | @code | |
55 | wxFileSystem::AddHandler(new My_FS_Handler); | |
56 | @endcode | |
57 | This is because (a) AddHandler is a static method, and (b) the | |
58 | handlers are deleted in wxFileSystem's destructor so that you | |
59 | don't have to care about it. | |
23324ae1 | 60 | */ |
382f12e4 | 61 | static void AddHandler(wxFileSystemHandler* handler); |
23324ae1 | 62 | |
fb3b6097 RD |
63 | /** |
64 | Remove a filesystem handler from the list of handlers. | |
65 | */ | |
66 | static wxFileSystemHandler* RemoveHandler(wxFileSystemHandler *handler); | |
67 | ||
23324ae1 | 68 | /** |
ea6a2ccb FM |
69 | Sets the current location. @a location parameter passed to OpenFile() is |
70 | relative to this path. | |
71 | ||
72 | @remarks Unless @a is_dir is @true the @a location parameter is not the | |
73 | directory name but the name of the file in this directory. | |
74 | ||
75 | All these commands change the path to "dir/subdir/": | |
76 | ||
77 | @code | |
78 | ChangePathTo("dir/subdir/xh.htm"); | |
79 | ChangePathTo("dir/subdir", true); | |
80 | ChangePathTo("dir/subdir/", true); | |
81 | @endcode | |
82 | ||
83 | Example: | |
84 | @code | |
85 | f = fs->OpenFile("hello.htm"); // opens file 'hello.htm' | |
86 | fs->ChangePathTo("subdir/folder", true); | |
87 | f = fs->OpenFile("hello.htm"); // opens file 'subdir/folder/hello.htm' !! | |
88 | @endcode | |
3c4f71cc | 89 | |
7c913512 | 90 | @param location |
4cc4bfaf | 91 | the new location. Its meaning depends on the value of is_dir |
7c913512 | 92 | @param is_dir |
ea6a2ccb FM |
93 | if @true location is new directory. |
94 | If @false (the default) location is file in the new directory. | |
23324ae1 | 95 | */ |
4cc4bfaf | 96 | void ChangePathTo(const wxString& location, bool is_dir = false); |
23324ae1 FM |
97 | |
98 | /** | |
ea6a2ccb | 99 | Converts a wxFileName into an URL. |
3c4f71cc | 100 | |
4cc4bfaf | 101 | @see URLToFileName(), wxFileName |
23324ae1 | 102 | */ |
ea6a2ccb | 103 | static wxString FileNameToURL(const wxFileName& filename); |
23324ae1 FM |
104 | |
105 | /** | |
4cc4bfaf | 106 | Looks for the file with the given name @a file in a colon or semi-colon |
ea6a2ccb FM |
107 | (depending on the current platform) separated list of directories in @a path. |
108 | ||
109 | If the file is found in any directory, returns @true and the full path | |
110 | of the file in @a str, otherwise returns @false and doesn't modify @a str. | |
3c4f71cc | 111 | |
f21dd16b | 112 | @param pStr |
4cc4bfaf | 113 | Receives the full path of the file, must not be @NULL |
7c913512 | 114 | @param path |
4cc4bfaf | 115 | wxPATH_SEP-separated list of directories |
7c913512 | 116 | @param file |
4cc4bfaf | 117 | the name of the file to look for |
23324ae1 | 118 | */ |
43c48e1e | 119 | bool FindFileInPath(wxString* pStr, const wxString& path, |
23324ae1 FM |
120 | const wxString& file); |
121 | ||
122 | /** | |
ea6a2ccb FM |
123 | Works like ::wxFindFirstFile(). |
124 | ||
125 | Returns the name of the first filename (within filesystem's current path) | |
126 | that matches @a wildcard. | |
127 | ||
128 | @param wildcard | |
129 | The wildcard that the filename must match | |
130 | @param flags | |
131 | One of wxFILE (only files), wxDIR (only directories) or 0 (both). | |
23324ae1 FM |
132 | */ |
133 | wxString FindFirst(const wxString& wildcard, int flags = 0); | |
134 | ||
135 | /** | |
ea6a2ccb | 136 | Returns the next filename that matches the parameters passed to FindFirst(). |
23324ae1 FM |
137 | */ |
138 | wxString FindNext(); | |
139 | ||
140 | /** | |
ea6a2ccb | 141 | Returns the actual path (set by wxFileSystem::ChangePathTo). |
23324ae1 | 142 | */ |
adaaa686 | 143 | wxString GetPath() const; |
23324ae1 FM |
144 | |
145 | /** | |
146 | This static function returns @true if there is a registered handler which can | |
ea6a2ccb | 147 | open the given location. |
23324ae1 | 148 | */ |
4cc4bfaf | 149 | static bool HasHandlerForPath(const wxString& location); |
23324ae1 FM |
150 | |
151 | /** | |
ea6a2ccb FM |
152 | Opens the file and returns a pointer to a wxFSFile object or @NULL if failed. |
153 | ||
154 | It first tries to open the file in relative scope (based on value passed to | |
155 | ChangePathTo() method) and then as an absolute path. | |
156 | ||
157 | Note that the user is responsible for deleting the returned wxFSFile. | |
158 | @a flags can be one or more of the ::wxFileSystemOpenFlags values | |
159 | combined together. | |
3c4f71cc | 160 | |
23324ae1 FM |
161 | A stream opened with just the default @e wxFS_READ flag may |
162 | or may not be seekable depending on the underlying source. | |
ea6a2ccb FM |
163 | |
164 | Passing @e "wxFS_READ | wxFS_SEEKABLE" for @a flags will back | |
165 | a stream that is not natively seekable with memory or a file | |
23324ae1 | 166 | and return a stream that is always seekable. |
81227455 VS |
167 | |
168 | @note | |
169 | The @a location argument is, despite this method's name @em not | |
170 | a filename. It is a "location", aka wxFileSystem URL (see | |
171 | @ref overview_fs). | |
23324ae1 FM |
172 | */ |
173 | wxFSFile* OpenFile(const wxString& location, | |
174 | int flags = wxFS_READ); | |
175 | ||
176 | /** | |
ea6a2ccb FM |
177 | Converts URL into a well-formed filename. |
178 | The URL must use the @c file protocol. | |
23324ae1 FM |
179 | */ |
180 | static wxFileName URLToFileName(const wxString& url); | |
181 | }; | |
182 | ||
183 | ||
e54c96f1 | 184 | |
23324ae1 FM |
185 | /** |
186 | @class wxFSFile | |
7c913512 | 187 | |
23324ae1 | 188 | This class represents a single file opened by wxFileSystem. |
336aecf1 | 189 | It provides more informations than wxWidgets' input streams |
23324ae1 | 190 | (stream, filename, mime type, anchor). |
7c913512 | 191 | |
ea6a2ccb FM |
192 | @note Any pointer returned by a method of wxFSFile is valid only as long as |
193 | the wxFSFile object exists. For example a call to GetStream() | |
194 | doesn't @e create the stream but only returns the pointer to it. | |
195 | In other words after 10 calls to GetStream() you will have obtained | |
196 | ten identical pointers. | |
7c913512 | 197 | |
23324ae1 | 198 | @library{wxbase} |
336aecf1 | 199 | @category{vfs,file} |
7c913512 | 200 | |
ea6a2ccb | 201 | @see wxFileSystemHandler, wxFileSystem, @ref overview_fs |
23324ae1 FM |
202 | */ |
203 | class wxFSFile : public wxObject | |
204 | { | |
205 | public: | |
206 | /** | |
ea6a2ccb FM |
207 | Constructor. You probably won't use it. See the Note for details. |
208 | ||
209 | It is seldom used by the application programmer but you will need it if | |
210 | you are writing your own virtual FS. For example you may need something | |
211 | similar to wxMemoryInputStream, but because wxMemoryInputStream doesn't | |
212 | free the memory when destroyed and thus passing a memory stream pointer | |
213 | into wxFSFile constructor would lead to memory leaks, you can write your | |
214 | own class derived from wxFSFile: | |
215 | ||
216 | @code | |
217 | class wxMyFSFile : public wxFSFile | |
218 | { | |
219 | private: | |
220 | void *m_Mem; | |
221 | public: | |
222 | wxMyFSFile(.....) | |
223 | ~wxMyFSFile() {free(m_Mem);} | |
224 | // of course dtor is virtual ;-) | |
225 | }; | |
226 | @endcode | |
227 | ||
228 | If you are not sure of the meaning of these params, see the description | |
229 | of the GetXXXX() functions. | |
3c4f71cc | 230 | |
7c913512 | 231 | @param stream |
4cc4bfaf | 232 | The input stream that will be used to access data |
7c913512 | 233 | @param location |
4cc4bfaf | 234 | The full location (aka filename) of the file |
7c913512 | 235 | @param mimetype |
4cc4bfaf FM |
236 | MIME type of this file. It may be left empty, in which |
237 | case the type will be determined from file's extension (location must | |
238 | not be empty in this case). | |
7c913512 | 239 | @param anchor |
4cc4bfaf | 240 | Anchor. See GetAnchor() for details. |
76e9224e FM |
241 | @param modif |
242 | Modification date and time for this file. | |
23324ae1 | 243 | */ |
8067ee11 FM |
244 | wxFSFile(wxInputStream* stream, const wxString& location, |
245 | const wxString& mimetype, const wxString& anchor, | |
76e9224e | 246 | wxDateTime modif); |
23324ae1 FM |
247 | |
248 | /** | |
249 | Detaches the stream from the wxFSFile object. That is, the | |
f090e4ef | 250 | stream obtained with GetStream() will continue its existence |
ea6a2ccb FM |
251 | after the wxFSFile object is deleted. |
252 | ||
253 | You will have to delete the stream yourself. | |
23324ae1 | 254 | */ |
43c48e1e | 255 | wxInputStream* DetachStream(); |
23324ae1 FM |
256 | |
257 | /** | |
258 | Returns anchor (if present). The term of @b anchor can be easily | |
259 | explained using few examples: | |
3c4f71cc | 260 | |
ea6a2ccb FM |
261 | @verbatim |
262 | index.htm#anchor // 'anchor' is anchor | |
263 | index/wx001.htm // NO anchor here! | |
264 | archive/main.zip#zip:index.htm#global // 'global' | |
265 | archive/main.zip#zip:index.htm // NO anchor here! | |
266 | @endverbatim | |
267 | ||
23324ae1 | 268 | Usually an anchor is presented only if the MIME type is 'text/html'. |
ea6a2ccb FM |
269 | But it may have some meaning with other files; for example myanim.avi#200 |
270 | may refer to position in animation or reality.wrl#MyView may refer | |
271 | to a predefined view in VRML. | |
23324ae1 | 272 | */ |
ea6a2ccb | 273 | const wxString& GetAnchor() const; |
23324ae1 FM |
274 | |
275 | /** | |
7c913512 | 276 | Returns full location of the file, including path and protocol. |
ea6a2ccb FM |
277 | |
278 | Examples: | |
279 | @verbatim | |
280 | http://www.wxwidgets.org | |
281 | http://www.ms.mff.cuni.cz/~vsla8348/wxhtml/archive.zip#zip:info.txt | |
282 | file:/home/vasek/index.htm | |
283 | relative-file.htm | |
284 | @endverbatim | |
23324ae1 | 285 | */ |
ea6a2ccb | 286 | const wxString& GetLocation() const; |
23324ae1 FM |
287 | |
288 | /** | |
ea6a2ccb FM |
289 | Returns the MIME type of the content of this file. |
290 | ||
291 | It is either extension-based (see wxMimeTypesManager) or extracted from | |
23324ae1 FM |
292 | HTTP protocol Content-Type header. |
293 | */ | |
ea6a2ccb | 294 | const wxString& GetMimeType() const; |
23324ae1 FM |
295 | |
296 | /** | |
297 | Returns time when this file was modified. | |
298 | */ | |
328f5751 | 299 | wxDateTime GetModificationTime() const; |
23324ae1 FM |
300 | |
301 | /** | |
ea6a2ccb FM |
302 | Returns pointer to the stream. |
303 | ||
304 | You can use the returned stream to directly access data. | |
305 | You may suppose that the stream provide Seek and GetSize functionality | |
23324ae1 FM |
306 | (even in the case of the HTTP protocol which doesn't provide |
307 | this by default. wxHtml uses local cache to work around | |
308 | this and to speed up the connection). | |
309 | */ | |
328f5751 | 310 | wxInputStream* GetStream() const; |
23324ae1 FM |
311 | }; |
312 | ||
313 | ||
e54c96f1 | 314 | |
23324ae1 FM |
315 | /** |
316 | @class wxFileSystemHandler | |
7c913512 | 317 | |
ea6a2ccb FM |
318 | Classes derived from wxFileSystemHandler are used to access virtual file systems. |
319 | ||
320 | Its public interface consists of two methods: wxFileSystemHandler::CanOpen | |
7c913512 | 321 | and wxFileSystemHandler::OpenFile. |
ea6a2ccb | 322 | |
23324ae1 | 323 | It provides additional protected methods to simplify the process |
ea6a2ccb FM |
324 | of opening the file: GetProtocol(), GetLeftLocation(), GetRightLocation(), |
325 | GetAnchor(), GetMimeTypeFromExt(). | |
7c913512 | 326 | |
ea6a2ccb | 327 | Please have a look at overview (see wxFileSystem) if you don't know how locations |
23324ae1 | 328 | are constructed. |
7c913512 | 329 | |
ea6a2ccb FM |
330 | Also consult the @ref overview_fs_wxhtmlfs "list of available handlers". |
331 | ||
332 | Note that the handlers are shared by all instances of wxFileSystem. | |
333 | ||
334 | @remarks | |
335 | wxHTML library provides handlers for local files and HTTP or FTP protocol. | |
7c913512 | 336 | |
ea6a2ccb FM |
337 | @note |
338 | The location parameter passed to OpenFile() or CanOpen() methods is always an | |
339 | absolute path. You don't need to check the FS's current path. | |
340 | ||
341 | @beginWxPerlOnly | |
342 | In wxPerl, you need to derive your file system handler class | |
1058f652 | 343 | from @c Wx::PlFileSystemHandler. |
ea6a2ccb | 344 | @endWxPerlOnly |
7c913512 | 345 | |
23324ae1 FM |
346 | @library{wxbase} |
347 | @category{vfs} | |
7c913512 | 348 | |
ea6a2ccb | 349 | @see wxFileSystem, wxFSFile, @ref overview_fs |
23324ae1 FM |
350 | */ |
351 | class wxFileSystemHandler : public wxObject | |
352 | { | |
353 | public: | |
354 | /** | |
355 | Constructor. | |
356 | */ | |
357 | wxFileSystemHandler(); | |
358 | ||
359 | /** | |
360 | Returns @true if the handler is able to open this file. This function doesn't | |
361 | check whether the file exists or not, it only checks if it knows the protocol. | |
362 | Example: | |
3c4f71cc | 363 | |
ea6a2ccb FM |
364 | @code |
365 | bool MyHand::CanOpen(const wxString& location) | |
366 | { | |
367 | return (GetProtocol(location) == "http"); | |
368 | } | |
369 | @endcode | |
370 | ||
23324ae1 FM |
371 | Must be overridden in derived handlers. |
372 | */ | |
da1ed74c | 373 | virtual bool CanOpen(const wxString& location) = 0; |
23324ae1 FM |
374 | |
375 | /** | |
ea6a2ccb FM |
376 | Works like ::wxFindFirstFile(). |
377 | ||
378 | Returns the name of the first filename (within filesystem's current path) | |
379 | that matches @e wildcard. @a flags may be one of wxFILE (only files), | |
380 | wxDIR (only directories) or 0 (both). | |
381 | ||
23324ae1 FM |
382 | This method is only called if CanOpen() returns @true. |
383 | */ | |
384 | virtual wxString FindFirst(const wxString& wildcard, | |
385 | int flags = 0); | |
386 | ||
387 | /** | |
388 | Returns next filename that matches parameters passed to wxFileSystem::FindFirst. | |
ea6a2ccb FM |
389 | |
390 | This method is only called if CanOpen() returns @true and FindFirst() | |
23324ae1 FM |
391 | returned a non-empty string. |
392 | */ | |
393 | virtual wxString FindNext(); | |
394 | ||
882678eb FM |
395 | /** |
396 | Returns the MIME type based on @b extension of @a location. | |
397 | (While wxFSFile::GetMimeType() returns real MIME type - either | |
398 | extension-based or queried from HTTP.) | |
399 | ||
400 | Example: | |
401 | @code | |
402 | GetMimeTypeFromExt("index.htm") == "text/html" | |
403 | @endcode | |
404 | */ | |
405 | static wxString GetMimeTypeFromExt(const wxString& location); | |
406 | ||
407 | /** | |
408 | Opens the file and returns wxFSFile pointer or @NULL if failed. | |
409 | Must be overridden in derived handlers. | |
410 | ||
411 | @param fs | |
412 | Parent FS (the FS from that OpenFile was called). | |
413 | See the ZIP handler for details of how to use it. | |
414 | @param location | |
415 | The absolute location of file. | |
416 | */ | |
417 | virtual wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location) = 0; | |
418 | ||
419 | protected: | |
420 | ||
23324ae1 FM |
421 | /** |
422 | Returns the anchor if present in the location. | |
ea6a2ccb FM |
423 | See wxFSFile::GetAnchor for details. |
424 | ||
425 | Example: | |
426 | @code | |
427 | GetAnchor("index.htm#chapter2") == "chapter2" | |
428 | @endcode | |
429 | ||
cdbcf4c2 | 430 | @note the anchor is NOT part of the left location. |
23324ae1 | 431 | */ |
0004982c | 432 | static wxString GetAnchor(const wxString& location); |
23324ae1 FM |
433 | |
434 | /** | |
7c913512 | 435 | Returns the left location string extracted from @e location. |
ea6a2ccb FM |
436 | |
437 | Example: | |
438 | @code | |
439 | GetLeftLocation("file:myzipfile.zip#zip:index.htm") == "file:myzipfile.zip" | |
440 | @endcode | |
23324ae1 | 441 | */ |
0004982c | 442 | static wxString GetLeftLocation(const wxString& location); |
23324ae1 | 443 | |
23324ae1 | 444 | /** |
ea6a2ccb FM |
445 | Returns the protocol string extracted from @a location. |
446 | ||
447 | Example: | |
448 | @code | |
449 | GetProtocol("file:myzipfile.zip#zip:index.htm") == "zip" | |
450 | @endcode | |
23324ae1 | 451 | */ |
0004982c | 452 | static wxString GetProtocol(const wxString& location); |
23324ae1 FM |
453 | |
454 | /** | |
ea6a2ccb FM |
455 | Returns the right location string extracted from @a location. |
456 | ||
457 | Example: | |
458 | @code | |
459 | GetRightLocation("file:myzipfile.zip#zip:index.htm") == "index.htm" | |
460 | @endcode | |
23324ae1 | 461 | */ |
0004982c | 462 | static wxString GetRightLocation(const wxString& location); |
23324ae1 | 463 | }; |
e54c96f1 | 464 | |
b7775a52 VZ |
465 | |
466 | /** | |
467 | Input stream for virtual file stream files. | |
468 | ||
469 | The stream reads data from wxFSFile obtained from wxFileSystem. It is | |
470 | especially useful to allow using virtual files with other wxWidgets | |
471 | functions and classes working with streams, e.g. for loading images or | |
472 | animations from virtual files and not only physical ones. | |
473 | ||
474 | @library{wxbase} | |
475 | @category{streams} | |
476 | ||
477 | @see wxWrapperInputStream, wxFSFile | |
478 | ||
479 | @since 2.9.4 | |
480 | */ | |
481 | class wxFSInputStream : public wxWrapperInputStream | |
482 | { | |
483 | public: | |
484 | /** | |
485 | Create a stream associated with the data of the given virtual file | |
486 | system file. | |
487 | ||
488 | @param filename | |
489 | The name of the input file passed to wxFileSystem::OpenFile(). | |
490 | @param flags | |
491 | Combination of flags from wxFileSystemOpenFlags. ::wxFS_READ is | |
492 | implied, i.e. it is always added to the flags value. | |
493 | ||
494 | Use wxStreamBase::IsOk() to verify if the constructor succeeded. | |
495 | */ | |
496 | wxFileInputStream(const wxString& filename, int flags = 0); | |
497 | ||
498 | /** | |
499 | Returns @true if the stream is initialized and ready. | |
500 | */ | |
501 | bool IsOk() const; | |
502 | }; |