2000-02-17 23:13:41 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: fs_mem.h
|
|
|
|
// Purpose: in-memory file system
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// Copyright: (c) 2000 Vaclav Slavik
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2000-02-17 23:13:41 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2002-03-06 11:17:14 +00:00
|
|
|
#ifndef _WX_FS_MEM_H_
|
|
|
|
#define _WX_FS_MEM_H_
|
2000-02-17 23:13:41 +00:00
|
|
|
|
2004-07-25 16:44:47 +00:00
|
|
|
#include "wx/defs.h"
|
2000-02-17 23:13:41 +00:00
|
|
|
|
2000-02-27 21:06:17 +00:00
|
|
|
#if wxUSE_FILESYSTEM
|
2000-02-17 23:13:41 +00:00
|
|
|
|
|
|
|
#include "wx/filesys.h"
|
2001-07-05 18:48:48 +00:00
|
|
|
|
2003-07-02 01:41:23 +00:00
|
|
|
#if wxUSE_GUI
|
2008-05-10 17:46:38 +00:00
|
|
|
#include "wx/bitmap.h"
|
2003-07-02 01:41:23 +00:00
|
|
|
#endif // wxUSE_GUI
|
2000-02-17 23:13:41 +00:00
|
|
|
|
2003-07-03 13:06:21 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxMemoryFSHandlerBase
|
|
|
|
// ----------------------------------------------------------------------------
|
2000-02-17 23:13:41 +00:00
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxMemoryFSHandlerBase : public wxFileSystemHandler
|
2000-02-17 23:13:41 +00:00
|
|
|
{
|
2003-06-24 00:56:19 +00:00
|
|
|
public:
|
|
|
|
wxMemoryFSHandlerBase();
|
2006-09-05 20:47:48 +00:00
|
|
|
virtual ~wxMemoryFSHandlerBase();
|
2000-02-17 23:13:41 +00:00
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
// Add file to list of files stored in memory. Stored data (bitmap, text or
|
|
|
|
// raw data) will be copied into private memory stream and available under
|
|
|
|
// name "memory:" + filename
|
|
|
|
static void AddFile(const wxString& filename, const wxString& textdata);
|
|
|
|
static void AddFile(const wxString& filename, const void *binarydata, size_t size);
|
2007-06-18 18:43:34 +00:00
|
|
|
static void AddFileWithMimeType(const wxString& filename,
|
|
|
|
const wxString& textdata,
|
|
|
|
const wxString& mimetype);
|
|
|
|
static void AddFileWithMimeType(const wxString& filename,
|
|
|
|
const void *binarydata, size_t size,
|
|
|
|
const wxString& mimetype);
|
2001-07-05 18:48:48 +00:00
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
// Remove file from memory FS and free occupied memory
|
|
|
|
static void RemoveFile(const wxString& filename);
|
2001-07-05 18:48:48 +00:00
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
virtual bool CanOpen(const wxString& location);
|
|
|
|
virtual wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location);
|
|
|
|
virtual wxString FindFirst(const wxString& spec, int flags = 0);
|
|
|
|
virtual wxString FindNext();
|
2001-07-05 18:48:48 +00:00
|
|
|
|
2003-06-25 15:09:05 +00:00
|
|
|
protected:
|
2003-06-24 00:56:19 +00:00
|
|
|
static bool CheckHash(const wxString& filename);
|
2003-06-25 15:09:05 +00:00
|
|
|
static wxHashTable *m_Hash;
|
2000-02-17 23:13:41 +00:00
|
|
|
};
|
|
|
|
|
2003-07-03 13:06:21 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxMemoryFSHandler
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#if wxUSE_GUI
|
|
|
|
|
|
|
|
// add GUI-only operations to the base class
|
|
|
|
class WXDLLIMPEXP_CORE wxMemoryFSHandler : public wxMemoryFSHandlerBase
|
2003-06-24 00:56:19 +00:00
|
|
|
{
|
|
|
|
public:
|
2003-07-03 13:06:21 +00:00
|
|
|
// bring the base class versions into the scope, otherwise they would be
|
|
|
|
// inaccessible in wxMemoryFSHandler
|
2003-07-04 23:49:58 +00:00
|
|
|
// (unfortunately "using" can't be used as gcc 2.95 doesn't have it...)
|
|
|
|
static void AddFile(const wxString& filename, const wxString& textdata)
|
|
|
|
{
|
|
|
|
wxMemoryFSHandlerBase::AddFile(filename, textdata);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void AddFile(const wxString& filename,
|
|
|
|
const void *binarydata,
|
|
|
|
size_t size)
|
|
|
|
{
|
|
|
|
wxMemoryFSHandlerBase::AddFile(filename, binarydata, size);
|
|
|
|
}
|
2007-06-18 18:43:34 +00:00
|
|
|
static void AddFileWithMimeType(const wxString& filename,
|
|
|
|
const wxString& textdata,
|
|
|
|
const wxString& mimetype)
|
|
|
|
{
|
|
|
|
wxMemoryFSHandlerBase::AddFileWithMimeType(filename,
|
|
|
|
textdata,
|
|
|
|
mimetype);
|
|
|
|
}
|
|
|
|
static void AddFileWithMimeType(const wxString& filename,
|
|
|
|
const void *binarydata, size_t size,
|
|
|
|
const wxString& mimetype)
|
|
|
|
{
|
|
|
|
wxMemoryFSHandlerBase::AddFileWithMimeType(filename,
|
|
|
|
binarydata, size,
|
|
|
|
mimetype);
|
|
|
|
}
|
2003-07-03 13:06:21 +00:00
|
|
|
|
2003-06-25 14:59:02 +00:00
|
|
|
#if wxUSE_IMAGE
|
2004-07-20 21:59:43 +00:00
|
|
|
static void AddFile(const wxString& filename,
|
|
|
|
const wxImage& image,
|
2008-05-10 09:40:33 +00:00
|
|
|
wxBitmapType type);
|
2003-07-03 13:06:21 +00:00
|
|
|
|
2003-07-04 23:49:58 +00:00
|
|
|
static void AddFile(const wxString& filename,
|
|
|
|
const wxBitmap& bitmap,
|
2008-05-10 09:40:33 +00:00
|
|
|
wxBitmapType type);
|
2004-02-16 23:27:54 +00:00
|
|
|
#endif // wxUSE_IMAGE
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
};
|
2000-02-17 23:13:41 +00:00
|
|
|
|
2003-07-03 13:06:21 +00:00
|
|
|
#else // !wxUSE_GUI
|
|
|
|
|
|
|
|
// just the same thing as the base class in wxBase
|
|
|
|
class WXDLLIMPEXP_BASE wxMemoryFSHandler : public wxMemoryFSHandlerBase
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // wxUSE_GUI/!wxUSE_GUI
|
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
#endif // wxUSE_FILESYSTEM
|
2000-02-17 23:13:41 +00:00
|
|
|
|
2002-03-06 11:17:14 +00:00
|
|
|
#endif // _WX_FS_MEM_H_
|
|
|
|
|