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 heap_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 TRACE("bindf %x\n", grfBINDF
);
256 if(strlenW(szUrl
)>=sizeof(wszAbout
)/sizeof(WCHAR
) && !memcmp(wszAbout
, szUrl
, sizeof(wszAbout
))) {
257 text
= szUrl
+ sizeof(wszAbout
)/sizeof(WCHAR
);
258 if(!strcmpW(wszBlank
, text
))
262 This
->data_len
= sizeof(html_begin
)+sizeof(html_end
)-sizeof(WCHAR
)
263 + (text
? strlenW(text
)*sizeof(WCHAR
) : 0);
264 This
->data
= heap_alloc(This
->data_len
);
266 memcpy(This
->data
, html_begin
, sizeof(html_begin
));
268 strcatW((LPWSTR
)This
->data
, text
);
269 strcatW((LPWSTR
)This
->data
, html_end
);
273 IInternetProtocolSink_ReportProgress(pOIProtSink
, BINDSTATUS_MIMETYPEAVAILABLE
, wszTextHtml
);
275 IInternetProtocolSink_ReportData(pOIProtSink
,
276 BSCF_FIRSTDATANOTIFICATION
| BSCF_LASTDATANOTIFICATION
| BSCF_DATAFULLYAVAILABLE
,
277 This
->data_len
, This
->data_len
);
279 IInternetProtocolSink_ReportResult(pOIProtSink
, S_OK
, 0, NULL
);
284 static HRESULT WINAPI
AboutProtocol_Continue(IInternetProtocol
*iface
, PROTOCOLDATA
* pProtocolData
)
286 AboutProtocol
*This
= PROTOCOL_THIS(iface
);
287 FIXME("(%p)->(%p)\n", This
, pProtocolData
);
291 static HRESULT WINAPI
AboutProtocol_Abort(IInternetProtocol
*iface
, HRESULT hrReason
,
294 AboutProtocol
*This
= PROTOCOL_THIS(iface
);
295 FIXME("(%p)->(%08x %08x)\n", This
, hrReason
, dwOptions
);
299 static HRESULT WINAPI
AboutProtocol_Terminate(IInternetProtocol
*iface
, DWORD dwOptions
)
301 AboutProtocol
*This
= PROTOCOL_THIS(iface
);
302 TRACE("(%p)->(%08x)\n", This
, dwOptions
);
306 static HRESULT WINAPI
AboutProtocol_Suspend(IInternetProtocol
*iface
)
308 AboutProtocol
*This
= PROTOCOL_THIS(iface
);
309 FIXME("(%p)\n", This
);
313 static HRESULT WINAPI
AboutProtocol_Resume(IInternetProtocol
*iface
)
315 AboutProtocol
*This
= PROTOCOL_THIS(iface
);
316 FIXME("(%p)\n", This
);
320 static HRESULT WINAPI
AboutProtocol_Read(IInternetProtocol
*iface
, void* pv
, ULONG cb
, ULONG
* pcbRead
)
322 AboutProtocol
*This
= PROTOCOL_THIS(iface
);
324 TRACE("(%p)->(%p %u %p)\n", This
, pv
, cb
, pcbRead
);
329 *pcbRead
= (cb
> This
->data_len
-This
->cur
? This
->data_len
-This
->cur
: cb
);
334 memcpy(pv
, This
->data
+This
->cur
, *pcbRead
);
335 This
->cur
+= *pcbRead
;
340 static HRESULT WINAPI
AboutProtocol_Seek(IInternetProtocol
*iface
, LARGE_INTEGER dlibMove
,
341 DWORD dwOrigin
, ULARGE_INTEGER
* plibNewPosition
)
343 AboutProtocol
*This
= PROTOCOL_THIS(iface
);
344 FIXME("(%p)->(%d %d %p)\n", This
, dlibMove
.u
.LowPart
, dwOrigin
, plibNewPosition
);
348 static HRESULT WINAPI
AboutProtocol_LockRequest(IInternetProtocol
*iface
, DWORD dwOptions
)
350 AboutProtocol
*This
= PROTOCOL_THIS(iface
);
352 TRACE("(%p)->(%d)\n", This
, dwOptions
);
357 static HRESULT WINAPI
AboutProtocol_UnlockRequest(IInternetProtocol
*iface
)
359 AboutProtocol
*This
= PROTOCOL_THIS(iface
);
361 TRACE("(%p)\n", This
);
368 static const IInternetProtocolVtbl AboutProtocolVtbl
= {
369 AboutProtocol_QueryInterface
,
370 AboutProtocol_AddRef
,
371 AboutProtocol_Release
,
373 AboutProtocol_Continue
,
375 AboutProtocol_Terminate
,
376 AboutProtocol_Suspend
,
377 AboutProtocol_Resume
,
380 AboutProtocol_LockRequest
,
381 AboutProtocol_UnlockRequest
384 static HRESULT WINAPI
AboutProtocolFactory_CreateInstance(IClassFactory
*iface
, IUnknown
*pUnkOuter
,
385 REFIID riid
, void **ppv
)
390 TRACE("(%p)->(%p %s %p)\n", iface
, pUnkOuter
, debugstr_guid(riid
), ppv
);
392 ret
= heap_alloc(sizeof(AboutProtocol
));
393 ret
->lpInternetProtocolVtbl
= &AboutProtocolVtbl
;
399 ret
->pUnkOuter
= pUnkOuter
;
403 if(IsEqualGUID(&IID_IUnknown
, riid
))
404 *ppv
= PROTOCOL(ret
);
408 hres
= IInternetProtocol_QueryInterface(PROTOCOL(ret
), riid
, ppv
);
419 static HRESULT WINAPI
AboutProtocolInfo_ParseUrl(IInternetProtocolInfo
*iface
, LPCWSTR pwzUrl
,
420 PARSEACTION ParseAction
, DWORD dwParseFlags
, LPWSTR pwzResult
, DWORD cchResult
,
421 DWORD
* pcchResult
, DWORD dwReserved
)
423 TRACE("%p)->(%s %08x %08x %p %d %p %d)\n", iface
, debugstr_w(pwzUrl
), ParseAction
,
424 dwParseFlags
, pwzResult
, cchResult
, pcchResult
, dwReserved
);
426 if(ParseAction
== PARSE_SECURITY_URL
) {
427 int len
= lstrlenW(pwzUrl
);
432 memcpy(pwzResult
, pwzUrl
, (len
+1)*sizeof(WCHAR
));
436 if(ParseAction
== PARSE_DOMAIN
) {
441 *pcchResult
= strlenW(pwzUrl
)+1;
447 return INET_E_DEFAULT_ACTION
;
450 static HRESULT WINAPI
AboutProtocolInfo_QueryInfo(IInternetProtocolInfo
*iface
, LPCWSTR pwzUrl
,
451 QUERYOPTION QueryOption
, DWORD dwQueryFlags
, LPVOID pBuffer
, DWORD cbBuffer
, DWORD
* pcbBuf
,
454 TRACE("%p)->(%s %08x %08x %p %d %p %d)\n", iface
, debugstr_w(pwzUrl
), QueryOption
, dwQueryFlags
, pBuffer
,
455 cbBuffer
, pcbBuf
, dwReserved
);
457 switch(QueryOption
) {
458 case QUERY_CAN_NAVIGATE
:
459 return INET_E_USE_DEFAULT_PROTOCOLHANDLER
;
461 case QUERY_USES_NETWORK
:
462 if(!pBuffer
|| cbBuffer
< sizeof(DWORD
))
465 *(DWORD
*)pBuffer
= 0;
467 *pcbBuf
= sizeof(DWORD
);
471 case QUERY_IS_CACHED
:
472 FIXME("Unsupported option QUERY_IS_CACHED\n");
474 case QUERY_IS_INSTALLEDENTRY
:
475 FIXME("Unsupported option QUERY_IS_INSTALLEDENTRY\n");
477 case QUERY_IS_CACHED_OR_MAPPED
:
478 FIXME("Unsupported option QUERY_IS_CACHED_OR_MAPPED\n");
480 case QUERY_IS_SECURE
:
481 FIXME("Unsupported option QUERY_IS_SECURE\n");
484 FIXME("Unsupported option QUERY_IS_SAFE\n");
493 static const IInternetProtocolInfoVtbl AboutProtocolInfoVtbl
= {
494 InternetProtocolInfo_QueryInterface
,
495 InternetProtocolInfo_AddRef
,
496 InternetProtocolInfo_Release
,
497 AboutProtocolInfo_ParseUrl
,
498 InternetProtocolInfo_CombineUrl
,
499 InternetProtocolInfo_CompareUrl
,
500 AboutProtocolInfo_QueryInfo
503 static const IClassFactoryVtbl AboutProtocolFactoryVtbl
= {
504 ClassFactory_QueryInterface
,
506 ClassFactory_Release
,
507 AboutProtocolFactory_CreateInstance
,
508 ClassFactory_LockServer
511 static ProtocolFactory AboutProtocolFactory
= {
512 &AboutProtocolInfoVtbl
,
513 &AboutProtocolFactoryVtbl
516 /********************************************************************
517 * ResProtocol implementation
521 const IInternetProtocolVtbl
*lpInternetProtocolVtbl
;
531 #define PROTOCOL_THIS(iface) DEFINE_THIS(ResProtocol, InternetProtocol, iface)
533 static HRESULT WINAPI
ResProtocol_QueryInterface(IInternetProtocol
*iface
, REFIID riid
, void **ppv
)
535 ResProtocol
*This
= PROTOCOL_THIS(iface
);
539 if(IsEqualGUID(&IID_IUnknown
, riid
)) {
540 TRACE("(%p)->(IID_IUnknown %p)\n", iface
, ppv
);
542 return IUnknown_QueryInterface(This
->pUnkOuter
, &IID_IUnknown
, ppv
);
543 *ppv
= PROTOCOL(This
);
544 }else if(IsEqualGUID(&IID_IInternetProtocolRoot
, riid
)) {
545 TRACE("(%p)->(IID_IInternetProtocolRoot %p)\n", iface
, ppv
);
546 *ppv
= PROTOCOL(This
);
547 }else if(IsEqualGUID(&IID_IInternetProtocol
, riid
)) {
548 TRACE("(%p)->(IID_IInternetProtocol %p)\n", iface
, ppv
);
549 *ppv
= PROTOCOL(This
);
550 }else if(IsEqualGUID(&IID_IServiceProvider
, riid
)) {
551 FIXME("IServiceProvider is not implemented\n");
552 return E_NOINTERFACE
;
556 TRACE("unknown interface %s\n", debugstr_guid(riid
));
557 return E_NOINTERFACE
;
560 IInternetProtocol_AddRef(iface
);
564 static ULONG WINAPI
ResProtocol_AddRef(IInternetProtocol
*iface
)
566 ResProtocol
*This
= PROTOCOL_THIS(iface
);
567 ULONG ref
= InterlockedIncrement(&This
->ref
);
568 TRACE("(%p) ref=%d\n", iface
, ref
);
569 return This
->pUnkOuter
? IUnknown_AddRef(This
->pUnkOuter
) : ref
;
572 static ULONG WINAPI
ResProtocol_Release(IInternetProtocol
*iface
)
574 ResProtocol
*This
= (ResProtocol
*)iface
;
575 IUnknown
*pUnkOuter
= This
->pUnkOuter
;
576 ULONG ref
= InterlockedDecrement(&This
->ref
);
578 TRACE("(%p) ref=%x\n", iface
, ref
);
581 heap_free(This
->data
);
586 return pUnkOuter
? IUnknown_Release(pUnkOuter
) : ref
;
589 static HRESULT WINAPI
ResProtocol_Start(IInternetProtocol
*iface
, LPCWSTR szUrl
,
590 IInternetProtocolSink
* pOIProtSink
, IInternetBindInfo
* pOIBindInfo
,
591 DWORD grfPI
, DWORD dwReserved
)
593 ResProtocol
*This
= PROTOCOL_THIS(iface
);
594 DWORD grfBINDF
= 0, len
;
596 LPWSTR url_dll
, url_file
, url
, mime
;
601 static const WCHAR wszRes
[] = {'r','e','s',':','/','/'};
603 TRACE("(%p)->(%s %p %p %08x %d)\n", This
, debugstr_w(szUrl
), pOIProtSink
,
604 pOIBindInfo
, grfPI
, dwReserved
);
606 memset(&bindinfo
, 0, sizeof(bindinfo
));
607 bindinfo
.cbSize
= sizeof(BINDINFO
);
608 IInternetBindInfo_GetBindInfo(pOIBindInfo
, &grfBINDF
, &bindinfo
);
609 ReleaseBindInfo(&bindinfo
);
611 len
= strlenW(szUrl
)+16;
612 url
= heap_alloc(len
*sizeof(WCHAR
));
613 hres
= CoInternetParseUrl(szUrl
, PARSE_ENCODE
, 0, url
, len
, &len
, 0);
615 WARN("CoInternetParseUrl failed: %08x\n", hres
);
617 IInternetProtocolSink_ReportResult(pOIProtSink
, hres
, 0, NULL
);
621 if(len
< sizeof(wszRes
)/sizeof(wszRes
[0]) || memcmp(url
, wszRes
, sizeof(wszRes
))) {
622 WARN("Wrong protocol of url: %s\n", debugstr_w(url
));
623 IInternetProtocolSink_ReportResult(pOIProtSink
, E_INVALIDARG
, 0, NULL
);
628 url_dll
= url
+ sizeof(wszRes
)/sizeof(wszRes
[0]);
629 if(!(url_file
= strrchrW(url_dll
, '/'))) {
630 WARN("wrong url: %s\n", debugstr_w(url
));
631 IInternetProtocolSink_ReportResult(pOIProtSink
, MK_E_SYNTAX
, 0, NULL
);
637 hdll
= LoadLibraryExW(url_dll
, NULL
, LOAD_LIBRARY_AS_DATAFILE
);
639 WARN("Could not open dll: %s\n", debugstr_w(url_dll
));
640 IInternetProtocolSink_ReportResult(pOIProtSink
, HRESULT_FROM_WIN32(GetLastError()), 0, NULL
);
642 return HRESULT_FROM_WIN32(GetLastError());
645 src
= FindResourceW(hdll
, url_file
, (LPCWSTR
)RT_HTML
);
647 LPWSTR endpoint
= NULL
;
648 DWORD file_id
= strtolW(url_file
, &endpoint
, 10);
649 if(endpoint
== url_file
+strlenW(url_file
))
650 src
= FindResourceW(hdll
, (LPCWSTR
)file_id
, (LPCWSTR
)RT_HTML
);
653 WARN("Could not find resource\n");
654 IInternetProtocolSink_ReportResult(pOIProtSink
,
655 HRESULT_FROM_WIN32(GetLastError()), 0, NULL
);
657 return HRESULT_FROM_WIN32(GetLastError());
662 WARN("data already loaded\n");
663 heap_free(This
->data
);
666 This
->data_len
= SizeofResource(hdll
, src
);
667 This
->data
= heap_alloc(This
->data_len
);
668 memcpy(This
->data
, LoadResource(hdll
, src
), This
->data_len
);
673 hres
= FindMimeFromData(NULL
, url_file
, NULL
, 0, NULL
, 0, &mime
, 0);
675 if(SUCCEEDED(hres
)) {
676 IInternetProtocolSink_ReportProgress(pOIProtSink
, BINDSTATUS_MIMETYPEAVAILABLE
, mime
);
680 IInternetProtocolSink_ReportData(pOIProtSink
,
681 BSCF_FIRSTDATANOTIFICATION
| BSCF_LASTDATANOTIFICATION
| BSCF_DATAFULLYAVAILABLE
,
682 This
->data_len
, This
->data_len
);
684 IInternetProtocolSink_ReportResult(pOIProtSink
, S_OK
, 0, NULL
);
689 static HRESULT WINAPI
ResProtocol_Continue(IInternetProtocol
*iface
, PROTOCOLDATA
* pProtocolData
)
691 ResProtocol
*This
= PROTOCOL_THIS(iface
);
692 FIXME("(%p)->(%p)\n", This
, pProtocolData
);
696 static HRESULT WINAPI
ResProtocol_Abort(IInternetProtocol
*iface
, HRESULT hrReason
,
699 ResProtocol
*This
= PROTOCOL_THIS(iface
);
700 FIXME("(%p)->(%08x %08x)\n", This
, hrReason
, dwOptions
);
704 static HRESULT WINAPI
ResProtocol_Terminate(IInternetProtocol
*iface
, DWORD dwOptions
)
706 ResProtocol
*This
= PROTOCOL_THIS(iface
);
708 TRACE("(%p)->(%08x)\n", This
, dwOptions
);
710 /* test show that we don't have to do anything here */
714 static HRESULT WINAPI
ResProtocol_Suspend(IInternetProtocol
*iface
)
716 ResProtocol
*This
= PROTOCOL_THIS(iface
);
717 FIXME("(%p)\n", This
);
721 static HRESULT WINAPI
ResProtocol_Resume(IInternetProtocol
*iface
)
723 ResProtocol
*This
= PROTOCOL_THIS(iface
);
724 FIXME("(%p)\n", This
);
728 static HRESULT WINAPI
ResProtocol_Read(IInternetProtocol
*iface
, void* pv
, ULONG cb
, ULONG
* pcbRead
)
730 ResProtocol
*This
= PROTOCOL_THIS(iface
);
732 TRACE("(%p)->(%p %u %p)\n", This
, pv
, cb
, pcbRead
);
737 *pcbRead
= (cb
> This
->data_len
-This
->cur
? This
->data_len
-This
->cur
: cb
);
742 memcpy(pv
, This
->data
+This
->cur
, *pcbRead
);
743 This
->cur
+= *pcbRead
;
748 static HRESULT WINAPI
ResProtocol_Seek(IInternetProtocol
*iface
, LARGE_INTEGER dlibMove
,
749 DWORD dwOrigin
, ULARGE_INTEGER
* plibNewPosition
)
751 ResProtocol
*This
= PROTOCOL_THIS(iface
);
752 FIXME("(%p)->(%d %d %p)\n", This
, dlibMove
.u
.LowPart
, dwOrigin
, plibNewPosition
);
756 static HRESULT WINAPI
ResProtocol_LockRequest(IInternetProtocol
*iface
, DWORD dwOptions
)
758 ResProtocol
*This
= PROTOCOL_THIS(iface
);
760 TRACE("(%p)->(%d)\n", This
, dwOptions
);
762 /* test show that we don't have to do anything here */
766 static HRESULT WINAPI
ResProtocol_UnlockRequest(IInternetProtocol
*iface
)
768 ResProtocol
*This
= PROTOCOL_THIS(iface
);
770 TRACE("(%p)\n", This
);
772 /* test show that we don't have to do anything here */
778 static const IInternetProtocolVtbl ResProtocolVtbl
= {
779 ResProtocol_QueryInterface
,
783 ResProtocol_Continue
,
785 ResProtocol_Terminate
,
790 ResProtocol_LockRequest
,
791 ResProtocol_UnlockRequest
794 static HRESULT WINAPI
ResProtocolFactory_CreateInstance(IClassFactory
*iface
, IUnknown
*pUnkOuter
,
795 REFIID riid
, void **ppv
)
800 TRACE("(%p)->(%p %s %p)\n", iface
, pUnkOuter
, debugstr_guid(riid
), ppv
);
802 ret
= heap_alloc(sizeof(ResProtocol
));
803 ret
->lpInternetProtocolVtbl
= &ResProtocolVtbl
;
808 ret
->pUnkOuter
= pUnkOuter
;
812 if(IsEqualGUID(&IID_IUnknown
, riid
))
813 *ppv
= PROTOCOL(ret
);
817 hres
= IInternetProtocol_QueryInterface(PROTOCOL(ret
), riid
, ppv
);
828 static HRESULT WINAPI
ResProtocolInfo_ParseUrl(IInternetProtocolInfo
*iface
, LPCWSTR pwzUrl
,
829 PARSEACTION ParseAction
, DWORD dwParseFlags
, LPWSTR pwzResult
, DWORD cchResult
,
830 DWORD
* pcchResult
, DWORD dwReserved
)
832 TRACE("%p)->(%s %d %x %p %d %p %d)\n", iface
, debugstr_w(pwzUrl
), ParseAction
,
833 dwParseFlags
, pwzResult
, cchResult
, pcchResult
, dwReserved
);
835 if(ParseAction
== PARSE_SECURITY_URL
) {
839 static const WCHAR wszFile
[] = {'f','i','l','e',':','/','/'};
840 static const WCHAR wszRes
[] = {'r','e','s',':','/','/'};
842 if(strlenW(pwzUrl
) <= sizeof(wszRes
)/sizeof(WCHAR
) || memcmp(pwzUrl
, wszRes
, sizeof(wszRes
)))
845 ptr
= strchrW(pwzUrl
+ sizeof(wszRes
)/sizeof(WCHAR
), '/');
849 size
= ptr
-pwzUrl
+ sizeof(wszFile
)/sizeof(WCHAR
) - sizeof(wszRes
)/sizeof(WCHAR
);
850 if(size
>= cchResult
)
853 /* FIXME: return full path */
854 memcpy(pwzResult
, wszFile
, sizeof(wszFile
));
855 memcpy(pwzResult
+ sizeof(wszFile
)/sizeof(WCHAR
),
856 pwzUrl
+ sizeof(wszRes
)/sizeof(WCHAR
),
857 size
*sizeof(WCHAR
) - sizeof(wszFile
));
865 if(ParseAction
== PARSE_DOMAIN
) {
870 *pcchResult
= strlenW(pwzUrl
)+1;
876 return INET_E_DEFAULT_ACTION
;
879 static HRESULT WINAPI
ResProtocolInfo_QueryInfo(IInternetProtocolInfo
*iface
, LPCWSTR pwzUrl
,
880 QUERYOPTION QueryOption
, DWORD dwQueryFlags
, LPVOID pBuffer
, DWORD cbBuffer
, DWORD
* pcbBuf
,
883 TRACE("%p)->(%s %08x %08x %p %d %p %d)\n", iface
, debugstr_w(pwzUrl
), QueryOption
, dwQueryFlags
, pBuffer
,
884 cbBuffer
, pcbBuf
, dwReserved
);
886 switch(QueryOption
) {
887 case QUERY_USES_NETWORK
:
888 if(!pBuffer
|| cbBuffer
< sizeof(DWORD
))
891 *(DWORD
*)pBuffer
= 0;
893 *pcbBuf
= sizeof(DWORD
);
896 case QUERY_IS_SECURE
:
897 FIXME("not supporte QUERY_IS_SECURE\n");
900 FIXME("not supporte QUERY_IS_SAFE\n");
903 return INET_E_USE_DEFAULT_PROTOCOLHANDLER
;
909 static const IInternetProtocolInfoVtbl ResProtocolInfoVtbl
= {
910 InternetProtocolInfo_QueryInterface
,
911 InternetProtocolInfo_AddRef
,
912 InternetProtocolInfo_Release
,
913 ResProtocolInfo_ParseUrl
,
914 InternetProtocolInfo_CombineUrl
,
915 InternetProtocolInfo_CompareUrl
,
916 ResProtocolInfo_QueryInfo
919 static const IClassFactoryVtbl ResProtocolFactoryVtbl
= {
920 ClassFactory_QueryInterface
,
922 ClassFactory_Release
,
923 ResProtocolFactory_CreateInstance
,
924 ClassFactory_LockServer
927 static ProtocolFactory ResProtocolFactory
= {
928 &ResProtocolInfoVtbl
,
929 &ResProtocolFactoryVtbl
932 HRESULT
ProtocolFactory_Create(REFCLSID rclsid
, REFIID riid
, void **ppv
)
934 ProtocolFactory
*cf
= NULL
;
936 if(IsEqualGUID(&CLSID_AboutProtocol
, rclsid
))
937 cf
= &AboutProtocolFactory
;
938 else if(IsEqualGUID(&CLSID_ResProtocol
, rclsid
))
939 cf
= &ResProtocolFactory
;
942 FIXME("not implemented protocol %s\n", debugstr_guid(rclsid
));
943 return CLASS_E_CLASSNOTAVAILABLE
;
946 return IUnknown_QueryInterface((IUnknown
*)cf
, riid
, ppv
);