]> git.saurik.com Git - wxWidgets.git/blob - include/wx/url.h
new makefiles (part I)
[wxWidgets.git] / include / wx / url.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: url.h
3 // Purpose: URL parser
4 // Author: Guilhem Lavaux
5 // Modified by:
6 // Created: 20/07/1997
7 // RCS-ID: $Id$
8 // Copyright: (c) 1997, 1998 Guilhem Lavaux
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_URL_H
12 #define _WX_URL_H
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 // wxWindows header
19 #include "wx/object.h"
20
21 // wxSocket headers
22 #include "wx/protocol/protocol.h"
23 #include "wx/protocol/http.h"
24
25 typedef enum {
26 wxURL_NOERR = 0,
27 wxURL_SNTXERR,
28 wxURL_NOPROTO,
29 wxURL_NOHOST,
30 wxURL_NOPATH,
31 wxURL_CONNERR,
32 wxURL_PROTOERR
33 } wxURLError;
34
35 class WXDLLEXPORT wxURL : public wxObject {
36 DECLARE_DYNAMIC_CLASS(wxURL)
37 protected:
38 static wxProtoInfo *g_protocols;
39 static wxHTTP *g_proxy;
40 wxProtoInfo *m_protoinfo;
41 wxProtocol *m_protocol;
42 wxHTTP m_proxy;
43 wxURLError m_error;
44 wxString m_protoname, m_hostname, m_servname, m_path, m_url;
45 wxString m_user, m_password;
46
47 bool PrepProto(wxString& url);
48 bool PrepHost(wxString& url);
49 bool PrepPath(wxString& url);
50 bool ParseURL();
51 void CleanData();
52 bool FetchProtocol();
53
54 friend class wxProtoInfo;
55 friend class wxProtocolModule;
56 public:
57
58 wxURL(const wxString& url);
59 virtual ~wxURL();
60
61 inline wxString GetProtocolName() const
62 { return m_protoinfo->m_protoname; }
63 inline wxProtocol& GetProtocol() { return *m_protocol; }
64 inline wxURLError GetError() const { return m_error; }
65 inline wxString GetPath() const { return m_path; }
66
67 wxInputStream *GetInputStream();
68
69 static void SetDefaultProxy(const wxString& url_proxy);
70 void SetProxy(const wxString& url_proxy);
71
72 static wxString ConvertToValidURI(const wxString& uri);
73 };
74
75 #endif