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"
32 #include "wine/unicode.h"
34 #include "mshtml_private.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
38 /********************************************************************
39 * common ProtocolFactory implementation
42 #define PROTOCOLINFO(x) ((IInternetProtocolInfo*) &(x)->lpInternetProtocolInfoVtbl)
43 #define CLASSFACTORY(x) ((IClassFactory*) &(x)->lpClassFactoryVtbl)
44 #define PROTOCOL(x) ((IInternetProtocol*) &(x)->lpInternetProtocolVtbl)
47 const IInternetProtocolInfoVtbl *lpInternetProtocolInfoVtbl;
48 const IClassFactoryVtbl *lpClassFactoryVtbl;
51 #define PROTOCOLINFO_THIS(iface) DEFINE_THIS(ProtocolFactory, InternetProtocolInfo, iface)
53 static HRESULT WINAPI InternetProtocolInfo_QueryInterface(IInternetProtocolInfo *iface, REFIID riid, void **ppv)
55 ProtocolFactory *This = PROTOCOLINFO_THIS(iface);
58 if(IsEqualGUID(&IID_IUnknown, riid)) {
59 TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
60 *ppv = PROTOCOLINFO(This);
61 }else if(IsEqualGUID(&IID_IInternetProtocolInfo, riid)) {
62 TRACE("(%p)->(IID_IInternetProtocolInfo %p)\n", This, ppv);
63 *ppv = PROTOCOLINFO(This);
64 }else if(IsEqualGUID(&IID_IClassFactory, riid)) {
65 TRACE("(%p)->(IID_IClassFactory %p)\n", This, ppv);
66 *ppv = CLASSFACTORY(This);
70 WARN("unknown interface %s\n", debugstr_guid(riid));
74 IInternetProtocolInfo_AddRef(iface);
78 static ULONG WINAPI InternetProtocolInfo_AddRef(IInternetProtocolInfo *iface)
80 ProtocolFactory *This = PROTOCOLINFO_THIS(iface);
81 TRACE("(%p)\n", This);
86 static ULONG WINAPI InternetProtocolInfo_Release(IInternetProtocolInfo *iface)
88 ProtocolFactory *This = PROTOCOLINFO_THIS(iface);
89 TRACE("(%p)\n", This);
94 static HRESULT WINAPI InternetProtocolInfo_CombineUrl(IInternetProtocolInfo *iface,
95 LPCWSTR pwzBaseUrl, LPCWSTR pwzRelativeUrl, DWORD dwCombineFlags, LPWSTR pwzResult,
96 DWORD cchResult, DWORD* pcchResult, DWORD dwReserved)
98 TRACE("%p)->(%s %s %08x %p %d %p %d)\n", iface, debugstr_w(pwzBaseUrl),
99 debugstr_w(pwzRelativeUrl), dwCombineFlags, pwzResult, cchResult,
100 pcchResult, dwReserved);
102 return INET_E_USE_DEFAULT_PROTOCOLHANDLER;
105 static HRESULT WINAPI InternetProtocolInfo_CompareUrl(IInternetProtocolInfo *iface, LPCWSTR pwzUrl1,
106 LPCWSTR pwzUrl2, DWORD dwCompareFlags)
108 TRACE("%p)->(%s %s %08x)\n", iface, debugstr_w(pwzUrl1), debugstr_w(pwzUrl2), dwCompareFlags);
112 #undef PROTOCOLINFO_THIS
114 #define CLASSFACTORY_THIS(iface) DEFINE_THIS(ProtocolFactory, ClassFactory, iface)
116 static HRESULT WINAPI ClassFactory_QueryInterface(IClassFactory *iface, REFIID riid, void **ppv)
118 ProtocolFactory *This = CLASSFACTORY_THIS(iface);
119 return IInternetProtocolInfo_QueryInterface(PROTOCOLINFO(This), riid, ppv);
122 static ULONG WINAPI ClassFactory_AddRef(IClassFactory *iface)
124 ProtocolFactory *This = CLASSFACTORY_THIS(iface);
125 return IInternetProtocolInfo_AddRef(PROTOCOLINFO(This));
128 static ULONG WINAPI ClassFactory_Release(IClassFactory *iface)
130 ProtocolFactory *This = CLASSFACTORY_THIS(iface);
131 return IInternetProtocolInfo_Release(PROTOCOLINFO(This));
134 static HRESULT WINAPI ClassFactory_LockServer(IClassFactory *iface, BOOL dolock)
136 ProtocolFactory *This = CLASSFACTORY_THIS(iface);
138 TRACE("(%p)->(%x)\n", This, dolock);
148 #undef CLASSFACTORY_THIS
150 /********************************************************************
151 * AboutProtocol implementation
155 const IInternetProtocolVtbl *lpInternetProtocolVtbl;
166 #define PROTOCOL_THIS(iface) DEFINE_THIS(AboutProtocol, InternetProtocol, iface)
168 static HRESULT WINAPI AboutProtocol_QueryInterface(IInternetProtocol *iface, REFIID riid, void **ppv)
170 AboutProtocol *This = PROTOCOL_THIS(iface);
174 if(IsEqualGUID(&IID_IUnknown, riid)) {
175 TRACE("(%p)->(IID_IUnknown %p)\n", iface, ppv);
177 return IUnknown_QueryInterface(This->pUnkOuter, riid, ppv);
178 *ppv = PROTOCOL(This);
179 }else if(IsEqualGUID(&IID_IInternetProtocolRoot, riid)) {
180 TRACE("(%p)->(IID_IInternetProtocolRoot %p)\n", iface, ppv);
181 *ppv = PROTOCOL(This);
182 }else if(IsEqualGUID(&IID_IInternetProtocol, riid)) {
183 TRACE("(%p)->(IID_IInternetProtocol %p)\n", iface, ppv);
184 *ppv = PROTOCOL(This);
185 }else if(IsEqualGUID(&IID_IServiceProvider, riid)) {
186 FIXME("IServiceProvider is not implemented\n");
187 return E_NOINTERFACE;
191 TRACE("unknown interface %s\n", debugstr_guid(riid));
192 return E_NOINTERFACE;
195 IInternetProtocol_AddRef(iface);
199 static ULONG WINAPI AboutProtocol_AddRef(IInternetProtocol *iface)
201 AboutProtocol *This = PROTOCOL_THIS(iface);
202 ULONG ref = InterlockedIncrement(&This->ref);
203 TRACE("(%p) ref=%d\n", iface, ref);
204 return This->pUnkOuter ? IUnknown_AddRef(This->pUnkOuter) : ref;
207 static ULONG WINAPI AboutProtocol_Release(IInternetProtocol *iface)
209 AboutProtocol *This = PROTOCOL_THIS(iface);
210 IUnknown *pUnkOuter = This->pUnkOuter;
211 ULONG ref = InterlockedDecrement(&This->ref);
213 TRACE("(%p) ref=%x\n", iface, ref);
216 mshtml_free(This->data);
221 return pUnkOuter ? IUnknown_Release(pUnkOuter) : ref;
224 static HRESULT WINAPI AboutProtocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
225 IInternetProtocolSink* pOIProtSink, IInternetBindInfo* pOIBindInfo,
226 DWORD grfPI, DWORD dwReserved)
228 AboutProtocol *This = PROTOCOL_THIS(iface);
233 static const WCHAR html_begin[] = {0xfeff,'<','H','T','M','L','>',0};
234 static const WCHAR html_end[] = {'<','/','H','T','M','L','>',0};
235 static const WCHAR wszBlank[] = {'b','l','a','n','k',0};
236 static const WCHAR wszAbout[] = {'a','b','o','u','t',':'};
237 static const WCHAR wszTextHtml[] = {'t','e','x','t','/','h','t','m','l',0};
240 * the about protocol seems not to work as I would expect. It creates html document
241 * for a given url, eg. about:some_text -> <HTML>some_text</HTML> except for the case when
242 * some_text = "blank", when document is blank (<HTML></HMTL>). The same happens
243 * when the url does not have "about:" in the beginning.
246 TRACE("(%p)->(%s %p %p %08x %d)\n", This, debugstr_w(szUrl), pOIProtSink,
247 pOIBindInfo, grfPI, dwReserved);
249 memset(&bindinfo, 0, sizeof(bindinfo));
250 bindinfo.cbSize = sizeof(BINDINFO);
251 IInternetBindInfo_GetBindInfo(pOIBindInfo, &grfBINDF, &bindinfo);
252 ReleaseBindInfo(&bindinfo);
254 if(strlenW(szUrl)>=sizeof(wszAbout)/sizeof(WCHAR) && !memcmp(wszAbout, szUrl, sizeof(wszAbout))) {
255 text = szUrl + sizeof(wszAbout)/sizeof(WCHAR);
256 if(!strcmpW(wszBlank, text))
260 This->data_len = sizeof(html_begin)+sizeof(html_end)-sizeof(WCHAR)
261 + (text ? strlenW(text)*sizeof(WCHAR) : 0);
262 This->data = mshtml_alloc(This->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 = PROTOCOL_THIS(iface);
285 FIXME("(%p)->(%p)\n", This, pProtocolData);
289 static HRESULT WINAPI AboutProtocol_Abort(IInternetProtocol *iface, HRESULT hrReason,
292 AboutProtocol *This = PROTOCOL_THIS(iface);
293 FIXME("(%p)->(%08x %08x)\n", This, hrReason, dwOptions);
297 static HRESULT WINAPI AboutProtocol_Terminate(IInternetProtocol *iface, DWORD dwOptions)
299 AboutProtocol *This = PROTOCOL_THIS(iface);
300 TRACE("(%p)->(%08x)\n", This, dwOptions);
304 static HRESULT WINAPI AboutProtocol_Suspend(IInternetProtocol *iface)
306 AboutProtocol *This = PROTOCOL_THIS(iface);
307 FIXME("(%p)\n", This);
311 static HRESULT WINAPI AboutProtocol_Resume(IInternetProtocol *iface)
313 AboutProtocol *This = PROTOCOL_THIS(iface);
314 FIXME("(%p)\n", This);
318 static HRESULT WINAPI AboutProtocol_Read(IInternetProtocol *iface, void* pv, ULONG cb, ULONG* pcbRead)
320 AboutProtocol *This = PROTOCOL_THIS(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, *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 = PROTOCOL_THIS(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 = PROTOCOL_THIS(iface);
350 TRACE("(%p)->(%d)\n", This, dwOptions);
355 static HRESULT WINAPI AboutProtocol_UnlockRequest(IInternetProtocol *iface)
357 AboutProtocol *This = PROTOCOL_THIS(iface);
359 TRACE("(%p)\n", This);
366 static const IInternetProtocolVtbl AboutProtocolVtbl = {
367 AboutProtocol_QueryInterface,
368 AboutProtocol_AddRef,
369 AboutProtocol_Release,
371 AboutProtocol_Continue,
373 AboutProtocol_Terminate,
374 AboutProtocol_Suspend,
375 AboutProtocol_Resume,
378 AboutProtocol_LockRequest,
379 AboutProtocol_UnlockRequest
382 static HRESULT WINAPI AboutProtocolFactory_CreateInstance(IClassFactory *iface, IUnknown *pUnkOuter,
383 REFIID riid, void **ppv)
388 TRACE("(%p)->(%p %s %p)\n", iface, pUnkOuter, debugstr_guid(riid), ppv);
390 ret = mshtml_alloc(sizeof(AboutProtocol));
391 ret->lpInternetProtocolVtbl = &AboutProtocolVtbl;
397 ret->pUnkOuter = pUnkOuter;
401 if(IsEqualGUID(&IID_IUnknown, riid))
402 *ppv = PROTOCOL(ret);
406 hres = IInternetProtocol_QueryInterface(PROTOCOL(ret), riid, ppv);
417 static HRESULT WINAPI AboutProtocolInfo_ParseUrl(IInternetProtocolInfo *iface, LPCWSTR pwzUrl,
418 PARSEACTION ParseAction, DWORD dwParseFlags, LPWSTR pwzResult, DWORD cchResult,
419 DWORD* pcchResult, DWORD dwReserved)
421 TRACE("%p)->(%s %08x %08x %p %d %p %d)\n", iface, debugstr_w(pwzUrl), ParseAction,
422 dwParseFlags, pwzResult, cchResult, pcchResult, dwReserved);
424 if(ParseAction == PARSE_SECURITY_URL) {
425 int len = lstrlenW(pwzUrl);
430 memcpy(pwzResult, pwzUrl, (len+1)*sizeof(WCHAR));
434 if(ParseAction == PARSE_DOMAIN) {
439 *pcchResult = strlenW(pwzUrl)+1;
445 return INET_E_DEFAULT_ACTION;
448 static HRESULT WINAPI AboutProtocolInfo_QueryInfo(IInternetProtocolInfo *iface, LPCWSTR pwzUrl,
449 QUERYOPTION QueryOption, DWORD dwQueryFlags, LPVOID pBuffer, DWORD cbBuffer, DWORD* pcbBuf,
452 FIXME("%p)->(%s %08x %08x %p %d %p %d)\n", iface, debugstr_w(pwzUrl), QueryOption, dwQueryFlags, pBuffer,
453 cbBuffer, pcbBuf, dwReserved);
457 static const IInternetProtocolInfoVtbl AboutProtocolInfoVtbl = {
458 InternetProtocolInfo_QueryInterface,
459 InternetProtocolInfo_AddRef,
460 InternetProtocolInfo_Release,
461 AboutProtocolInfo_ParseUrl,
462 InternetProtocolInfo_CombineUrl,
463 InternetProtocolInfo_CompareUrl,
464 AboutProtocolInfo_QueryInfo
467 static const IClassFactoryVtbl AboutProtocolFactoryVtbl = {
468 ClassFactory_QueryInterface,
470 ClassFactory_Release,
471 AboutProtocolFactory_CreateInstance,
472 ClassFactory_LockServer
475 static ProtocolFactory AboutProtocolFactory = {
476 &AboutProtocolInfoVtbl,
477 &AboutProtocolFactoryVtbl
480 /********************************************************************
481 * ResProtocol implementation
485 const IInternetProtocolVtbl *lpInternetProtocolVtbl;
495 #define PROTOCOL_THIS(iface) DEFINE_THIS(ResProtocol, InternetProtocol, iface)
497 static HRESULT WINAPI ResProtocol_QueryInterface(IInternetProtocol *iface, REFIID riid, void **ppv)
499 ResProtocol *This = PROTOCOL_THIS(iface);
503 if(IsEqualGUID(&IID_IUnknown, riid)) {
504 TRACE("(%p)->(IID_IUnknown %p)\n", iface, ppv);
506 return IUnknown_QueryInterface(This->pUnkOuter, &IID_IUnknown, ppv);
507 *ppv = PROTOCOL(This);
508 }else if(IsEqualGUID(&IID_IInternetProtocolRoot, riid)) {
509 TRACE("(%p)->(IID_IInternetProtocolRoot %p)\n", iface, ppv);
510 *ppv = PROTOCOL(This);
511 }else if(IsEqualGUID(&IID_IInternetProtocol, riid)) {
512 TRACE("(%p)->(IID_IInternetProtocol %p)\n", iface, ppv);
513 *ppv = PROTOCOL(This);
514 }else if(IsEqualGUID(&IID_IServiceProvider, riid)) {
515 FIXME("IServiceProvider is not implemented\n");
516 return E_NOINTERFACE;
520 TRACE("unknown interface %s\n", debugstr_guid(riid));
521 return E_NOINTERFACE;
524 IInternetProtocol_AddRef(iface);
528 static ULONG WINAPI ResProtocol_AddRef(IInternetProtocol *iface)
530 ResProtocol *This = PROTOCOL_THIS(iface);
531 ULONG ref = InterlockedIncrement(&This->ref);
532 TRACE("(%p) ref=%d\n", iface, ref);
533 return This->pUnkOuter ? IUnknown_AddRef(This->pUnkOuter) : ref;
536 static ULONG WINAPI ResProtocol_Release(IInternetProtocol *iface)
538 ResProtocol *This = (ResProtocol*)iface;
539 IUnknown *pUnkOuter = This->pUnkOuter;
540 ULONG ref = InterlockedDecrement(&This->ref);
542 TRACE("(%p) ref=%x\n", iface, ref);
545 mshtml_free(This->data);
550 return pUnkOuter ? IUnknown_Release(pUnkOuter) : ref;
553 static HRESULT WINAPI ResProtocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
554 IInternetProtocolSink* pOIProtSink, IInternetBindInfo* pOIBindInfo,
555 DWORD grfPI, DWORD dwReserved)
557 ResProtocol *This = PROTOCOL_THIS(iface);
558 DWORD grfBINDF = 0, len;
560 LPWSTR url_dll, url_file, url, mime;
565 static const WCHAR wszRes[] = {'r','e','s',':','/','/'};
567 TRACE("(%p)->(%s %p %p %08x %d)\n", This, debugstr_w(szUrl), pOIProtSink,
568 pOIBindInfo, grfPI, dwReserved);
570 memset(&bindinfo, 0, sizeof(bindinfo));
571 bindinfo.cbSize = sizeof(BINDINFO);
572 IInternetBindInfo_GetBindInfo(pOIBindInfo, &grfBINDF, &bindinfo);
573 ReleaseBindInfo(&bindinfo);
575 len = strlenW(szUrl)+16;
576 url = mshtml_alloc(len*sizeof(WCHAR));
577 hres = CoInternetParseUrl(szUrl, PARSE_ENCODE, 0, url, len, &len, 0);
579 WARN("CoInternetParseUrl failed: %08x\n", hres);
581 IInternetProtocolSink_ReportResult(pOIProtSink, hres, 0, NULL);
585 if(len < sizeof(wszRes)/sizeof(wszRes[0]) || memcmp(url, wszRes, sizeof(wszRes))) {
586 WARN("Wrong protocol of url: %s\n", debugstr_w(url));
587 IInternetProtocolSink_ReportResult(pOIProtSink, E_INVALIDARG, 0, NULL);
592 url_dll = url + sizeof(wszRes)/sizeof(wszRes[0]);
593 if(!(url_file = strrchrW(url_dll, '/'))) {
594 WARN("wrong url: %s\n", debugstr_w(url));
595 IInternetProtocolSink_ReportResult(pOIProtSink, MK_E_SYNTAX, 0, NULL);
601 hdll = LoadLibraryExW(url_dll, NULL, LOAD_LIBRARY_AS_DATAFILE);
603 WARN("Could not open dll: %s\n", debugstr_w(url_dll));
604 IInternetProtocolSink_ReportResult(pOIProtSink, HRESULT_FROM_WIN32(GetLastError()), 0, NULL);
605 return HRESULT_FROM_WIN32(GetLastError());
608 src = FindResourceW(hdll, url_file, (LPCWSTR)RT_HTML);
610 LPWSTR endpoint = NULL;
611 DWORD file_id = strtolW(url_file, &endpoint, 10);
612 if(endpoint == url_file+strlenW(url_file))
613 src = FindResourceW(hdll, (LPCWSTR)file_id, (LPCWSTR)RT_HTML);
616 WARN("Could not find resource\n");
617 IInternetProtocolSink_ReportResult(pOIProtSink,
618 HRESULT_FROM_WIN32(GetLastError()), 0, NULL);
620 return HRESULT_FROM_WIN32(GetLastError());
625 WARN("data already loaded\n");
626 mshtml_free(This->data);
629 This->data_len = SizeofResource(hdll, src);
630 This->data = mshtml_alloc(This->data_len);
631 memcpy(This->data, LoadResource(hdll, src), This->data_len);
636 hres = FindMimeFromData(NULL, url_file, NULL, 0, NULL, 0, &mime, 0);
638 if(SUCCEEDED(hres)) {
639 IInternetProtocolSink_ReportProgress(pOIProtSink, BINDSTATUS_MIMETYPEAVAILABLE, mime);
643 IInternetProtocolSink_ReportData(pOIProtSink,
644 BSCF_FIRSTDATANOTIFICATION | BSCF_LASTDATANOTIFICATION | BSCF_DATAFULLYAVAILABLE,
645 This->data_len, This->data_len);
647 IInternetProtocolSink_ReportResult(pOIProtSink, S_OK, 0, NULL);
652 static HRESULT WINAPI ResProtocol_Continue(IInternetProtocol *iface, PROTOCOLDATA* pProtocolData)
654 ResProtocol *This = PROTOCOL_THIS(iface);
655 FIXME("(%p)->(%p)\n", This, pProtocolData);
659 static HRESULT WINAPI ResProtocol_Abort(IInternetProtocol *iface, HRESULT hrReason,
662 ResProtocol *This = PROTOCOL_THIS(iface);
663 FIXME("(%p)->(%08x %08x)\n", This, hrReason, dwOptions);
667 static HRESULT WINAPI ResProtocol_Terminate(IInternetProtocol *iface, DWORD dwOptions)
669 ResProtocol *This = PROTOCOL_THIS(iface);
671 TRACE("(%p)->(%08x)\n", This, dwOptions);
673 /* test show that we don't have to do anything here */
677 static HRESULT WINAPI ResProtocol_Suspend(IInternetProtocol *iface)
679 ResProtocol *This = PROTOCOL_THIS(iface);
680 FIXME("(%p)\n", This);
684 static HRESULT WINAPI ResProtocol_Resume(IInternetProtocol *iface)
686 ResProtocol *This = PROTOCOL_THIS(iface);
687 FIXME("(%p)\n", This);
691 static HRESULT WINAPI ResProtocol_Read(IInternetProtocol *iface, void* pv, ULONG cb, ULONG* pcbRead)
693 ResProtocol *This = PROTOCOL_THIS(iface);
695 TRACE("(%p)->(%p %u %p)\n", This, pv, cb, pcbRead);
700 *pcbRead = (cb > This->data_len-This->cur ? This->data_len-This->cur : cb);
705 memcpy(pv, This->data, *pcbRead);
706 This->cur += *pcbRead;
711 static HRESULT WINAPI ResProtocol_Seek(IInternetProtocol *iface, LARGE_INTEGER dlibMove,
712 DWORD dwOrigin, ULARGE_INTEGER* plibNewPosition)
714 ResProtocol *This = PROTOCOL_THIS(iface);
715 FIXME("(%p)->(%d %d %p)\n", This, dlibMove.u.LowPart, dwOrigin, plibNewPosition);
719 static HRESULT WINAPI ResProtocol_LockRequest(IInternetProtocol *iface, DWORD dwOptions)
721 ResProtocol *This = PROTOCOL_THIS(iface);
723 TRACE("(%p)->(%d)\n", This, dwOptions);
725 /* test show that we don't have to do anything here */
729 static HRESULT WINAPI ResProtocol_UnlockRequest(IInternetProtocol *iface)
731 ResProtocol *This = PROTOCOL_THIS(iface);
733 TRACE("(%p)\n", This);
735 /* test show that we don't have to do anything here */
741 static const IInternetProtocolVtbl ResProtocolVtbl = {
742 ResProtocol_QueryInterface,
746 ResProtocol_Continue,
748 ResProtocol_Terminate,
753 ResProtocol_LockRequest,
754 ResProtocol_UnlockRequest
757 static HRESULT WINAPI ResProtocolFactory_CreateInstance(IClassFactory *iface, IUnknown *pUnkOuter,
758 REFIID riid, void **ppv)
763 TRACE("(%p)->(%p %s %p)\n", iface, pUnkOuter, debugstr_guid(riid), ppv);
765 ret = mshtml_alloc(sizeof(ResProtocol));
766 ret->lpInternetProtocolVtbl = &ResProtocolVtbl;
771 ret->pUnkOuter = pUnkOuter;
775 if(IsEqualGUID(&IID_IUnknown, riid))
776 *ppv = PROTOCOL(ret);
780 hres = IInternetProtocol_QueryInterface(PROTOCOL(ret), riid, ppv);
791 static HRESULT WINAPI ResProtocolInfo_ParseUrl(IInternetProtocolInfo *iface, LPCWSTR pwzUrl,
792 PARSEACTION ParseAction, DWORD dwParseFlags, LPWSTR pwzResult, DWORD cchResult,
793 DWORD* pcchResult, DWORD dwReserved)
795 TRACE("%p)->(%s %d %x %p %d %p %d)\n", iface, debugstr_w(pwzUrl), ParseAction,
796 dwParseFlags, pwzResult, cchResult, pcchResult, dwReserved);
798 if(ParseAction == PARSE_SECURITY_URL) {
802 static const WCHAR wszFile[] = {'f','i','l','e',':','/','/'};
803 static const WCHAR wszRes[] = {'r','e','s',':','/','/'};
805 if(strlenW(pwzUrl) <= sizeof(wszRes)/sizeof(WCHAR) || memcmp(pwzUrl, wszRes, sizeof(wszRes)))
808 ptr = strchrW(pwzUrl + sizeof(wszRes)/sizeof(WCHAR), '/');
812 size = ptr-pwzUrl + sizeof(wszFile)/sizeof(WCHAR) - sizeof(wszRes)/sizeof(WCHAR);
813 if(size >= cchResult)
816 /* FIXME: return full path */
817 memcpy(pwzResult, wszFile, sizeof(wszFile));
818 memcpy(pwzResult + sizeof(wszFile)/sizeof(WCHAR),
819 pwzUrl + sizeof(wszRes)/sizeof(WCHAR),
820 size*sizeof(WCHAR) - sizeof(wszFile));
828 if(ParseAction == PARSE_DOMAIN) {
833 *pcchResult = strlenW(pwzUrl)+1;
839 return INET_E_DEFAULT_ACTION;
842 static HRESULT WINAPI ResProtocolInfo_QueryInfo(IInternetProtocolInfo *iface, LPCWSTR pwzUrl,
843 QUERYOPTION QueryOption, DWORD dwQueryFlags, LPVOID pBuffer, DWORD cbBuffer, DWORD* pcbBuf,
846 FIXME("%p)->(%s %08x %08x %p %d %p %d)\n", iface, debugstr_w(pwzUrl), QueryOption, dwQueryFlags, pBuffer,
847 cbBuffer, pcbBuf, dwReserved);
851 static const IInternetProtocolInfoVtbl ResProtocolInfoVtbl = {
852 InternetProtocolInfo_QueryInterface,
853 InternetProtocolInfo_AddRef,
854 InternetProtocolInfo_Release,
855 ResProtocolInfo_ParseUrl,
856 InternetProtocolInfo_CombineUrl,
857 InternetProtocolInfo_CompareUrl,
858 ResProtocolInfo_QueryInfo
861 static const IClassFactoryVtbl ResProtocolFactoryVtbl = {
862 ClassFactory_QueryInterface,
864 ClassFactory_Release,
865 ResProtocolFactory_CreateInstance,
866 ClassFactory_LockServer
869 static ProtocolFactory ResProtocolFactory = {
870 &ResProtocolInfoVtbl,
871 &ResProtocolFactoryVtbl
874 HRESULT ProtocolFactory_Create(REFCLSID rclsid, REFIID riid, void **ppv)
876 ProtocolFactory *cf = NULL;
878 if(IsEqualGUID(&CLSID_AboutProtocol, rclsid))
879 cf = &AboutProtocolFactory;
880 else if(IsEqualGUID(&CLSID_ResProtocol, rclsid))
881 cf = &ResProtocolFactory;
884 FIXME("not implemented protocol %s\n", debugstr_guid(rclsid));
885 return CLASS_E_CLASSNOTAVAILABLE;
888 return IUnknown_QueryInterface((IUnknown*)cf, riid, ppv);