]>
Commit | Line | Data |
---|---|---|
f4ada568 GL |
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; | |
856d2e52 | 45 | wxString m_user, m_password; |
f4ada568 GL |
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 | public: | |
56 | ||
57 | wxURL(const wxString& url); | |
58 | virtual ~wxURL(); | |
59 | ||
60 | inline wxString GetProtocolName() const | |
61 | { return m_protoinfo->m_protoname; } | |
62 | inline wxProtocol& GetProtocol() { return *m_protocol; } | |
63 | inline wxURLError GetError() const { return m_error; } | |
64 | ||
65 | wxInputStream *GetInputStream(); | |
66 | ||
67 | static void SetDefaultProxy(const wxString& url_proxy); | |
68 | void SetProxy(const wxString& url_proxy); | |
69 | }; | |
70 | ||
71 | #endif |