dpwsockx: Implementation of SPInit
[wine/gsoc_dplay.git] / dlls / urlmon / protocol.c
blob9b25cbf43073290cb9e9fcd47b55b83bf22181d5
1 /*
2 * Copyright 2007 Misha Koshelev
3 * Copyright 2009 Jacek Caban for CodeWeavers
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #include "urlmon_main.h"
22 #include "wine/debug.h"
24 WINE_DEFAULT_DEBUG_CHANNEL(urlmon);
26 /* Flags are needed for, among other things, return HRESULTs from the Read function
27 * to conform to native. For example, Read returns:
29 * 1. E_PENDING if called before the request has completed,
30 * (flags = 0)
31 * 2. S_FALSE after all data has been read and S_OK has been reported,
32 * (flags = FLAG_REQUEST_COMPLETE | FLAG_ALL_DATA_READ | FLAG_RESULT_REPORTED)
33 * 3. INET_E_DATA_NOT_AVAILABLE if InternetQueryDataAvailable fails. The first time
34 * this occurs, INET_E_DATA_NOT_AVAILABLE will also be reported to the sink,
35 * (flags = FLAG_REQUEST_COMPLETE)
36 * but upon subsequent calls to Read no reporting will take place, yet
37 * InternetQueryDataAvailable will still be called, and, on failure,
38 * INET_E_DATA_NOT_AVAILABLE will still be returned.
39 * (flags = FLAG_REQUEST_COMPLETE | FLAG_RESULT_REPORTED)
41 * FLAG_FIRST_DATA_REPORTED and FLAG_LAST_DATA_REPORTED are needed for proper
42 * ReportData reporting. For example, if OnResponse returns S_OK, Continue will
43 * report BSCF_FIRSTDATANOTIFICATION, and when all data has been read Read will
44 * report BSCF_INTERMEDIATEDATANOTIFICATION|BSCF_LASTDATANOTIFICATION. However,
45 * if OnResponse does not return S_OK, Continue will not report data, and Read
46 * will report BSCF_FIRSTDATANOTIFICATION|BSCF_LASTDATANOTIFICATION when all
47 * data has been read.
49 #define FLAG_REQUEST_COMPLETE 0x0001
50 #define FLAG_FIRST_CONTINUE_COMPLETE 0x0002
51 #define FLAG_FIRST_DATA_REPORTED 0x0004
52 #define FLAG_ALL_DATA_READ 0x0008
53 #define FLAG_LAST_DATA_REPORTED 0x0010
54 #define FLAG_RESULT_REPORTED 0x0020
56 static inline HRESULT report_progress(Protocol *protocol, ULONG status_code, LPCWSTR status_text)
58 return IInternetProtocolSink_ReportProgress(protocol->protocol_sink, status_code, status_text);
61 static inline HRESULT report_result(Protocol *protocol, HRESULT hres)
63 if (!(protocol->flags & FLAG_RESULT_REPORTED) && protocol->protocol_sink) {
64 protocol->flags |= FLAG_RESULT_REPORTED;
65 IInternetProtocolSink_ReportResult(protocol->protocol_sink, hres, 0, NULL);
68 return hres;
71 static void report_data(Protocol *protocol)
73 DWORD bscf;
75 if((protocol->flags & FLAG_LAST_DATA_REPORTED) || !protocol->protocol_sink)
76 return;
78 if(protocol->flags & FLAG_FIRST_DATA_REPORTED) {
79 bscf = BSCF_INTERMEDIATEDATANOTIFICATION;
80 }else {
81 protocol->flags |= FLAG_FIRST_DATA_REPORTED;
82 bscf = BSCF_FIRSTDATANOTIFICATION;
85 if(protocol->flags & FLAG_ALL_DATA_READ && !(protocol->flags & FLAG_LAST_DATA_REPORTED)) {
86 protocol->flags |= FLAG_LAST_DATA_REPORTED;
87 bscf |= BSCF_LASTDATANOTIFICATION;
90 IInternetProtocolSink_ReportData(protocol->protocol_sink, bscf,
91 protocol->current_position+protocol->available_bytes,
92 protocol->content_length);
95 static void all_data_read(Protocol *protocol)
97 protocol->flags |= FLAG_ALL_DATA_READ;
99 report_data(protocol);
100 report_result(protocol, S_OK);
103 static void request_complete(Protocol *protocol, INTERNET_ASYNC_RESULT *ar)
105 PROTOCOLDATA data;
107 if(!ar->dwResult) {
108 WARN("request failed: %d\n", ar->dwError);
109 return;
112 protocol->flags |= FLAG_REQUEST_COMPLETE;
114 if(!protocol->request) {
115 TRACE("setting request handle %p\n", (HINTERNET)ar->dwResult);
116 protocol->request = (HINTERNET)ar->dwResult;
119 /* PROTOCOLDATA same as native */
120 memset(&data, 0, sizeof(data));
121 data.dwState = 0xf1000000;
122 if(protocol->flags & FLAG_FIRST_CONTINUE_COMPLETE)
123 data.pData = (LPVOID)BINDSTATUS_ENDDOWNLOADCOMPONENTS;
124 else
125 data.pData = (LPVOID)BINDSTATUS_DOWNLOADINGDATA;
127 if (protocol->bindf & BINDF_FROMURLMON)
128 IInternetProtocolSink_Switch(protocol->protocol_sink, &data);
129 else
130 protocol_continue(protocol, &data);
133 static void WINAPI internet_status_callback(HINTERNET internet, DWORD_PTR context,
134 DWORD internet_status, LPVOID status_info, DWORD status_info_len)
136 Protocol *protocol = (Protocol*)context;
138 switch(internet_status) {
139 case INTERNET_STATUS_RESOLVING_NAME:
140 TRACE("%p INTERNET_STATUS_RESOLVING_NAME\n", protocol);
141 report_progress(protocol, BINDSTATUS_FINDINGRESOURCE, (LPWSTR)status_info);
142 break;
144 case INTERNET_STATUS_CONNECTING_TO_SERVER:
145 TRACE("%p INTERNET_STATUS_CONNECTING_TO_SERVER\n", protocol);
146 report_progress(protocol, BINDSTATUS_CONNECTING, (LPWSTR)status_info);
147 break;
149 case INTERNET_STATUS_SENDING_REQUEST:
150 TRACE("%p INTERNET_STATUS_SENDING_REQUEST\n", protocol);
151 report_progress(protocol, BINDSTATUS_SENDINGREQUEST, (LPWSTR)status_info);
152 break;
154 case INTERNET_STATUS_REQUEST_COMPLETE:
155 request_complete(protocol, status_info);
156 break;
158 case INTERNET_STATUS_HANDLE_CREATED:
159 TRACE("%p INTERNET_STATUS_HANDLE_CREATED\n", protocol);
160 IInternetProtocol_AddRef(protocol->protocol);
161 break;
163 case INTERNET_STATUS_HANDLE_CLOSING:
164 TRACE("%p INTERNET_STATUS_HANDLE_CLOSING\n", protocol);
166 if(*(HINTERNET *)status_info == protocol->request) {
167 protocol->request = NULL;
168 if(protocol->protocol_sink) {
169 IInternetProtocolSink_Release(protocol->protocol_sink);
170 protocol->protocol_sink = NULL;
173 if(protocol->bind_info.cbSize) {
174 ReleaseBindInfo(&protocol->bind_info);
175 memset(&protocol->bind_info, 0, sizeof(protocol->bind_info));
177 }else if(*(HINTERNET *)status_info == protocol->connection) {
178 protocol->connection = NULL;
181 IInternetProtocol_Release(protocol->protocol);
182 break;
184 default:
185 WARN("Unhandled Internet status callback %d\n", internet_status);
189 static HINTERNET create_internet_session(IInternetBindInfo *bind_info)
191 LPWSTR global_user_agent = NULL;
192 LPOLESTR user_agent = NULL;
193 ULONG size = 0;
194 HINTERNET ret;
195 HRESULT hres;
197 hres = IInternetBindInfo_GetBindString(bind_info, BINDSTRING_USER_AGENT, &user_agent, 1, &size);
198 if(hres != S_OK || !size)
199 global_user_agent = get_useragent();
201 ret = InternetOpenW(user_agent ? user_agent : global_user_agent, 0, NULL, NULL, INTERNET_FLAG_ASYNC);
202 heap_free(global_user_agent);
203 CoTaskMemFree(user_agent);
204 if(!ret) {
205 WARN("InternetOpen failed: %d\n", GetLastError());
206 return NULL;
209 InternetSetStatusCallbackW(ret, internet_status_callback);
210 return ret;
213 static HINTERNET internet_session;
215 HINTERNET get_internet_session(IInternetBindInfo *bind_info)
217 HINTERNET new_session;
219 if(internet_session)
220 return internet_session;
222 if(!bind_info)
223 return NULL;
225 new_session = create_internet_session(bind_info);
226 if(new_session && InterlockedCompareExchangePointer((void**)&internet_session, new_session, NULL))
227 InternetCloseHandle(new_session);
229 return internet_session;
232 HRESULT protocol_start(Protocol *protocol, IInternetProtocol *prot, LPCWSTR url,
233 IInternetProtocolSink *protocol_sink, IInternetBindInfo *bind_info)
235 DWORD request_flags;
236 HRESULT hres;
238 protocol->protocol = prot;
240 IInternetProtocolSink_AddRef(protocol_sink);
241 protocol->protocol_sink = protocol_sink;
243 memset(&protocol->bind_info, 0, sizeof(protocol->bind_info));
244 protocol->bind_info.cbSize = sizeof(BINDINFO);
245 hres = IInternetBindInfo_GetBindInfo(bind_info, &protocol->bindf, &protocol->bind_info);
246 if(hres != S_OK) {
247 WARN("GetBindInfo failed: %08x\n", hres);
248 return report_result(protocol, hres);
251 if(!(protocol->bindf & BINDF_FROMURLMON))
252 report_progress(protocol, BINDSTATUS_DIRECTBIND, NULL);
254 if(!get_internet_session(bind_info))
255 return report_result(protocol, INET_E_NO_SESSION);
257 request_flags = INTERNET_FLAG_KEEP_CONNECTION;
258 if(protocol->bindf & BINDF_NOWRITECACHE)
259 request_flags |= INTERNET_FLAG_NO_CACHE_WRITE;
260 if(protocol->bindf & BINDF_NEEDFILE)
261 request_flags |= INTERNET_FLAG_NEED_FILE;
263 hres = protocol->vtbl->open_request(protocol, url, request_flags, internet_session, bind_info);
264 if(FAILED(hres)) {
265 protocol_close_connection(protocol);
266 return report_result(protocol, hres);
269 return S_OK;
272 HRESULT protocol_continue(Protocol *protocol, PROTOCOLDATA *data)
274 HRESULT hres;
276 if (!data) {
277 WARN("Expected pProtocolData to be non-NULL\n");
278 return S_OK;
281 if(!protocol->request) {
282 WARN("Expected request to be non-NULL\n");
283 return S_OK;
286 if(!protocol->protocol_sink) {
287 WARN("Expected IInternetProtocolSink pointer to be non-NULL\n");
288 return S_OK;
291 if(data->pData == (LPVOID)BINDSTATUS_DOWNLOADINGDATA) {
292 hres = protocol->vtbl->start_downloading(protocol);
293 if(FAILED(hres)) {
294 protocol_close_connection(protocol);
295 report_result(protocol, hres);
296 return S_OK;
299 if(protocol->bindf & BINDF_NEEDFILE) {
300 WCHAR cache_file[MAX_PATH];
301 DWORD buflen = sizeof(cache_file);
303 if(InternetQueryOptionW(protocol->request, INTERNET_OPTION_DATAFILE_NAME,
304 cache_file, &buflen)) {
305 report_progress(protocol, BINDSTATUS_CACHEFILENAMEAVAILABLE, cache_file);
306 }else {
307 FIXME("Could not get cache file\n");
311 protocol->flags |= FLAG_FIRST_CONTINUE_COMPLETE;
314 if(data->pData >= (LPVOID)BINDSTATUS_DOWNLOADINGDATA) {
315 BOOL res;
317 /* InternetQueryDataAvailable may immediately fork and perform its asynchronous
318 * read, so clear the flag _before_ calling so it does not incorrectly get cleared
319 * after the status callback is called */
320 protocol->flags &= ~FLAG_REQUEST_COMPLETE;
321 res = InternetQueryDataAvailable(protocol->request, &protocol->available_bytes, 0, 0);
322 if(res) {
323 protocol->flags |= FLAG_REQUEST_COMPLETE;
324 report_data(protocol);
325 }else if(GetLastError() != ERROR_IO_PENDING) {
326 protocol->flags |= FLAG_REQUEST_COMPLETE;
327 WARN("InternetQueryDataAvailable failed: %d\n", GetLastError());
328 report_result(protocol, INET_E_DATA_NOT_AVAILABLE);
332 return S_OK;
335 HRESULT protocol_read(Protocol *protocol, void *buf, ULONG size, ULONG *read_ret)
337 ULONG read = 0;
338 BOOL res;
339 HRESULT hres = S_FALSE;
341 if(protocol->flags & FLAG_ALL_DATA_READ) {
342 *read_ret = 0;
343 return S_FALSE;
346 if(!(protocol->flags & FLAG_REQUEST_COMPLETE)) {
347 *read_ret = 0;
348 return E_PENDING;
351 while(read < size) {
352 if(protocol->available_bytes) {
353 ULONG len;
355 res = InternetReadFile(protocol->request, ((BYTE *)buf)+read,
356 protocol->available_bytes > size-read ? size-read : protocol->available_bytes, &len);
357 if(!res) {
358 WARN("InternetReadFile failed: %d\n", GetLastError());
359 hres = INET_E_DOWNLOAD_FAILURE;
360 report_result(protocol, hres);
361 break;
364 if(!len) {
365 all_data_read(protocol);
366 break;
369 read += len;
370 protocol->current_position += len;
371 protocol->available_bytes -= len;
372 }else {
373 /* InternetQueryDataAvailable may immediately fork and perform its asynchronous
374 * read, so clear the flag _before_ calling so it does not incorrectly get cleared
375 * after the status callback is called */
376 protocol->flags &= ~FLAG_REQUEST_COMPLETE;
377 res = InternetQueryDataAvailable(protocol->request, &protocol->available_bytes, 0, 0);
378 if(!res) {
379 if (GetLastError() == ERROR_IO_PENDING) {
380 hres = E_PENDING;
381 }else {
382 WARN("InternetQueryDataAvailable failed: %d\n", GetLastError());
383 hres = INET_E_DATA_NOT_AVAILABLE;
384 report_result(protocol, hres);
386 break;
389 if(!protocol->available_bytes) {
390 all_data_read(protocol);
391 break;
396 *read_ret = read;
398 if (hres != E_PENDING)
399 protocol->flags |= FLAG_REQUEST_COMPLETE;
400 if(FAILED(hres))
401 return hres;
403 return read ? S_OK : S_FALSE;
406 HRESULT protocol_lock_request(Protocol *protocol)
408 if (!InternetLockRequestFile(protocol->request, &protocol->lock))
409 WARN("InternetLockRequest failed: %d\n", GetLastError());
411 return S_OK;
414 HRESULT protocol_unlock_request(Protocol *protocol)
416 if(!protocol->lock)
417 return S_OK;
419 if(!InternetUnlockRequestFile(protocol->lock))
420 WARN("InternetUnlockRequest failed: %d\n", GetLastError());
421 protocol->lock = 0;
423 return S_OK;
426 void protocol_close_connection(Protocol *protocol)
428 protocol->vtbl->close_connection(protocol);
430 if(protocol->request)
431 InternetCloseHandle(protocol->request);
433 if(protocol->connection)
434 InternetCloseHandle(protocol->connection);
436 protocol->flags = 0;