1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG definitions of the wxFileSystem family of classes
5 // Author: Joerg Baumann and Robin Dunn
7 // Created: 25-Sept-2000
9 // Copyright: (c) 2000 by Joerg Baumann
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
17 #include <wx/filesys.h>
18 #include <wx/fs_inet.h>
19 #include <wx/fs_mem.h>
20 #include <wx/fs_zip.h>
23 //----------------------------------------------------------------------
26 %include my_typemaps.i
28 // Import some definitions of other classes, etc.
34 %pragma(python) code = "import wx"
35 %pragma(python) code = "import string"
37 //---------------------------------------------------------------------------
40 class wxFSFile : public wxObject {
42 wxFSFile(wxInputStream *stream, const wxString& loc,
43 const wxString& mimetype, const wxString& anchor,
46 wxInputStream *GetStream();
47 const wxString& GetMimeType();
48 const wxString& GetLocation();
49 const wxString& GetAnchor();
50 wxDateTime GetModificationTime();
55 %typemap(python,in) wxInputStream *stream;
56 %typemap(python,out) wxInputStream *;
59 //---------------------------------------------------------------------------
62 // wxPyFileSystemHandler will be the Python class wxFileSystemHandler and handling
63 // the callback functions
64 class wxPyFileSystemHandler : public wxFileSystemHandler {
66 wxPyFileSystemHandler() : wxFileSystemHandler() {}
68 DEC_PYCALLBACK_BOOL_STRING_pure(CanOpen);
69 DEC_PYCALLBACK_FSF_FSSTRING_pure(OpenFile);
70 DEC_PYCALLBACK_STRING_STRINGINT_pure(FindFirst);
71 DEC_PYCALLBACK_STRING__pure(FindNext);
73 wxString GetProtocol(const wxString& location) {
74 return wxFileSystemHandler::GetProtocol(location);
77 wxString GetLeftLocation(const wxString& location) {
78 return wxFileSystemHandler::GetLeftLocation(location);
81 wxString GetAnchor(const wxString& location) {
82 return wxFileSystemHandler::GetAnchor(location);
85 wxString GetRightLocation(const wxString& location) {
86 return wxFileSystemHandler::GetRightLocation(location);
89 wxString GetMimeTypeFromExt(const wxString& location){
90 return wxFileSystemHandler::GetMimeTypeFromExt(location);
97 IMP_PYCALLBACK_BOOL_STRING_pure(wxPyFileSystemHandler, wxFileSystemHandler, CanOpen);
98 IMP_PYCALLBACK_FSF_FSSTRING_pure(wxPyFileSystemHandler, wxFileSystemHandler, OpenFile);
99 IMP_PYCALLBACK_STRING_STRINGINT_pure(wxPyFileSystemHandler, wxFileSystemHandler, FindFirst);
100 IMP_PYCALLBACK_STRING__pure(wxPyFileSystemHandler, wxFileSystemHandler, FindNext);
104 %name(wxCPPFileSystemHandler)class wxFileSystemHandler : public wxObject {
105 wxFileSystemHandler();
108 %name(wxFileSystemHandler)class wxPyFileSystemHandler : public wxFileSystemHandler {
110 wxPyFileSystemHandler();
112 void _setCallbackInfo(PyObject* self, PyObject* _class);
113 %pragma(python) addtomethod = "__init__:self._setCallbackInfo(self, wxFileSystemHandler)"
115 bool CanOpen(const wxString& location);
116 wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location);
117 wxString FindFirst(const wxString& spec, int flags = 0);
120 wxString GetProtocol(const wxString& location);
121 wxString GetLeftLocation(const wxString& location);
122 wxString GetAnchor(const wxString& location);
123 wxString GetRightLocation(const wxString& location) const;
124 wxString GetMimeTypeFromExt(const wxString& location);
127 //---------------------------------------------------------------------------
129 class wxFileSystem : public wxObject {
133 void ChangePathTo(const wxString& location, bool is_dir = FALSE);
136 wxFSFile* OpenFile(const wxString& location);
138 wxString FindFirst(const wxString& spec, int flags = 0);
141 static void AddHandler(wxFileSystemHandler *handler);
142 static void CleanUpHandlers();
145 //---------------------------------------------------------------------------
147 class wxInternetFSHandler : public wxFileSystemHandler {
149 wxInternetFSHandler();
150 bool CanOpen(const wxString& location);
151 wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location);
155 //---------------------------------------------------------------------------
156 class wxZipFSHandler : public wxFileSystemHandler {
160 bool CanOpen(const wxString& location);
161 wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location);
162 wxString FindFirst(const wxString& spec, int flags = 0);
166 //---------------------------------------------------------------------------
168 class wxMemoryFSHandler : public wxFileSystemHandler {
172 // Remove file from memory FS and free occupied memory
173 static void RemoveFile(const wxString& filename);
175 bool CanOpen(const wxString& location);
176 wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location);
177 wxString FindFirst(const wxString& spec, int flags = 0);
178 virtual wxString FindNext();
182 // getting the overloaded static AddFile method right
184 void __wxMemoryFSHandler_AddFile_wxImage(const wxString& filename,
187 wxMemoryFSHandler::AddFile(filename, image, type);
190 void __wxMemoryFSHandler_AddFile_wxBitmap(const wxString& filename,
191 const wxBitmap& bitmap,
193 wxMemoryFSHandler::AddFile(filename, bitmap, type);
196 // void __wxMemoryFSHandler_AddFile_wxString(const wxString& filename,
197 // const wxString& textdata) {
198 // wxMemoryFSHandler::AddFile(filename, textdata);
201 void __wxMemoryFSHandler_AddFile_Data(const wxString& filename,
204 wxMemoryFSHandler::AddFile(filename,
205 (void*)PyString_AsString(data),
206 (size_t)PyString_Size(data));
211 // case switch for overloading
212 %pragma(python) code = "
214 def wxMemoryFSHandler_AddFile(filename, a, b=''):
215 if isinstance(a, wxImage):
216 __wxMemoryFSHandler_AddFile_wxImage(filename, a, b)
217 elif isinstance(a, wxBitmap):
218 __wxMemoryFSHandler_AddFile_wxBitmap(filename, a, b)
219 elif type(a) == types.StringType:
220 #__wxMemoryFSHandler_AddFile_wxString(filename, a)
221 __wxMemoryFSHandler_AddFile_Data(filename, a)
222 else: raise TypeError, 'wxImage, wxBitmap or string expected'
226 //---------------------------------------------------------------------------
229 wxPyPtrTypeMap_Add("wxFileSystemHandler", "wxPyFileSystemHandler");
232 //---------------------------------------------------------------------------