X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/aaa66113dfa36c1636a646e3feb748c298806ccb..a58a12e9b7196c339c1c1d282ede158a70644e07:/src/common/filesys.cpp diff --git a/src/common/filesys.cpp b/src/common/filesys.cpp index 24e5687e6d..d5a3bf6454 100644 --- a/src/common/filesys.cpp +++ b/src/common/filesys.cpp @@ -21,11 +21,15 @@ #define wxUSE_FS_INET 0 #endif -#if (wxUSE_FS_INET || wxUSE_FS_ZIP) && wxUSE_STREAMS +#if (wxUSE_HTML || wxUSE_FS_INET || wxUSE_FS_ZIP) && wxUSE_STREAMS #include "wx/wfstream.h" #include "wx/module.h" #include "wx/filesys.h" +#include "wx/mimetype.h" + + + //-------------------------------------------------------------------------------- // wxFileSystemHandler @@ -33,14 +37,6 @@ IMPLEMENT_ABSTRACT_CLASS(wxFileSystemHandler, wxObject) -wxMimeTypesManager *wxFileSystemHandler::m_MimeMng = NULL; - -void wxFileSystemHandler::CleanUpStatics() -{ - if (m_MimeMng) delete m_MimeMng; - m_MimeMng = NULL; -} - wxString wxFileSystemHandler::GetMimeTypeFromExt(const wxString& location) { @@ -58,9 +54,8 @@ wxString wxFileSystemHandler::GetMimeTypeFromExt(const wxString& location) if ((c == wxT('/')) || (c == wxT('\\')) || (c == wxT(':'))) {return wxEmptyString;} } - if (m_MimeMng == NULL) { - m_MimeMng = new wxMimeTypesManager; - + static bool s_MinimalMimeEnsured = FALSE; + if (!s_MinimalMimeEnsured) { static const wxFileTypeInfo fallbacks[] = { wxFileTypeInfo("image/jpeg", @@ -93,12 +88,18 @@ wxString wxFileSystemHandler::GetMimeTypeFromExt(const wxString& location) wxFileTypeInfo() }; - m_MimeMng -> AddFallbacks(fallbacks); + wxTheMimeTypesManager -> AddFallbacks(fallbacks); } - ft = m_MimeMng -> GetFileTypeFromExtension(ext); - if (ft && (ft -> GetMimeType(&mime))) return mime; - else return wxEmptyString; + ft = wxTheMimeTypesManager -> GetFileTypeFromExtension(ext); + if (ft && (ft -> GetMimeType(&mime))) { + delete ft; + return mime; + } + else { + delete ft; + return wxEmptyString; + } } @@ -155,11 +156,16 @@ wxString wxFileSystemHandler::GetAnchor(const wxString& location) const } -wxString wxFileSystemHandler::FindFirst(const wxString& spec, int flags) { return wxEmptyString; } - -wxString wxFileSystemHandler::FindNext() { return wxEmptyString; } - +wxString wxFileSystemHandler::FindFirst(const wxString& WXUNUSED(spec), + int WXUNUSED(flags)) +{ + return wxEmptyString; +} +wxString wxFileSystemHandler::FindNext() +{ + return wxEmptyString; +} //-------------------------------------------------------------------------------- // wxLocalFSHandler @@ -187,7 +193,8 @@ wxFSFile* wxLocalFSHandler::OpenFile(wxFileSystem& WXUNUSED(fs), const wxString& return new wxFSFile(new wxFileInputStream(right), right, GetMimeTypeFromExt(location), - GetAnchor(location)); + GetAnchor(location), + wxDateTime(wxFileModificationTime(right))); else return (wxFSFile*) NULL; } @@ -301,10 +308,10 @@ wxFSFile* wxFileSystem::OpenFile(const wxString& location) while (node) { wxFileSystemHandler *h = (wxFileSystemHandler*) node -> GetData(); - if (h->CanOpen(m_Path + location)) + if (h->CanOpen(m_Path + loc)) { - s = h->OpenFile(*this, m_Path + location); - if (s) { m_LastName = m_Path + location; break; } + s = h->OpenFile(*this, m_Path + loc); + if (s) { m_LastName = m_Path + loc; break; } } node = node->GetNext(); } @@ -317,10 +324,10 @@ wxFSFile* wxFileSystem::OpenFile(const wxString& location) while (node) { wxFileSystemHandler *h = (wxFileSystemHandler*) node->GetData(); - if (h->CanOpen(location)) + if (h->CanOpen(loc)) { - s = h->OpenFile(*this, location); - if (s) { m_LastName = location; break; } + s = h->OpenFile(*this, loc); + if (s) { m_LastName = loc; break; } } node = node->GetNext(); } @@ -400,7 +407,6 @@ class wxFileSystemModule : public wxModule } virtual void OnExit() { - wxFileSystemHandler::CleanUpStatics(); wxFileSystem::CleanUpHandlers(); } };