2 * Copyright 2005 Jacek Caban
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
31 #include "wine/debug.h"
33 #include "mshtml_private.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
37 /********************************************************************
38 * common ProtocolFactory implementation
42 IInternetProtocolInfo IInternetProtocolInfo_iface;
43 IClassFactory IClassFactory_iface;
46 static inline ProtocolFactory *impl_from_IInternetProtocolInfo(IInternetProtocolInfo *iface)
48 return CONTAINING_RECORD(iface, ProtocolFactory, IInternetProtocolInfo_iface);
51 static HRESULT WINAPI InternetProtocolInfo_QueryInterface(IInternetProtocolInfo *iface, REFIID riid, void **ppv)
53 ProtocolFactory *This = impl_from_IInternetProtocolInfo(iface);
56 if(IsEqualGUID(&IID_IUnknown, riid)) {
57 TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
58 *ppv = &This->IInternetProtocolInfo_iface;
59 }else if(IsEqualGUID(&IID_IInternetProtocolInfo, riid)) {
60 TRACE("(%p)->(IID_IInternetProtocolInfo %p)\n", This, ppv);
61 *ppv = &This->IInternetProtocolInfo_iface;
62 }else if(IsEqualGUID(&IID_IClassFactory, riid)) {
63 TRACE("(%p)->(IID_IClassFactory %p)\n", This, ppv);
64 *ppv = &This->IClassFactory_iface;
68 WARN("unknown interface %s\n", debugstr_guid(riid));
72 IInternetProtocolInfo_AddRef(iface);
76 static ULONG WINAPI InternetProtocolInfo_AddRef(IInternetProtocolInfo *iface)
78 TRACE("(%p)\n", iface);
82 static ULONG WINAPI InternetProtocolInfo_Release(IInternetProtocolInfo *iface)
84 TRACE("(%p)\n", iface);
88 static HRESULT WINAPI InternetProtocolInfo_CombineUrl(IInternetProtocolInfo *iface,
89 LPCWSTR pwzBaseUrl, LPCWSTR pwzRelativeUrl, DWORD dwCombineFlags, LPWSTR pwzResult,
90 DWORD cchResult, DWORD* pcchResult, DWORD dwReserved)
92 TRACE("%p)->(%s %s %08x %p %d %p %d)\n", iface, debugstr_w(pwzBaseUrl),
93 debugstr_w(pwzRelativeUrl), dwCombineFlags, pwzResult, cchResult,
94 pcchResult, dwReserved);
96 return INET_E_USE_DEFAULT_PROTOCOLHANDLER;
99 static HRESULT WINAPI InternetProtocolInfo_CompareUrl(IInternetProtocolInfo *iface, LPCWSTR pwzUrl1,
100 LPCWSTR pwzUrl2, DWORD dwCompareFlags)
102 TRACE("%p)->(%s %s %08x)\n", iface, debugstr_w(pwzUrl1), debugstr_w(pwzUrl2), dwCompareFlags);
106 static inline ProtocolFactory *impl_from_IClassFactory(IClassFactory *iface)
108 return CONTAINING_RECORD(iface, ProtocolFactory, IClassFactory_iface);
111 static HRESULT WINAPI ClassFactory_QueryInterface(IClassFactory *iface, REFIID riid, void **ppv)
113 ProtocolFactory *This = impl_from_IClassFactory(iface);
114 return IInternetProtocolInfo_QueryInterface(&This->IInternetProtocolInfo_iface, riid, ppv);
117 static ULONG WINAPI ClassFactory_AddRef(IClassFactory *iface)
119 ProtocolFactory *This = impl_from_IClassFactory(iface);
120 return IInternetProtocolInfo_AddRef(&This->IInternetProtocolInfo_iface);
123 static ULONG WINAPI ClassFactory_Release(IClassFactory *iface)
125 ProtocolFactory *This = impl_from_IClassFactory(iface);
126 return IInternetProtocolInfo_Release(&This->IInternetProtocolInfo_iface);
129 static HRESULT WINAPI ClassFactory_LockServer(IClassFactory *iface, BOOL dolock)
131 TRACE("(%p)->(%x)\n", iface, dolock);
135 /********************************************************************
136 * AboutProtocol implementation
140 IInternetProtocol IInternetProtocol_iface;
151 static inline AboutProtocol *AboutProtocol_from_IInternetProtocol(IInternetProtocol *iface)
153 return CONTAINING_RECORD(iface, AboutProtocol, IInternetProtocol_iface);
156 static HRESULT WINAPI AboutProtocol_QueryInterface(IInternetProtocol *iface, REFIID riid, void **ppv)
158 AboutProtocol *This = AboutProtocol_from_IInternetProtocol(iface);
162 if(IsEqualGUID(&IID_IUnknown, riid)) {
163 TRACE("(%p)->(IID_IUnknown %p)\n", iface, ppv);
165 return IUnknown_QueryInterface(This->pUnkOuter, riid, ppv);
166 *ppv = &This->IInternetProtocol_iface;
167 }else if(IsEqualGUID(&IID_IInternetProtocolRoot, riid)) {
168 TRACE("(%p)->(IID_IInternetProtocolRoot %p)\n", iface, ppv);
169 *ppv = &This->IInternetProtocol_iface;
170 }else if(IsEqualGUID(&IID_IInternetProtocol, riid)) {
171 TRACE("(%p)->(IID_IInternetProtocol %p)\n", iface, ppv);
172 *ppv = &This->IInternetProtocol_iface;
173 }else if(IsEqualGUID(&IID_IServiceProvider, riid)) {
174 FIXME("IServiceProvider is not implemented\n");
175 return E_NOINTERFACE;
179 TRACE("unknown interface %s\n", debugstr_guid(riid));
180 return E_NOINTERFACE;
183 IInternetProtocol_AddRef(iface);
187 static ULONG WINAPI AboutProtocol_AddRef(IInternetProtocol *iface)
189 AboutProtocol *This = AboutProtocol_from_IInternetProtocol(iface);
190 ULONG ref = InterlockedIncrement(&This->ref);
191 TRACE("(%p) ref=%d\n", iface, ref);
192 return This->pUnkOuter ? IUnknown_AddRef(This->pUnkOuter) : ref;
195 static ULONG WINAPI AboutProtocol_Release(IInternetProtocol *iface)
197 AboutProtocol *This = AboutProtocol_from_IInternetProtocol(iface);
198 IUnknown *pUnkOuter = This->pUnkOuter;
199 ULONG ref = InterlockedDecrement(&This->ref);
201 TRACE("(%p) ref=%x\n", iface, ref);
204 heap_free(This->data);
208 return pUnkOuter ? IUnknown_Release(pUnkOuter) : ref;
211 static HRESULT WINAPI AboutProtocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
212 IInternetProtocolSink* pOIProtSink, IInternetBindInfo* pOIBindInfo,
213 DWORD grfPI, HANDLE_PTR dwReserved)
215 AboutProtocol *This = AboutProtocol_from_IInternetProtocol(iface);
223 static const WCHAR html_begin[] = {0xfeff,'<','H','T','M','L','>',0};
224 static const WCHAR html_end[] = {'<','/','H','T','M','L','>',0};
225 static const WCHAR wszBlank[] = {'b','l','a','n','k',0};
226 static const WCHAR wszAbout[] = {'a','b','o','u','t',':'};
227 static const WCHAR wszTextHtml[] = {'t','e','x','t','/','h','t','m','l',0};
230 * the about protocol seems not to work as I would expect. It creates html document
231 * for a given url, eg. about:some_text -> <HTML>some_text</HTML> except for the case when
232 * some_text = "blank", when document is blank (<HTML></HMTL>). The same happens
233 * when the url does not have "about:" in the beginning.
236 TRACE("(%p)->(%s %p %p %08x %lx)\n", This, debugstr_w(szUrl), pOIProtSink,
237 pOIBindInfo, grfPI, dwReserved);
239 memset(&bindinfo, 0, sizeof(bindinfo));
240 bindinfo.cbSize = sizeof(BINDINFO);
241 hres = IInternetBindInfo_GetBindInfo(pOIBindInfo, &grfBINDF, &bindinfo);
244 ReleaseBindInfo(&bindinfo);
246 TRACE("bindf %x\n", grfBINDF);
248 if(strlenW(szUrl)>=sizeof(wszAbout)/sizeof(WCHAR) && !memcmp(wszAbout, szUrl, sizeof(wszAbout))) {
249 text = szUrl + sizeof(wszAbout)/sizeof(WCHAR);
250 if(!strcmpW(wszBlank, text))
254 data_len = sizeof(html_begin)+sizeof(html_end)-sizeof(WCHAR)
255 + (text ? strlenW(text)*sizeof(WCHAR) : 0);
256 data = heap_alloc(data_len);
258 return E_OUTOFMEMORY;
260 heap_free(This->data);
262 This->data_len = data_len;
264 memcpy(This->data, html_begin, sizeof(html_begin));
266 strcatW((LPWSTR)This->data, text);
267 strcatW((LPWSTR)This->data, html_end);
271 IInternetProtocolSink_ReportProgress(pOIProtSink, BINDSTATUS_MIMETYPEAVAILABLE, wszTextHtml);
273 IInternetProtocolSink_ReportData(pOIProtSink,
274 BSCF_FIRSTDATANOTIFICATION | BSCF_LASTDATANOTIFICATION | BSCF_DATAFULLYAVAILABLE,
275 This->data_len, This->data_len);
277 IInternetProtocolSink_ReportResult(pOIProtSink, S_OK, 0, NULL);
282 static HRESULT WINAPI AboutProtocol_Continue(IInternetProtocol *iface, PROTOCOLDATA* pProtocolData)
284 AboutProtocol *This = AboutProtocol_from_IInternetProtocol(iface);
285 FIXME("(%p)->(%p)\n", This, pProtocolData);
289 static HRESULT WINAPI AboutProtocol_Abort(IInternetProtocol *iface, HRESULT hrReason,
292 AboutProtocol *This = AboutProtocol_from_IInternetProtocol(iface);
293 FIXME("(%p)->(%08x %08x)\n", This, hrReason, dwOptions);
297 static HRESULT WINAPI AboutProtocol_Terminate(IInternetProtocol *iface, DWORD dwOptions)
299 AboutProtocol *This = AboutProtocol_from_IInternetProtocol(iface);
300 TRACE("(%p)->(%08x)\n", This, dwOptions);
304 static HRESULT WINAPI AboutProtocol_Suspend(IInternetProtocol *iface)
306 AboutProtocol *This = AboutProtocol_from_IInternetProtocol(iface);
307 FIXME("(%p)\n", This);
311 static HRESULT WINAPI AboutProtocol_Resume(IInternetProtocol *iface)
313 AboutProtocol *This = AboutProtocol_from_IInternetProtocol(iface);
314 FIXME("(%p)\n", This);
318 static HRESULT WINAPI AboutProtocol_Read(IInternetProtocol *iface, void* pv, ULONG cb, ULONG* pcbRead)
320 AboutProtocol *This = AboutProtocol_from_IInternetProtocol(iface);
322 TRACE("(%p)->(%p %u %p)\n", This, pv, cb, pcbRead);
327 *pcbRead = (cb > This->data_len-This->cur ? This->data_len-This->cur : cb);
332 memcpy(pv, This->data+This->cur, *pcbRead);
333 This->cur += *pcbRead;
338 static HRESULT WINAPI AboutProtocol_Seek(IInternetProtocol *iface, LARGE_INTEGER dlibMove,
339 DWORD dwOrigin, ULARGE_INTEGER* plibNewPosition)
341 AboutProtocol *This = AboutProtocol_from_IInternetProtocol(iface);
342 FIXME("(%p)->(%d %d %p)\n", This, dlibMove.u.LowPart, dwOrigin, plibNewPosition);
346 static HRESULT WINAPI AboutProtocol_LockRequest(IInternetProtocol *iface, DWORD dwOptions)
348 AboutProtocol *This = AboutProtocol_from_IInternetProtocol(iface);
350 TRACE("(%p)->(%d)\n", This, dwOptions);
355 static HRESULT WINAPI AboutProtocol_UnlockRequest(IInternetProtocol *iface)
357 AboutProtocol *This = AboutProtocol_from_IInternetProtocol(iface);
359 TRACE("(%p)\n", This);
364 static const IInternetProtocolVtbl AboutProtocolVtbl = {
365 AboutProtocol_QueryInterface,
366 AboutProtocol_AddRef,
367 AboutProtocol_Release,
369 AboutProtocol_Continue,
371 AboutProtocol_Terminate,
372 AboutProtocol_Suspend,
373 AboutProtocol_Resume,
376 AboutProtocol_LockRequest,
377 AboutProtocol_UnlockRequest
380 static HRESULT WINAPI AboutProtocolFactory_CreateInstance(IClassFactory *iface, IUnknown *pUnkOuter,
381 REFIID riid, void **ppv)
386 TRACE("(%p)->(%p %s %p)\n", iface, pUnkOuter, debugstr_guid(riid), ppv);
388 ret = heap_alloc(sizeof(AboutProtocol));
389 ret->IInternetProtocol_iface.lpVtbl = &AboutProtocolVtbl;
395 ret->pUnkOuter = pUnkOuter;
399 if(IsEqualGUID(&IID_IUnknown, riid))
400 *ppv = &ret->IInternetProtocol_iface;
404 hres = IInternetProtocol_QueryInterface(&ret->IInternetProtocol_iface, riid, ppv);
413 static HRESULT WINAPI AboutProtocolInfo_ParseUrl(IInternetProtocolInfo *iface, LPCWSTR pwzUrl,
414 PARSEACTION ParseAction, DWORD dwParseFlags, LPWSTR pwzResult, DWORD cchResult,
415 DWORD* pcchResult, DWORD dwReserved)
417 TRACE("%p)->(%s %d %08x %p %d %p %d)\n", iface, debugstr_w(pwzUrl), ParseAction,
418 dwParseFlags, pwzResult, cchResult, pcchResult, dwReserved);
420 if(ParseAction == PARSE_SECURITY_URL) {
421 unsigned int len = strlenW(pwzUrl)+1;
427 memcpy(pwzResult, pwzUrl, len*sizeof(WCHAR));
431 if(ParseAction == PARSE_DOMAIN) {
436 *pcchResult = strlenW(pwzUrl)+1;
442 return INET_E_DEFAULT_ACTION;
445 static HRESULT WINAPI AboutProtocolInfo_QueryInfo(IInternetProtocolInfo *iface, LPCWSTR pwzUrl,
446 QUERYOPTION QueryOption, DWORD dwQueryFlags, LPVOID pBuffer, DWORD cbBuffer, DWORD* pcbBuf,
449 TRACE("%p)->(%s %08x %08x %p %d %p %d)\n", iface, debugstr_w(pwzUrl), QueryOption, dwQueryFlags, pBuffer,
450 cbBuffer, pcbBuf, dwReserved);
452 switch(QueryOption) {
453 case QUERY_CAN_NAVIGATE:
454 return INET_E_USE_DEFAULT_PROTOCOLHANDLER;
456 case QUERY_USES_NETWORK:
457 if(!pBuffer || cbBuffer < sizeof(DWORD))
460 *(DWORD*)pBuffer = 0;
462 *pcbBuf = sizeof(DWORD);
466 case QUERY_IS_CACHED:
467 FIXME("Unsupported option QUERY_IS_CACHED\n");
469 case QUERY_IS_INSTALLEDENTRY:
470 FIXME("Unsupported option QUERY_IS_INSTALLEDENTRY\n");
472 case QUERY_IS_CACHED_OR_MAPPED:
473 FIXME("Unsupported option QUERY_IS_CACHED_OR_MAPPED\n");
475 case QUERY_IS_SECURE:
476 FIXME("Unsupported option QUERY_IS_SECURE\n");
479 FIXME("Unsupported option QUERY_IS_SAFE\n");
481 case QUERY_USES_HISTORYFOLDER:
482 FIXME("Unsupported option QUERY_USES_HISTORYFOLDER\n");
484 case QUERY_IS_CACHED_AND_USABLE_OFFLINE:
485 FIXME("Unsupported option QUERY_IS_CACHED_AND_USABLE_OFFLINE\n");
494 static const IInternetProtocolInfoVtbl AboutProtocolInfoVtbl = {
495 InternetProtocolInfo_QueryInterface,
496 InternetProtocolInfo_AddRef,
497 InternetProtocolInfo_Release,
498 AboutProtocolInfo_ParseUrl,
499 InternetProtocolInfo_CombineUrl,
500 InternetProtocolInfo_CompareUrl,
501 AboutProtocolInfo_QueryInfo
504 static const IClassFactoryVtbl AboutProtocolFactoryVtbl = {
505 ClassFactory_QueryInterface,
507 ClassFactory_Release,
508 AboutProtocolFactory_CreateInstance,
509 ClassFactory_LockServer
512 static ProtocolFactory AboutProtocolFactory = {
513 { &AboutProtocolInfoVtbl },
514 { &AboutProtocolFactoryVtbl }
517 /********************************************************************
518 * ResProtocol implementation
522 IInternetProtocol IInternetProtocol_iface;
532 static inline ResProtocol *ResProtocol_from_IInternetProtocol(IInternetProtocol *iface)
534 return CONTAINING_RECORD(iface, ResProtocol, IInternetProtocol_iface);
537 static HRESULT WINAPI ResProtocol_QueryInterface(IInternetProtocol *iface, REFIID riid, void **ppv)
539 ResProtocol *This = ResProtocol_from_IInternetProtocol(iface);
543 if(IsEqualGUID(&IID_IUnknown, riid)) {
544 TRACE("(%p)->(IID_IUnknown %p)\n", iface, ppv);
546 return IUnknown_QueryInterface(This->pUnkOuter, &IID_IUnknown, ppv);
547 *ppv = &This->IInternetProtocol_iface;
548 }else if(IsEqualGUID(&IID_IInternetProtocolRoot, riid)) {
549 TRACE("(%p)->(IID_IInternetProtocolRoot %p)\n", iface, ppv);
550 *ppv = &This->IInternetProtocol_iface;
551 }else if(IsEqualGUID(&IID_IInternetProtocol, riid)) {
552 TRACE("(%p)->(IID_IInternetProtocol %p)\n", iface, ppv);
553 *ppv = &This->IInternetProtocol_iface;
554 }else if(IsEqualGUID(&IID_IServiceProvider, riid)) {
555 FIXME("IServiceProvider is not implemented\n");
556 return E_NOINTERFACE;
560 TRACE("unknown interface %s\n", debugstr_guid(riid));
561 return E_NOINTERFACE;
564 IInternetProtocol_AddRef(iface);
568 static ULONG WINAPI ResProtocol_AddRef(IInternetProtocol *iface)
570 ResProtocol *This = ResProtocol_from_IInternetProtocol(iface);
571 ULONG ref = InterlockedIncrement(&This->ref);
572 TRACE("(%p) ref=%d\n", iface, ref);
573 return This->pUnkOuter ? IUnknown_AddRef(This->pUnkOuter) : ref;
576 static ULONG WINAPI ResProtocol_Release(IInternetProtocol *iface)
578 ResProtocol *This = (ResProtocol*)iface;
579 IUnknown *pUnkOuter = This->pUnkOuter;
580 ULONG ref = InterlockedDecrement(&This->ref);
582 TRACE("(%p) ref=%x\n", iface, ref);
585 heap_free(This->data);
589 return pUnkOuter ? IUnknown_Release(pUnkOuter) : ref;
592 static HRESULT WINAPI ResProtocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
593 IInternetProtocolSink* pOIProtSink, IInternetBindInfo* pOIBindInfo,
594 DWORD grfPI, HANDLE_PTR dwReserved)
596 ResProtocol *This = ResProtocol_from_IInternetProtocol(iface);
597 DWORD grfBINDF = 0, len;
599 LPWSTR url_dll, url_file, url, mime, res_type = (LPWSTR)RT_HTML;
604 static const WCHAR wszRes[] = {'r','e','s',':','/','/'};
606 TRACE("(%p)->(%s %p %p %08x %lx)\n", This, debugstr_w(szUrl), pOIProtSink,
607 pOIBindInfo, grfPI, dwReserved);
609 memset(&bindinfo, 0, sizeof(bindinfo));
610 bindinfo.cbSize = sizeof(BINDINFO);
611 hres = IInternetBindInfo_GetBindInfo(pOIBindInfo, &grfBINDF, &bindinfo);
614 ReleaseBindInfo(&bindinfo);
616 len = strlenW(szUrl)+16;
617 url = heap_alloc(len*sizeof(WCHAR));
618 hres = CoInternetParseUrl(szUrl, PARSE_ENCODE, 0, url, len, &len, 0);
620 WARN("CoInternetParseUrl failed: %08x\n", hres);
622 IInternetProtocolSink_ReportResult(pOIProtSink, hres, 0, NULL);
626 if(len < sizeof(wszRes)/sizeof(wszRes[0]) || memcmp(url, wszRes, sizeof(wszRes))) {
627 WARN("Wrong protocol of url: %s\n", debugstr_w(url));
628 IInternetProtocolSink_ReportResult(pOIProtSink, E_INVALIDARG, 0, NULL);
633 url_dll = url + sizeof(wszRes)/sizeof(wszRes[0]);
634 if(!(url_file = strrchrW(url_dll, '/'))) {
635 WARN("wrong url: %s\n", debugstr_w(url));
636 IInternetProtocolSink_ReportResult(pOIProtSink, MK_E_SYNTAX, 0, NULL);
642 hdll = LoadLibraryExW(url_dll, NULL, LOAD_LIBRARY_AS_DATAFILE);
644 if (!(res_type = strrchrW(url_dll, '/'))) {
645 WARN("Could not open dll: %s\n", debugstr_w(url_dll));
646 IInternetProtocolSink_ReportResult(pOIProtSink, HRESULT_FROM_WIN32(GetLastError()), 0, NULL);
648 return HRESULT_FROM_WIN32(GetLastError());
652 hdll = LoadLibraryExW(url_dll, NULL, LOAD_LIBRARY_AS_DATAFILE);
654 WARN("Could not open dll: %s\n", debugstr_w(url_dll));
655 IInternetProtocolSink_ReportResult(pOIProtSink, HRESULT_FROM_WIN32(GetLastError()), 0, NULL);
657 return HRESULT_FROM_WIN32(GetLastError());
661 TRACE("trying to find resource type %s, name %s\n", debugstr_w(res_type), debugstr_w(url_file));
663 src = FindResourceW(hdll, url_file, res_type);
665 LPWSTR endpoint = NULL;
666 DWORD file_id = strtolW(url_file, &endpoint, 10);
667 if(endpoint == url_file+strlenW(url_file))
668 src = FindResourceW(hdll, MAKEINTRESOURCEW(file_id), MAKEINTRESOURCEW(RT_HTML));
671 WARN("Could not find resource\n");
672 IInternetProtocolSink_ReportResult(pOIProtSink,
673 HRESULT_FROM_WIN32(GetLastError()), 0, NULL);
675 return HRESULT_FROM_WIN32(GetLastError());
680 WARN("data already loaded\n");
681 heap_free(This->data);
684 This->data_len = SizeofResource(hdll, src);
685 This->data = heap_alloc(This->data_len);
686 memcpy(This->data, LoadResource(hdll, src), This->data_len);
691 hres = FindMimeFromData(NULL, url_file, This->data, This->data_len, NULL, 0, &mime, 0);
693 if(SUCCEEDED(hres)) {
694 IInternetProtocolSink_ReportProgress(pOIProtSink, BINDSTATUS_MIMETYPEAVAILABLE, mime);
698 IInternetProtocolSink_ReportData(pOIProtSink,
699 BSCF_FIRSTDATANOTIFICATION | BSCF_LASTDATANOTIFICATION | BSCF_DATAFULLYAVAILABLE,
700 This->data_len, This->data_len);
702 IInternetProtocolSink_ReportResult(pOIProtSink, S_OK, 0, NULL);
707 static HRESULT WINAPI ResProtocol_Continue(IInternetProtocol *iface, PROTOCOLDATA* pProtocolData)
709 ResProtocol *This = ResProtocol_from_IInternetProtocol(iface);
710 FIXME("(%p)->(%p)\n", This, pProtocolData);
714 static HRESULT WINAPI ResProtocol_Abort(IInternetProtocol *iface, HRESULT hrReason,
717 ResProtocol *This = ResProtocol_from_IInternetProtocol(iface);
718 FIXME("(%p)->(%08x %08x)\n", This, hrReason, dwOptions);
722 static HRESULT WINAPI ResProtocol_Terminate(IInternetProtocol *iface, DWORD dwOptions)
724 ResProtocol *This = ResProtocol_from_IInternetProtocol(iface);
726 TRACE("(%p)->(%08x)\n", This, dwOptions);
728 /* test show that we don't have to do anything here */
732 static HRESULT WINAPI ResProtocol_Suspend(IInternetProtocol *iface)
734 ResProtocol *This = ResProtocol_from_IInternetProtocol(iface);
735 FIXME("(%p)\n", This);
739 static HRESULT WINAPI ResProtocol_Resume(IInternetProtocol *iface)
741 ResProtocol *This = ResProtocol_from_IInternetProtocol(iface);
742 FIXME("(%p)\n", This);
746 static HRESULT WINAPI ResProtocol_Read(IInternetProtocol *iface, void* pv, ULONG cb, ULONG* pcbRead)
748 ResProtocol *This = ResProtocol_from_IInternetProtocol(iface);
750 TRACE("(%p)->(%p %u %p)\n", This, pv, cb, pcbRead);
755 *pcbRead = (cb > This->data_len-This->cur ? This->data_len-This->cur : cb);
760 memcpy(pv, This->data+This->cur, *pcbRead);
761 This->cur += *pcbRead;
766 static HRESULT WINAPI ResProtocol_Seek(IInternetProtocol *iface, LARGE_INTEGER dlibMove,
767 DWORD dwOrigin, ULARGE_INTEGER* plibNewPosition)
769 ResProtocol *This = ResProtocol_from_IInternetProtocol(iface);
770 FIXME("(%p)->(%d %d %p)\n", This, dlibMove.u.LowPart, dwOrigin, plibNewPosition);
774 static HRESULT WINAPI ResProtocol_LockRequest(IInternetProtocol *iface, DWORD dwOptions)
776 ResProtocol *This = ResProtocol_from_IInternetProtocol(iface);
778 TRACE("(%p)->(%d)\n", This, dwOptions);
780 /* test show that we don't have to do anything here */
784 static HRESULT WINAPI ResProtocol_UnlockRequest(IInternetProtocol *iface)
786 ResProtocol *This = ResProtocol_from_IInternetProtocol(iface);
788 TRACE("(%p)\n", This);
790 /* test show that we don't have to do anything here */
794 static const IInternetProtocolVtbl ResProtocolVtbl = {
795 ResProtocol_QueryInterface,
799 ResProtocol_Continue,
801 ResProtocol_Terminate,
806 ResProtocol_LockRequest,
807 ResProtocol_UnlockRequest
810 static HRESULT WINAPI ResProtocolFactory_CreateInstance(IClassFactory *iface, IUnknown *pUnkOuter,
811 REFIID riid, void **ppv)
816 TRACE("(%p)->(%p %s %p)\n", iface, pUnkOuter, debugstr_guid(riid), ppv);
818 ret = heap_alloc(sizeof(ResProtocol));
819 ret->IInternetProtocol_iface.lpVtbl = &ResProtocolVtbl;
824 ret->pUnkOuter = pUnkOuter;
828 if(IsEqualGUID(&IID_IUnknown, riid))
829 *ppv = &ret->IInternetProtocol_iface;
833 hres = IInternetProtocol_QueryInterface(&ret->IInternetProtocol_iface, riid, ppv);
842 static HRESULT WINAPI ResProtocolInfo_ParseUrl(IInternetProtocolInfo *iface, LPCWSTR pwzUrl,
843 PARSEACTION ParseAction, DWORD dwParseFlags, LPWSTR pwzResult, DWORD cchResult,
844 DWORD* pcchResult, DWORD dwReserved)
846 TRACE("%p)->(%s %d %x %p %d %p %d)\n", iface, debugstr_w(pwzUrl), ParseAction,
847 dwParseFlags, pwzResult, cchResult, pcchResult, dwReserved);
849 if(ParseAction == PARSE_SECURITY_URL) {
850 WCHAR file_part[MAX_PATH], full_path[MAX_PATH];
854 static const WCHAR wszFile[] = {'f','i','l','e',':','/','/'};
855 static const WCHAR wszRes[] = {'r','e','s',':','/','/'};
857 if(strlenW(pwzUrl) <= sizeof(wszRes)/sizeof(WCHAR) || memcmp(pwzUrl, wszRes, sizeof(wszRes)))
860 ptr = strchrW(pwzUrl + sizeof(wszRes)/sizeof(WCHAR), '/');
864 len = ptr - (pwzUrl + sizeof(wszRes)/sizeof(WCHAR));
865 if(len >= sizeof(file_part)/sizeof(WCHAR)) {
866 FIXME("Too long URL\n");
870 memcpy(file_part, pwzUrl + sizeof(wszRes)/sizeof(WCHAR), len*sizeof(WCHAR));
873 len = SearchPathW(NULL, file_part, NULL, sizeof(full_path)/sizeof(WCHAR), full_path, NULL);
877 /* SearchPath does not work well with winelib files (like our test executable),
878 * so we also try to load the library here */
879 module = LoadLibraryExW(file_part, NULL, LOAD_LIBRARY_AS_DATAFILE);
881 WARN("Could not find file %s\n", debugstr_w(file_part));
885 len = GetModuleFileNameW(module, full_path, sizeof(full_path)/sizeof(WCHAR));
891 size = sizeof(wszFile)/sizeof(WCHAR) + len + 1;
897 memcpy(pwzResult, wszFile, sizeof(wszFile));
898 memcpy(pwzResult + sizeof(wszFile)/sizeof(WCHAR), full_path, (len+1)*sizeof(WCHAR));
902 if(ParseAction == PARSE_DOMAIN) {
907 *pcchResult = strlenW(pwzUrl)+1;
913 return INET_E_DEFAULT_ACTION;
916 static HRESULT WINAPI ResProtocolInfo_QueryInfo(IInternetProtocolInfo *iface, LPCWSTR pwzUrl,
917 QUERYOPTION QueryOption, DWORD dwQueryFlags, LPVOID pBuffer, DWORD cbBuffer, DWORD* pcbBuf,
920 TRACE("%p)->(%s %08x %08x %p %d %p %d)\n", iface, debugstr_w(pwzUrl), QueryOption, dwQueryFlags, pBuffer,
921 cbBuffer, pcbBuf, dwReserved);
923 switch(QueryOption) {
924 case QUERY_USES_NETWORK:
925 if(!pBuffer || cbBuffer < sizeof(DWORD))
928 *(DWORD*)pBuffer = 0;
930 *pcbBuf = sizeof(DWORD);
933 case QUERY_IS_SECURE:
934 FIXME("QUERY_IS_SECURE not supported\n");
937 FIXME("QUERY_IS_SAFE not supported\n");
940 return INET_E_USE_DEFAULT_PROTOCOLHANDLER;
946 static const IInternetProtocolInfoVtbl ResProtocolInfoVtbl = {
947 InternetProtocolInfo_QueryInterface,
948 InternetProtocolInfo_AddRef,
949 InternetProtocolInfo_Release,
950 ResProtocolInfo_ParseUrl,
951 InternetProtocolInfo_CombineUrl,
952 InternetProtocolInfo_CompareUrl,
953 ResProtocolInfo_QueryInfo
956 static const IClassFactoryVtbl ResProtocolFactoryVtbl = {
957 ClassFactory_QueryInterface,
959 ClassFactory_Release,
960 ResProtocolFactory_CreateInstance,
961 ClassFactory_LockServer
964 static ProtocolFactory ResProtocolFactory = {
965 { &ResProtocolInfoVtbl },
966 { &ResProtocolFactoryVtbl }
969 /********************************************************************
970 * JSProtocol implementation
973 static HRESULT WINAPI JSProtocolFactory_CreateInstance(IClassFactory *iface, IUnknown *pUnkOuter,
974 REFIID riid, void **ppv)
976 FIXME("(%p)->(%p %s %p)\n", iface, pUnkOuter, debugstr_guid(riid), ppv);
980 static HRESULT WINAPI JSProtocolInfo_ParseUrl(IInternetProtocolInfo *iface, LPCWSTR pwzUrl,
981 PARSEACTION ParseAction, DWORD dwParseFlags, LPWSTR pwzResult, DWORD cchResult,
982 DWORD* pcchResult, DWORD dwReserved)
984 TRACE("%p)->(%s %d %x %p %d %p %d)\n", iface, debugstr_w(pwzUrl), ParseAction,
985 dwParseFlags, pwzResult, cchResult, pcchResult, dwReserved);
987 switch(ParseAction) {
988 case PARSE_SECURITY_URL:
989 FIXME("PARSE_SECURITY_URL\n");
992 FIXME("PARSE_DOMAIN\n");
995 return INET_E_DEFAULT_ACTION;
1001 static HRESULT WINAPI JSProtocolInfo_QueryInfo(IInternetProtocolInfo *iface, LPCWSTR pwzUrl,
1002 QUERYOPTION QueryOption, DWORD dwQueryFlags, LPVOID pBuffer, DWORD cbBuffer, DWORD* pcbBuf,
1005 TRACE("%p)->(%s %08x %08x %p %d %p %d)\n", iface, debugstr_w(pwzUrl), QueryOption, dwQueryFlags, pBuffer,
1006 cbBuffer, pcbBuf, dwReserved);
1008 switch(QueryOption) {
1009 case QUERY_USES_NETWORK:
1010 if(!pBuffer || cbBuffer < sizeof(DWORD))
1013 *(DWORD*)pBuffer = 0;
1015 *pcbBuf = sizeof(DWORD);
1018 case QUERY_IS_SECURE:
1019 FIXME("QUERY_IS_SECURE not supported\n");
1023 return INET_E_USE_DEFAULT_PROTOCOLHANDLER;
1029 static const IInternetProtocolInfoVtbl JSProtocolInfoVtbl = {
1030 InternetProtocolInfo_QueryInterface,
1031 InternetProtocolInfo_AddRef,
1032 InternetProtocolInfo_Release,
1033 JSProtocolInfo_ParseUrl,
1034 InternetProtocolInfo_CombineUrl,
1035 InternetProtocolInfo_CompareUrl,
1036 JSProtocolInfo_QueryInfo
1039 static const IClassFactoryVtbl JSProtocolFactoryVtbl = {
1040 ClassFactory_QueryInterface,
1041 ClassFactory_AddRef,
1042 ClassFactory_Release,
1043 JSProtocolFactory_CreateInstance,
1044 ClassFactory_LockServer
1047 static ProtocolFactory JSProtocolFactory = {
1048 { &JSProtocolInfoVtbl },
1049 { &JSProtocolFactoryVtbl }
1052 HRESULT ProtocolFactory_Create(REFCLSID rclsid, REFIID riid, void **ppv)
1054 ProtocolFactory *cf = NULL;
1056 if(IsEqualGUID(&CLSID_AboutProtocol, rclsid))
1057 cf = &AboutProtocolFactory;
1058 else if(IsEqualGUID(&CLSID_ResProtocol, rclsid))
1059 cf = &ResProtocolFactory;
1060 else if(IsEqualGUID(&CLSID_JSProtocol, rclsid))
1061 cf = &JSProtocolFactory;
1064 FIXME("not implemented protocol %s\n", debugstr_guid(rclsid));
1065 return CLASS_E_CLASSNOTAVAILABLE;
1068 return IInternetProtocolInfo_QueryInterface(&cf->IInternetProtocolInfo_iface, riid, ppv);