1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: class for opening files - virtual file system
4 // Author: Vaclav Slavik
5 // Copyright: (c) 1999 Vaclav Slavik
7 // Licence: wxWindows Licence
8 /////////////////////////////////////////////////////////////////////////////
20 #error You cannot compile virtual file systems without wxUSE_STREAMS
23 #if wxUSE_HTML && !wxUSE_FILESYSTEM
24 #error You cannot compile wxHTML without virtual file systems
29 #include "wx/stream.h"
31 #include "wx/datetime.h"
34 class wxFileSystemHandler
;
37 //--------------------------------------------------------------------------------
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 //--------------------------------------------------------------------------------
44 class WXDLLEXPORT wxFSFile
: public wxObject
47 wxFSFile(wxInputStream
*stream
, const wxString
& loc
,
48 const wxString
& mimetype
, const wxString
& anchor
,
53 m_MimeType
= mimetype
; m_MimeType
.MakeLower();
57 virtual ~wxFSFile() { if (m_Stream
) delete m_Stream
; }
59 // returns stream. This doesn't _create_ stream, it only returns
61 wxInputStream
*GetStream() const {return m_Stream
;}
63 // returns file's mime type
64 const wxString
& GetMimeType() const {return m_MimeType
;}
66 // returns the original location (aka filename) of the file
67 const wxString
& GetLocation() const {return m_Location
;}
69 const wxString
& GetAnchor() const {return m_Anchor
;}
71 wxDateTime
GetModificationTime() const {return m_Modif
;}
74 wxInputStream
*m_Stream
;
80 DECLARE_ABSTRACT_CLASS(wxFSFile
)
87 //--------------------------------------------------------------------------------
88 // wxFileSystemHandler
89 // This class is FS handler for wxFileSystem. It provides
90 // interface to access certain
91 // kinds of files (HTPP, FTP, local, tar.gz etc..)
92 //--------------------------------------------------------------------------------
94 class WXDLLEXPORT wxFileSystemHandler
: public wxObject
97 wxFileSystemHandler() : wxObject() {}
99 // returns TRUE if this handler is able to open given location
100 virtual bool CanOpen(const wxString
& location
) = 0;
102 // opens given file and returns pointer to input stream.
103 // Returns NULL if opening failed.
104 // The location is always absolute path.
105 virtual wxFSFile
* OpenFile(wxFileSystem
& fs
, const wxString
& location
) = 0;
107 // Finds first/next file that matches spec wildcard. flags can be wxDIR for restricting
108 // the query to directories or wxFILE for files only or 0 for either.
109 // Returns filename or empty string if no more matching file exists
110 virtual wxString
FindFirst(const wxString
& spec
, int flags
= 0);
111 virtual wxString
FindNext();
114 // returns protocol ("file", "http", "tar" etc.) The last (most right)
116 // {it returns "tar" for "file:subdir/archive.tar.gz#tar:/README.txt"}
117 wxString
GetProtocol(const wxString
& location
) const;
119 // returns left part of address:
120 // {it returns "file:subdir/archive.tar.gz" for "file:subdir/archive.tar.gz#tar:/README.txt"}
121 wxString
GetLeftLocation(const wxString
& location
) const;
123 // returns anchor part of address:
124 // {it returns "anchor" for "file:subdir/archive.tar.gz#tar:/README.txt#anchor"}
125 // NOTE: anchor is NOT a part of GetLeftLocation()'s return value
126 wxString
GetAnchor(const wxString
& location
) const;
128 // returns right part of address:
129 // {it returns "/README.txt" for "file:subdir/archive.tar.gz#tar:/README.txt"}
130 wxString
GetRightLocation(const wxString
& location
) const;
132 // Returns MIME type of the file - w/o need to open it
133 // (default behaviour is that it returns type based on extension)
134 wxString
GetMimeTypeFromExt(const wxString
& location
);
136 DECLARE_ABSTRACT_CLASS(wxFileSystemHandler
)
142 //--------------------------------------------------------------------------------
144 // This class provides simple interface for opening various
145 // kinds of files (HTPP, FTP, local, tar.gz etc..)
146 //--------------------------------------------------------------------------------
148 class WXDLLEXPORT wxFileSystem
: public wxObject
151 wxFileSystem() : wxObject() {m_Path
= m_LastName
= wxEmptyString
; m_Handlers
.DeleteContents(TRUE
); m_FindFileHandler
= NULL
;}
153 // sets the current location. Every call to OpenFile is
154 // relative to this location.
156 // unless is_dir = TRUE 'location' is *not* the directory but
157 // file contained in this directory
158 // (so ChangePathTo("dir/subdir/xh.htm") sets m_Path to "dir/subdir/")
159 void ChangePathTo(const wxString
& location
, bool is_dir
= FALSE
);
161 wxString
GetPath() const {return m_Path
;}
163 // opens given file and returns pointer to input stream.
164 // Returns NULL if opening failed.
165 // It first tries to open the file in relative scope
166 // (based on ChangePathTo()'s value) and then as an absolute
168 wxFSFile
* OpenFile(const wxString
& location
);
170 // Finds first/next file that matches spec wildcard. flags can be wxDIR for restricting
171 // the query to directories or wxFILE for files only or 0 for either.
172 // Returns filename or empty string if no more matching file exists
173 wxString
FindFirst(const wxString
& spec
, int flags
= 0);
177 // In fact, this class is only front-end to the FS hanlers :-)
178 static void AddHandler(wxFileSystemHandler
*handler
);
180 // remove all items from the m_Handlers list
181 static void CleanUpHandlers();
185 // the path (location) we are currently in
186 // this is path, not file!
187 // (so if you opened test/demo.htm, it is
188 // "test/", not "test/demo.htm")
190 // name of last opened file (full path)
191 static wxList m_Handlers
;
192 // list of FS handlers
193 wxFileSystemHandler
*m_FindFileHandler
;
194 // handler that succeed in FindFirst query
196 DECLARE_DYNAMIC_CLASS(wxFileSystem
)
204 To determine FS type, we're using standard KDE notation:
205 file:/absolute/path/file.htm
206 file:relative_path/xxxxx.html
207 /some/path/x.file ('file:' is default)
209 file:subdir/archive.tar.gz#tar:/README.txt
212 ':' - FS identificator is before this char
213 '#' - separator. It can be either HTML anchor ("index.html#news")
214 (in case there is no ':' in the string to the right from it)
216 (example : http://www.wxhtml.org/wxhtml-0.1.tar.gz#tar:/include/wxhtml/filesys.h"
217 this would access tgz archive stored on web)
218 '/' - directory (path) separator. It is used to determine upper-level path.
219 HEY! Don't use \ even if you're on Windows!
224 class wxLocalFSHandler
: public wxFileSystemHandler
227 virtual bool CanOpen(const wxString
& location
);
228 virtual wxFSFile
* OpenFile(wxFileSystem
& fs
, const wxString
& location
);
229 virtual wxString
FindFirst(const wxString
& spec
, int flags
= 0);
230 virtual wxString
FindNext();
232 // wxLocalFSHandler will prefix all filenames with 'root' before accessing
233 // files on disk. This effectively makes 'root' the top-level directory
234 // and prevents access to files outside this directory.
235 // (This is similar to Unix command 'chroot'.)
236 static void Chroot(const wxString
& root
) { ms_root
= root
; }
239 static wxString ms_root
;