4 * Copyright 1999 Ulrich Czekalla for Corel Corporation
5 * Copyright 2002 Huw D M Davies for CodeWeavers
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #define COM_NO_WINDOWS_H
27 #define NONAMELESSUNION
28 #define NONAMELESSSTRUCT
36 #include "wine/debug.h"
37 #include "wine/unicode.h"
42 #include "urlmon_main.h"
44 WINE_DEFAULT_DEBUG_CHANNEL(urlmon
);
46 /* native urlmon.dll uses this key, too */
47 static const WCHAR BSCBHolder
[] = { '_','B','S','C','B','_','H','o','l','d','e','r','_',0 };
49 /*static BOOL registered_wndclass = FALSE;*/
60 HINTERNET hinternet
, hconnect
, hrequest
;
62 IUMCacheStream
*pstrCache
;
63 IBindStatusCallback
*pbscb
;
64 DWORD total_read
, expected_size
;
67 static HRESULT WINAPI
Binding_QueryInterface(IBinding
* iface
, REFIID riid
, void **ppvObject
)
69 Binding
*This
= (Binding
*)iface
;
71 TRACE("(%p)->(%s,%p)\n", This
, debugstr_guid(riid
), ppvObject
);
73 if((This
== NULL
) || (ppvObject
== NULL
))
76 if (IsEqualIID(&IID_IUnknown
, riid
) || IsEqualIID(&IID_IBinding
, riid
)) {
78 IBinding_AddRef(iface
);
86 static ULONG WINAPI
Binding_AddRef(IBinding
* iface
)
88 Binding
*This
= (Binding
*)iface
;
89 ULONG ref
= InterlockedIncrement(&This
->ref
);
91 TRACE("(%p) ref=%ld\n", This
, ref
);
96 static ULONG WINAPI
Binding_Release(IBinding
* iface
)
98 Binding
*This
= (Binding
*)iface
;
99 ULONG ref
= InterlockedDecrement(&This
->ref
);
101 TRACE("(%p) ref=%ld\n",This
, ref
);
104 HeapFree(GetProcessHeap(), 0, This
->URLName
);
105 if (This
->hCacheFile
)
106 CloseHandle(This
->hCacheFile
);
109 UMCloseCacheFileStream(This
->pstrCache
);
110 IStream_Release((IStream
*)This
->pstrCache
);
113 IBindStatusCallback_Release(This
->pbscb
);
115 HeapFree(GetProcessHeap(), 0, This
);
117 URLMON_UnlockModule();
123 static HRESULT WINAPI
Binding_Abort(IBinding
* iface
)
125 Binding
*This
= (Binding
*)iface
;
127 FIXME("(%p): stub\n", This
);
132 static HRESULT WINAPI
Binding_GetBindResult(IBinding
* iface
, CLSID
* pclsidProtocol
, DWORD
* pdwResult
, LPOLESTR
* pszResult
, DWORD
* pdwReserved
)
134 Binding
*This
= (Binding
*)iface
;
136 FIXME("(%p)->(%p, %p, %p, %p): stub\n", This
, pclsidProtocol
, pdwResult
, pszResult
, pdwReserved
);
141 static HRESULT WINAPI
Binding_GetPriority(IBinding
* iface
, LONG
* pnPriority
)
143 Binding
*This
= (Binding
*)iface
;
145 FIXME("(%p)->(%p): stub\n", This
, pnPriority
);
150 static HRESULT WINAPI
Binding_Resume(IBinding
* iface
)
152 Binding
*This
= (Binding
*)iface
;
154 FIXME("(%p): stub\n", This
);
159 static HRESULT WINAPI
Binding_SetPriority(IBinding
* iface
, LONG nPriority
)
161 Binding
*This
= (Binding
*)iface
;
163 FIXME("(%p)->(%ld): stub\n", This
, nPriority
);
168 static HRESULT WINAPI
Binding_Suspend(IBinding
* iface
)
170 Binding
*This
= (Binding
*)iface
;
172 FIXME("(%p): stub\n", This
);
177 static void Binding_CloseCacheDownload(Binding
*This
)
179 CloseHandle(This
->hCacheFile
);
180 This
->hCacheFile
= 0;
181 UMCloseCacheFileStream(This
->pstrCache
);
182 IStream_Release((IStream
*)This
->pstrCache
);
186 static HRESULT
Binding_MoreCacheData(Binding
*This
, char *buf
, DWORD dwBytes
)
190 if (WriteFile(This
->hCacheFile
, buf
, dwBytes
, &written
, NULL
) && written
== dwBytes
)
194 This
->total_read
+= written
;
195 hr
= IBindStatusCallback_OnProgress(This
->pbscb
,
196 This
->total_read
+ written
,
198 (This
->total_read
== written
) ?
199 BINDSTATUS_BEGINDOWNLOADDATA
:
200 BINDSTATUS_DOWNLOADINGDATA
,
211 fmt
.tymed
= TYMED_ISTREAM
;
213 stg
.tymed
= TYMED_ISTREAM
;
214 stg
.u
.pstm
= (IStream
*)This
->pstrCache
;
215 stg
.pUnkForRelease
= NULL
;
217 hr
= IBindStatusCallback_OnDataAvailable(This
->pbscb
,
218 (This
->total_read
== written
) ?
219 BSCF_FIRSTDATANOTIFICATION
:
220 BSCF_INTERMEDIATEDATANOTIFICATION
,
221 This
->total_read
+ written
,
225 if (written
< dwBytes
)
226 return STG_E_MEDIUMFULL
;
230 return HRESULT_FROM_WIN32(GetLastError());
233 static void Binding_FinishedDownload(Binding
*This
, HRESULT hr
)
241 fmt
.tymed
= TYMED_ISTREAM
;
243 stg
.tymed
= TYMED_ISTREAM
;
244 stg
.u
.pstm
= (IStream
*)This
->pstrCache
;
245 stg
.pUnkForRelease
= NULL
;
247 IBindStatusCallback_OnProgress(This
->pbscb
, This
->total_read
, This
->expected_size
, BINDSTATUS_ENDDOWNLOADDATA
, NULL
);
248 IBindStatusCallback_OnDataAvailable(This
->pbscb
, BSCF_LASTDATANOTIFICATION
, This
->total_read
, &fmt
, &stg
);
251 WCHAR
*pwchError
= 0;
253 FormatMessageW (FORMAT_MESSAGE_FROM_SYSTEM
|
254 FORMAT_MESSAGE_ALLOCATE_BUFFER
,
256 0, (LPWSTR
) &pwchError
,
260 static WCHAR achFormat
[] = { '%', '0', '8', 'x', 0 };
262 pwchError
=(WCHAR
*) LocalAlloc(LMEM_FIXED
, sizeof(WCHAR
) * 9);
263 wsprintfW(pwchError
, achFormat
, hr
);
265 IBindStatusCallback_OnStopBinding(This
->pbscb
, hr
, pwchError
);
266 LocalFree(pwchError
);
270 IBindStatusCallback_OnStopBinding(This
->pbscb
, hr
, NULL
);
272 IBindStatusCallback_Release(This
->pbscb
);
276 static IBindingVtbl BindingVtbl
=
278 Binding_QueryInterface
,
286 Binding_GetBindResult
289 /* filemoniker data structure */
292 IMonikerVtbl
* lpvtbl
; /* VTable relative to the IMoniker interface.*/
294 ULONG ref
; /* reference counter for this object */
296 LPOLESTR URLName
; /* URL string identified by this URLmoniker */
299 /*******************************************************************************
300 * URLMoniker_QueryInterface
301 *******************************************************************************/
302 static HRESULT WINAPI
URLMonikerImpl_QueryInterface(IMoniker
* iface
,REFIID riid
,void** ppvObject
)
304 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
306 TRACE("(%p)->(%s,%p)\n",This
,debugstr_guid(riid
),ppvObject
);
308 /* Perform a sanity check on the parameters.*/
309 if ( (This
==0) || (ppvObject
==0) )
312 /* Initialize the return parameter */
315 /* Compare the riid with the interface IDs implemented by this object.*/
316 if (IsEqualIID(&IID_IUnknown
, riid
) ||
317 IsEqualIID(&IID_IPersist
, riid
) ||
318 IsEqualIID(&IID_IPersistStream
,riid
) ||
319 IsEqualIID(&IID_IMoniker
, riid
)
323 /* Check that we obtained an interface.*/
325 return E_NOINTERFACE
;
327 /* Query Interface always increases the reference count by one when it is successful */
328 IMoniker_AddRef(iface
);
333 /******************************************************************************
335 ******************************************************************************/
336 static ULONG WINAPI
URLMonikerImpl_AddRef(IMoniker
* iface
)
338 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
339 ULONG refCount
= InterlockedIncrement(&This
->ref
);
341 TRACE("(%p)->(ref before=%lu)\n",This
, refCount
- 1);
348 /******************************************************************************
350 ******************************************************************************/
351 static ULONG WINAPI
URLMonikerImpl_Release(IMoniker
* iface
)
353 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
354 ULONG refCount
= InterlockedDecrement(&This
->ref
);
356 TRACE("(%p)->(ref before=%lu)\n",This
, refCount
+ 1);
358 /* destroy the object if there's no more reference on it */
360 HeapFree(GetProcessHeap(),0,This
->URLName
);
361 HeapFree(GetProcessHeap(),0,This
);
364 URLMON_UnlockModule();
370 /******************************************************************************
371 * URLMoniker_GetClassID
372 ******************************************************************************/
373 static HRESULT WINAPI
URLMonikerImpl_GetClassID(IMoniker
* iface
,
374 CLSID
*pClassID
)/* Pointer to CLSID of object */
376 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
378 TRACE("(%p,%p)\n",This
,pClassID
);
382 /* Windows always returns CLSID_StdURLMoniker */
383 *pClassID
= CLSID_StdURLMoniker
;
387 /******************************************************************************
389 ******************************************************************************/
390 static HRESULT WINAPI
URLMonikerImpl_IsDirty(IMoniker
* iface
)
392 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
393 /* Note that the OLE-provided implementations of the IPersistStream::IsDirty
394 method in the OLE-provided moniker interfaces always return S_FALSE because
395 their internal state never changes. */
397 TRACE("(%p)\n",This
);
402 /******************************************************************************
406 * Writes a ULONG containing length of unicode string, followed
407 * by that many unicode characters
408 ******************************************************************************/
409 static HRESULT WINAPI
URLMonikerImpl_Load(IMoniker
* iface
,IStream
* pStm
)
411 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
416 TRACE("(%p,%p)\n",This
,pStm
);
421 res
= IStream_Read(pStm
, &len
, sizeof(ULONG
), &got
);
423 if(got
== sizeof(ULONG
)) {
424 HeapFree(GetProcessHeap(), 0, This
->URLName
);
425 This
->URLName
=HeapAlloc(GetProcessHeap(),0,sizeof(WCHAR
)*(len
+1));
429 res
= IStream_Read(pStm
, This
->URLName
, len
, NULL
);
430 This
->URLName
[len
] = 0;
439 /******************************************************************************
441 ******************************************************************************/
442 static HRESULT WINAPI
URLMonikerImpl_Save(IMoniker
* iface
,
443 IStream
* pStm
,/* pointer to the stream where the object is to be saved */
444 BOOL fClearDirty
)/* Specifies whether to clear the dirty flag */
446 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
450 TRACE("(%p,%p,%d)\n",This
,pStm
,fClearDirty
);
455 len
= strlenW(This
->URLName
);
456 res
=IStream_Write(pStm
,&len
,sizeof(ULONG
),NULL
);
458 res
=IStream_Write(pStm
,&This
->URLName
,len
*sizeof(WCHAR
),NULL
);
463 /******************************************************************************
464 * URLMoniker_GetSizeMax
465 ******************************************************************************/
466 static HRESULT WINAPI
URLMonikerImpl_GetSizeMax(IMoniker
* iface
,
467 ULARGE_INTEGER
* pcbSize
)/* Pointer to size of stream needed to save object */
469 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
471 TRACE("(%p,%p)\n",This
,pcbSize
);
476 pcbSize
->u
.LowPart
= sizeof(ULONG
) + (strlenW(This
->URLName
) * sizeof(WCHAR
));
477 pcbSize
->u
.HighPart
= 0;
481 /******************************************************************************
482 * URLMoniker_BindToObject
483 ******************************************************************************/
484 static HRESULT WINAPI
URLMonikerImpl_BindToObject(IMoniker
* iface
,
490 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
494 FIXME("(%p)->(%p,%p,%s,%p): stub\n",This
,pbc
,pmkToLeft
,debugstr_guid(riid
),
501 enum {OnProgress
, OnDataAvailable
} callback
;
502 } URLMON_CallbackData
;
506 static LRESULT CALLBACK
URLMON_WndProc(HWND hwnd
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
508 return DefWindowProcA(hwnd
, msg
, wparam
, lparam
);
511 static void PostOnProgress(URLMonikerImpl
*This
, UINT progress
, UINT maxprogress
, DWORD status
, LPCWSTR
*str
)
515 static void CALLBACK
URLMON_InternetCallback(HINTERNET hinet
, /*DWORD_PTR*/ DWORD context
, DWORD status
,
516 void *status_info
, DWORD status_info_len
)
518 URLMonikerImpl
*This
= (URLMonikerImpl
*)context
;
519 TRACE("handle %p this %p status %08lx\n", hinet
, This
, status
);
521 if(This
->filesize
== -1) {
523 case INTERNET_STATUS_RESOLVING_NAME
:
524 PostOnProgess(This
, 0, 0, BINDSTATUS_FINDINGRESOURCE
, status_info
);
526 case INTERNET_STATUS_CONNECTING_TO_SERVER
:
527 PostOnProgress(This
, 0, 0, BINDSTATUS_CONNECTING
, NULL
);
529 case INTERNET_STATUS_SENDING_REQUEST
:
530 PostOnProgress(This
, 0, 0, BINDSTATUS_SENDINGREQUEST
, NULL
);
532 case INTERNET_REQUEST_COMPLETE
:
534 DWORD len
, lensz
= sizeof(len
);
536 HttpQueryInfoW(hrequest
, HTTP_QUERY_CONTENT_LENGTH
| HTTP_QUERY_FLAG_NUMBER
, &len
, &lensz
, NULL
);
537 TRACE("res = %ld gle = %08lx url len = %ld\n", hres
, GetLastError(), len
);
538 This
->filesize
= len
;
549 /******************************************************************************
550 * URLMoniker_BindToStorage
551 ******************************************************************************/
552 static HRESULT WINAPI
URLMonikerImpl_BindToStorage(IMoniker
* iface
,
558 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
562 WCHAR szFileName
[MAX_PATH
+ 1];
567 FIXME("pmkToLeft != NULL\n");
570 if(!IsEqualIID(&IID_IStream
, riid
)) {
571 FIXME("unsupported iid\n");
575 bind
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(Binding
));
576 bind
->lpVtbl
= &BindingVtbl
;
580 len
= lstrlenW(This
->URLName
)+1;
581 bind
->URLName
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(WCHAR
));
582 memcpy(bind
->URLName
, This
->URLName
, len
*sizeof(WCHAR
));
584 hres
= UMCreateStreamOnCacheFile(bind
->URLName
, 0, szFileName
, &bind
->hCacheFile
, &bind
->pstrCache
);
586 if(SUCCEEDED(hres
)) {
587 TRACE("Created stream...\n");
589 *ppvObject
= (void *) bind
->pstrCache
;
590 IStream_AddRef((IStream
*) bind
->pstrCache
);
592 hres
= IBindCtx_GetObjectParam(pbc
, (LPOLESTR
)BSCBHolder
, (IUnknown
**)&bind
->pbscb
);
593 if(SUCCEEDED(hres
)) {
594 TRACE("Got IBindStatusCallback...\n");
596 memset(&bi
, 0, sizeof(bi
));
597 bi
.cbSize
= sizeof(bi
);
599 hres
= IBindStatusCallback_GetBindInfo(bind
->pbscb
, &bindf
, &bi
);
600 if(SUCCEEDED(hres
)) {
601 WCHAR
*urlcopy
, *tmpwc
;
603 WCHAR
*host
, *path
, *user
, *pass
;
604 DWORD lensz
= sizeof(bind
->expected_size
);
608 TRACE("got bindinfo. bindf = %08lx extrainfo = %s bindinfof = %08lx bindverb = %08lx iid %s\n",
609 bindf
, debugstr_w(bi
.szExtraInfo
), bi
.grfBindInfoF
, bi
.dwBindVerb
, debugstr_guid(&bi
.iid
));
610 hres
= IBindStatusCallback_OnStartBinding(bind
->pbscb
, 0, (IBinding
*)bind
);
611 TRACE("OnStartBinding rets %08lx\n", hres
);
613 /* This class will accept URLs with the backslash in them. But InternetCrackURL will not - it
614 * requires forward slashes (this is the behaviour of Microsoft's INETAPI). So we need to make
615 * a copy of the URL here and change the backslash to a forward slash everywhere it appears -
616 * but only before any '#' or '?', after which backslash should be left alone.
618 urlcopy
= HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR
) * (lstrlenW(bind
->URLName
) + 1));
619 lstrcpyW(urlcopy
, bind
->URLName
);
620 for (tmpwc
= urlcopy
; *tmpwc
&& *tmpwc
!= '#' && *tmpwc
!= '?'; ++tmpwc
)
625 if(!registered_wndclass
) {
626 WNDCLASSA urlmon_wndclass
= {0, URLMON_WndProc
,0, 0, URLMON_hInstance
, 0, 0, 0, NULL
, "URLMON_Callback_Window_Class"};
627 RegisterClassA(&urlmon_wndclass
);
628 registered_wndclass
= TRUE
;
631 This
->hwndCallback
= CreateWindowA("URLMON_Callback_Window_Class", NULL
, 0, 0, 0, 0, 0, 0, 0,
632 URLMON_hInstance
, NULL
);
635 bind
->expected_size
= 0;
636 bind
->total_read
= 0;
638 memset(&url
, 0, sizeof(url
));
639 url
.dwStructSize
= sizeof(url
);
640 url
.dwSchemeLength
= url
.dwHostNameLength
= url
.dwUrlPathLength
= url
.dwUserNameLength
= url
.dwPasswordLength
= 1;
641 InternetCrackUrlW(urlcopy
, 0, 0, &url
);
642 host
= HeapAlloc(GetProcessHeap(), 0, (url
.dwHostNameLength
+ 1) * sizeof(WCHAR
));
643 memcpy(host
, url
.lpszHostName
, url
.dwHostNameLength
* sizeof(WCHAR
));
644 host
[url
.dwHostNameLength
] = '\0';
645 path
= HeapAlloc(GetProcessHeap(), 0, (url
.dwUrlPathLength
+ 1) * sizeof(WCHAR
));
646 memcpy(path
, url
.lpszUrlPath
, url
.dwUrlPathLength
* sizeof(WCHAR
));
647 path
[url
.dwUrlPathLength
] = '\0';
648 if (url
.dwUserNameLength
)
650 user
= HeapAlloc(GetProcessHeap(), 0, ((url
.dwUserNameLength
+ 1) * sizeof(WCHAR
)));
651 memcpy(user
, url
.lpszUserName
, url
.dwUserNameLength
* sizeof(WCHAR
));
652 user
[url
.dwUserNameLength
] = 0;
658 if (url
.dwPasswordLength
)
660 pass
= HeapAlloc(GetProcessHeap(), 0, ((url
.dwPasswordLength
+ 1) * sizeof(WCHAR
)));
661 memcpy(pass
, url
.lpszPassword
, url
.dwPasswordLength
* sizeof(WCHAR
));
662 pass
[url
.dwPasswordLength
] = 0;
669 switch ((DWORD
) url
.nScheme
)
671 case INTERNET_SCHEME_FTP
:
672 case INTERNET_SCHEME_GOPHER
:
673 case INTERNET_SCHEME_HTTP
:
674 case INTERNET_SCHEME_HTTPS
:
676 bind
->hinternet
= InternetOpenA("User Agent", 0, NULL
, NULL
, 0 /*INTERNET_FLAG_ASYNC*/);
677 /* InternetSetStatusCallback(bind->hinternet, URLMON_InternetCallback);*/
678 if (!bind
->hinternet
)
680 hres
= HRESULT_FROM_WIN32(GetLastError());
684 switch ((DWORD
) url
.nScheme
)
686 case INTERNET_SCHEME_FTP
:
688 url
.nPort
= INTERNET_DEFAULT_FTP_PORT
;
689 dwService
= INTERNET_SERVICE_FTP
;
692 case INTERNET_SCHEME_GOPHER
:
694 url
.nPort
= INTERNET_DEFAULT_GOPHER_PORT
;
695 dwService
= INTERNET_SERVICE_GOPHER
;
698 case INTERNET_SCHEME_HTTP
:
700 url
.nPort
= INTERNET_DEFAULT_HTTP_PORT
;
701 dwService
= INTERNET_SERVICE_HTTP
;
704 case INTERNET_SCHEME_HTTPS
:
706 url
.nPort
= INTERNET_DEFAULT_HTTPS_PORT
;
707 dwService
= INTERNET_SERVICE_HTTP
;
711 bind
->hconnect
= InternetConnectW(bind
->hinternet
, host
, url
.nPort
, user
, pass
,
712 dwService
, 0, (DWORD
)bind
);
715 hres
= HRESULT_FROM_WIN32(GetLastError());
716 CloseHandle(bind
->hinternet
);
720 hres
= IBindStatusCallback_OnProgress(bind
->pbscb
, 0, 0, 0x22, NULL
);
721 hres
= IBindStatusCallback_OnProgress(bind
->pbscb
, 0, 0, BINDSTATUS_FINDINGRESOURCE
, NULL
);
722 hres
= IBindStatusCallback_OnProgress(bind
->pbscb
, 0, 0, BINDSTATUS_CONNECTING
, NULL
);
723 hres
= IBindStatusCallback_OnProgress(bind
->pbscb
, 0, 0, BINDSTATUS_SENDINGREQUEST
, NULL
);
729 case INTERNET_SERVICE_GOPHER
:
730 bind
->hrequest
= GopherOpenFileW(bind
->hconnect
,
733 INTERNET_FLAG_RELOAD
,
738 hres
= HRESULT_FROM_WIN32(GetLastError());
741 case INTERNET_SERVICE_FTP
:
742 bind
->hrequest
= FtpOpenFileW(bind
->hconnect
,
745 FTP_TRANSFER_TYPE_BINARY
|
746 INTERNET_FLAG_TRANSFER_BINARY
|
747 INTERNET_FLAG_RELOAD
,
752 hres
= HRESULT_FROM_WIN32(GetLastError());
755 case INTERNET_SERVICE_HTTP
:
756 bind
->hrequest
= HttpOpenRequestW(bind
->hconnect
, NULL
, path
, NULL
, NULL
, NULL
, 0, (DWORD
)bind
);
759 hres
= HRESULT_FROM_WIN32(GetLastError());
761 else if (!HttpSendRequestW(bind
->hrequest
, NULL
, 0, NULL
, 0))
763 hres
= HRESULT_FROM_WIN32(GetLastError());
764 InternetCloseHandle(bind
->hrequest
);
768 HttpQueryInfoW(bind
->hrequest
,
769 HTTP_QUERY_CONTENT_LENGTH
| HTTP_QUERY_FLAG_NUMBER
,
770 &bind
->expected_size
,
779 TRACE("res = %ld gle = %08lx url len = %ld\n", hres
, GetLastError(), bind
->expected_size
);
781 IBindStatusCallback_OnProgress(bind
->pbscb
, 0, 0, BINDSTATUS_CACHEFILENAMEAVAILABLE
, szFileName
);
786 if(InternetReadFile(bind
->hrequest
, buf
, sizeof(buf
), &bufread
)) {
787 TRACE("read %ld bytes %s...\n", bufread
, debugstr_an(buf
, 10));
788 if(bufread
== 0) break;
789 hres
= Binding_MoreCacheData(bind
, buf
, bufread
);
793 InternetCloseHandle(bind
->hrequest
);
797 InternetCloseHandle(bind
->hconnect
);
798 InternetCloseHandle(bind
->hinternet
);
801 case INTERNET_SCHEME_FILE
:
802 path
= bind
->URLName
+ 5; /* Skip the "file:" part */
803 if ((path
[0] != '/' && path
[0] != '\\') ||
804 (path
[1] != '/' && path
[1] != '\\'))
813 if (path
[0] == '/' || path
[0] == '\\')
815 h
= CreateFileW(path
, GENERIC_READ
, FILE_SHARE_READ
, NULL
, OPEN_EXISTING
, 0, 0 );
816 if (h
== (HANDLE
) HFILE_ERROR
)
818 hres
= HRESULT_FROM_WIN32(GetLastError());
825 IBindStatusCallback_OnProgress(bind
->pbscb
, 0, 0, BINDSTATUS_CACHEFILENAMEAVAILABLE
, szFileName
);
827 while (ReadFile(h
, buf
, sizeof(buf
), &bufread
, NULL
) && bufread
> 0)
828 hres
= Binding_MoreCacheData(bind
, buf
, bufread
);
838 FIXME("Unsupported URI scheme");
841 Binding_CloseCacheDownload(bind
);
842 Binding_FinishedDownload(bind
, hres
);
845 HeapFree(GetProcessHeap(), 0, user
);
847 HeapFree(GetProcessHeap(), 0, pass
);
848 HeapFree(GetProcessHeap(), 0, path
);
849 HeapFree(GetProcessHeap(), 0, host
);
850 HeapFree(GetProcessHeap(), 0, urlcopy
);
855 IBinding_Release((IBinding
*)bind
);
860 /******************************************************************************
862 ******************************************************************************/
863 static HRESULT WINAPI
URLMonikerImpl_Reduce(IMoniker
* iface
,
865 DWORD dwReduceHowFar
,
866 IMoniker
** ppmkToLeft
,
867 IMoniker
** ppmkReduced
)
869 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
871 TRACE("(%p,%p,%ld,%p,%p)\n",This
,pbc
,dwReduceHowFar
,ppmkToLeft
,ppmkReduced
);
876 URLMonikerImpl_AddRef(iface
);
877 *ppmkReduced
= iface
;
878 return MK_S_REDUCED_TO_SELF
;
881 /******************************************************************************
882 * URLMoniker_ComposeWith
883 ******************************************************************************/
884 static HRESULT WINAPI
URLMonikerImpl_ComposeWith(IMoniker
* iface
,
886 BOOL fOnlyIfNotGeneric
,
887 IMoniker
** ppmkComposite
)
889 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
890 FIXME("(%p)->(%p,%d,%p): stub\n",This
,pmkRight
,fOnlyIfNotGeneric
,ppmkComposite
);
895 /******************************************************************************
897 ******************************************************************************/
898 static HRESULT WINAPI
URLMonikerImpl_Enum(IMoniker
* iface
,BOOL fForward
, IEnumMoniker
** ppenumMoniker
)
900 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
901 TRACE("(%p,%d,%p)\n",This
,fForward
,ppenumMoniker
);
906 /* Does not support sub-monikers */
907 *ppenumMoniker
= NULL
;
911 /******************************************************************************
913 ******************************************************************************/
914 static HRESULT WINAPI
URLMonikerImpl_IsEqual(IMoniker
* iface
,IMoniker
* pmkOtherMoniker
)
916 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
922 TRACE("(%p,%p)\n",This
,pmkOtherMoniker
);
924 if(pmkOtherMoniker
==NULL
)
927 IMoniker_GetClassID(pmkOtherMoniker
,&clsid
);
929 if(!IsEqualCLSID(&clsid
,&CLSID_StdURLMoniker
))
932 res
= CreateBindCtx(0,&bind
);
937 if(SUCCEEDED(IMoniker_GetDisplayName(pmkOtherMoniker
,bind
,NULL
,&urlPath
))) {
938 int result
= lstrcmpiW(urlPath
, This
->URLName
);
939 CoTaskMemFree(urlPath
);
943 IUnknown_Release(bind
);
948 /******************************************************************************
950 ******************************************************************************/
951 static HRESULT WINAPI
URLMonikerImpl_Hash(IMoniker
* iface
,DWORD
* pdwHash
)
953 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
955 int h
= 0,i
,skip
,len
;
959 TRACE("(%p,%p)\n",This
,pdwHash
);
968 for(i
= len
; i
> 0; i
--) {
969 h
= (h
* 37) + val
[off
++];
973 /* only sample some characters */
975 for(i
= len
; i
> 0; i
-= skip
, off
+= skip
) {
976 h
= (h
* 39) + val
[off
];
983 /******************************************************************************
984 * URLMoniker_IsRunning
985 ******************************************************************************/
986 static HRESULT WINAPI
URLMonikerImpl_IsRunning(IMoniker
* iface
,
989 IMoniker
* pmkNewlyRunning
)
991 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
992 FIXME("(%p)->(%p,%p,%p): stub\n",This
,pbc
,pmkToLeft
,pmkNewlyRunning
);
997 /******************************************************************************
998 * URLMoniker_GetTimeOfLastChange
999 ******************************************************************************/
1000 static HRESULT WINAPI
URLMonikerImpl_GetTimeOfLastChange(IMoniker
* iface
,
1002 IMoniker
* pmkToLeft
,
1003 FILETIME
* pFileTime
)
1005 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
1006 FIXME("(%p)->(%p,%p,%p): stub\n",This
,pbc
,pmkToLeft
,pFileTime
);
1011 /******************************************************************************
1012 * URLMoniker_Inverse
1013 ******************************************************************************/
1014 static HRESULT WINAPI
URLMonikerImpl_Inverse(IMoniker
* iface
,IMoniker
** ppmk
)
1016 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
1017 TRACE("(%p,%p)\n",This
,ppmk
);
1019 return MK_E_NOINVERSE
;
1022 /******************************************************************************
1023 * URLMoniker_CommonPrefixWith
1024 ******************************************************************************/
1025 static HRESULT WINAPI
URLMonikerImpl_CommonPrefixWith(IMoniker
* iface
,IMoniker
* pmkOther
,IMoniker
** ppmkPrefix
)
1027 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
1028 FIXME("(%p)->(%p,%p): stub\n",This
,pmkOther
,ppmkPrefix
);
1033 /******************************************************************************
1034 * URLMoniker_RelativePathTo
1035 ******************************************************************************/
1036 static HRESULT WINAPI
URLMonikerImpl_RelativePathTo(IMoniker
* iface
,IMoniker
* pmOther
, IMoniker
** ppmkRelPath
)
1038 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
1039 FIXME("(%p)->(%p,%p): stub\n",This
,pmOther
,ppmkRelPath
);
1044 /******************************************************************************
1045 * URLMoniker_GetDisplayName
1046 ******************************************************************************/
1047 static HRESULT WINAPI
URLMonikerImpl_GetDisplayName(IMoniker
* iface
,
1049 IMoniker
* pmkToLeft
,
1050 LPOLESTR
*ppszDisplayName
)
1052 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
1056 TRACE("(%p,%p,%p,%p)\n",This
,pbc
,pmkToLeft
,ppszDisplayName
);
1058 if(!ppszDisplayName
)
1059 return E_INVALIDARG
;
1061 /* FIXME: If this is a partial URL, try and get a URL moniker from SZ_URLCONTEXT in the bind context,
1062 then look at pmkToLeft to try and complete the URL
1064 len
= lstrlenW(This
->URLName
)+1;
1065 *ppszDisplayName
= CoTaskMemAlloc(len
*sizeof(WCHAR
));
1066 if(!*ppszDisplayName
)
1067 return E_OUTOFMEMORY
;
1068 lstrcpyW(*ppszDisplayName
, This
->URLName
);
1072 /******************************************************************************
1073 * URLMoniker_ParseDisplayName
1074 ******************************************************************************/
1075 static HRESULT WINAPI
URLMonikerImpl_ParseDisplayName(IMoniker
* iface
,
1077 IMoniker
* pmkToLeft
,
1078 LPOLESTR pszDisplayName
,
1082 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
1083 FIXME("(%p)->(%p,%p,%p,%p,%p): stub\n",This
,pbc
,pmkToLeft
,pszDisplayName
,pchEaten
,ppmkOut
);
1088 /******************************************************************************
1089 * URLMoniker_IsSystemMoniker
1090 ******************************************************************************/
1091 static HRESULT WINAPI
URLMonikerImpl_IsSystemMoniker(IMoniker
* iface
,DWORD
* pwdMksys
)
1093 URLMonikerImpl
*This
= (URLMonikerImpl
*)iface
;
1094 TRACE("(%p,%p)\n",This
,pwdMksys
);
1097 return E_INVALIDARG
;
1099 *pwdMksys
= MKSYS_URLMONIKER
;
1103 /********************************************************************************/
1104 /* Virtual function table for the URLMonikerImpl class which include IPersist,*/
1105 /* IPersistStream and IMoniker functions. */
1106 static IMonikerVtbl VT_URLMonikerImpl
=
1108 URLMonikerImpl_QueryInterface
,
1109 URLMonikerImpl_AddRef
,
1110 URLMonikerImpl_Release
,
1111 URLMonikerImpl_GetClassID
,
1112 URLMonikerImpl_IsDirty
,
1113 URLMonikerImpl_Load
,
1114 URLMonikerImpl_Save
,
1115 URLMonikerImpl_GetSizeMax
,
1116 URLMonikerImpl_BindToObject
,
1117 URLMonikerImpl_BindToStorage
,
1118 URLMonikerImpl_Reduce
,
1119 URLMonikerImpl_ComposeWith
,
1120 URLMonikerImpl_Enum
,
1121 URLMonikerImpl_IsEqual
,
1122 URLMonikerImpl_Hash
,
1123 URLMonikerImpl_IsRunning
,
1124 URLMonikerImpl_GetTimeOfLastChange
,
1125 URLMonikerImpl_Inverse
,
1126 URLMonikerImpl_CommonPrefixWith
,
1127 URLMonikerImpl_RelativePathTo
,
1128 URLMonikerImpl_GetDisplayName
,
1129 URLMonikerImpl_ParseDisplayName
,
1130 URLMonikerImpl_IsSystemMoniker
1133 /******************************************************************************
1134 * URLMoniker_Construct (local function)
1135 *******************************************************************************/
1136 static HRESULT
URLMonikerImpl_Construct(URLMonikerImpl
* This
, LPCOLESTR lpszLeftURLName
, LPCOLESTR lpszURLName
)
1141 TRACE("(%p,%s,%s)\n",This
,debugstr_w(lpszLeftURLName
),debugstr_w(lpszURLName
));
1142 memset(This
, 0, sizeof(*This
));
1144 /* Initialize the virtual function table. */
1145 This
->lpvtbl
= &VT_URLMonikerImpl
;
1148 if(lpszLeftURLName
) {
1149 hres
= UrlCombineW(lpszLeftURLName
, lpszURLName
, NULL
, &sizeStr
, 0);
1156 sizeStr
= lstrlenW(lpszURLName
)+1;
1158 This
->URLName
=HeapAlloc(GetProcessHeap(),0,sizeof(WCHAR
)*(sizeStr
));
1160 if (This
->URLName
==NULL
)
1161 return E_OUTOFMEMORY
;
1163 if(lpszLeftURLName
) {
1164 hres
= UrlCombineW(lpszLeftURLName
, lpszURLName
, This
->URLName
, &sizeStr
, 0);
1166 HeapFree(GetProcessHeap(), 0, This
->URLName
);
1171 strcpyW(This
->URLName
,lpszURLName
);
1176 /***********************************************************************
1177 * CreateAsyncBindCtx (URLMON.@)
1179 HRESULT WINAPI
CreateAsyncBindCtx(DWORD reserved
, IBindStatusCallback
*callback
,
1180 IEnumFORMATETC
*format
, IBindCtx
**pbind
)
1186 TRACE("(%08lx %p %p %p)\n", reserved
, callback
, format
, pbind
);
1189 return E_INVALIDARG
;
1191 FIXME("format is not supported yet\n");
1193 hres
= CreateBindCtx(0, &bctx
);
1197 bindopts
.cbStruct
= sizeof(BIND_OPTS
);
1198 bindopts
.grfFlags
= BIND_MAYBOTHERUSER
;
1199 bindopts
.grfMode
= STGM_READWRITE
| STGM_SHARE_EXCLUSIVE
;
1200 bindopts
.dwTickCountDeadline
= 0;
1201 IBindCtx_SetBindOptions(bctx
, &bindopts
);
1203 hres
= IBindCtx_RegisterObjectParam(bctx
, (LPOLESTR
)BSCBHolder
, (IUnknown
*)callback
);
1205 IBindCtx_Release(bctx
);
1213 /***********************************************************************
1214 * CreateAsyncBindCtxEx (URLMON.@)
1216 * Create an asynchronous bind context.
1221 HRESULT WINAPI
CreateAsyncBindCtxEx(IBindCtx
*ibind
, DWORD options
,
1222 IBindStatusCallback
*callback
, IEnumFORMATETC
*format
, IBindCtx
** pbind
,
1225 FIXME("stub, returns failure\n");
1226 return E_INVALIDARG
;
1230 /***********************************************************************
1231 * CreateURLMoniker (URLMON.@)
1233 * Create a url moniker.
1236 * pmkContext [I] Context
1237 * szURL [I] Url to create the moniker for
1238 * ppmk [O] Destination for created moniker.
1241 * Success: S_OK. ppmk contains the created IMoniker object.
1242 * Failure: MK_E_SYNTAX if szURL is not a valid url, or
1243 * E_OUTOFMEMORY if memory allocation fails.
1245 HRESULT WINAPI
CreateURLMoniker(IMoniker
*pmkContext
, LPCWSTR szURL
, IMoniker
**ppmk
)
1247 URLMonikerImpl
*obj
;
1249 IID iid
= IID_IMoniker
;
1250 LPOLESTR lefturl
= NULL
;
1252 TRACE("(%p, %s, %p)\n", pmkContext
, debugstr_w(szURL
), ppmk
);
1254 if(!(obj
= HeapAlloc(GetProcessHeap(), 0, sizeof(*obj
))))
1255 return E_OUTOFMEMORY
;
1260 IMoniker_GetClassID(pmkContext
, &clsid
);
1261 if(IsEqualCLSID(&clsid
, &CLSID_StdURLMoniker
) && SUCCEEDED(CreateBindCtx(0, &bind
))) {
1262 URLMonikerImpl_GetDisplayName(pmkContext
, bind
, NULL
, &lefturl
);
1263 IBindCtx_Release(bind
);
1267 hres
= URLMonikerImpl_Construct(obj
, lefturl
, szURL
);
1268 CoTaskMemFree(lefturl
);
1270 hres
= URLMonikerImpl_QueryInterface((IMoniker
*)obj
, &iid
, (void**)ppmk
);
1272 HeapFree(GetProcessHeap(), 0, obj
);
1277 /***********************************************************************
1278 * CoInternetGetSession (URLMON.@)
1280 * Create a new internet session and return an IInternetSession interface
1284 * dwSessionMode [I] Mode for the internet session
1285 * ppIInternetSession [O] Destination for creates IInternetSession object
1286 * dwReserved [I] Reserved, must be 0.
1289 * Success: S_OK. ppIInternetSession contains the IInternetSession interface.
1290 * Failure: E_INVALIDARG, if any argument is invalid, or
1291 * E_OUTOFMEMORY if memory allocation fails.
1293 HRESULT WINAPI
CoInternetGetSession(DWORD dwSessionMode
, IInternetSession
**ppIInternetSession
, DWORD dwReserved
)
1295 FIXME("(%ld, %p, %ld): stub\n", dwSessionMode
, ppIInternetSession
, dwReserved
);
1298 ERR("dwSessionMode: %ld, must be zero\n", dwSessionMode
);
1302 ERR("dwReserved: %ld, must be zero\n", dwReserved
);
1305 *ppIInternetSession
=NULL
;
1306 return E_OUTOFMEMORY
;
1309 /***********************************************************************
1310 * CoInternetQueryInfo (URLMON.@)
1312 * Retrieves information relevant to a specified URL
1316 * S_FALSE buffer too small
1317 * INET_E_QUERYOPTIONUNKNOWN invalid option
1320 HRESULT WINAPI
CoInternetQueryInfo(LPCWSTR pwzUrl
, QUERYOPTION QueryOption
,
1321 DWORD dwQueryFlags
, LPVOID pvBuffer
, DWORD cbBuffer
, DWORD
* pcbBuffer
,
1324 FIXME("(%s, %x, %lx, %p, %lx, %p, %lx): stub\n", debugstr_w(pwzUrl
),
1325 QueryOption
, dwQueryFlags
, pvBuffer
, cbBuffer
, pcbBuffer
, dwReserved
);
1329 static BOOL
URLMON_IsBinary(LPVOID pBuffer
, DWORD cbSize
)
1331 unsigned int i
, binarycount
= 0;
1332 unsigned char *buff
= pBuffer
;
1333 for(i
=0; i
<cbSize
; i
++) {
1337 return binarycount
> (cbSize
-binarycount
);
1340 /***********************************************************************
1341 * FindMimeFromData (URLMON.@)
1343 * Determines the Multipurpose Internet Mail Extensions (MIME) type from the data provided.
1346 * See http://msdn.microsoft.com/workshop/networking/moniker/overview/appendix_a.asp
1348 HRESULT WINAPI
FindMimeFromData(LPBC pBC
, LPCWSTR pwzUrl
, LPVOID pBuffer
,
1349 DWORD cbSize
, LPCWSTR pwzMimeProposed
, DWORD dwMimeFlags
,
1350 LPWSTR
* ppwzMimeOut
, DWORD dwReserved
)
1352 static const WCHAR szBinaryMime
[] = {'a','p','p','l','i','c','a','t','i','o','n','/','o','c','t','e','t','-','s','t','r','e','a','m','\0'};
1353 static const WCHAR szTextMime
[] = {'t','e','x','t','/','p','l','a','i','n','\0'};
1354 static const WCHAR szContentType
[] = {'C','o','n','t','e','n','t',' ','T','y','p','e','\0'};
1355 WCHAR szTmpMime
[256];
1356 LPCWSTR mimeType
= NULL
;
1359 TRACE("(%p,%s,%p,%ld,%s,0x%lx,%p,0x%lx)\n", pBC
, debugstr_w(pwzUrl
), pBuffer
, cbSize
,
1360 debugstr_w(pwzMimeProposed
), dwMimeFlags
, ppwzMimeOut
, dwReserved
);
1362 if((!pwzUrl
&& (!pBuffer
|| cbSize
<= 0)) || !ppwzMimeOut
)
1363 return E_INVALIDARG
;
1366 mimeType
= pwzMimeProposed
;
1368 /* Try and find the mime type in the registry */
1370 LPWSTR ext
= strrchrW(pwzUrl
, '.');
1373 if(!RegOpenKeyExW(HKEY_CLASSES_ROOT
, ext
, 0, 0, &hKey
)) {
1374 if(!RegQueryValueExW(hKey
, szContentType
, NULL
, NULL
, (LPBYTE
)szTmpMime
, &dwSize
)) {
1375 mimeType
= szTmpMime
;
1382 if(!mimeType
&& pBuffer
&& cbSize
> 0)
1383 mimeType
= URLMON_IsBinary(pBuffer
, cbSize
)?szBinaryMime
:szTextMime
;
1385 TRACE("Using %s\n", debugstr_w(mimeType
));
1386 *ppwzMimeOut
= CoTaskMemAlloc((lstrlenW(mimeType
)+1)*sizeof(WCHAR
));
1387 if(!*ppwzMimeOut
) return E_OUTOFMEMORY
;
1388 lstrcpyW(*ppwzMimeOut
, mimeType
);
1392 /***********************************************************************
1393 * IsAsyncMoniker (URLMON.@)
1395 HRESULT WINAPI
IsAsyncMoniker(IMoniker
*pmk
)
1399 TRACE("(%p)\n", pmk
);
1401 return E_INVALIDARG
;
1402 if(SUCCEEDED(IMoniker_QueryInterface(pmk
, &IID_IAsyncMoniker
, (void**)&am
))) {
1403 IUnknown_Release(am
);
1409 /***********************************************************************
1410 * RegisterBindStatusCallback (URLMON.@)
1412 * Register a bind status callback.
1415 * pbc [I] Binding context
1416 * pbsc [I] Callback to register
1417 * ppbscPrevious [O] Destination for previous callback
1418 * dwReserved [I] Reserved, must be 0.
1422 * Failure: E_INVALIDARG, if any argument is invalid, or
1423 * E_OUTOFMEMORY if memory allocation fails.
1425 HRESULT WINAPI
RegisterBindStatusCallback(
1427 IBindStatusCallback
*pbsc
,
1428 IBindStatusCallback
**ppbscPrevious
,
1431 IBindStatusCallback
*prev
;
1433 TRACE("(%p,%p,%p,%lu)\n", pbc
, pbsc
, ppbscPrevious
, dwReserved
);
1435 if (pbc
== NULL
|| pbsc
== NULL
)
1436 return E_INVALIDARG
;
1438 if (SUCCEEDED(IBindCtx_GetObjectParam(pbc
, (LPOLESTR
)BSCBHolder
, (IUnknown
**)&prev
)))
1440 IBindCtx_RevokeObjectParam(pbc
, (LPOLESTR
)BSCBHolder
);
1442 *ppbscPrevious
= prev
;
1444 IBindStatusCallback_Release(prev
);
1447 return IBindCtx_RegisterObjectParam(pbc
, (LPOLESTR
)BSCBHolder
, (IUnknown
*)pbsc
);
1450 /***********************************************************************
1451 * RevokeBindStatusCallback (URLMON.@)
1453 * Unregister a bind status callback.
1455 * pbc [I] Binding context
1456 * pbsc [I] Callback to unregister
1460 * Failure: E_INVALIDARG, if any argument is invalid, or
1461 * E_FAIL if pbsc wasn't registered with pbc.
1463 HRESULT WINAPI
RevokeBindStatusCallback(
1465 IBindStatusCallback
*pbsc
)
1467 IBindStatusCallback
*callback
;
1468 HRESULT hr
= E_FAIL
;
1470 TRACE("(%p,%p)\n", pbc
, pbsc
);
1472 if (pbc
== NULL
|| pbsc
== NULL
)
1473 return E_INVALIDARG
;
1475 if (SUCCEEDED(IBindCtx_GetObjectParam(pbc
, (LPOLESTR
)BSCBHolder
, (IUnknown
**)&callback
)))
1477 if (callback
== pbsc
)
1479 IBindCtx_RevokeObjectParam(pbc
, (LPOLESTR
)BSCBHolder
);
1482 IBindStatusCallback_Release(pbsc
);
1488 /***********************************************************************
1489 * ReleaseBindInfo (URLMON.@)
1491 * Release the resources used by the specified BINDINFO structure.
1494 * pbindinfo [I] BINDINFO to release.
1499 void WINAPI
ReleaseBindInfo(BINDINFO
* pbindinfo
)
1501 FIXME("(%p)stub!\n", pbindinfo
);
1504 /***********************************************************************
1505 * URLDownloadToFileA (URLMON.@)
1507 * Downloads URL szURL to rile szFileName and call lpfnCB callback to
1511 * pCaller [I] controlling IUnknown interface.
1512 * szURL [I] URL of the file to download
1513 * szFileName [I] file name to store the content of the URL
1514 * dwReserved [I] reserved - set to 0
1515 * lpfnCB [I] callback for progress report
1519 * E_OUTOFMEMORY when going out of memory
1521 HRESULT WINAPI
URLDownloadToFileA(LPUNKNOWN pCaller
,
1525 LPBINDSTATUSCALLBACK lpfnCB
)
1527 UNICODE_STRING szURL_w
, szFileName_w
;
1529 if ((szURL
== NULL
) || (szFileName
== NULL
)) {
1530 FIXME("(%p,%s,%s,%08lx,%p) cannot accept NULL strings !\n", pCaller
, debugstr_a(szURL
), debugstr_a(szFileName
), dwReserved
, lpfnCB
);
1531 return E_INVALIDARG
; /* The error code is not specified in this case... */
1534 if (RtlCreateUnicodeStringFromAsciiz(&szURL_w
, szURL
)) {
1535 if (RtlCreateUnicodeStringFromAsciiz(&szFileName_w
, szFileName
)) {
1536 HRESULT ret
= URLDownloadToFileW(pCaller
, szURL_w
.Buffer
, szFileName_w
.Buffer
, dwReserved
, lpfnCB
);
1538 RtlFreeUnicodeString(&szURL_w
);
1539 RtlFreeUnicodeString(&szFileName_w
);
1543 RtlFreeUnicodeString(&szURL_w
);
1547 FIXME("(%p,%s,%s,%08lx,%p) could not allocate W strings !\n", pCaller
, szURL
, szFileName
, dwReserved
, lpfnCB
);
1548 return E_OUTOFMEMORY
;
1551 /***********************************************************************
1552 * URLDownloadToFileW (URLMON.@)
1554 * Downloads URL szURL to rile szFileName and call lpfnCB callback to
1558 * pCaller [I] controlling IUnknown interface.
1559 * szURL [I] URL of the file to download
1560 * szFileName [I] file name to store the content of the URL
1561 * dwReserved [I] reserved - set to 0
1562 * lpfnCB [I] callback for progress report
1566 * E_OUTOFMEMORY when going out of memory
1568 HRESULT WINAPI
URLDownloadToFileW(LPUNKNOWN pCaller
,
1572 LPBINDSTATUSCALLBACK lpfnCB
)
1574 HINTERNET hinternet
, hcon
, hreq
;
1576 CHAR buffer
[0x1000];
1577 DWORD sz
, total
, written
;
1578 DWORD total_size
= 0xFFFFFFFF, arg_size
= sizeof(total_size
);
1579 URL_COMPONENTSW url
;
1580 WCHAR host
[0x80], path
[0x100];
1582 static const WCHAR wszAppName
[]={'u','r','l','m','o','n','.','d','l','l',0};
1584 /* Note: all error codes would need to be checked agains real Windows behaviour... */
1585 TRACE("(%p,%s,%s,%08lx,%p) stub!\n", pCaller
, debugstr_w(szURL
), debugstr_w(szFileName
), dwReserved
, lpfnCB
);
1587 if ((szURL
== NULL
) || (szFileName
== NULL
)) {
1588 FIXME(" cannot accept NULL strings !\n");
1589 return E_INVALIDARG
;
1592 /* Would be better to use the application name here rather than 'urlmon' :-/ */
1593 hinternet
= InternetOpenW(wszAppName
, INTERNET_OPEN_TYPE_PRECONFIG
, NULL
, NULL
, 0);
1594 if (hinternet
== NULL
) {
1595 return E_OUTOFMEMORY
;
1598 memset(&url
, 0, sizeof(url
));
1599 url
.dwStructSize
= sizeof(url
);
1600 url
.lpszHostName
= host
;
1601 url
.dwHostNameLength
= sizeof(host
);
1602 url
.lpszUrlPath
= path
;
1603 url
.dwUrlPathLength
= sizeof(path
);
1605 if (!InternetCrackUrlW(szURL
, 0, 0, &url
)) {
1606 InternetCloseHandle(hinternet
);
1607 return E_OUTOFMEMORY
;
1611 if (IBindStatusCallback_OnProgress(lpfnCB
, 0, 0, BINDSTATUS_CONNECTING
, url
.lpszHostName
) == E_ABORT
) {
1612 InternetCloseHandle(hinternet
);
1617 hcon
= InternetConnectW(hinternet
, url
.lpszHostName
, url
.nPort
,
1618 url
.lpszUserName
, url
.lpszPassword
,
1619 INTERNET_SERVICE_HTTP
, 0, 0);
1621 InternetCloseHandle(hinternet
);
1622 return E_OUTOFMEMORY
;
1625 hreq
= HttpOpenRequestW(hcon
, NULL
, url
.lpszUrlPath
, NULL
, NULL
, NULL
, 0, 0);
1627 InternetCloseHandle(hinternet
);
1628 InternetCloseHandle(hcon
);
1629 return E_OUTOFMEMORY
;
1632 if (!HttpSendRequestW(hreq
, NULL
, 0, NULL
, 0)) {
1633 InternetCloseHandle(hinternet
);
1634 InternetCloseHandle(hcon
);
1635 InternetCloseHandle(hreq
);
1636 return E_OUTOFMEMORY
;
1639 if (HttpQueryInfoW(hreq
, HTTP_QUERY_CONTENT_LENGTH
| HTTP_QUERY_FLAG_NUMBER
,
1640 &total_size
, &arg_size
, NULL
)) {
1641 TRACE(" total size : %ld\n", total_size
);
1644 hfile
= CreateFileW(szFileName
, GENERIC_WRITE
, 0, NULL
, CREATE_ALWAYS
,
1645 FILE_ATTRIBUTE_NORMAL
, NULL
);
1646 if (hfile
== INVALID_HANDLE_VALUE
) {
1647 return E_ACCESSDENIED
;
1651 if (IBindStatusCallback_OnProgress(lpfnCB
, 0, total_size
!= 0xFFFFFFFF ? total_size
: 0,
1652 BINDSTATUS_BEGINDOWNLOADDATA
, szURL
) == E_ABORT
) {
1653 InternetCloseHandle(hreq
);
1654 InternetCloseHandle(hcon
);
1655 InternetCloseHandle(hinternet
);
1663 r
= InternetReadFile(hreq
, buffer
, sizeof(buffer
), &sz
);
1665 InternetCloseHandle(hreq
);
1666 InternetCloseHandle(hcon
);
1667 InternetCloseHandle(hinternet
);
1670 return E_OUTOFMEMORY
;
1678 if (IBindStatusCallback_OnProgress(lpfnCB
, total
, total_size
!= 0xFFFFFFFF ? total_size
: 0,
1679 BINDSTATUS_DOWNLOADINGDATA
, szURL
) == E_ABORT
) {
1680 InternetCloseHandle(hreq
);
1681 InternetCloseHandle(hcon
);
1682 InternetCloseHandle(hinternet
);
1688 if (!WriteFile(hfile
, buffer
, sz
, &written
, NULL
)) {
1689 InternetCloseHandle(hreq
);
1690 InternetCloseHandle(hcon
);
1691 InternetCloseHandle(hinternet
);
1694 return E_OUTOFMEMORY
;
1699 if (IBindStatusCallback_OnProgress(lpfnCB
, total
, total_size
!= 0xFFFFFFFF ? total_size
: 0,
1700 BINDSTATUS_ENDDOWNLOADDATA
, szURL
) == E_ABORT
) {
1701 InternetCloseHandle(hreq
);
1702 InternetCloseHandle(hcon
);
1703 InternetCloseHandle(hinternet
);
1709 InternetCloseHandle(hreq
);
1710 InternetCloseHandle(hcon
);
1711 InternetCloseHandle(hinternet
);
1718 /***********************************************************************
1719 * HlinkSimpleNavigateToString (URLMON.@)
1721 HRESULT WINAPI
HlinkSimpleNavigateToString( LPCWSTR szTarget
,
1722 LPCWSTR szLocation
, LPCWSTR szTargetFrameName
, IUnknown
*pUnk
,
1723 IBindCtx
*pbc
, IBindStatusCallback
*pbsc
, DWORD grfHLNF
, DWORD dwReserved
)
1725 FIXME("%s\n", debugstr_w( szTarget
) );
1729 /***********************************************************************
1730 * HlinkNavigateString (URLMON.@)
1732 HRESULT WINAPI
HlinkNavigateString( IUnknown
*pUnk
, LPCWSTR szTarget
)
1734 TRACE("%p %s\n", pUnk
, debugstr_w( szTarget
) );
1735 return HlinkSimpleNavigateToString(
1736 szTarget
, NULL
, NULL
, pUnk
, NULL
, NULL
, 0, 0 );