1999-07-07 18:04:58 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: fs_inet.h
|
|
|
|
// Purpose: HTTP and FTP file system
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// Copyright: (c) 1999 Vaclav Slavik
|
|
|
|
// Licence: wxWindows Licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
2001-07-05 14:48:48 -04:00
|
|
|
REMARKS :
|
1999-07-07 18:04:58 -04:00
|
|
|
|
|
|
|
This FS creates local cache (in /tmp directory). The cache is freed
|
|
|
|
on program exit.
|
|
|
|
|
|
|
|
Size of cache is limited to cca 1000 items (due to GetTempFileName
|
|
|
|
limitation)
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
2001-04-28 19:31:03 -04:00
|
|
|
#pragma interface "fs_inet.h"
|
1999-07-07 18:04:58 -04:00
|
|
|
#endif
|
|
|
|
|
1999-08-20 18:52:21 -04:00
|
|
|
#include "wx/wxprec.h"
|
1999-07-07 18:04:58 -04:00
|
|
|
|
|
|
|
#ifdef __BORDLANDC__
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
2000-02-27 16:06:17 -05:00
|
|
|
#if wxUSE_FILESYSTEM && wxUSE_FS_INET && wxUSE_STREAMS && wxUSE_SOCKETS
|
1999-07-29 15:52:37 -04:00
|
|
|
|
1999-08-20 18:52:21 -04:00
|
|
|
#include "wx/filesys.h"
|
1999-07-07 18:04:58 -04:00
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
// wxInternetFSHandler
|
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
|
1999-08-03 19:56:34 -04:00
|
|
|
class WXDLLEXPORT wxInternetFSHandler : public wxFileSystemHandler
|
1999-07-07 18:04:58 -04:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
wxHashTable m_Cache;
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual bool CanOpen(const wxString& location);
|
|
|
|
virtual wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location);
|
|
|
|
~wxInternetFSHandler();
|
|
|
|
};
|
|
|
|
|
1999-07-29 15:52:37 -04:00
|
|
|
#endif
|
2000-02-27 16:06:17 -05:00
|
|
|
// wxUSE_FILESYSTEM && wxUSE_FS_INET && wxUSE_STREAMS && wxUSE_SOCKETS
|
1999-07-07 18:04:58 -04:00
|
|
|
|