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 wxInputStream
*m_Stream
;
54 wxFSFile(wxInputStream
*stream
, const wxString
& loc
,
55 const wxString
& mimetype
, const wxString
& anchor
,
60 m_MimeType
= mimetype
; m_MimeType
.MakeLower();
66 if (m_Stream
) delete m_Stream
;
69 wxInputStream
*GetStream() const {return m_Stream
;}
70 // returns stream. This doesn't _create_ stream, it only returns
73 const wxString
& GetMimeType() const {return m_MimeType
;}
74 // returns file's mime type
76 const wxString
& GetLocation() const {return m_Location
;}
77 // returns the original location (aka filename) of the file
79 const wxString
& GetAnchor() const {return m_Anchor
;}
81 wxDateTime
GetModificationTime() const {return m_Modif
;}
88 //--------------------------------------------------------------------------------
89 // wxFileSystemHandler
90 // This class is FS handler for wxFileSystem. It provides
91 // interface to access certain
92 // kinds of files (HTPP, FTP, local, tar.gz etc..)
93 //--------------------------------------------------------------------------------
95 class WXDLLEXPORT wxFileSystemHandler
: public wxObject
97 DECLARE_ABSTRACT_CLASS(wxFileSystemHandler
)
100 wxFileSystemHandler() : wxObject() {}
102 virtual bool CanOpen(const wxString
& location
) = 0;
103 // returns TRUE if this handler is able to open given location
105 virtual wxFSFile
* OpenFile(wxFileSystem
& fs
, const wxString
& location
) = 0;
106 // opens given file and returns pointer to input stream.
107 // Returns NULL if opening failed.
108 // The location is always absolute path.
110 virtual wxString
FindFirst(const wxString
& spec
, int flags
= 0);
111 virtual wxString
FindNext();
112 // Finds first/next file that matches spec wildcard. flags can be wxDIR for restricting
113 // the query to directories or wxFILE for files only or 0 for either.
114 // Returns filename or empty string if no more matching file exists
117 wxString
GetProtocol(const wxString
& location
) const;
118 // returns protocol ("file", "http", "tar" etc.) The last (most right)
120 // {it returns "tar" for "file:subdir/archive.tar.gz#tar:/README.txt"}
122 wxString
GetLeftLocation(const wxString
& location
) const;
123 // returns left part of address:
124 // {it returns "file:subdir/archive.tar.gz" for "file:subdir/archive.tar.gz#tar:/README.txt"}
126 wxString
GetAnchor(const wxString
& location
) const;
127 // returns anchor part of address:
128 // {it returns "anchor" for "file:subdir/archive.tar.gz#tar:/README.txt#anchor"}
129 // NOTE: anchor is NOT a part of GetLeftLocation()'s return value
131 wxString
GetRightLocation(const wxString
& location
) const;
132 // returns right part of address:
133 // {it returns "/README.txt" for "file:subdir/archive.tar.gz#tar:/README.txt"}
135 wxString
GetMimeTypeFromExt(const wxString
& location
);
136 // Returns MIME type of the file - w/o need to open it
137 // (default behaviour is that it returns type based on extension)
143 //--------------------------------------------------------------------------------
145 // This class provides simple interface for opening various
146 // kinds of files (HTPP, FTP, local, tar.gz etc..)
147 //--------------------------------------------------------------------------------
149 class WXDLLEXPORT wxFileSystem
: public wxObject
151 DECLARE_DYNAMIC_CLASS(wxFileSystem
)
154 wxFileSystem() : wxObject() {m_Path
= m_LastName
= wxEmptyString
; m_Handlers
.DeleteContents(TRUE
); m_FindFileHandler
= NULL
;}
156 void ChangePathTo(const wxString
& location
, bool is_dir
= FALSE
);
157 // sets the current location. Every call to OpenFile is
158 // relative to this location.
160 // unless is_dir = TRUE 'location' is *not* the directory but
161 // file contained in this directory
162 // (so ChangePathTo("dir/subdir/xh.htm") sets m_Path to "dir/subdir/")
164 wxString
GetPath() const {return m_Path
;}
166 wxFSFile
* OpenFile(const wxString
& location
);
167 // opens given file and returns pointer to input stream.
168 // Returns NULL if opening failed.
169 // It first tries to open the file in relative scope
170 // (based on ChangePathTo()'s value) and then as an absolute
173 wxString
FindFirst(const wxString
& spec
, int flags
= 0);
175 // Finds first/next file that matches spec wildcard. flags can be wxDIR for restricting
176 // the query to directories or wxFILE for files only or 0 for either.
177 // Returns filename or empty string if no more matching file exists
180 static void AddHandler(wxFileSystemHandler
*handler
);
182 // In fact, this class is only front-end to the FS hanlers :-)
184 static void CleanUpHandlers();
185 // remove all items from the m_Handlers list
189 // the path (location) we are currently in
190 // this is path, not file!
191 // (so if you opened test/demo.htm, it is
192 // "test/", not "test/demo.htm")
194 // name of last opened file (full path)
195 static wxList m_Handlers
;
196 // list of FS handlers
197 wxFileSystemHandler
*m_FindFileHandler
;
198 // handler that succeed in FindFirst query
206 To determine FS type, we're using standard KDE notation:
207 file:/absolute/path/file.htm
208 file:relative_path/xxxxx.html
209 /some/path/x.file ('file:' is default)
211 file:subdir/archive.tar.gz#tar:/README.txt
214 ':' - FS identificator is before this char
215 '#' - separator. It can be either HTML anchor ("index.html#news")
216 (in case there is no ':' in the string to the right from it)
218 (example : http://www.wxhtml.org/wxhtml-0.1.tar.gz#tar:/include/wxhtml/filesys.h"
219 this would access tgz archive stored on web)
220 '/' - directory (path) separator. It is used to determine upper-level path.
221 HEY! Don't use \ even if you're on Windows!