// Licence: wxWindows Licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "filesys.h"
#endif
#include "wx/filesys.h"
#include "wx/mimetype.h"
#include "wx/filename.h"
-
+#include "wx/log.h"
//--------------------------------------------------------------------------------
{
int i, l = location.Length();
int l2 = l + 1;
- for (i = l-1; (i >= 0) && ((location[i] != wxT(':')) || (i == 1) || (location[i-2] == wxT(':'))); i--) {if (location[i] == wxT('#')) l2 = i + 1;}
+
+ for (i = l-1;
+ (i >= 0) &&
+ ((location[i] != wxT(':')) || (i == 1) || (location[i-2] == wxT(':')));
+ i--)
+ {
+ if (location[i] == wxT('#')) l2 = i + 1;
+ }
if (i == 0) return wxEmptyString;
else return location.Mid(i + 1, l2 - i - 2);
}
wxFSFile* wxLocalFSHandler::OpenFile(wxFileSystem& WXUNUSED(fs), const wxString& location)
{
// location has Unix path separators
- wxString right = ms_root + GetRightLocation(location);
- wxString nativePath = wxFileSystem::URLToNativePath(right);
- wxFileName fn(nativePath, wxPATH_UNIX);
+ wxString right = GetRightLocation(location);
+ wxFileName fn = wxFileSystem::URLToFileName(right);
+ wxString fullpath = ms_root + fn.GetFullPath();
- if (!wxFileExists(fn.GetFullPath()))
+ if (!wxFileExists(fullpath))
return (wxFSFile*) NULL;
- return new wxFSFile(new wxFFileInputStream(fn.GetFullPath()),
+ return new wxFSFile(new wxFFileInputStream(fullpath),
right,
GetMimeTypeFromExt(location),
- GetAnchor(location),
- wxDateTime(wxFileModificationTime(fn.GetFullPath())));
-
+ GetAnchor(location)
+#if wxUSE_DATETIME
+ ,wxDateTime(wxFileModificationTime(fullpath))
+#endif // wxUSE_DATETIME
+ );
}
wxString wxLocalFSHandler::FindFirst(const wxString& spec, int flags)
{
- wxString right = ms_root + GetRightLocation(spec);
- return wxFindFirstFile(right, flags);
+ wxFileName fn = wxFileSystem::URLToFileName(GetRightLocation(spec));
+ return wxFindFirstFile(ms_root + fn.GetFullPath(), flags);
}
wxString wxLocalFSHandler::FindNext()
unsigned i, ln;
char meta;
wxFSFile *s = NULL;
- wxNode *node;
+ wxList::compatibility_iterator node;
ln = loc.Length();
meta = 0;
wxString wxFileSystem::FindFirst(const wxString& spec, int flags)
{
- wxNode *node;
+ wxList::compatibility_iterator node;
wxString spec2(spec);
m_FindFileHandler = NULL;
void wxFileSystem::CleanUpHandlers()
{
- m_Handlers.DeleteContents(TRUE);
- m_Handlers.Clear();
+ WX_CLEAR_LIST(wxList, m_Handlers);
}
const static wxString g_unixPathString(wxT("/"));
const static wxString g_nativePathString(wxFILE_SEP_PATH);
// Returns the native path for a file URL
-wxString wxFileSystem::URLToNativePath( const wxString& url )
+wxFileName wxFileSystem::URLToFileName(const wxString& url)
{
- wxString path = url ;
+ wxString path = url;
if ( path.Find(wxT("file://")) == 0 )
{
- path = path.Mid(7) ;
+ path = path.Mid(7);
}
+ else if ( path.Find(wxT("file:")) == 0 )
+ {
+ path = path.Mid(5);
+ }
+ // Remove preceding double slash on Mac Classic
+#if defined(__WXMAC__) && !defined(__UNIX__)
+ else if ( path.Find(wxT("//")) == 0 )
+ path = path.Mid(2);
+#endif
+
+ path.Replace(wxT("%25"), wxT("%"));
+ path.Replace(wxT("%3A"), wxT(":"));
-/*
+#ifdef __WXMSW__
// file urls either start with a forward slash (local harddisk),
// otherwise they have a servername/sharename notation,
// which only exists on msw and corresponds to a unc
if ( path[0u] == wxT('/') && path [1u] != wxT('/'))
{
- path = path.Mid(1) ;
+ path = path.Mid(1);
}
-#ifdef __WXMSW__
else if ( (url.Find(wxT("file://")) == 0) &&
(path.Find(wxT('/')) != wxNOT_FOUND) &&
(path.Length() > 1) && (path[1u] != wxT(':')) )
{
- path = wxT("\\\\") + path ;
+ path = wxT("//") + path;
}
#endif
-*/
- path.Replace(g_unixPathString, g_nativePathString) ;
+ path.Replace(g_unixPathString, g_nativePathString);
- return path ;
+ return wxFileName(path, wxPATH_NATIVE);
}
// Returns the file URL for a native path
-wxString wxFileSystem::NativePathToURL( const wxString& path )
+wxString wxFileSystem::FileNameToURL(const wxFileName& filename)
{
- wxString url = path ;
+ wxFileName fn = filename;
+ fn.Normalize(wxPATH_NORM_DOTS | wxPATH_NORM_TILDE | wxPATH_NORM_ABSOLUTE);
+ wxString url = fn.GetFullPath(wxPATH_NATIVE);
-/*
-#ifdef __WXMSW__
- // unc notation
- if ( url.Find(wxT("\\\\")) == 0 )
- {
- url = url.Mid(2) ;
- }
- else
+#ifndef __UNIX__
+ // unc notation, wxMSW
+ if ( url.Find(wxT("\\\\")) == 0 )
+ {
+ url = url.Mid(2);
+ }
+ else
+ {
+ url = wxT("/") + url;
+#ifdef __WXMAC__
+ url = wxT("/") + url;
+#endif
+
+ }
#endif
- {
- url = wxT("/") + url ;
- }
-*/
- url.Replace(g_nativePathString, g_unixPathString) ;
- url = wxT("file://") + url ;
- return url ;
+ url.Replace(g_nativePathString, g_unixPathString);
+ url.Replace(wxT("%"), wxT("%25"));
+ url.Replace(wxT(":"), wxT("%3A"));
+ url = wxT("file:") + url;
+ return url;
}