]>
Commit | Line | Data |
---|---|---|
5526e819 | 1 | ///////////////////////////////////////////////////////////////////////////// |
e4db172a | 2 | // Name: src/common/filesys.cpp |
5526e819 VS |
3 | // Purpose: wxFileSystem class - interface for opening files |
4 | // Author: Vaclav Slavik | |
5 | // Copyright: (c) 1999 Vaclav Slavik | |
5be0cf65 | 6 | // CVS-ID: $Id$ |
65571936 | 7 | // Licence: wxWindows licence |
5526e819 VS |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
d30e0edd | 10 | #include "wx/wxprec.h" |
5526e819 | 11 | |
2b5f62a0 | 12 | #ifdef __BORLANDC__ |
e4db172a | 13 | #pragma hdrstop |
5526e819 VS |
14 | #endif |
15 | ||
31528cd3 | 16 | |
24528b0c | 17 | #if wxUSE_FILESYSTEM |
5526e819 | 18 | |
e4db172a WS |
19 | #include "wx/filesys.h" |
20 | ||
21 | #ifndef WX_PRECOMP | |
22 | #include "wx/log.h" | |
02761f6c | 23 | #include "wx/module.h" |
e4db172a WS |
24 | #endif |
25 | ||
d30e0edd | 26 | #include "wx/wfstream.h" |
73725567 | 27 | #include "wx/mimetype.h" |
6464f4cb | 28 | #include "wx/filename.h" |
3ab6fcee | 29 | #include "wx/tokenzr.h" |
8c3dbc46 | 30 | #include "wx/fileback.h" |
73725567 VS |
31 | |
32 | ||
5526e819 VS |
33 | //-------------------------------------------------------------------------------- |
34 | // wxFileSystemHandler | |
35 | //-------------------------------------------------------------------------------- | |
36 | ||
37 | IMPLEMENT_ABSTRACT_CLASS(wxFileSystemHandler, wxObject) | |
38 | ||
5526e819 VS |
39 | |
40 | wxString wxFileSystemHandler::GetMimeTypeFromExt(const wxString& location) | |
41 | { | |
45681cd7 | 42 | wxString ext, mime; |
5526e819 | 43 | wxString loc = GetRightLocation(location); |
53b99810 | 44 | wxChar c; |
e4db172a | 45 | int l = loc.length(), l2; |
5526e819 VS |
46 | |
47 | l2 = l; | |
46837272 | 48 | for (int i = l-1; i >= 0; i--) |
45681cd7 | 49 | { |
ea4f5235 | 50 | c = loc[(unsigned int) i]; |
45681cd7 VS |
51 | if ( c == wxT('#') ) |
52 | l2 = i + 1; | |
53 | if ( c == wxT('.') ) | |
54 | { | |
46837272 | 55 | ext = loc.Right(l2-i-1); |
45681cd7 VS |
56 | break; |
57 | } | |
58 | if ( (c == wxT('/')) || (c == wxT('\\')) || (c == wxT(':')) ) | |
59 | return wxEmptyString; | |
5526e819 | 60 | } |
956418ab | 61 | |
45681cd7 | 62 | #if wxUSE_MIMETYPE |
121680bf VS |
63 | static bool s_MinimalMimeEnsured = false; |
64 | if (!s_MinimalMimeEnsured) | |
65 | { | |
66 | static const wxFileTypeInfo fallbacks[] = | |
67 | { | |
68 | wxFileTypeInfo(_T("image/jpeg"), | |
b494c48b WS |
69 | wxEmptyString, |
70 | wxEmptyString, | |
121680bf VS |
71 | _T("JPEG image (from fallback)"), |
72 | _T("jpg"), _T("jpeg"), _T("JPG"), _T("JPEG"), NULL), | |
73 | wxFileTypeInfo(_T("image/gif"), | |
b494c48b WS |
74 | wxEmptyString, |
75 | wxEmptyString, | |
121680bf VS |
76 | _T("GIF image (from fallback)"), |
77 | _T("gif"), _T("GIF"), NULL), | |
78 | wxFileTypeInfo(_T("image/png"), | |
b494c48b WS |
79 | wxEmptyString, |
80 | wxEmptyString, | |
121680bf VS |
81 | _T("PNG image (from fallback)"), |
82 | _T("png"), _T("PNG"), NULL), | |
83 | wxFileTypeInfo(_T("image/bmp"), | |
b494c48b WS |
84 | wxEmptyString, |
85 | wxEmptyString, | |
121680bf VS |
86 | _T("windows bitmap image (from fallback)"), |
87 | _T("bmp"), _T("BMP"), NULL), | |
88 | wxFileTypeInfo(_T("text/html"), | |
b494c48b WS |
89 | wxEmptyString, |
90 | wxEmptyString, | |
121680bf VS |
91 | _T("HTML document (from fallback)"), |
92 | _T("htm"), _T("html"), _T("HTM"), _T("HTML"), NULL), | |
93 | // must terminate the table with this! | |
94 | wxFileTypeInfo() | |
95 | }; | |
96 | wxTheMimeTypesManager->AddFallbacks(fallbacks); | |
97 | s_MinimalMimeEnsured = true; | |
956418ab VS |
98 | } |
99 | ||
45681cd7 VS |
100 | wxFileType *ft = wxTheMimeTypesManager->GetFileTypeFromExtension(ext); |
101 | if ( !ft || !ft -> GetMimeType(&mime) ) | |
102 | { | |
f6bcfd97 | 103 | mime = wxEmptyString; |
51f79d5c | 104 | } |
f6bcfd97 BP |
105 | |
106 | delete ft; | |
107 | ||
108 | return mime; | |
659a6064 | 109 | #else |
a62848fd | 110 | if ( ext.IsSameAs(wxT("htm"), false) || ext.IsSameAs(_T("html"), false) ) |
45681cd7 | 111 | return wxT("text/html"); |
a62848fd | 112 | if ( ext.IsSameAs(wxT("jpg"), false) || ext.IsSameAs(_T("jpeg"), false) ) |
45681cd7 | 113 | return wxT("image/jpeg"); |
a62848fd | 114 | if ( ext.IsSameAs(wxT("gif"), false) ) |
45681cd7 | 115 | return wxT("image/gif"); |
a62848fd | 116 | if ( ext.IsSameAs(wxT("png"), false) ) |
45681cd7 | 117 | return wxT("image/png"); |
a62848fd | 118 | if ( ext.IsSameAs(wxT("bmp"), false) ) |
45681cd7 | 119 | return wxT("image/bmp"); |
659a6064 VS |
120 | return wxEmptyString; |
121 | #endif | |
5526e819 VS |
122 | } |
123 | ||
124 | ||
125 | ||
126 | wxString wxFileSystemHandler::GetProtocol(const wxString& location) const | |
127 | { | |
128 | wxString s = wxEmptyString; | |
e4db172a | 129 | int i, l = location.length(); |
a62848fd | 130 | bool fnd = false; |
5526e819 | 131 | |
223d09f6 | 132 | for (i = l-1; (i >= 0) && ((location[i] != wxT('#')) || (!fnd)); i--) { |
a62848fd | 133 | if ((location[i] == wxT(':')) && (i != 1 /*win: C:\path*/)) fnd = true; |
5526e819 | 134 | } |
223d09f6 KB |
135 | if (!fnd) return wxT("file"); |
136 | for (++i; (i < l) && (location[i] != wxT(':')); i++) s << location[i]; | |
5526e819 VS |
137 | return s; |
138 | } | |
139 | ||
140 | ||
5526e819 VS |
141 | wxString wxFileSystemHandler::GetLeftLocation(const wxString& location) const |
142 | { | |
143 | int i; | |
a62848fd | 144 | bool fnd = false; |
5526e819 | 145 | |
e4db172a | 146 | for (i = location.length()-1; i >= 0; i--) { |
a62848fd | 147 | if ((location[i] == wxT(':')) && (i != 1 /*win: C:\path*/)) fnd = true; |
223d09f6 | 148 | else if (fnd && (location[i] == wxT('#'))) return location.Left(i); |
5526e819 VS |
149 | } |
150 | return wxEmptyString; | |
151 | } | |
152 | ||
5526e819 VS |
153 | wxString wxFileSystemHandler::GetRightLocation(const wxString& location) const |
154 | { | |
e4db172a | 155 | int i, l = location.length(); |
5526e819 | 156 | int l2 = l + 1; |
008a56c9 | 157 | |
a62848fd WS |
158 | for (i = l-1; |
159 | (i >= 0) && | |
f8ae31dc | 160 | ((location[i] != wxT(':')) || (i == 1) || (location[i-2] == wxT(':'))); |
008a56c9 | 161 | i--) |
c8c29c49 JS |
162 | { |
163 | if (location[i] == wxT('#')) l2 = i + 1; | |
164 | } | |
5526e819 VS |
165 | if (i == 0) return wxEmptyString; |
166 | else return location.Mid(i + 1, l2 - i - 2); | |
167 | } | |
168 | ||
5526e819 VS |
169 | wxString wxFileSystemHandler::GetAnchor(const wxString& location) const |
170 | { | |
53b99810 | 171 | wxChar c; |
e4db172a | 172 | int l = location.length(); |
5526e819 VS |
173 | |
174 | for (int i = l-1; i >= 0; i--) { | |
175 | c = location[i]; | |
223d09f6 KB |
176 | if (c == wxT('#')) return location.Right(l-i-1); |
177 | else if ((c == wxT('.')) || (c == wxT('/')) || (c == wxT('\\')) || (c == wxT(':'))) return wxEmptyString; | |
5526e819 VS |
178 | } |
179 | return wxEmptyString; | |
180 | } | |
181 | ||
aaa66113 | 182 | |
f76dbc4d VZ |
183 | wxString wxFileSystemHandler::FindFirst(const wxString& WXUNUSED(spec), |
184 | int WXUNUSED(flags)) | |
185 | { | |
186 | return wxEmptyString; | |
187 | } | |
aaa66113 | 188 | |
f76dbc4d VZ |
189 | wxString wxFileSystemHandler::FindNext() |
190 | { | |
191 | return wxEmptyString; | |
192 | } | |
aaa66113 | 193 | |
5526e819 VS |
194 | //-------------------------------------------------------------------------------- |
195 | // wxLocalFSHandler | |
196 | //-------------------------------------------------------------------------------- | |
197 | ||
5526e819 | 198 | |
19008b7b | 199 | wxString wxLocalFSHandler::ms_root; |
5526e819 | 200 | |
5526e819 VS |
201 | bool wxLocalFSHandler::CanOpen(const wxString& location) |
202 | { | |
223d09f6 | 203 | return GetProtocol(location) == wxT("file"); |
5526e819 VS |
204 | } |
205 | ||
5526e819 VS |
206 | wxFSFile* wxLocalFSHandler::OpenFile(wxFileSystem& WXUNUSED(fs), const wxString& location) |
207 | { | |
6464f4cb | 208 | // location has Unix path separators |
008a56c9 | 209 | wxString right = GetRightLocation(location); |
9548c49a | 210 | wxFileName fn = wxFileSystem::URLToFileName(right); |
008a56c9 | 211 | wxString fullpath = ms_root + fn.GetFullPath(); |
46837272 | 212 | |
008a56c9 | 213 | if (!wxFileExists(fullpath)) |
f6bcfd97 | 214 | return (wxFSFile*) NULL; |
46837272 | 215 | |
3e5175b7 VZ |
216 | // we need to check whether we can really read from this file, otherwise |
217 | // wxFSFile is not going to work | |
d9b0ee1e VZ |
218 | #if wxUSE_FILE |
219 | wxFileInputStream *is = new wxFileInputStream(fullpath); | |
220 | #elif wxUSE_FFILE | |
3e5175b7 | 221 | wxFFileInputStream *is = new wxFFileInputStream(fullpath); |
d9b0ee1e VZ |
222 | #else |
223 | #error One of wxUSE_FILE or wxUSE_FFILE must be set to 1 for wxFSHandler to work | |
224 | #endif | |
3e5175b7 VZ |
225 | if ( !is->Ok() ) |
226 | { | |
227 | delete is; | |
228 | return (wxFSFile*) NULL; | |
229 | } | |
230 | ||
231 | return new wxFSFile(is, | |
f6bcfd97 BP |
232 | right, |
233 | GetMimeTypeFromExt(location), | |
e2b87f38 VZ |
234 | GetAnchor(location) |
235 | #if wxUSE_DATETIME | |
236 | ,wxDateTime(wxFileModificationTime(fullpath)) | |
237 | #endif // wxUSE_DATETIME | |
238 | ); | |
5526e819 VS |
239 | } |
240 | ||
aaa66113 VS |
241 | wxString wxLocalFSHandler::FindFirst(const wxString& spec, int flags) |
242 | { | |
008a56c9 VS |
243 | wxFileName fn = wxFileSystem::URLToFileName(GetRightLocation(spec)); |
244 | return wxFindFirstFile(ms_root + fn.GetFullPath(), flags); | |
aaa66113 VS |
245 | } |
246 | ||
247 | wxString wxLocalFSHandler::FindNext() | |
248 | { | |
249 | return wxFindNextFile(); | |
250 | } | |
251 | ||
252 | ||
253 | ||
5526e819 VS |
254 | //----------------------------------------------------------------------------- |
255 | // wxFileSystem | |
256 | //----------------------------------------------------------------------------- | |
257 | ||
258 | IMPLEMENT_DYNAMIC_CLASS(wxFileSystem, wxObject) | |
46837272 | 259 | IMPLEMENT_ABSTRACT_CLASS(wxFSFile, wxObject) |
5526e819 VS |
260 | |
261 | ||
262 | wxList wxFileSystem::m_Handlers; | |
263 | ||
264 | ||
5be0cf65 VS |
265 | static wxString MakeCorrectPath(const wxString& path) |
266 | { | |
267 | wxString p(path); | |
268 | wxString r; | |
269 | int i, j, cnt; | |
86b3203f | 270 | |
e4db172a | 271 | cnt = p.length(); |
5be0cf65 | 272 | for (i = 0; i < cnt; i++) |
f6081a04 | 273 | if (p.GetChar(i) == wxT('\\')) p.GetWritableChar(i) = wxT('/'); // Want to be windows-safe |
86b3203f | 274 | |
5be0cf65 | 275 | if (p.Left(2) == wxT("./")) { p = p.Mid(2); cnt -= 2; } |
86b3203f | 276 | |
5be0cf65 | 277 | if (cnt < 3) return p; |
86b3203f | 278 | |
b2f60e03 | 279 | r << p.GetChar(0) << p.GetChar(1); |
86b3203f | 280 | |
5be0cf65 | 281 | // skip trailing ../.., if any |
b2f60e03 | 282 | for (i = 2; i < cnt && (p.GetChar(i) == wxT('/') || p.GetChar(i) == wxT('.')); i++) r << p.GetChar(i); |
86b3203f | 283 | |
5be0cf65 VS |
284 | // remove back references: translate dir1/../dir2 to dir2 |
285 | for (; i < cnt; i++) | |
286 | { | |
b2f60e03 BJ |
287 | r << p.GetChar(i); |
288 | if (p.GetChar(i) == wxT('/') && p.GetChar(i-1) == wxT('.') && p.GetChar(i-2) == wxT('.')) | |
5be0cf65 | 289 | { |
e4db172a | 290 | for (j = r.length() - 2; j >= 0 && r.GetChar(j) != wxT('/') && r.GetChar(j) != wxT(':'); j--) {} |
b2f60e03 | 291 | if (j >= 0 && r.GetChar(j) != wxT(':')) |
5be0cf65 | 292 | { |
b2f60e03 | 293 | for (j = j - 1; j >= 0 && r.GetChar(j) != wxT('/') && r.GetChar(j) != wxT(':'); j--) {} |
5be0cf65 VS |
294 | r.Remove(j + 1); |
295 | } | |
296 | } | |
297 | } | |
86b3203f | 298 | |
b2f60e03 | 299 | for (; i < cnt; i++) r << p.GetChar(i); |
86b3203f | 300 | |
5be0cf65 VS |
301 | return r; |
302 | } | |
303 | ||
5526e819 VS |
304 | |
305 | void wxFileSystem::ChangePathTo(const wxString& location, bool is_dir) | |
306 | { | |
307 | int i, pathpos = -1; | |
5526e819 | 308 | |
5be0cf65 | 309 | m_Path = MakeCorrectPath(location); |
d30e0edd | 310 | |
aaa66113 VS |
311 | if (is_dir) |
312 | { | |
e4db172a | 313 | if (m_Path.length() > 0 && m_Path.Last() != wxT('/') && m_Path.Last() != wxT(':')) |
d81152f4 | 314 | m_Path << wxT('/'); |
aaa66113 | 315 | } |
86b3203f | 316 | |
aaa66113 | 317 | else |
d30e0edd | 318 | { |
e4db172a | 319 | for (i = m_Path.length()-1; i >= 0; i--) |
d81152f4 | 320 | { |
223d09f6 | 321 | if (m_Path[(unsigned int) i] == wxT('/')) |
d81152f4 | 322 | { |
223d09f6 | 323 | if ((i > 1) && (m_Path[(unsigned int) (i-1)] == wxT('/')) && (m_Path[(unsigned int) (i-2)] == wxT(':'))) |
d81152f4 | 324 | { |
5526e819 VS |
325 | i -= 2; |
326 | continue; | |
327 | } | |
269e8200 | 328 | else |
d81152f4 | 329 | { |
269e8200 | 330 | pathpos = i; |
5526e819 VS |
331 | break; |
332 | } | |
333 | } | |
aaa66113 VS |
334 | else if (m_Path[(unsigned int) i] == wxT(':')) { |
335 | pathpos = i; | |
336 | break; | |
337 | } | |
5526e819 | 338 | } |
269e8200 | 339 | if (pathpos == -1) |
d81152f4 | 340 | { |
e4db172a | 341 | for (i = 0; i < (int) m_Path.length(); i++) |
d81152f4 | 342 | { |
223d09f6 | 343 | if (m_Path[(unsigned int) i] == wxT(':')) |
d81152f4 | 344 | { |
5526e819 VS |
345 | m_Path.Remove(i+1); |
346 | break; | |
347 | } | |
348 | } | |
e4db172a | 349 | if (i == (int) m_Path.length()) |
d81152f4 | 350 | m_Path = wxEmptyString; |
5526e819 | 351 | } |
269e8200 | 352 | else |
d81152f4 | 353 | { |
5526e819 VS |
354 | m_Path.Remove(pathpos+1); |
355 | } | |
356 | } | |
357 | } | |
358 | ||
359 | ||
360 | ||
8c3dbc46 | 361 | wxFSFile* wxFileSystem::OpenFile(const wxString& location, int flags) |
5526e819 | 362 | { |
5be0cf65 VS |
363 | wxString loc = MakeCorrectPath(location); |
364 | unsigned i, ln; | |
53b99810 | 365 | wxChar meta; |
5526e819 | 366 | wxFSFile *s = NULL; |
df5168c4 | 367 | wxList::compatibility_iterator node; |
5526e819 | 368 | |
e4db172a | 369 | ln = loc.length(); |
5526e819 | 370 | meta = 0; |
269e8200 | 371 | for (i = 0; i < ln; i++) |
d30e0edd | 372 | { |
2148cce2 VS |
373 | switch (loc[i]) |
374 | { | |
86b3203f | 375 | case wxT('/') : case wxT(':') : case wxT('#') : |
2148cce2 VS |
376 | meta = loc[i]; |
377 | break; | |
378 | } | |
379 | if (meta != 0) break; | |
5526e819 VS |
380 | } |
381 | m_LastName = wxEmptyString; | |
382 | ||
383 | // try relative paths first : | |
223d09f6 | 384 | if (meta != wxT(':')) |
d30e0edd | 385 | { |
5526e819 | 386 | node = m_Handlers.GetFirst(); |
d30e0edd | 387 | while (node) |
d81152f4 | 388 | { |
5526e819 | 389 | wxFileSystemHandler *h = (wxFileSystemHandler*) node -> GetData(); |
7dee4b2b | 390 | if (h->CanOpen(m_Path + loc)) |
d81152f4 | 391 | { |
7dee4b2b VS |
392 | s = h->OpenFile(*this, m_Path + loc); |
393 | if (s) { m_LastName = m_Path + loc; break; } | |
5526e819 | 394 | } |
d30e0edd | 395 | node = node->GetNext(); |
5526e819 VS |
396 | } |
397 | } | |
398 | ||
399 | // if failed, try absolute paths : | |
269e8200 | 400 | if (s == NULL) |
d30e0edd | 401 | { |
5526e819 | 402 | node = m_Handlers.GetFirst(); |
d30e0edd | 403 | while (node) |
d81152f4 | 404 | { |
d30e0edd | 405 | wxFileSystemHandler *h = (wxFileSystemHandler*) node->GetData(); |
7dee4b2b | 406 | if (h->CanOpen(loc)) |
d81152f4 | 407 | { |
7dee4b2b VS |
408 | s = h->OpenFile(*this, loc); |
409 | if (s) { m_LastName = loc; break; } | |
5526e819 | 410 | } |
d30e0edd | 411 | node = node->GetNext(); |
5526e819 VS |
412 | } |
413 | } | |
8c3dbc46 MW |
414 | |
415 | if (s && (flags & wxFS_SEEKABLE) != 0 && !s->GetStream()->IsSeekable()) | |
416 | { | |
417 | wxBackedInputStream *stream; | |
418 | stream = new wxBackedInputStream(s->DetachStream()); | |
419 | stream->FindLength(); | |
420 | s->SetStream(stream); | |
421 | } | |
422 | ||
5526e819 VS |
423 | return (s); |
424 | } | |
425 | ||
426 | ||
aaa66113 VS |
427 | |
428 | wxString wxFileSystem::FindFirst(const wxString& spec, int flags) | |
429 | { | |
df5168c4 | 430 | wxList::compatibility_iterator node; |
aaa66113 | 431 | wxString spec2(spec); |
86b3203f | 432 | |
aaa66113 VS |
433 | m_FindFileHandler = NULL; |
434 | ||
e4db172a | 435 | for (int i = spec2.length()-1; i >= 0; i--) |
f6081a04 | 436 | if (spec2[(unsigned int) i] == wxT('\\')) spec2.GetWritableChar(i) = wxT('/'); // Want to be windows-safe |
aaa66113 VS |
437 | |
438 | node = m_Handlers.GetFirst(); | |
439 | while (node) | |
440 | { | |
441 | m_FindFileHandler = (wxFileSystemHandler*) node -> GetData(); | |
86b3203f | 442 | if (m_FindFileHandler -> CanOpen(m_Path + spec2)) |
aaa66113 VS |
443 | return m_FindFileHandler -> FindFirst(m_Path + spec2, flags); |
444 | node = node->GetNext(); | |
86b3203f | 445 | } |
aaa66113 VS |
446 | |
447 | node = m_Handlers.GetFirst(); | |
448 | while (node) | |
449 | { | |
450 | m_FindFileHandler = (wxFileSystemHandler*) node -> GetData(); | |
451 | if (m_FindFileHandler -> CanOpen(spec2)) | |
452 | return m_FindFileHandler -> FindFirst(spec2, flags); | |
453 | node = node->GetNext(); | |
86b3203f DW |
454 | } |
455 | ||
456 | return wxEmptyString; | |
aaa66113 VS |
457 | } |
458 | ||
459 | ||
460 | ||
461 | wxString wxFileSystem::FindNext() | |
462 | { | |
463 | if (m_FindFileHandler == NULL) return wxEmptyString; | |
464 | else return m_FindFileHandler -> FindNext(); | |
465 | } | |
466 | ||
3ab6fcee VZ |
467 | bool wxFileSystem::FindFileInPath(wxString *pStr, |
468 | const wxChar *path, | |
469 | const wxChar *basename) | |
470 | { | |
471 | // we assume that it's not empty | |
472 | wxCHECK_MSG( !wxIsEmpty(basename), false, | |
473 | _T("empty file name in wxFileSystem::FindFileInPath")); | |
474 | ||
475 | // skip path separator in the beginning of the file name if present | |
476 | if ( wxIsPathSeparator(*basename) ) | |
477 | basename++; | |
aaa66113 | 478 | |
3ab6fcee VZ |
479 | wxStringTokenizer tokenizer(path, wxPATH_SEP); |
480 | while ( tokenizer.HasMoreTokens() ) | |
481 | { | |
482 | wxString strFile = tokenizer.GetNextToken(); | |
483 | if ( !wxEndsWithPathSeparator(strFile) ) | |
484 | strFile += wxFILE_SEP_PATH; | |
485 | strFile += basename; | |
486 | ||
487 | wxFSFile *file = OpenFile(strFile); | |
488 | if ( file ) | |
489 | { | |
490 | delete file; | |
491 | *pStr = strFile; | |
492 | return true; | |
493 | } | |
494 | } | |
495 | ||
496 | return false; | |
497 | } | |
aaa66113 | 498 | |
5526e819 VS |
499 | void wxFileSystem::AddHandler(wxFileSystemHandler *handler) |
500 | { | |
4948ebf3 VZ |
501 | // prepend the handler to the beginning of the list because handlers added |
502 | // last should have the highest priority to allow overriding them | |
374b4f1c | 503 | m_Handlers.Insert((size_t)0, handler); |
5526e819 VS |
504 | } |
505 | ||
5949d307 RR |
506 | wxFileSystemHandler* wxFileSystem::RemoveHandler(wxFileSystemHandler *handler) |
507 | { | |
508 | // if handler has already been removed (or deleted) | |
509 | // we return NULL. This is by design in case | |
510 | // CleanUpHandlers() is called before RemoveHandler | |
511 | // is called, as we cannot control the order | |
512 | // which modules are unloaded | |
513 | if (!m_Handlers.DeleteObject(handler)) | |
514 | return NULL; | |
515 | ||
516 | return handler; | |
517 | } | |
518 | ||
519 | ||
b8b37ced VZ |
520 | bool wxFileSystem::HasHandlerForPath(const wxString &location) |
521 | { | |
522 | for ( wxList::compatibility_iterator node = m_Handlers.GetFirst(); | |
523 | node; node = node->GetNext() ) | |
524 | { | |
525 | wxFileSystemHandler *h = (wxFileSystemHandler*) node->GetData(); | |
526 | if (h->CanOpen(location)) | |
527 | return true; | |
528 | } | |
529 | ||
530 | return false; | |
531 | } | |
5526e819 | 532 | |
269e8200 RD |
533 | void wxFileSystem::CleanUpHandlers() |
534 | { | |
df5168c4 | 535 | WX_CLEAR_LIST(wxList, m_Handlers); |
269e8200 RD |
536 | } |
537 | ||
60431236 WS |
538 | static const wxString g_unixPathString(wxT("/")); |
539 | static const wxString g_nativePathString(wxFILE_SEP_PATH); | |
5526e819 | 540 | |
2b5f62a0 | 541 | // Returns the native path for a file URL |
9548c49a | 542 | wxFileName wxFileSystem::URLToFileName(const wxString& url) |
2b5f62a0 | 543 | { |
a62848fd | 544 | wxString path = url; |
2b5f62a0 | 545 | |
a62848fd WS |
546 | if ( path.Find(wxT("file://")) == 0 ) |
547 | { | |
548 | path = path.Mid(7); | |
549 | } | |
008a56c9 | 550 | else if ( path.Find(wxT("file:")) == 0 ) |
a62848fd WS |
551 | { |
552 | path = path.Mid(5); | |
553 | } | |
554 | // Remove preceding double slash on Mac Classic | |
d0200d9e JS |
555 | #if defined(__WXMAC__) && !defined(__UNIX__) |
556 | else if ( path.Find(wxT("//")) == 0 ) | |
557 | path = path.Mid(2); | |
558 | #endif | |
a62848fd | 559 | |
008a56c9 VS |
560 | path.Replace(wxT("%25"), wxT("%")); |
561 | path.Replace(wxT("%3A"), wxT(":")); | |
2b5f62a0 | 562 | |
8ad944dc | 563 | #ifdef __WXMSW__ |
a62848fd | 564 | // file urls either start with a forward slash (local harddisk), |
2b5f62a0 VZ |
565 | // otherwise they have a servername/sharename notation, |
566 | // which only exists on msw and corresponds to a unc | |
a62848fd WS |
567 | if ( path[0u] == wxT('/') && path [1u] != wxT('/')) |
568 | { | |
569 | path = path.Mid(1); | |
570 | } | |
571 | else if ( (url.Find(wxT("file://")) == 0) && | |
2b5f62a0 | 572 | (path.Find(wxT('/')) != wxNOT_FOUND) && |
e4db172a | 573 | (path.length() > 1) && (path[1u] != wxT(':')) ) |
a62848fd WS |
574 | { |
575 | path = wxT("//") + path; | |
576 | } | |
2b5f62a0 | 577 | #endif |
9b798c66 | 578 | |
a62848fd | 579 | path.Replace(g_unixPathString, g_nativePathString); |
2b5f62a0 | 580 | |
a62848fd | 581 | return wxFileName(path, wxPATH_NATIVE); |
2b5f62a0 VZ |
582 | } |
583 | ||
584 | // Returns the file URL for a native path | |
9548c49a | 585 | wxString wxFileSystem::FileNameToURL(const wxFileName& filename) |
2b5f62a0 | 586 | { |
9548c49a VS |
587 | wxFileName fn = filename; |
588 | fn.Normalize(wxPATH_NORM_DOTS | wxPATH_NORM_TILDE | wxPATH_NORM_ABSOLUTE); | |
589 | wxString url = fn.GetFullPath(wxPATH_NATIVE); | |
9b798c66 | 590 | |
2a5d3f57 JS |
591 | #ifndef __UNIX__ |
592 | // unc notation, wxMSW | |
a62848fd | 593 | if ( url.Find(wxT("\\\\")) == 0 ) |
9548c49a | 594 | { |
60c315ca | 595 | url = wxT("//") + url.Mid(2); |
9548c49a VS |
596 | } |
597 | else | |
598 | { | |
599 | url = wxT("/") + url; | |
d0200d9e JS |
600 | #ifdef __WXMAC__ |
601 | url = wxT("/") + url; | |
602 | #endif | |
603 | ||
9548c49a | 604 | } |
2b5f62a0 | 605 | #endif |
9b798c66 | 606 | |
9548c49a | 607 | url.Replace(g_nativePathString, g_unixPathString); |
008a56c9 VS |
608 | url.Replace(wxT("%"), wxT("%25")); |
609 | url.Replace(wxT(":"), wxT("%3A")); | |
610 | url = wxT("file:") + url; | |
9548c49a | 611 | return url; |
2b5f62a0 | 612 | } |
aaa66113 VS |
613 | |
614 | ||
5526e819 VS |
615 | ///// Module: |
616 | ||
617 | class wxFileSystemModule : public wxModule | |
618 | { | |
619 | DECLARE_DYNAMIC_CLASS(wxFileSystemModule) | |
620 | ||
621 | public: | |
5949d307 RR |
622 | wxFileSystemModule() : |
623 | wxModule(), | |
624 | m_handler(NULL) | |
625 | { | |
626 | } | |
627 | ||
5526e819 VS |
628 | virtual bool OnInit() |
629 | { | |
5949d307 RR |
630 | m_handler = new wxLocalFSHandler; |
631 | wxFileSystem::AddHandler(m_handler); | |
121680bf | 632 | return true; |
5526e819 | 633 | } |
269e8200 | 634 | virtual void OnExit() |
d81152f4 | 635 | { |
5949d307 RR |
636 | delete wxFileSystem::RemoveHandler(m_handler); |
637 | ||
269e8200 | 638 | wxFileSystem::CleanUpHandlers(); |
d81152f4 | 639 | } |
5949d307 RR |
640 | |
641 | private: | |
642 | wxFileSystemHandler* m_handler; | |
643 | ||
5526e819 VS |
644 | }; |
645 | ||
646 | IMPLEMENT_DYNAMIC_CLASS(wxFileSystemModule, wxModule) | |
647 | ||
269e8200 | 648 | #endif |
24528b0c | 649 | // wxUSE_FILESYSTEM |