]>
Commit | Line | Data |
---|---|---|
5526e819 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: filesys.h | |
3 | // Purpose: class for opening files - virtual file system | |
4 | // Author: Vaclav Slavik | |
5 | // Copyright: (c) 1999 Vaclav Slavik | |
aaa66113 | 6 | // RCS-ID: $Id$ |
5526e819 VS |
7 | // Licence: wxWindows Licence |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #ifndef __FILESYS_H__ | |
11 | #define __FILESYS_H__ | |
12 | ||
13 | #ifdef __GNUG__ | |
14 | #pragma interface | |
15 | #endif | |
16 | ||
d30e0edd RR |
17 | #include "wx/setup.h" |
18 | ||
24528b0c VS |
19 | #if !wxUSE_STREAMS |
20 | #error You cannot compile virtual file systems without wxUSE_STREAMS | |
21 | #endif | |
22 | ||
23 | #if wxUSE_HTML && !wxUSE_FILESYSTEM | |
24 | #error You cannot compile wxHTML without virtual file systems | |
25 | #endif | |
26 | ||
27 | #if wxUSE_FILESYSTEM | |
d30e0edd RR |
28 | |
29 | #include "wx/stream.h" | |
d30e0edd | 30 | #include "wx/url.h" |
6ee654e6 | 31 | #include "wx/datetime.h" |
5526e819 VS |
32 | |
33 | class wxFSFile; | |
34 | class wxFileSystemHandler; | |
35 | class wxFileSystem; | |
36 | ||
37 | //-------------------------------------------------------------------------------- | |
38 | // wxFSFile | |
39 | // This class is a file opened using wxFileSystem. It consists of | |
40 | // input stream, location, mime type & optional anchor | |
41 | // (in 'index.htm#chapter2', 'chapter2' is anchor) | |
42 | //-------------------------------------------------------------------------------- | |
43 | ||
44 | class WXDLLEXPORT wxFSFile : public wxObject | |
45 | { | |
19008b7b VS |
46 | public: |
47 | wxFSFile(wxInputStream *stream, const wxString& loc, | |
48 | const wxString& mimetype, const wxString& anchor, | |
49 | wxDateTime modif) | |
50 | { | |
51 | m_Stream = stream; | |
52 | m_Location = loc; | |
53 | m_MimeType = mimetype; m_MimeType.MakeLower(); | |
54 | m_Anchor = anchor; | |
55 | m_Modif = modif; | |
56 | } | |
57 | virtual ~wxFSFile() { if (m_Stream) delete m_Stream; } | |
58 | ||
59 | // returns stream. This doesn't _create_ stream, it only returns | |
60 | // pointer to it!! | |
61 | wxInputStream *GetStream() const {return m_Stream;} | |
62 | ||
63 | // returns file's mime type | |
64 | const wxString& GetMimeType() const {return m_MimeType;} | |
65 | ||
66 | // returns the original location (aka filename) of the file | |
67 | const wxString& GetLocation() const {return m_Location;} | |
68 | ||
69 | const wxString& GetAnchor() const {return m_Anchor;} | |
70 | ||
71 | wxDateTime GetModificationTime() const {return m_Modif;} | |
72 | ||
73 | private: | |
74 | wxInputStream *m_Stream; | |
75 | wxString m_Location; | |
76 | wxString m_MimeType; | |
77 | wxString m_Anchor; | |
78 | wxDateTime m_Modif; | |
5526e819 VS |
79 | }; |
80 | ||
81 | ||
82 | ||
83 | ||
84 | ||
85 | //-------------------------------------------------------------------------------- | |
86 | // wxFileSystemHandler | |
87 | // This class is FS handler for wxFileSystem. It provides | |
88 | // interface to access certain | |
89 | // kinds of files (HTPP, FTP, local, tar.gz etc..) | |
90 | //-------------------------------------------------------------------------------- | |
91 | ||
92 | class WXDLLEXPORT wxFileSystemHandler : public wxObject | |
93 | { | |
19008b7b VS |
94 | public: |
95 | wxFileSystemHandler() : wxObject() {} | |
96 | ||
97 | // returns TRUE if this handler is able to open given location | |
98 | virtual bool CanOpen(const wxString& location) = 0; | |
99 | ||
100 | // opens given file and returns pointer to input stream. | |
101 | // Returns NULL if opening failed. | |
102 | // The location is always absolute path. | |
103 | virtual wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location) = 0; | |
104 | ||
105 | // Finds first/next file that matches spec wildcard. flags can be wxDIR for restricting | |
106 | // the query to directories or wxFILE for files only or 0 for either. | |
107 | // Returns filename or empty string if no more matching file exists | |
108 | virtual wxString FindFirst(const wxString& spec, int flags = 0); | |
109 | virtual wxString FindNext(); | |
110 | ||
111 | protected: | |
112 | // returns protocol ("file", "http", "tar" etc.) The last (most right) | |
113 | // protocol is used: | |
114 | // {it returns "tar" for "file:subdir/archive.tar.gz#tar:/README.txt"} | |
115 | wxString GetProtocol(const wxString& location) const; | |
116 | ||
117 | // returns left part of address: | |
118 | // {it returns "file:subdir/archive.tar.gz" for "file:subdir/archive.tar.gz#tar:/README.txt"} | |
119 | wxString GetLeftLocation(const wxString& location) const; | |
120 | ||
121 | // returns anchor part of address: | |
122 | // {it returns "anchor" for "file:subdir/archive.tar.gz#tar:/README.txt#anchor"} | |
123 | // NOTE: anchor is NOT a part of GetLeftLocation()'s return value | |
124 | wxString GetAnchor(const wxString& location) const; | |
125 | ||
126 | // returns right part of address: | |
127 | // {it returns "/README.txt" for "file:subdir/archive.tar.gz#tar:/README.txt"} | |
128 | wxString GetRightLocation(const wxString& location) const; | |
129 | ||
130 | // Returns MIME type of the file - w/o need to open it | |
131 | // (default behaviour is that it returns type based on extension) | |
132 | wxString GetMimeTypeFromExt(const wxString& location); | |
5526e819 | 133 | |
19008b7b | 134 | DECLARE_ABSTRACT_CLASS(wxFileSystemHandler) |
5526e819 VS |
135 | }; |
136 | ||
137 | ||
138 | ||
139 | ||
140 | //-------------------------------------------------------------------------------- | |
141 | // wxFileSystem | |
142 | // This class provides simple interface for opening various | |
143 | // kinds of files (HTPP, FTP, local, tar.gz etc..) | |
144 | //-------------------------------------------------------------------------------- | |
145 | ||
146 | class WXDLLEXPORT wxFileSystem : public wxObject | |
147 | { | |
19008b7b VS |
148 | public: |
149 | wxFileSystem() : wxObject() {m_Path = m_LastName = wxEmptyString; m_Handlers.DeleteContents(TRUE); m_FindFileHandler = NULL;} | |
150 | ||
151 | // sets the current location. Every call to OpenFile is | |
152 | // relative to this location. | |
153 | // NOTE !! | |
154 | // unless is_dir = TRUE 'location' is *not* the directory but | |
155 | // file contained in this directory | |
156 | // (so ChangePathTo("dir/subdir/xh.htm") sets m_Path to "dir/subdir/") | |
157 | void ChangePathTo(const wxString& location, bool is_dir = FALSE); | |
158 | ||
159 | wxString GetPath() const {return m_Path;} | |
160 | ||
161 | // opens given file and returns pointer to input stream. | |
162 | // Returns NULL if opening failed. | |
163 | // It first tries to open the file in relative scope | |
164 | // (based on ChangePathTo()'s value) and then as an absolute | |
165 | // path. | |
166 | wxFSFile* OpenFile(const wxString& location); | |
167 | ||
168 | // Finds first/next file that matches spec wildcard. flags can be wxDIR for restricting | |
169 | // the query to directories or wxFILE for files only or 0 for either. | |
170 | // Returns filename or empty string if no more matching file exists | |
171 | wxString FindFirst(const wxString& spec, int flags = 0); | |
172 | wxString FindNext(); | |
173 | ||
174 | // Adds FS handler. | |
175 | // In fact, this class is only front-end to the FS hanlers :-) | |
176 | static void AddHandler(wxFileSystemHandler *handler); | |
177 | ||
178 | // remove all items from the m_Handlers list | |
179 | static void CleanUpHandlers(); | |
180 | ||
181 | protected: | |
182 | wxString m_Path; | |
183 | // the path (location) we are currently in | |
184 | // this is path, not file! | |
185 | // (so if you opened test/demo.htm, it is | |
186 | // "test/", not "test/demo.htm") | |
187 | wxString m_LastName; | |
188 | // name of last opened file (full path) | |
189 | static wxList m_Handlers; | |
190 | // list of FS handlers | |
191 | wxFileSystemHandler *m_FindFileHandler; | |
192 | // handler that succeed in FindFirst query | |
5526e819 | 193 | |
19008b7b | 194 | DECLARE_DYNAMIC_CLASS(wxFileSystem) |
5526e819 VS |
195 | }; |
196 | ||
197 | ||
198 | /* | |
199 | ||
200 | 'location' syntax: | |
201 | ||
202 | To determine FS type, we're using standard KDE notation: | |
203 | file:/absolute/path/file.htm | |
204 | file:relative_path/xxxxx.html | |
205 | /some/path/x.file ('file:' is default) | |
206 | http://www.gnome.org | |
207 | file:subdir/archive.tar.gz#tar:/README.txt | |
208 | ||
209 | special characters : | |
210 | ':' - FS identificator is before this char | |
211 | '#' - separator. It can be either HTML anchor ("index.html#news") | |
212 | (in case there is no ':' in the string to the right from it) | |
213 | or FS separator | |
214 | (example : http://www.wxhtml.org/wxhtml-0.1.tar.gz#tar:/include/wxhtml/filesys.h" | |
215 | this would access tgz archive stored on web) | |
216 | '/' - directory (path) separator. It is used to determine upper-level path. | |
217 | HEY! Don't use \ even if you're on Windows! | |
218 | ||
219 | */ | |
220 | ||
19008b7b VS |
221 | |
222 | class wxLocalFSHandler : public wxFileSystemHandler | |
223 | { | |
224 | public: | |
225 | virtual bool CanOpen(const wxString& location); | |
226 | virtual wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location); | |
227 | virtual wxString FindFirst(const wxString& spec, int flags = 0); | |
228 | virtual wxString FindNext(); | |
229 | ||
230 | // wxLocalFSHandler will prefix all filenames with 'root' before accessing | |
231 | // files on disk. This effectively makes 'root' the top-level directory | |
232 | // and prevents access to files outside this directory. | |
233 | // (This is similar to Unix command 'chroot'.) | |
234 | static void Chroot(const wxString& root) { ms_root = root; } | |
235 | ||
236 | protected: | |
237 | static wxString ms_root; | |
238 | }; | |
239 | ||
240 | ||
241 | ||
d30e0edd | 242 | #endif |
24528b0c | 243 | // wxUSE_FILESYSTEM |
d30e0edd | 244 | |
269e8200 | 245 | #endif |
d30e0edd | 246 | // __FILESYS_H__ |