1998-09-06 18:28:00 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: url.h
|
|
|
|
// Purpose: URL parser
|
|
|
|
// Author: Guilhem Lavaux
|
2004-10-28 06:49:46 +00:00
|
|
|
// Modified by: Ryan Norton
|
1998-09-06 18:28:00 +00:00
|
|
|
// Created: 20/07/1997
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 1997, 1998 Guilhem Lavaux
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-09-06 18:28:00 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2000-07-15 19:51:35 +00:00
|
|
|
|
1998-09-06 18:28:00 +00:00
|
|
|
#ifndef _WX_URL_H
|
|
|
|
#define _WX_URL_H
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
2002-08-31 11:29:13 +00:00
|
|
|
#pragma interface "url.h"
|
1998-09-06 18:28:00 +00:00
|
|
|
#endif
|
|
|
|
|
2001-12-30 22:27:24 +00:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_URL
|
1998-09-06 18:28:00 +00:00
|
|
|
|
2004-10-28 06:49:46 +00:00
|
|
|
#include "wx/uri.h"
|
1998-09-06 18:28:00 +00:00
|
|
|
#include "wx/protocol/protocol.h"
|
1999-07-29 19:52:37 +00:00
|
|
|
|
2001-12-30 22:27:24 +00:00
|
|
|
#if wxUSE_PROTOCOL_HTTP
|
1999-07-29 19:52:37 +00:00
|
|
|
#include "wx/protocol/http.h"
|
|
|
|
#endif
|
1998-09-06 18:28:00 +00:00
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
wxURL_NOERR = 0,
|
|
|
|
wxURL_SNTXERR,
|
|
|
|
wxURL_NOPROTO,
|
|
|
|
wxURL_NOHOST,
|
|
|
|
wxURL_NOPATH,
|
|
|
|
wxURL_CONNERR,
|
|
|
|
wxURL_PROTOERR
|
|
|
|
} wxURLError;
|
2001-12-30 22:27:24 +00:00
|
|
|
|
2004-02-07 15:28:06 +00:00
|
|
|
#if wxUSE_URL_NATIVE
|
|
|
|
class WXDLLIMPEXP_NET wxURL;
|
|
|
|
|
|
|
|
class WXDLLIMPEXP_NET wxURLNativeImp : public wxObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~wxURLNativeImp() { }
|
|
|
|
virtual wxInputStream *GetInputStream(wxURL *owner) = 0;
|
|
|
|
};
|
|
|
|
#endif // wxUSE_URL_NATIVE
|
|
|
|
|
2004-10-28 06:49:46 +00:00
|
|
|
class WXDLLIMPEXP_NET wxURL : public wxURI
|
2000-03-17 18:18:58 +00:00
|
|
|
{
|
1998-09-06 18:28:00 +00:00
|
|
|
public:
|
2004-10-28 06:49:46 +00:00
|
|
|
wxURL(const wxString& sUrl);
|
|
|
|
wxURL(const wxURI& url);
|
2000-03-17 18:18:58 +00:00
|
|
|
virtual ~wxURL();
|
|
|
|
|
2004-10-28 06:49:46 +00:00
|
|
|
wxURL& operator = (const wxString& url);
|
|
|
|
wxURL& operator = (const wxURI& url);
|
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
wxProtocol& GetProtocol() { return *m_protocol; }
|
|
|
|
wxURLError GetError() const { return m_error; }
|
2004-10-28 22:22:40 +00:00
|
|
|
wxString GetURL() const { return m_url; }
|
1998-09-06 18:28:00 +00:00
|
|
|
|
2000-03-17 18:18:58 +00:00
|
|
|
wxInputStream *GetInputStream();
|
1998-09-06 18:28:00 +00:00
|
|
|
|
2000-03-17 18:18:58 +00:00
|
|
|
#if wxUSE_SOCKETS
|
|
|
|
static void SetDefaultProxy(const wxString& url_proxy);
|
|
|
|
void SetProxy(const wxString& url_proxy);
|
|
|
|
#endif // wxUSE_SOCKETS
|
1998-09-06 18:28:00 +00:00
|
|
|
|
2004-10-28 09:57:43 +00:00
|
|
|
#if WXWIN_COMPATIBILITY_2_4
|
2004-10-28 22:22:40 +00:00
|
|
|
//Use the proper wxURI accessors instead
|
2005-01-11 21:17:16 +00:00
|
|
|
wxDEPRECATED( wxString GetProtocolName() const );
|
|
|
|
wxDEPRECATED( wxString GetHostName() const );
|
|
|
|
wxDEPRECATED( wxString GetPath() const );
|
2004-10-28 22:22:40 +00:00
|
|
|
|
2004-10-30 20:22:24 +00:00
|
|
|
//Use wxURI instead - this does not work that well
|
2004-12-23 20:33:04 +00:00
|
|
|
wxDEPRECATED( static wxString ConvertToValidURI(
|
2000-07-15 19:51:35 +00:00
|
|
|
const wxString& uri,
|
|
|
|
const wxChar* delims = wxT(";/?:@&=+$,")
|
2004-12-23 20:33:04 +00:00
|
|
|
) );
|
2004-10-28 09:57:43 +00:00
|
|
|
|
|
|
|
//Use wxURI::Unescape instead
|
2004-12-23 20:33:04 +00:00
|
|
|
wxDEPRECATED( static wxString ConvertFromURI(const wxString& uri) );
|
2004-10-28 09:57:43 +00:00
|
|
|
#endif
|
2000-03-17 18:18:58 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
static wxProtoInfo *ms_protocols;
|
1998-09-06 18:28:00 +00:00
|
|
|
|
2005-01-05 07:26:40 +00:00
|
|
|
#if wxUSE_PROTOCOL_HTTP
|
2000-03-17 18:18:58 +00:00
|
|
|
static wxHTTP *ms_proxyDefault;
|
|
|
|
static bool ms_useDefaultProxy;
|
|
|
|
wxHTTP *m_proxy;
|
2005-01-05 07:26:40 +00:00
|
|
|
#endif // wxUSE_PROTOCOL_HTTP
|
2000-03-17 18:18:58 +00:00
|
|
|
|
2004-02-07 15:28:06 +00:00
|
|
|
#if wxUSE_URL_NATIVE
|
|
|
|
friend class wxURLNativeImp;
|
|
|
|
// pointer to a native URL implementation object
|
|
|
|
wxURLNativeImp *m_nativeImp;
|
2004-09-23 18:20:56 +00:00
|
|
|
// Creates on the heap and returns a native
|
2004-02-07 15:28:06 +00:00
|
|
|
// implementation object for the current platform.
|
|
|
|
static wxURLNativeImp *CreateNativeImpObject();
|
|
|
|
#endif
|
2000-03-17 18:18:58 +00:00
|
|
|
wxProtoInfo *m_protoinfo;
|
|
|
|
wxProtocol *m_protocol;
|
|
|
|
|
|
|
|
wxURLError m_error;
|
2004-10-28 06:49:46 +00:00
|
|
|
wxString m_url;
|
2000-03-17 18:18:58 +00:00
|
|
|
bool m_useProxy;
|
|
|
|
|
2004-10-28 06:49:46 +00:00
|
|
|
void Init(const wxString&);
|
2000-03-17 18:18:58 +00:00
|
|
|
bool ParseURL();
|
|
|
|
void CleanData();
|
|
|
|
bool FetchProtocol();
|
|
|
|
|
|
|
|
friend class wxProtoInfo;
|
|
|
|
friend class wxURLModule;
|
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxURL)
|
1998-09-06 18:28:00 +00:00
|
|
|
};
|
|
|
|
|
2001-12-30 22:27:24 +00:00
|
|
|
#endif // wxUSE_URL
|
|
|
|
|
|
|
|
#endif // _WX_URL_H
|
|
|
|
|