git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29139 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
152 lines
4.0 KiB
C++
152 lines
4.0 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: fs_inet.cpp
|
|
// Purpose: HTTP and FTP file system
|
|
// Author: Vaclav Slavik
|
|
// Copyright: (c) 1999 Vaclav Slavik
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
|
#pragma implementation "fs_inet.h"
|
|
#endif
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#if !wxUSE_SOCKETS
|
|
#undef wxUSE_FS_INET
|
|
#define wxUSE_FS_INET 0
|
|
#endif
|
|
|
|
#if wxUSE_FILESYSTEM && wxUSE_FS_INET
|
|
|
|
#ifndef WXPRECOMP
|
|
#endif
|
|
|
|
#include "wx/wfstream.h"
|
|
#include "wx/url.h"
|
|
#include "wx/filesys.h"
|
|
#include "wx/fs_inet.h"
|
|
#include "wx/module.h"
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Helper classes
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// This stream deletes the file when destroyed
|
|
class wxTemporaryFileInputStream : public wxFileInputStream
|
|
{
|
|
public:
|
|
wxTemporaryFileInputStream(const wxString& filename) :
|
|
wxFileInputStream(filename), m_filename(filename) {}
|
|
|
|
~wxTemporaryFileInputStream()
|
|
{
|
|
// NB: copied from wxFileInputStream dtor, we need to do it before
|
|
// wxRemoveFile
|
|
if (m_file_destroy)
|
|
{
|
|
delete m_file;
|
|
m_file_destroy = false;
|
|
}
|
|
wxRemoveFile(m_filename);
|
|
}
|
|
|
|
protected:
|
|
wxString m_filename;
|
|
};
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxInternetFSHandler
|
|
// ----------------------------------------------------------------------------
|
|
|
|
static wxString StripProtocolAnchor(const wxString& location)
|
|
{
|
|
wxString myloc(location.BeforeLast(wxT('#')));
|
|
if (myloc.IsEmpty()) myloc = location.AfterFirst(wxT(':'));
|
|
else myloc = myloc.AfterFirst(wxT(':'));
|
|
|
|
// fix malformed url:
|
|
if (myloc.Left(2) != wxT("//"))
|
|
{
|
|
if (myloc.GetChar(0) != wxT('/')) myloc = wxT("//") + myloc;
|
|
else myloc = wxT("/") + myloc;
|
|
}
|
|
if (myloc.Mid(2).Find(wxT('/')) == wxNOT_FOUND) myloc << wxT('/');
|
|
|
|
return myloc;
|
|
}
|
|
|
|
|
|
bool wxInternetFSHandler::CanOpen(const wxString& location)
|
|
{
|
|
wxString p = GetProtocol(location);
|
|
if ((p == wxT("http")) || (p == wxT("ftp")))
|
|
{
|
|
wxURL url(p + wxT(":") + StripProtocolAnchor(location));
|
|
return (url.GetError() == wxURL_NOERR);
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
|
|
wxFSFile* wxInternetFSHandler::OpenFile(wxFileSystem& WXUNUSED(fs),
|
|
const wxString& location)
|
|
{
|
|
wxString right =
|
|
GetProtocol(location) + wxT(":") + StripProtocolAnchor(location);
|
|
|
|
wxURL url(right);
|
|
if (url.GetError() == wxURL_NOERR)
|
|
{
|
|
wxInputStream *s = url.GetInputStream();
|
|
wxString content = url.GetProtocol().GetContentType();
|
|
if (content == wxEmptyString) content = GetMimeTypeFromExt(location);
|
|
if (s)
|
|
{
|
|
wxString tmpfile =
|
|
wxFileName::CreateTempFileName(wxT("wxhtml"));
|
|
|
|
{ // now copy streams content to temporary file:
|
|
wxFileOutputStream sout(tmpfile);
|
|
s->Read(sout);
|
|
}
|
|
delete s;
|
|
|
|
return new wxFSFile(new wxTemporaryFileInputStream(tmpfile),
|
|
right,
|
|
content,
|
|
GetAnchor(location)
|
|
#if wxUSE_DATETIME
|
|
, wxDateTime::Now()
|
|
#endif // wxUSE_DATETIME
|
|
);
|
|
}
|
|
}
|
|
|
|
return (wxFSFile*) NULL; // incorrect URL
|
|
}
|
|
|
|
|
|
class wxFileSystemInternetModule : public wxModule
|
|
{
|
|
DECLARE_DYNAMIC_CLASS(wxFileSystemInternetModule)
|
|
|
|
public:
|
|
virtual bool OnInit()
|
|
{
|
|
wxFileSystem::AddHandler(new wxInternetFSHandler);
|
|
return true;
|
|
}
|
|
virtual void OnExit() {}
|
|
};
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxFileSystemInternetModule, wxModule)
|
|
|
|
#endif // wxUSE_FILESYSTEM && wxUSE_FS_INET
|