1 /////////////////////////////////////////////////////////////////////////////
 
   3 // Purpose:     SWIG definitions of the wxFileSystem family of classes
 
   7 // Created:     25-Sept-2000
 
   9 // Copyright:   (c) 2003 by Total Control Software
 
  10 // Licence:     wxWindows license
 
  11 /////////////////////////////////////////////////////////////////////////////
 
  16 //---------------------------------------------------------------------------
 
  19 #include "wx/wxPython/pyistream.h"
 
  22 //---------------------------------------------------------------------------
 
  26 class wxFSFile : public wxObject
 
  29     %pythonAppend wxFSFile
 
  30         "self.thisown = 0   # It will normally be deleted by the user of the wx.FileSystem";
 
  32     wxFSFile(wxInputStream *stream, const wxString& loc,
 
  33              const wxString& mimetype, const wxString& anchor,
 
  38     wxInputStream *GetStream();
 
  39     const wxString& GetMimeType();
 
  40     const wxString& GetLocation();
 
  41     const wxString& GetAnchor();
 
  42     wxDateTime GetModificationTime();
 
  46 //---------------------------------------------------------------------------
 
  49 class wxPyFileSystemHandler : public wxFileSystemHandler
 
  52     wxPyFileSystemHandler() : wxFileSystemHandler() {}
 
  54     DEC_PYCALLBACK_BOOL_STRING_pure(CanOpen);
 
  55     DEC_PYCALLBACK_FSF_FSSTRING_pure(OpenFile);
 
  56     DEC_PYCALLBACK_STRING_STRINGINT_pure(FindFirst);
 
  57     DEC_PYCALLBACK_STRING__pure(FindNext);
 
  59     wxString GetProtocol(const wxString& location) {
 
  60         return wxFileSystemHandler::GetProtocol(location);
 
  63     wxString GetLeftLocation(const wxString& location) {
 
  64         return wxFileSystemHandler::GetLeftLocation(location);
 
  67     wxString GetAnchor(const wxString& location) {
 
  68         return wxFileSystemHandler::GetAnchor(location);
 
  71     wxString GetRightLocation(const wxString& location) {
 
  72         return wxFileSystemHandler::GetRightLocation(location);
 
  75     wxString GetMimeTypeFromExt(const wxString& location) {
 
  76         return wxFileSystemHandler::GetMimeTypeFromExt(location);
 
  83 IMP_PYCALLBACK_BOOL_STRING_pure(wxPyFileSystemHandler, wxFileSystemHandler, CanOpen);
 
  84 IMP_PYCALLBACK_FSF_FSSTRING_pure(wxPyFileSystemHandler, wxFileSystemHandler, OpenFile);
 
  85 IMP_PYCALLBACK_STRING_STRINGINT_pure(wxPyFileSystemHandler, wxFileSystemHandler, FindFirst);
 
  86 IMP_PYCALLBACK_STRING__pure(wxPyFileSystemHandler, wxFileSystemHandler, FindNext);
 
  91 %rename(CPPFileSystemHandler) wxFileSystemHandler;
 
  92 class wxFileSystemHandler //: public wxObject
 
  95     //wxFileSystemHandler();
 
 100 %rename(FileSystemHandler) wxPyFileSystemHandler;
 
 101 class wxPyFileSystemHandler : public wxFileSystemHandler
 
 104     %pythonAppend    wxPyFileSystemHandler "self._setCallbackInfo(self, FileSystemHandler)";
 
 106     wxPyFileSystemHandler();
 
 108     void _setCallbackInfo(PyObject* self, PyObject* _class);
 
 110     bool CanOpen(const wxString& location);
 
 112     wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location);
 
 113     wxString FindFirst(const wxString& spec, int flags = 0);
 
 116     wxString GetProtocol(const wxString& location);
 
 117     wxString GetLeftLocation(const wxString& location);
 
 118     wxString GetAnchor(const wxString& location);
 
 119     wxString GetRightLocation(const wxString& location);
 
 120     wxString GetMimeTypeFromExt(const wxString& location);
 
 124 // //---------------------------------------------------------------------------
 
 127 class wxFileSystem : public wxObject {
 
 132     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();
 
 144     // Returns the file URL for a native path
 
 145     static wxString FileNameToURL(const wxString& filename);
 
 147     // Returns the native path for a file URL
 
 148     //static wxFileName URLToFileName(const wxString& url);
 
 150         static wxString URLToFileName(const wxString& url) {
 
 151             wxFileName fname = wxFileSystem::URLToFileName(url);
 
 152             return fname.GetFullPath();
 
 159 //---------------------------------------------------------------------------
 
 161 class wxInternetFSHandler : public wxFileSystemHandler {
 
 163     wxInternetFSHandler();
 
 164     bool CanOpen(const wxString& location);
 
 166     wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location);
 
 170 //---------------------------------------------------------------------------
 
 172 class wxZipFSHandler : public wxFileSystemHandler {
 
 176     bool CanOpen(const wxString& location);
 
 178     wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location);
 
 179     wxString FindFirst(const wxString& spec, int flags = 0);
 
 183 //---------------------------------------------------------------------------
 
 185 // TODO: Use SWIG's overloading feature to fix this mess?
 
 187 // getting the overloaded static AddFile method right
 
 189     void __wxMemoryFSHandler_AddFile_wxImage(const wxString& filename,
 
 192         wxMemoryFSHandler::AddFile(filename, image, type);
 
 195     void __wxMemoryFSHandler_AddFile_wxBitmap(const wxString& filename,
 
 196                                               const wxBitmap& bitmap,
 
 198         wxMemoryFSHandler::AddFile(filename, bitmap, type);
 
 201     void __wxMemoryFSHandler_AddFile_Data(const wxString& filename,
 
 203         if (! PyString_Check(data)) {
 
 204             wxPyBLOCK_THREADS(PyErr_SetString(PyExc_TypeError,
 
 205                                               "Expected string object"));
 
 209         wxPyBlock_t blocked = wxPyBeginBlockThreads();
 
 210         void*  ptr = (void*)PyString_AsString(data);
 
 211         size_t size = PyString_Size(data);
 
 212         wxPyEndBlockThreads(blocked);
 
 214         wxMemoryFSHandler::AddFile(filename, ptr, size);
 
 219 // case switch for overloading
 
 221 def MemoryFSHandler_AddFile(filename, dataItem, imgType=-1):
 
 223     Add 'file' to the memory filesystem.  The dataItem parameter can
 
 224     either be a `wx.Bitmap`, `wx.Image` or a string that can contain
 
 225     arbitrary data.  If a bitmap or image is used then the imgType
 
 226     parameter should specify what kind of image file it should be
 
 227     written as, wx.BITMAP_TYPE_PNG, etc.
 
 229     if isinstance(dataItem, wx.Image):
 
 230         __wxMemoryFSHandler_AddFile_wxImage(filename, dataItem, imgType)
 
 231     elif isinstance(dataItem, wx.Bitmap):
 
 232         __wxMemoryFSHandler_AddFile_wxBitmap(filename, dataItem, imgType)
 
 233     elif type(dataItem) == str:
 
 234         __wxMemoryFSHandler_AddFile_Data(filename, dataItem)
 
 236         raise TypeError, 'wx.Image, wx.Bitmap or string expected'
 
 240 class wxMemoryFSHandler : public wxFileSystemHandler {
 
 244     // Remove file from memory FS and free occupied memory
 
 245     static void RemoveFile(const wxString& filename);
 
 247     // Add a file to the memory FS
 
 248     %pythoncode { AddFile = staticmethod(MemoryFSHandler_AddFile) }
 
 250     bool CanOpen(const wxString& location);
 
 252     wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location);
 
 253     wxString FindFirst(const wxString& spec, int flags = 0);
 
 254     virtual wxString FindNext();
 
 258 //---------------------------------------------------------------------------
 
 260     wxPyPtrTypeMap_Add("wxFileSystemHandler", "wxPyFileSystemHandler");
 
 262 //---------------------------------------------------------------------------