2 * Copyright 2005 Jacek Caban
3 * Copyright 2007 Misha Koshelev
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
22 * - Handle redirects as native.
25 #include "urlmon_main.h"
28 #include "wine/debug.h"
30 WINE_DEFAULT_DEBUG_CHANNEL(urlmon);
32 /* Flags are needed for, among other things, return HRESULTs from the Read function
33 * to conform to native. For example, Read returns:
35 * 1. E_PENDING if called before the request has completed,
37 * 2. S_FALSE after all data has been read and S_OK has been reported,
38 * (flags = FLAG_REQUEST_COMPLETE | FLAG_ALL_DATA_READ | FLAG_RESULT_REPORTED)
39 * 3. INET_E_DATA_NOT_AVAILABLE if InternetQueryDataAvailable fails. The first time
40 * this occurs, INET_E_DATA_NOT_AVAILABLE will also be reported to the sink,
41 * (flags = FLAG_REQUEST_COMPLETE)
42 * but upon subsequent calls to Read no reporting will take place, yet
43 * InternetQueryDataAvailable will still be called, and, on failure,
44 * INET_E_DATA_NOT_AVAILABLE will still be returned.
45 * (flags = FLAG_REQUEST_COMPLETE | FLAG_RESULT_REPORTED)
47 * FLAG_FIRST_DATA_REPORTED and FLAG_LAST_DATA_REPORTED are needed for proper
48 * ReportData reporting. For example, if OnResponse returns S_OK, Continue will
49 * report BSCF_FIRSTDATANOTIFICATION, and when all data has been read Read will
50 * report BSCF_INTERMEDIATEDATANOTIFICATION|BSCF_LASTDATANOTIFICATION. However,
51 * if OnResponse does not return S_OK, Continue will not report data, and Read
52 * will report BSCF_FIRSTDATANOTIFICATION|BSCF_LASTDATANOTIFICATION when all
55 #define FLAG_REQUEST_COMPLETE 0x1
56 #define FLAG_FIRST_CONTINUE_COMPLETE 0x2
57 #define FLAG_FIRST_DATA_REPORTED 0x4
58 #define FLAG_ALL_DATA_READ 0x8
59 #define FLAG_LAST_DATA_REPORTED 0x10
60 #define FLAG_RESULT_REPORTED 0x20
63 const IInternetProtocolVtbl *lpInternetProtocolVtbl;
64 const IInternetPriorityVtbl *lpInternetPriorityVtbl;
66 DWORD flags, grfBINDF;
68 IInternetProtocolSink *protocol_sink;
69 IHttpNegotiate *http_negotiate;
70 HINTERNET internet, connect, request;
73 ULONG current_position, content_length, available_bytes;
79 /* Default headers from native */
80 static const WCHAR wszHeaders[] = {'A','c','c','e','p','t','-','E','n','c','o','d','i','n','g',
81 ':',' ','g','z','i','p',',',' ','d','e','f','l','a','t','e',0};
87 static void HTTPPROTOCOL_ReportResult(HttpProtocol *This, HRESULT hres)
89 if (!(This->flags & FLAG_RESULT_REPORTED) &&
92 This->flags |= FLAG_RESULT_REPORTED;
93 IInternetProtocolSink_ReportResult(This->protocol_sink, hres, 0, NULL);
97 static void HTTPPROTOCOL_ReportData(HttpProtocol *This)
100 if (!(This->flags & FLAG_LAST_DATA_REPORTED) &&
103 if (This->flags & FLAG_FIRST_DATA_REPORTED)
105 bscf = BSCF_INTERMEDIATEDATANOTIFICATION;
109 This->flags |= FLAG_FIRST_DATA_REPORTED;
110 bscf = BSCF_FIRSTDATANOTIFICATION;
112 if (This->flags & FLAG_ALL_DATA_READ &&
113 !(This->flags & FLAG_LAST_DATA_REPORTED))
115 This->flags |= FLAG_LAST_DATA_REPORTED;
116 bscf |= BSCF_LASTDATANOTIFICATION;
118 IInternetProtocolSink_ReportData(This->protocol_sink, bscf,
119 This->current_position+This->available_bytes,
120 This->content_length);
124 static void HTTPPROTOCOL_AllDataRead(HttpProtocol *This)
126 if (!(This->flags & FLAG_ALL_DATA_READ))
127 This->flags |= FLAG_ALL_DATA_READ;
128 HTTPPROTOCOL_ReportData(This);
129 HTTPPROTOCOL_ReportResult(This, S_OK);
132 static void HTTPPROTOCOL_Close(HttpProtocol *This)
134 if (This->http_negotiate)
136 IHttpNegotiate_Release(This->http_negotiate);
137 This->http_negotiate = 0;
140 InternetCloseHandle(This->request);
142 InternetCloseHandle(This->connect);
145 InternetCloseHandle(This->internet);
148 if (This->full_header)
150 if (This->full_header != wszHeaders)
151 heap_free(This->full_header);
152 This->full_header = 0;
157 static void CALLBACK HTTPPROTOCOL_InternetStatusCallback(
158 HINTERNET hInternet, DWORD_PTR dwContext, DWORD dwInternetStatus,
159 LPVOID lpvStatusInformation, DWORD dwStatusInformationLength)
161 HttpProtocol *This = (HttpProtocol *)dwContext;
165 switch (dwInternetStatus)
167 case INTERNET_STATUS_RESOLVING_NAME:
168 ulStatusCode = BINDSTATUS_FINDINGRESOURCE;
170 case INTERNET_STATUS_CONNECTING_TO_SERVER:
171 ulStatusCode = BINDSTATUS_CONNECTING;
173 case INTERNET_STATUS_SENDING_REQUEST:
174 ulStatusCode = BINDSTATUS_SENDINGREQUEST;
176 case INTERNET_STATUS_REQUEST_COMPLETE:
177 This->flags |= FLAG_REQUEST_COMPLETE;
178 /* PROTOCOLDATA same as native */
179 memset(&data, 0, sizeof(data));
180 data.dwState = 0xf1000000;
181 if (This->flags & FLAG_FIRST_CONTINUE_COMPLETE)
182 data.pData = (LPVOID)BINDSTATUS_ENDDOWNLOADCOMPONENTS;
184 data.pData = (LPVOID)BINDSTATUS_DOWNLOADINGDATA;
185 if (This->grfBINDF & BINDF_FROMURLMON)
186 IInternetProtocolSink_Switch(This->protocol_sink, &data);
188 IInternetProtocol_Continue((IInternetProtocol *)This, &data);
190 case INTERNET_STATUS_HANDLE_CREATED:
191 IInternetProtocol_AddRef((IInternetProtocol *)This);
193 case INTERNET_STATUS_HANDLE_CLOSING:
194 if (*(HINTERNET *)lpvStatusInformation == This->connect)
198 else if (*(HINTERNET *)lpvStatusInformation == This->request)
201 if (This->protocol_sink)
203 IInternetProtocolSink_Release(This->protocol_sink);
204 This->protocol_sink = 0;
206 if (This->bind_info.cbSize)
208 ReleaseBindInfo(&This->bind_info);
209 memset(&This->bind_info, 0, sizeof(This->bind_info));
212 IInternetProtocol_Release((IInternetProtocol *)This);
215 WARN("Unhandled Internet status callback %d\n", dwInternetStatus);
219 IInternetProtocolSink_ReportProgress(This->protocol_sink, ulStatusCode, (LPWSTR)lpvStatusInformation);
222 static inline LPWSTR strndupW(LPCWSTR string, int len)
226 (ret = heap_alloc((len+1)*sizeof(WCHAR))) != NULL)
228 memcpy(ret, string, len*sizeof(WCHAR));
235 * Interface implementations
238 #define PROTOCOL(x) ((IInternetProtocol*) &(x)->lpInternetProtocolVtbl)
239 #define PRIORITY(x) ((IInternetPriority*) &(x)->lpInternetPriorityVtbl)
241 #define PROTOCOL_THIS(iface) DEFINE_THIS(HttpProtocol, InternetProtocol, iface)
243 static HRESULT WINAPI HttpProtocol_QueryInterface(IInternetProtocol *iface, REFIID riid, void **ppv)
245 HttpProtocol *This = PROTOCOL_THIS(iface);
248 if(IsEqualGUID(&IID_IUnknown, riid)) {
249 TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
250 *ppv = PROTOCOL(This);
251 }else if(IsEqualGUID(&IID_IInternetProtocolRoot, riid)) {
252 TRACE("(%p)->(IID_IInternetProtocolRoot %p)\n", This, ppv);
253 *ppv = PROTOCOL(This);
254 }else if(IsEqualGUID(&IID_IInternetProtocol, riid)) {
255 TRACE("(%p)->(IID_IInternetProtocol %p)\n", This, ppv);
256 *ppv = PROTOCOL(This);
257 }else if(IsEqualGUID(&IID_IInternetPriority, riid)) {
258 TRACE("(%p)->(IID_IInternetPriority %p)\n", This, ppv);
259 *ppv = PRIORITY(This);
263 IInternetProtocol_AddRef(iface);
267 WARN("not supported interface %s\n", debugstr_guid(riid));
268 return E_NOINTERFACE;
271 static ULONG WINAPI HttpProtocol_AddRef(IInternetProtocol *iface)
273 HttpProtocol *This = PROTOCOL_THIS(iface);
274 LONG ref = InterlockedIncrement(&This->ref);
275 TRACE("(%p) ref=%d\n", This, ref);
279 static ULONG WINAPI HttpProtocol_Release(IInternetProtocol *iface)
281 HttpProtocol *This = PROTOCOL_THIS(iface);
282 LONG ref = InterlockedDecrement(&This->ref);
284 TRACE("(%p) ref=%d\n", This, ref);
287 HTTPPROTOCOL_Close(This);
290 URLMON_UnlockModule();
296 static HRESULT WINAPI HttpProtocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
297 IInternetProtocolSink *pOIProtSink, IInternetBindInfo *pOIBindInfo,
298 DWORD grfPI, DWORD dwReserved)
300 HttpProtocol *This = PROTOCOL_THIS(iface);
302 DWORD len = 0, request_flags = INTERNET_FLAG_KEEP_CONNECTION;
304 IServiceProvider *service_provider = 0;
305 IHttpNegotiate2 *http_negotiate2 = 0;
306 LPWSTR host = 0, path = 0, user = 0, pass = 0, addl_header = 0,
307 post_cookie = 0, optional = 0;
308 BYTE security_id[512];
309 LPOLESTR user_agent = NULL, accept_mimes[257];
312 static const WCHAR wszHttp[] = {'h','t','t','p',':'};
313 static const WCHAR wszBindVerb[BINDVERB_CUSTOM][5] =
318 TRACE("(%p)->(%s %p %p %08x %d)\n", This, debugstr_w(szUrl), pOIProtSink,
319 pOIBindInfo, grfPI, dwReserved);
321 IInternetProtocolSink_AddRef(pOIProtSink);
322 This->protocol_sink = pOIProtSink;
324 memset(&This->bind_info, 0, sizeof(This->bind_info));
325 This->bind_info.cbSize = sizeof(BINDINFO);
326 hres = IInternetBindInfo_GetBindInfo(pOIBindInfo, &This->grfBINDF, &This->bind_info);
329 WARN("GetBindInfo failed: %08x\n", hres);
333 if (lstrlenW(szUrl) < sizeof(wszHttp)/sizeof(WCHAR)
334 || memcmp(szUrl, wszHttp, sizeof(wszHttp)))
340 memset(&url, 0, sizeof(url));
341 url.dwStructSize = sizeof(url);
342 url.dwSchemeLength = url.dwHostNameLength = url.dwUrlPathLength = url.dwUserNameLength =
343 url.dwPasswordLength = 1;
344 if (!InternetCrackUrlW(szUrl, 0, 0, &url))
349 host = strndupW(url.lpszHostName, url.dwHostNameLength);
350 path = strndupW(url.lpszUrlPath, url.dwUrlPathLength);
351 user = strndupW(url.lpszUserName, url.dwUserNameLength);
352 pass = strndupW(url.lpszPassword, url.dwPasswordLength);
354 url.nPort = INTERNET_DEFAULT_HTTP_PORT;
356 if(!(This->grfBINDF & BINDF_FROMURLMON))
357 IInternetProtocolSink_ReportProgress(This->protocol_sink, BINDSTATUS_DIRECTBIND, NULL);
359 hres = IInternetBindInfo_GetBindString(pOIBindInfo, BINDSTRING_USER_AGENT, &user_agent,
361 if (hres != S_OK || !num)
364 LPSTR user_agenta = NULL;
366 if ((hres = ObtainUserAgentString(0, &null_char, &len)) != E_OUTOFMEMORY)
368 WARN("ObtainUserAgentString failed: %08x\n", hres);
370 else if (!(user_agenta = heap_alloc(len*sizeof(CHAR))))
372 WARN("Out of memory\n");
374 else if ((hres = ObtainUserAgentString(0, user_agenta, &len)) != S_OK)
376 WARN("ObtainUserAgentString failed: %08x\n", hres);
380 if (!(user_agent = CoTaskMemAlloc((len)*sizeof(WCHAR))))
381 WARN("Out of memory\n");
383 MultiByteToWideChar(CP_ACP, 0, user_agenta, -1, user_agent, len);
385 heap_free(user_agenta);
388 This->internet = InternetOpenW(user_agent, 0, NULL, NULL, INTERNET_FLAG_ASYNC);
391 WARN("InternetOpen failed: %d\n", GetLastError());
392 hres = INET_E_NO_SESSION;
396 /* Native does not check for success of next call, so we won't either */
397 InternetSetStatusCallbackW(This->internet, HTTPPROTOCOL_InternetStatusCallback);
399 This->connect = InternetConnectW(This->internet, host, url.nPort, user,
400 pass, INTERNET_SERVICE_HTTP, 0, (DWORD)This);
403 WARN("InternetConnect failed: %d\n", GetLastError());
404 hres = INET_E_CANNOT_CONNECT;
408 num = sizeof(accept_mimes)/sizeof(accept_mimes[0])-1;
409 hres = IInternetBindInfo_GetBindString(pOIBindInfo, BINDSTRING_ACCEPT_MIMES,
414 WARN("GetBindString BINDSTRING_ACCEPT_MIMES failed: %08x\n", hres);
415 hres = INET_E_NO_VALID_MEDIA;
418 accept_mimes[num] = 0;
420 if (This->grfBINDF & BINDF_NOWRITECACHE)
421 request_flags |= INTERNET_FLAG_NO_CACHE_WRITE;
422 if (This->grfBINDF & BINDF_NEEDFILE)
423 request_flags |= INTERNET_FLAG_NEED_FILE;
424 This->request = HttpOpenRequestW(This->connect, This->bind_info.dwBindVerb < BINDVERB_CUSTOM ?
425 wszBindVerb[This->bind_info.dwBindVerb] :
426 This->bind_info.szCustomVerb,
427 path, NULL, NULL, (LPCWSTR *)accept_mimes,
428 request_flags, (DWORD)This);
431 WARN("HttpOpenRequest failed: %d\n", GetLastError());
432 hres = INET_E_RESOURCE_NOT_FOUND;
436 hres = IInternetProtocolSink_QueryInterface(This->protocol_sink, &IID_IServiceProvider,
437 (void **)&service_provider);
440 WARN("IInternetProtocolSink_QueryInterface IID_IServiceProvider failed: %08x\n", hres);
444 hres = IServiceProvider_QueryService(service_provider, &IID_IHttpNegotiate,
445 &IID_IHttpNegotiate, (void **)&This->http_negotiate);
448 WARN("IServiceProvider_QueryService IID_IHttpNegotiate failed: %08x\n", hres);
452 hres = IHttpNegotiate_BeginningTransaction(This->http_negotiate, szUrl, wszHeaders,
456 WARN("IHttpNegotiate_BeginningTransaction failed: %08x\n", hres);
459 else if (addl_header == NULL)
461 This->full_header = (LPWSTR)wszHeaders;
465 int len_addl_header = lstrlenW(addl_header);
466 This->full_header = heap_alloc(len_addl_header*sizeof(WCHAR)+sizeof(wszHeaders));
467 if (!This->full_header)
469 WARN("Out of memory\n");
470 hres = E_OUTOFMEMORY;
473 lstrcpyW(This->full_header, addl_header);
474 lstrcpyW(&This->full_header[len_addl_header], wszHeaders);
477 hres = IServiceProvider_QueryService(service_provider, &IID_IHttpNegotiate2,
478 &IID_IHttpNegotiate2, (void **)&http_negotiate2);
481 WARN("IServiceProvider_QueryService IID_IHttpNegotiate2 failed: %08x\n", hres);
482 /* No goto done as per native */
486 len = sizeof(security_id)/sizeof(security_id[0]);
487 hres = IHttpNegotiate2_GetRootSecurityId(http_negotiate2, security_id, &len, 0);
490 WARN("IHttpNegotiate2_GetRootSecurityId failed: %08x\n", hres);
491 /* No goto done as per native */
495 /* FIXME: Handle security_id. Native calls undocumented function IsHostInProxyBypassList. */
497 if (This->bind_info.dwBindVerb == BINDVERB_POST)
500 hres = IInternetBindInfo_GetBindString(pOIBindInfo, BINDSTRING_POST_COOKIE, &post_cookie,
502 if (hres == S_OK && num &&
503 !InternetSetOptionW(This->request, INTERNET_OPTION_SECONDARY_CACHE_KEY,
504 post_cookie, lstrlenW(post_cookie)))
506 WARN("InternetSetOption INTERNET_OPTION_SECONDARY_CACHE_KEY failed: %d\n",
511 if (This->bind_info.dwBindVerb != BINDVERB_GET)
513 /* Native does not use GlobalLock/GlobalUnlock, so we won't either */
514 if (This->bind_info.stgmedData.tymed != TYMED_HGLOBAL)
515 WARN("Expected This->bind_info.stgmedData.tymed to be TYMED_HGLOBAL, not %d\n",
516 This->bind_info.stgmedData.tymed);
518 optional = (LPWSTR)This->bind_info.stgmedData.u.hGlobal;
520 if (!HttpSendRequestW(This->request, This->full_header, lstrlenW(This->full_header),
522 optional ? This->bind_info.cbstgmedData : 0) &&
523 GetLastError() != ERROR_IO_PENDING)
525 WARN("HttpSendRequest failed: %d\n", GetLastError());
526 hres = INET_E_DOWNLOAD_FAILURE;
534 IInternetProtocolSink_ReportResult(This->protocol_sink, hres, 0, NULL);
535 HTTPPROTOCOL_Close(This);
538 CoTaskMemFree(post_cookie);
539 CoTaskMemFree(addl_header);
541 IHttpNegotiate2_Release(http_negotiate2);
542 if (service_provider)
543 IServiceProvider_Release(service_provider);
545 while (num<sizeof(accept_mimes)/sizeof(accept_mimes[0]) &&
547 CoTaskMemFree(accept_mimes[num++]);
548 CoTaskMemFree(user_agent);
558 static HRESULT WINAPI HttpProtocol_Continue(IInternetProtocol *iface, PROTOCOLDATA *pProtocolData)
560 HttpProtocol *This = PROTOCOL_THIS(iface);
561 DWORD len = sizeof(DWORD), status_code;
562 LPWSTR response_headers = 0, content_type = 0, content_length = 0;
564 static const WCHAR wszDefaultContentType[] =
565 {'t','e','x','t','/','h','t','m','l',0};
567 TRACE("(%p)->(%p)\n", This, pProtocolData);
571 WARN("Expected pProtocolData to be non-NULL\n");
574 else if (!This->request)
576 WARN("Expected request to be non-NULL\n");
579 else if (!This->http_negotiate)
581 WARN("Expected IHttpNegotiate pointer to be non-NULL\n");
584 else if (!This->protocol_sink)
586 WARN("Expected IInternetProtocolSink pointer to be non-NULL\n");
590 if (pProtocolData->pData == (LPVOID)BINDSTATUS_DOWNLOADINGDATA)
592 if (!HttpQueryInfoW(This->request, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER,
593 &status_code, &len, NULL))
595 WARN("HttpQueryInfo failed: %d\n", GetLastError());
600 if ((!HttpQueryInfoW(This->request, HTTP_QUERY_RAW_HEADERS_CRLF, response_headers, &len,
602 GetLastError() != ERROR_INSUFFICIENT_BUFFER) ||
603 !(response_headers = heap_alloc(len)) ||
604 !HttpQueryInfoW(This->request, HTTP_QUERY_RAW_HEADERS_CRLF, response_headers, &len,
607 WARN("HttpQueryInfo failed: %d\n", GetLastError());
611 HRESULT hres = IHttpNegotiate_OnResponse(This->http_negotiate, status_code,
612 response_headers, NULL, NULL);
615 WARN("IHttpNegotiate_OnResponse failed: %08x\n", hres);
622 if ((!HttpQueryInfoW(This->request, HTTP_QUERY_CONTENT_TYPE, content_type, &len, NULL) &&
623 GetLastError() != ERROR_INSUFFICIENT_BUFFER) ||
624 !(content_type = heap_alloc(len)) ||
625 !HttpQueryInfoW(This->request, HTTP_QUERY_CONTENT_TYPE, content_type, &len, NULL))
627 WARN("HttpQueryInfo failed: %d\n", GetLastError());
628 IInternetProtocolSink_ReportProgress(This->protocol_sink,
629 (This->grfBINDF & BINDF_FROMURLMON) ?
630 BINDSTATUS_MIMETYPEAVAILABLE :
631 BINDSTATUS_RAWMIMETYPE,
632 wszDefaultContentType);
636 /* remove the charset, if present */
637 LPWSTR p = strchrW(content_type, ';');
640 IInternetProtocolSink_ReportProgress(This->protocol_sink,
641 (This->grfBINDF & BINDF_FROMURLMON) ?
642 BINDSTATUS_MIMETYPEAVAILABLE :
643 BINDSTATUS_RAWMIMETYPE,
648 if ((!HttpQueryInfoW(This->request, HTTP_QUERY_CONTENT_LENGTH, content_length, &len, NULL) &&
649 GetLastError() != ERROR_INSUFFICIENT_BUFFER) ||
650 !(content_length = heap_alloc(len)) ||
651 !HttpQueryInfoW(This->request, HTTP_QUERY_CONTENT_LENGTH, content_length, &len, NULL))
653 WARN("HttpQueryInfo failed: %d\n", GetLastError());
654 This->content_length = 0;
658 This->content_length = atoiW(content_length);
661 if(This->grfBINDF & BINDF_NEEDFILE) {
662 WCHAR cache_file[MAX_PATH];
663 DWORD buflen = sizeof(cache_file);
665 if(InternetQueryOptionW(This->request, INTERNET_OPTION_DATAFILE_NAME,
666 cache_file, &buflen))
668 IInternetProtocolSink_ReportProgress(This->protocol_sink,
669 BINDSTATUS_CACHEFILENAMEAVAILABLE,
672 FIXME("Could not get cache file\n");
676 This->flags |= FLAG_FIRST_CONTINUE_COMPLETE;
679 if (pProtocolData->pData >= (LPVOID)BINDSTATUS_DOWNLOADINGDATA)
681 /* InternetQueryDataAvailable may immediately fork and perform its asynchronous
682 * read, so clear the flag _before_ calling so it does not incorrectly get cleared
683 * after the status callback is called */
684 This->flags &= ~FLAG_REQUEST_COMPLETE;
685 if (!InternetQueryDataAvailable(This->request, &This->available_bytes, 0, 0))
687 if (GetLastError() != ERROR_IO_PENDING)
689 This->flags |= FLAG_REQUEST_COMPLETE;
690 WARN("InternetQueryDataAvailable failed: %d\n", GetLastError());
691 HTTPPROTOCOL_ReportResult(This, INET_E_DATA_NOT_AVAILABLE);
696 This->flags |= FLAG_REQUEST_COMPLETE;
697 HTTPPROTOCOL_ReportData(This);
702 heap_free(response_headers);
703 heap_free(content_type);
704 heap_free(content_length);
706 /* Returns S_OK on native */
710 static HRESULT WINAPI HttpProtocol_Abort(IInternetProtocol *iface, HRESULT hrReason,
713 HttpProtocol *This = PROTOCOL_THIS(iface);
714 FIXME("(%p)->(%08x %08x)\n", This, hrReason, dwOptions);
718 static HRESULT WINAPI HttpProtocol_Terminate(IInternetProtocol *iface, DWORD dwOptions)
720 HttpProtocol *This = PROTOCOL_THIS(iface);
722 TRACE("(%p)->(%08x)\n", This, dwOptions);
723 HTTPPROTOCOL_Close(This);
728 static HRESULT WINAPI HttpProtocol_Suspend(IInternetProtocol *iface)
730 HttpProtocol *This = PROTOCOL_THIS(iface);
731 FIXME("(%p)\n", This);
735 static HRESULT WINAPI HttpProtocol_Resume(IInternetProtocol *iface)
737 HttpProtocol *This = PROTOCOL_THIS(iface);
738 FIXME("(%p)\n", This);
742 static HRESULT WINAPI HttpProtocol_Read(IInternetProtocol *iface, void *pv,
743 ULONG cb, ULONG *pcbRead)
745 HttpProtocol *This = PROTOCOL_THIS(iface);
746 ULONG read = 0, len = 0;
747 HRESULT hres = S_FALSE;
749 TRACE("(%p)->(%p %u %p)\n", This, pv, cb, pcbRead);
751 if (!(This->flags & FLAG_REQUEST_COMPLETE))
755 else while (!(This->flags & FLAG_ALL_DATA_READ) &&
758 if (This->available_bytes == 0)
760 /* InternetQueryDataAvailable may immediately fork and perform its asynchronous
761 * read, so clear the flag _before_ calling so it does not incorrectly get cleared
762 * after the status callback is called */
763 This->flags &= ~FLAG_REQUEST_COMPLETE;
764 if (!InternetQueryDataAvailable(This->request, &This->available_bytes, 0, 0))
766 if (GetLastError() == ERROR_IO_PENDING)
772 WARN("InternetQueryDataAvailable failed: %d\n", GetLastError());
773 hres = INET_E_DATA_NOT_AVAILABLE;
774 HTTPPROTOCOL_ReportResult(This, hres);
778 else if (This->available_bytes == 0)
780 HTTPPROTOCOL_AllDataRead(This);
785 if (!InternetReadFile(This->request, ((BYTE *)pv)+read,
786 This->available_bytes > cb-read ?
787 cb-read : This->available_bytes, &len))
789 WARN("InternetReadFile failed: %d\n", GetLastError());
790 hres = INET_E_DOWNLOAD_FAILURE;
791 HTTPPROTOCOL_ReportResult(This, hres);
796 HTTPPROTOCOL_AllDataRead(This);
801 This->current_position += len;
802 This->available_bytes -= len;
807 /* Per MSDN this should be if (read == cb), but native returns S_OK
808 * if any bytes were read, so we will too */
816 if (hres != E_PENDING)
817 This->flags |= FLAG_REQUEST_COMPLETE;
822 static HRESULT WINAPI HttpProtocol_Seek(IInternetProtocol *iface, LARGE_INTEGER dlibMove,
823 DWORD dwOrigin, ULARGE_INTEGER *plibNewPosition)
825 HttpProtocol *This = PROTOCOL_THIS(iface);
826 FIXME("(%p)->(%d %d %p)\n", This, dlibMove.u.LowPart, dwOrigin, plibNewPosition);
830 static HRESULT WINAPI HttpProtocol_LockRequest(IInternetProtocol *iface, DWORD dwOptions)
832 HttpProtocol *This = PROTOCOL_THIS(iface);
834 TRACE("(%p)->(%08x)\n", This, dwOptions);
836 if (!InternetLockRequestFile(This->request, &This->lock))
837 WARN("InternetLockRequest failed: %d\n", GetLastError());
842 static HRESULT WINAPI HttpProtocol_UnlockRequest(IInternetProtocol *iface)
844 HttpProtocol *This = PROTOCOL_THIS(iface);
846 TRACE("(%p)\n", This);
850 if (!InternetUnlockRequestFile(This->lock))
851 WARN("InternetUnlockRequest failed: %d\n", GetLastError());
860 #define PRIORITY_THIS(iface) DEFINE_THIS(HttpProtocol, InternetPriority, iface)
862 static HRESULT WINAPI HttpPriority_QueryInterface(IInternetPriority *iface, REFIID riid, void **ppv)
864 HttpProtocol *This = PRIORITY_THIS(iface);
865 return IInternetProtocol_QueryInterface(PROTOCOL(This), riid, ppv);
868 static ULONG WINAPI HttpPriority_AddRef(IInternetPriority *iface)
870 HttpProtocol *This = PRIORITY_THIS(iface);
871 return IInternetProtocol_AddRef(PROTOCOL(This));
874 static ULONG WINAPI HttpPriority_Release(IInternetPriority *iface)
876 HttpProtocol *This = PRIORITY_THIS(iface);
877 return IInternetProtocol_Release(PROTOCOL(This));
880 static HRESULT WINAPI HttpPriority_SetPriority(IInternetPriority *iface, LONG nPriority)
882 HttpProtocol *This = PRIORITY_THIS(iface);
884 TRACE("(%p)->(%d)\n", This, nPriority);
886 This->priority = nPriority;
890 static HRESULT WINAPI HttpPriority_GetPriority(IInternetPriority *iface, LONG *pnPriority)
892 HttpProtocol *This = PRIORITY_THIS(iface);
894 TRACE("(%p)->(%p)\n", This, pnPriority);
896 *pnPriority = This->priority;
902 static const IInternetPriorityVtbl HttpPriorityVtbl = {
903 HttpPriority_QueryInterface,
905 HttpPriority_Release,
906 HttpPriority_SetPriority,
907 HttpPriority_GetPriority
910 static const IInternetProtocolVtbl HttpProtocolVtbl = {
911 HttpProtocol_QueryInterface,
913 HttpProtocol_Release,
915 HttpProtocol_Continue,
917 HttpProtocol_Terminate,
918 HttpProtocol_Suspend,
922 HttpProtocol_LockRequest,
923 HttpProtocol_UnlockRequest
926 HRESULT HttpProtocol_Construct(IUnknown *pUnkOuter, LPVOID *ppobj)
930 TRACE("(%p %p)\n", pUnkOuter, ppobj);
934 ret = heap_alloc(sizeof(HttpProtocol));
936 ret->lpInternetProtocolVtbl = &HttpProtocolVtbl;
937 ret->lpInternetPriorityVtbl = &HttpPriorityVtbl;
938 ret->flags = ret->grfBINDF = 0;
939 memset(&ret->bind_info, 0, sizeof(ret->bind_info));
940 ret->protocol_sink = 0;
941 ret->http_negotiate = 0;
942 ret->internet = ret->connect = ret->request = 0;
943 ret->full_header = 0;
945 ret->current_position = ret->content_length = ret->available_bytes = 0;
949 *ppobj = PROTOCOL(ret);
954 HRESULT HttpSProtocol_Construct(IUnknown *pUnkOuter, LPVOID *ppobj)
956 FIXME("(%p %p)\n", pUnkOuter, ppobj);
957 return E_NOINTERFACE;