]>
Commit | Line | Data |
---|---|---|
f4ada568 GL |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: http.h | |
3 | // Purpose: HTTP protocol | |
4 | // Author: Guilhem Lavaux | |
dbccd1c2 | 5 | // Modified by: Simo Virokannas (authentication, Dec 2005) |
f4ada568 GL |
6 | // Created: August 1997 |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1997, 1998 Guilhem Lavaux | |
65571936 | 9 | // Licence: wxWindows licence |
f4ada568 GL |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | #ifndef _WX_HTTP_H | |
12 | #define _WX_HTTP_H | |
13 | ||
a5d46b73 VZ |
14 | #include "wx/defs.h" |
15 | ||
16 | #if wxUSE_PROTOCOL_HTTP | |
17 | ||
df5168c4 | 18 | #include "wx/hashmap.h" |
f4ada568 GL |
19 | #include "wx/protocol/protocol.h" |
20 | ||
7c4728f6 | 21 | WX_DECLARE_STRING_HASH_MAP_WITH_DECL( wxString, wxStringToStringHashMap, |
3f5c62f9 | 22 | class WXDLLIMPEXP_NET ); |
df5168c4 | 23 | |
7c4728f6 | 24 | class WXDLLIMPEXP_NET wxHTTP : public wxProtocol |
71414756 | 25 | { |
f4ada568 GL |
26 | public: |
27 | wxHTTP(); | |
d3c7fc99 | 28 | virtual ~wxHTTP(); |
f4ada568 | 29 | |
0e4acbd4 JS |
30 | virtual bool Connect(const wxString& host, unsigned short port); |
31 | virtual bool Connect(const wxString& host) { return Connect(host, 0); } | |
32 | virtual bool Connect(wxSockAddress& addr, bool wait); | |
f4ada568 GL |
33 | bool Abort(); |
34 | wxInputStream *GetInputStream(const wxString& path); | |
35 | inline wxProtocolError GetError() { return m_perr; } | |
36 | wxString GetContentType(); | |
37 | ||
38 | void SetHeader(const wxString& header, const wxString& h_data); | |
71414756 | 39 | wxString GetHeader(const wxString& header) const; |
f9133b32 | 40 | void SetPostBuffer(const wxString& post_buf); |
f4ada568 | 41 | |
f61815af GL |
42 | void SetProxyMode(bool on); |
43 | ||
2e622163 VZ |
44 | int GetResponse() { return m_http_response; } |
45 | ||
dbccd1c2 JS |
46 | virtual void SetUser(const wxString& user) { m_username = user; } |
47 | virtual void SetPassword(const wxString& passwd ) { m_password = passwd; } | |
48 | ||
f4ada568 | 49 | protected: |
71414756 VZ |
50 | enum wxHTTP_Req |
51 | { | |
a58d5df4 | 52 | wxHTTP_GET, |
f9133b32 | 53 | wxHTTP_POST, |
a58d5df4 | 54 | wxHTTP_HEAD |
71414756 VZ |
55 | }; |
56 | ||
57 | typedef wxStringToStringHashMap::iterator wxHeaderIterator; | |
bdcade0a | 58 | typedef wxStringToStringHashMap::const_iterator wxHeaderConstIterator; |
71414756 | 59 | |
f4ada568 GL |
60 | bool BuildRequest(const wxString& path, wxHTTP_Req req); |
61 | void SendHeaders(); | |
62 | bool ParseHeaders(); | |
2fb203e6 | 63 | |
dbccd1c2 JS |
64 | wxString GenerateAuthString(const wxString& user, const wxString& pass) const; |
65 | ||
71414756 | 66 | // find the header in m_headers |
bdcade0a MB |
67 | wxHeaderIterator FindHeader(const wxString& header); |
68 | wxHeaderConstIterator FindHeader(const wxString& header) const; | |
71414756 | 69 | |
2fb203e6 VZ |
70 | // deletes the header value strings |
71 | void ClearHeaders(); | |
22f3361e | 72 | |
71414756 VZ |
73 | wxProtocolError m_perr; |
74 | wxStringToStringHashMap m_headers; | |
75 | bool m_read, | |
76 | m_proxy_mode; | |
77 | wxSockAddress *m_addr; | |
78 | wxString m_post_buf; | |
2e622163 | 79 | int m_http_response; |
dbccd1c2 JS |
80 | wxString m_username; |
81 | wxString m_password; | |
71414756 VZ |
82 | |
83 | DECLARE_DYNAMIC_CLASS(wxHTTP) | |
84 | DECLARE_PROTOCOL(wxHTTP) | |
85 | DECLARE_NO_COPY_CLASS(wxHTTP) | |
f4ada568 GL |
86 | }; |
87 | ||
a5d46b73 VZ |
88 | #endif // wxUSE_PROTOCOL_HTTP |
89 | ||
90 | #endif // _WX_HTTP_H | |
91 |