git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42488
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// kinds of files (HTPP, FTP, local, tar.gz etc..)
//--------------------------------------------------------------------------------
// kinds of files (HTPP, FTP, local, tar.gz etc..)
//--------------------------------------------------------------------------------
+// Open Bit Flags
+enum {
+ wxFS_READ = 1, // Open for reading
+ wxFS_WRITE = 2, // Open for writing
+ wxFS_SEEKABLE = 4 // Returned stream will be seekable
+};
+
class WXDLLIMPEXP_BASE wxFileSystem : public wxObject
{
public:
class WXDLLIMPEXP_BASE wxFileSystem : public wxObject
{
public:
// It first tries to open the file in relative scope
// (based on ChangePathTo()'s value) and then as an absolute
// path.
// It first tries to open the file in relative scope
// (based on ChangePathTo()'s value) and then as an absolute
// path.
- wxFSFile* OpenFile(const wxString& location);
+ wxFSFile* OpenFile(const wxString& location, int flags = wxFS_READ);
// Finds first/next file that matches spec wildcard. flags can be wxDIR for restricting
// the query to directories or wxFILE for files only or 0 for either.
// Finds first/next file that matches spec wildcard. flags can be wxDIR for restricting
// the query to directories or wxFILE for files only or 0 for either.
// Removes FS handler
static wxFileSystemHandler* RemoveHandler(wxFileSystemHandler *handler);
// Removes FS handler
static wxFileSystemHandler* RemoveHandler(wxFileSystemHandler *handler);
// Returns true if there is a handler which can open the given location.
static bool HasHandlerForPath(const wxString& location);
// Returns true if there is a handler which can open the given location.
static bool HasHandlerForPath(const wxString& location);
#include "wx/mimetype.h"
#include "wx/filename.h"
#include "wx/tokenzr.h"
#include "wx/mimetype.h"
#include "wx/filename.h"
#include "wx/tokenzr.h"
+#include "wx/fileback.h"
//--------------------------------------------------------------------------------
//--------------------------------------------------------------------------------
-wxFSFile* wxFileSystem::OpenFile(const wxString& location)
+wxFSFile* wxFileSystem::OpenFile(const wxString& location, int flags)
{
wxString loc = MakeCorrectPath(location);
unsigned i, ln;
{
wxString loc = MakeCorrectPath(location);
unsigned i, ln;
node = node->GetNext();
}
}
node = node->GetNext();
}
}
+
+ if (s && (flags & wxFS_SEEKABLE) != 0 && !s->GetStream()->IsSeekable())
+ {
+ wxBackedInputStream *stream;
+ stream = new wxBackedInputStream(s->DetachStream());
+ stream->FindLength();
+ s->SetStream(stream);
+ }
+