]>
Commit | Line | Data |
---|---|---|
f4ada568 GL |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: http.cpp | |
3 | // Purpose: HTTP protocol | |
4 | // Author: Guilhem Lavaux | |
5 | // Modified by: | |
6 | // Created: August 1997 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1997, 1998 Guilhem Lavaux | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifdef __GNUG__ | |
2df7be7f | 13 | #pragma implementation "http.h" |
f4ada568 GL |
14 | #endif |
15 | ||
fcc6dddd JS |
16 | // For compilers that support precompilation, includes "wx.h". |
17 | #include "wx/wxprec.h" | |
18 | ||
19 | #ifdef __BORLANDC__ | |
ce4169a4 | 20 | #pragma hdrstop |
fcc6dddd JS |
21 | #endif |
22 | ||
ce4169a4 RR |
23 | #if wxUSE_SOCKETS |
24 | ||
f4ada568 GL |
25 | #include <stdio.h> |
26 | #include <stdlib.h> | |
27 | #include "wx/string.h" | |
28 | #include "wx/tokenzr.h" | |
29 | #include "wx/socket.h" | |
30 | #include "wx/protocol/protocol.h" | |
fae05df5 | 31 | #include "wx/url.h" |
f4ada568 GL |
32 | #include "wx/protocol/http.h" |
33 | #include "wx/sckstrm.h" | |
34 | ||
f4ada568 GL |
35 | #if !USE_SHARED_LIBRARY |
36 | IMPLEMENT_DYNAMIC_CLASS(wxHTTP, wxProtocol) | |
4846abaf | 37 | IMPLEMENT_PROTOCOL(wxHTTP, _T("http"), _T("80"), TRUE) |
f4ada568 GL |
38 | #endif |
39 | ||
40 | #define HTTP_BSIZE 2048 | |
41 | ||
42 | wxHTTP::wxHTTP() | |
43 | : wxProtocol(), | |
44 | m_headers(wxKEY_STRING) | |
45 | { | |
46 | m_addr = NULL; | |
47 | m_read = FALSE; | |
48 | ||
a324a7bc | 49 | SetNotify(GSOCK_LOST_FLAG); |
f4ada568 GL |
50 | } |
51 | ||
52 | wxHTTP::~wxHTTP() | |
53 | { | |
54 | // wxString isn't a wxObject | |
1f01991f | 55 | wxNode *node = m_headers.First(); |
f4ada568 GL |
56 | wxString *string; |
57 | ||
58 | while (node) { | |
59 | string = (wxString *)node->Data(); | |
60 | delete string; | |
61 | node = node->Next(); | |
62 | } | |
63 | } | |
64 | ||
65 | wxString wxHTTP::GetContentType() | |
66 | { | |
4846abaf | 67 | return GetHeader(_T("Content-Type")); |
f4ada568 GL |
68 | } |
69 | ||
70 | void wxHTTP::SetHeader(const wxString& header, const wxString& h_data) | |
71 | { | |
72 | if (m_read) { | |
73 | m_headers.Clear(); | |
74 | m_read = FALSE; | |
75 | } | |
76 | ||
77 | wxNode *node = m_headers.Find(header); | |
78 | ||
79 | if (!node) | |
80 | m_headers.Append(header, (wxObject *)(new wxString(h_data))); | |
81 | else { | |
82 | wxString *str = (wxString *)node->Data(); | |
83 | (*str) = h_data; | |
84 | } | |
85 | } | |
86 | ||
87 | wxString wxHTTP::GetHeader(const wxString& header) | |
88 | { | |
89 | wxNode *node = m_headers.Find(header); | |
90 | if (!node) | |
ce3ed50d | 91 | return wxEmptyString; |
f4ada568 GL |
92 | |
93 | return *((wxString *)node->Data()); | |
94 | } | |
95 | ||
96 | void wxHTTP::SendHeaders() | |
97 | { | |
98 | wxNode *head = m_headers.First(); | |
99 | ||
53c6e7cc VZ |
100 | while (head) |
101 | { | |
f4ada568 | 102 | wxString *str = (wxString *)head->Data(); |
f4ada568 | 103 | |
53c6e7cc | 104 | wxString buf; |
4846abaf | 105 | buf.Printf(_T("%s: %s\n\r"), head->GetKeyString(), str->GetData()); |
53c6e7cc | 106 | |
fde7d98e | 107 | const wxWX2MBbuf cbuf = buf.mb_str(); |
4846abaf | 108 | Write(cbuf, strlen(cbuf)); |
f4ada568 GL |
109 | |
110 | head = head->Next(); | |
111 | } | |
112 | } | |
113 | ||
114 | bool wxHTTP::ParseHeaders() | |
115 | { | |
116 | wxString line; | |
a737331d | 117 | wxStringTokenizer tokenzr; |
f4ada568 GL |
118 | |
119 | m_headers.Clear(); | |
120 | m_read = TRUE; | |
121 | ||
122 | while (1) { | |
a324a7bc GL |
123 | m_perr = GetLine(this, line); |
124 | if (m_perr != wxPROTO_NOERR) | |
f4ada568 GL |
125 | return FALSE; |
126 | ||
127 | if (line.Length() == 0) | |
128 | break; | |
129 | ||
a737331d | 130 | tokenzr.SetString(line, " :\t\n\r"); |
91b8de8d | 131 | if (!tokenzr.HasMoreTokens()) |
f4ada568 GL |
132 | return FALSE; |
133 | ||
a737331d GL |
134 | wxString left_str = tokenzr.GetNextToken(); |
135 | wxString *str = new wxString(tokenzr.GetNextToken()); | |
f4ada568 GL |
136 | |
137 | m_headers.Append(left_str, (wxObject *) str); | |
138 | } | |
139 | return TRUE; | |
140 | } | |
141 | ||
142 | bool wxHTTP::Connect(const wxString& host) | |
143 | { | |
144 | wxIPV4address *addr; | |
145 | ||
146 | if (m_connected) { | |
147 | delete m_addr; | |
148 | m_addr = NULL; | |
149 | Close(); | |
150 | } | |
151 | ||
152 | m_addr = addr = new wxIPV4address(); | |
153 | ||
154 | if (!addr->Hostname(host)) { | |
155 | delete m_addr; | |
156 | m_addr = NULL; | |
a324a7bc | 157 | m_perr = wxPROTO_NETERR; |
f4ada568 GL |
158 | return FALSE; |
159 | } | |
160 | ||
4846abaf | 161 | if (!addr->Service(_T("http"))) |
f4ada568 GL |
162 | addr->Service(80); |
163 | ||
164 | return TRUE; | |
165 | } | |
166 | ||
8a2c6ef8 | 167 | bool wxHTTP::Connect(wxSockAddress& addr, bool WXUNUSED(wait)) |
f4ada568 | 168 | { |
a324a7bc GL |
169 | if (m_addr) { |
170 | delete m_addr; | |
171 | m_addr = NULL; | |
172 | Close(); | |
173 | } | |
f4ada568 | 174 | |
a324a7bc | 175 | m_addr = (wxSockAddress *) addr.Clone(); |
f4ada568 GL |
176 | return TRUE; |
177 | } | |
178 | ||
179 | bool wxHTTP::BuildRequest(const wxString& path, wxHTTP_Req req) | |
180 | { | |
fae05df5 | 181 | wxChar *tmp_buf; |
a324a7bc | 182 | wxChar buf[200]; // 200 is arbitrary. |
fae05df5 | 183 | wxString tmp_str; |
f4ada568 GL |
184 | |
185 | switch (req) { | |
186 | case wxHTTP_GET: | |
fae05df5 | 187 | tmp_buf = _T("GET"); |
f4ada568 GL |
188 | break; |
189 | default: | |
190 | return FALSE; | |
191 | } | |
192 | ||
41895a05 | 193 | SaveState(); |
062c4861 | 194 | SetFlags(NONE); |
41895a05 | 195 | Notify(FALSE); |
41895a05 | 196 | |
fae05df5 | 197 | tmp_str = wxURL::ConvertToValidURI(path); |
a324a7bc | 198 | wxSprintf(buf, _T("%s %s HTTP/1.0\n\r"), tmp_buf, tmp_str.GetData()); |
e7fc59f4 | 199 | const wxWX2MBbuf pathbuf = wxConvLibc.cWX2MB(buf); |
a324a7bc | 200 | Write(pathbuf, strlen(MBSTRINGCAST pathbuf)); |
f4ada568 | 201 | SendHeaders(); |
fae05df5 | 202 | Write("\n\r", 2); |
f4ada568 | 203 | |
a324a7bc GL |
204 | m_perr = GetLine(this, tmp_str); |
205 | if (m_perr != wxPROTO_NOERR) { | |
41895a05 | 206 | RestoreState(); |
f4ada568 | 207 | return FALSE; |
41895a05 | 208 | } |
f4ada568 | 209 | |
4846abaf | 210 | if (!tmp_str.Contains(_T("HTTP/"))) { |
f4ada568 | 211 | // TODO: support HTTP v0.9 which can have no header. |
4846abaf OK |
212 | SetHeader(_T("Content-Length"), _T("-1")); |
213 | SetHeader(_T("Content-Type"), _T("none/none")); | |
41895a05 | 214 | RestoreState(); |
f4ada568 GL |
215 | return TRUE; |
216 | } | |
217 | ||
4846abaf | 218 | wxStringTokenizer token(tmp_str,_T(' ')); |
f4ada568 | 219 | wxString tmp_str2; |
41895a05 | 220 | bool ret_value; |
f4ada568 GL |
221 | |
222 | token.NextToken(); | |
223 | tmp_str2 = token.NextToken(); | |
224 | ||
4846abaf | 225 | switch (wxAtoi(tmp_str2)) { |
f4ada568 GL |
226 | case 200: |
227 | break; | |
228 | default: | |
a324a7bc | 229 | m_perr = wxPROTO_NOFILE; |
41895a05 | 230 | RestoreState(); |
f4ada568 GL |
231 | return FALSE; |
232 | } | |
233 | ||
41895a05 GL |
234 | ret_value = ParseHeaders(); |
235 | RestoreState(); | |
236 | return ret_value; | |
f4ada568 GL |
237 | } |
238 | ||
239 | class wxHTTPStream : public wxSocketInputStream { | |
240 | public: | |
241 | wxHTTP *m_http; | |
9a1b2c28 | 242 | size_t m_httpsize; |
a324a7bc | 243 | unsigned long m_read_bytes; |
9a1b2c28 | 244 | |
f4ada568 | 245 | wxHTTPStream(wxHTTP *http) : wxSocketInputStream(*http), m_http(http) {} |
41895a05 | 246 | size_t StreamSize() const { return m_httpsize; } |
f4ada568 | 247 | virtual ~wxHTTPStream(void) { m_http->Abort(); } |
a324a7bc GL |
248 | |
249 | protected: | |
250 | size_t OnSysRead(void *buffer, size_t bufsize); | |
f4ada568 GL |
251 | }; |
252 | ||
a324a7bc GL |
253 | size_t wxHTTPStream::OnSysRead(void *buffer, size_t bufsize) |
254 | { | |
255 | size_t ret; | |
256 | ||
257 | if (m_httpsize > 0 && m_read_bytes >= m_httpsize) | |
258 | return 0; | |
259 | ||
260 | ret = wxSocketInputStream::OnSysRead(buffer, bufsize); | |
261 | m_read_bytes += ret; | |
262 | ||
263 | return ret; | |
264 | } | |
265 | ||
f4ada568 GL |
266 | bool wxHTTP::Abort(void) |
267 | { | |
268 | return wxSocketClient::Close(); | |
269 | } | |
270 | ||
271 | wxInputStream *wxHTTP::GetInputStream(const wxString& path) | |
272 | { | |
273 | wxHTTPStream *inp_stream = new wxHTTPStream(this); | |
274 | ||
275 | if (!m_addr || m_connected) { | |
a324a7bc | 276 | m_perr = wxPROTO_CONNERR; |
f4ada568 GL |
277 | return NULL; |
278 | } | |
279 | ||
280 | if (!wxProtocol::Connect(*m_addr)) | |
281 | return NULL; | |
282 | ||
283 | if (!BuildRequest(path, wxHTTP_GET)) | |
284 | return NULL; | |
285 | ||
4846abaf OK |
286 | if (!GetHeader(_T("Content-Length")).IsEmpty()) |
287 | inp_stream->m_httpsize = wxAtoi(WXSTRINGCAST GetHeader(_T("Content-Length"))); | |
a324a7bc GL |
288 | else |
289 | inp_stream->m_httpsize = (size_t)-1; | |
290 | ||
291 | inp_stream->m_read_bytes = 0; | |
292 | ||
293 | Notify(FALSE); | |
9a1b2c28 | 294 | |
f4ada568 GL |
295 | return inp_stream; |
296 | } | |
35a4dab7 GL |
297 | |
298 | #endif | |
299 | // wxUSE_SOCKETS |