2 * Copyright 2006-2007 Jacek Caban for CodeWeavers
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
33 #include "wine/debug.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(itss
);
38 IUnknown IUnknown_inner
;
39 IInternetProtocol IInternetProtocol_iface
;
40 IInternetProtocolInfo IInternetProtocolInfo_iface
;
46 struct chmFile
*chm_file
;
47 struct chmUnitInfo chm_object
;
50 static inline ITSProtocol
*impl_from_IUnknown(IUnknown
*iface
)
52 return CONTAINING_RECORD(iface
, ITSProtocol
, IUnknown_inner
);
55 static inline ITSProtocol
*impl_from_IInternetProtocol(IInternetProtocol
*iface
)
57 return CONTAINING_RECORD(iface
, ITSProtocol
, IInternetProtocol_iface
);
60 static inline ITSProtocol
*impl_from_IInternetProtocolInfo(IInternetProtocolInfo
*iface
)
62 return CONTAINING_RECORD(iface
, ITSProtocol
, IInternetProtocolInfo_iface
);
65 static void release_chm(ITSProtocol
*This
)
68 chm_close(This
->chm_file
);
69 This
->chm_file
= NULL
;
74 static HRESULT WINAPI
ITSProtocol_QueryInterface(IUnknown
*iface
, REFIID riid
, void **ppv
)
76 ITSProtocol
*This
= impl_from_IUnknown(iface
);
78 if(IsEqualGUID(&IID_IUnknown
, riid
)) {
79 TRACE("(%p)->(IID_IUnknown %p)\n", This
, ppv
);
80 *ppv
= &This
->IUnknown_inner
;
81 }else if(IsEqualGUID(&IID_IInternetProtocolRoot
, riid
)) {
82 TRACE("(%p)->(IID_IInternetProtocolRoot %p)\n", This
, ppv
);
83 *ppv
= &This
->IInternetProtocol_iface
;
84 }else if(IsEqualGUID(&IID_IInternetProtocol
, riid
)) {
85 TRACE("(%p)->(IID_IInternetProtocol %p)\n", This
, ppv
);
86 *ppv
= &This
->IInternetProtocol_iface
;
87 }else if(IsEqualGUID(&IID_IInternetProtocolInfo
, riid
)) {
88 TRACE("(%p)->(IID_IInternetProtocolInfo %p)\n", This
, ppv
);
89 *ppv
= &This
->IInternetProtocolInfo_iface
;
92 WARN("not supported interface %s\n", debugstr_guid(riid
));
96 IUnknown_AddRef((IUnknown
*)*ppv
);
100 static ULONG WINAPI
ITSProtocol_AddRef(IUnknown
*iface
)
102 ITSProtocol
*This
= impl_from_IUnknown(iface
);
103 LONG ref
= InterlockedIncrement(&This
->ref
);
104 TRACE("(%p) ref=%d\n", This
, ref
);
108 static ULONG WINAPI
ITSProtocol_Release(IUnknown
*iface
)
110 ITSProtocol
*This
= impl_from_IUnknown(iface
);
111 LONG ref
= InterlockedDecrement(&This
->ref
);
113 TRACE("(%p) ref=%d\n", This
, ref
);
117 HeapFree(GetProcessHeap(), 0, This
);
125 static const IUnknownVtbl ITSProtocolUnkVtbl
= {
126 ITSProtocol_QueryInterface
,
131 static HRESULT WINAPI
ITSInternetProtocol_QueryInterface(IInternetProtocol
*iface
, REFIID riid
, void **ppv
)
133 ITSProtocol
*This
= impl_from_IInternetProtocol(iface
);
134 return IUnknown_QueryInterface(This
->outer
, riid
, ppv
);
137 static ULONG WINAPI
ITSInternetProtocol_AddRef(IInternetProtocol
*iface
)
139 ITSProtocol
*This
= impl_from_IInternetProtocol(iface
);
140 return IUnknown_AddRef(This
->outer
);
143 static ULONG WINAPI
ITSInternetProtocol_Release(IInternetProtocol
*iface
)
145 ITSProtocol
*This
= impl_from_IInternetProtocol(iface
);
146 return IUnknown_Release(This
->outer
);
149 static LPCWSTR
skip_schema(LPCWSTR url
)
151 static const WCHAR its_schema
[] = L
"its:";
152 static const WCHAR msits_schema
[] = L
"ms-its:";
153 static const WCHAR mk_schema
[] = L
"mk:@MSITStore:";
155 if(!wcsnicmp(its_schema
, url
, ARRAY_SIZE(its_schema
) - 1))
156 return url
+ ARRAY_SIZE(its_schema
) - 1;
157 if(!wcsnicmp(msits_schema
, url
, ARRAY_SIZE(msits_schema
) - 1))
158 return url
+ ARRAY_SIZE(msits_schema
) - 1;
159 if(!wcsnicmp(mk_schema
, url
, ARRAY_SIZE(mk_schema
) - 1))
160 return url
+ ARRAY_SIZE(mk_schema
) - 1;
165 /* Adopted from urlmon */
166 static void remove_dot_segments(WCHAR
*path
) {
167 const WCHAR
*in
= path
;
171 /* Move the first path segment in the input buffer to the end of
172 * the output buffer, and any subsequent characters up to, including
173 * the next "/" character (if any) or the end of the input buffer.
176 if(!(*out
++ = *in
++))
186 /* Handle ending "/." */
198 /* If we don't have "/../" or ending "/.." */
199 if(in
[1] != '.' || (in
[2] && in
[2] != '/'))
204 /* Find the slash preceding out pointer and move out pointer to it */
205 if(out
> path
+1 && *--out
== '/')
207 while(out
> path
&& *(--out
) != '/');
214 static HRESULT
report_result(IInternetProtocolSink
*sink
, HRESULT hres
)
216 IInternetProtocolSink_ReportResult(sink
, hres
, 0, NULL
);
220 static HRESULT WINAPI
ITSProtocol_Start(IInternetProtocol
*iface
, LPCWSTR szUrl
,
221 IInternetProtocolSink
*pOIProtSink
, IInternetBindInfo
*pOIBindInfo
,
222 DWORD grfPI
, HANDLE_PTR dwReserved
)
224 ITSProtocol
*This
= impl_from_IInternetProtocol(iface
);
226 DWORD bindf
= 0, len
;
227 LPWSTR file_name
, mime
, object_name
, p
;
229 struct chmFile
*chm_file
;
230 struct chmUnitInfo chm_object
;
234 TRACE("(%p)->(%s %p %p %08x %lx)\n", This
, debugstr_w(szUrl
), pOIProtSink
,
235 pOIBindInfo
, grfPI
, dwReserved
);
237 ptr
= skip_schema(szUrl
);
239 return INET_E_USE_DEFAULT_PROTOCOLHANDLER
;
241 memset(&bindinfo
, 0, sizeof(bindinfo
));
242 bindinfo
.cbSize
= sizeof(BINDINFO
);
243 hres
= IInternetBindInfo_GetBindInfo(pOIBindInfo
, &bindf
, &bindinfo
);
245 WARN("GetBindInfo failed: %08x\n", hres
);
249 ReleaseBindInfo(&bindinfo
);
251 len
= lstrlenW(ptr
)+3;
252 file_name
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(WCHAR
));
253 memcpy(file_name
, ptr
, len
*sizeof(WCHAR
));
254 hres
= UrlUnescapeW(file_name
, NULL
, &len
, URL_UNESCAPE_INPLACE
);
256 WARN("UrlUnescape failed: %08x\n", hres
);
257 HeapFree(GetProcessHeap(), 0, file_name
);
261 p
= wcsstr(file_name
, L
"::");
263 WARN("invalid url\n");
264 HeapFree(GetProcessHeap(), 0, file_name
);
265 return report_result(pOIProtSink
, STG_E_FILENOTFOUND
);
269 chm_file
= chm_openW(file_name
);
271 WARN("Could not open chm file\n");
272 HeapFree(GetProcessHeap(), 0, file_name
);
273 return report_result(pOIProtSink
, STG_E_FILENOTFOUND
);
277 len
= lstrlenW(object_name
);
279 if(*object_name
!= '/' && *object_name
!= '\\') {
280 memmove(object_name
+1, object_name
, (len
+1)*sizeof(WCHAR
));
285 if(object_name
[len
-1] == '/')
286 object_name
[--len
] = 0;
288 for(p
=object_name
; *p
; p
++) {
293 remove_dot_segments(object_name
);
295 TRACE("Resolving %s\n", debugstr_w(object_name
));
297 memset(&chm_object
, 0, sizeof(chm_object
));
298 res
= chm_resolve_object(chm_file
, object_name
, &chm_object
);
299 if(res
!= CHM_RESOLVE_SUCCESS
) {
300 WARN("Could not resolve chm object\n");
301 HeapFree(GetProcessHeap(), 0, file_name
);
303 return report_result(pOIProtSink
, STG_E_FILENOTFOUND
);
306 IInternetProtocolSink_ReportProgress(pOIProtSink
, BINDSTATUS_SENDINGREQUEST
,
307 wcsrchr(object_name
, '/')+1);
309 /* FIXME: Native doesn't use FindMimeFromData */
310 hres
= FindMimeFromData(NULL
, object_name
, NULL
, 0, NULL
, 0, &mime
, 0);
311 HeapFree(GetProcessHeap(), 0, file_name
);
312 if(SUCCEEDED(hres
)) {
313 IInternetProtocolSink_ReportProgress(pOIProtSink
, BINDSTATUS_MIMETYPEAVAILABLE
, mime
);
317 release_chm(This
); /* Native leaks handle here */
318 This
->chm_file
= chm_file
;
319 This
->chm_object
= chm_object
;
321 hres
= IInternetProtocolSink_ReportData(pOIProtSink
,
322 BSCF_FIRSTDATANOTIFICATION
|BSCF_DATAFULLYAVAILABLE
,
323 chm_object
.length
, chm_object
.length
);
325 WARN("ReportData failed: %08x\n", hres
);
327 return report_result(pOIProtSink
, hres
);
330 hres
= IInternetProtocolSink_ReportProgress(pOIProtSink
, BINDSTATUS_BEGINDOWNLOADDATA
, NULL
);
332 return report_result(pOIProtSink
, hres
);
335 static HRESULT WINAPI
ITSProtocol_Continue(IInternetProtocol
*iface
, PROTOCOLDATA
*pProtocolData
)
337 ITSProtocol
*This
= impl_from_IInternetProtocol(iface
);
338 FIXME("(%p)->(%p)\n", This
, pProtocolData
);
342 static HRESULT WINAPI
ITSProtocol_Abort(IInternetProtocol
*iface
, HRESULT hrReason
,
345 ITSProtocol
*This
= impl_from_IInternetProtocol(iface
);
346 FIXME("(%p)->(%08x %08x)\n", This
, hrReason
, dwOptions
);
350 static HRESULT WINAPI
ITSProtocol_Terminate(IInternetProtocol
*iface
, DWORD dwOptions
)
352 ITSProtocol
*This
= impl_from_IInternetProtocol(iface
);
354 TRACE("(%p)->(%08x)\n", This
, dwOptions
);
359 static HRESULT WINAPI
ITSProtocol_Suspend(IInternetProtocol
*iface
)
361 ITSProtocol
*This
= impl_from_IInternetProtocol(iface
);
362 FIXME("(%p)\n", This
);
366 static HRESULT WINAPI
ITSProtocol_Resume(IInternetProtocol
*iface
)
368 ITSProtocol
*This
= impl_from_IInternetProtocol(iface
);
369 FIXME("(%p)\n", This
);
373 static HRESULT WINAPI
ITSProtocol_Read(IInternetProtocol
*iface
, void *pv
,
374 ULONG cb
, ULONG
*pcbRead
)
376 ITSProtocol
*This
= impl_from_IInternetProtocol(iface
);
378 TRACE("(%p)->(%p %u %p)\n", This
, pv
, cb
, pcbRead
);
381 return INET_E_DATA_NOT_AVAILABLE
;
383 *pcbRead
= chm_retrieve_object(This
->chm_file
, &This
->chm_object
, pv
, This
->offset
, cb
);
384 This
->offset
+= *pcbRead
;
386 return *pcbRead
? S_OK
: S_FALSE
;
389 static HRESULT WINAPI
ITSProtocol_Seek(IInternetProtocol
*iface
, LARGE_INTEGER dlibMove
,
390 DWORD dwOrigin
, ULARGE_INTEGER
*plibNewPosition
)
392 ITSProtocol
*This
= impl_from_IInternetProtocol(iface
);
393 FIXME("(%p)->(%d %d %p)\n", This
, dlibMove
.u
.LowPart
, dwOrigin
, plibNewPosition
);
397 static HRESULT WINAPI
ITSProtocol_LockRequest(IInternetProtocol
*iface
, DWORD dwOptions
)
399 ITSProtocol
*This
= impl_from_IInternetProtocol(iface
);
401 TRACE("(%p)->(%08x)\n", This
, dwOptions
);
406 static HRESULT WINAPI
ITSProtocol_UnlockRequest(IInternetProtocol
*iface
)
408 ITSProtocol
*This
= impl_from_IInternetProtocol(iface
);
410 TRACE("(%p)\n", This
);
415 static const IInternetProtocolVtbl ITSProtocolVtbl
= {
416 ITSInternetProtocol_QueryInterface
,
417 ITSInternetProtocol_AddRef
,
418 ITSInternetProtocol_Release
,
420 ITSProtocol_Continue
,
422 ITSProtocol_Terminate
,
427 ITSProtocol_LockRequest
,
428 ITSProtocol_UnlockRequest
431 static HRESULT WINAPI
ITSProtocolInfo_QueryInterface(IInternetProtocolInfo
*iface
,
432 REFIID riid
, void **ppv
)
434 ITSProtocol
*This
= impl_from_IInternetProtocolInfo(iface
);
435 return IInternetProtocol_QueryInterface(&This
->IInternetProtocol_iface
, riid
, ppv
);
438 static ULONG WINAPI
ITSProtocolInfo_AddRef(IInternetProtocolInfo
*iface
)
440 ITSProtocol
*This
= impl_from_IInternetProtocolInfo(iface
);
441 return IInternetProtocol_AddRef(&This
->IInternetProtocol_iface
);
444 static ULONG WINAPI
ITSProtocolInfo_Release(IInternetProtocolInfo
*iface
)
446 ITSProtocol
*This
= impl_from_IInternetProtocolInfo(iface
);
447 return IInternetProtocol_Release(&This
->IInternetProtocol_iface
);
450 static HRESULT WINAPI
ITSProtocolInfo_ParseUrl(IInternetProtocolInfo
*iface
, LPCWSTR pwzUrl
,
451 PARSEACTION ParseAction
, DWORD dwParseFlags
, LPWSTR pwzResult
, DWORD cchResult
,
452 DWORD
*pcchResult
, DWORD dwReserved
)
454 ITSProtocol
*This
= impl_from_IInternetProtocolInfo(iface
);
456 TRACE("(%p)->(%s %x %08x %p %d %p %d)\n", This
, debugstr_w(pwzUrl
), ParseAction
,
457 dwParseFlags
, pwzResult
, cchResult
, pcchResult
, dwReserved
);
459 switch(ParseAction
) {
460 case PARSE_CANONICALIZE
:
461 FIXME("PARSE_CANONICALIZE\n");
463 case PARSE_SECURITY_URL
:
464 FIXME("PARSE_SECURITY_URL\n");
467 return INET_E_DEFAULT_ACTION
;
473 static HRESULT WINAPI
ITSProtocolInfo_CombineUrl(IInternetProtocolInfo
*iface
,
474 LPCWSTR pwzBaseUrl
, LPCWSTR pwzRelativeUrl
, DWORD dwCombineFlags
, LPWSTR pwzResult
,
475 DWORD cchResult
, DWORD
* pcchResult
, DWORD dwReserved
)
477 ITSProtocol
*This
= impl_from_IInternetProtocolInfo(iface
);
478 LPCWSTR base_end
, ptr
;
481 TRACE("(%p)->(%s %s %08x %p %d %p %d)\n", This
, debugstr_w(pwzBaseUrl
),
482 debugstr_w(pwzRelativeUrl
), dwCombineFlags
, pwzResult
, cchResult
,
483 pcchResult
, dwReserved
);
485 base_end
= wcsstr(pwzBaseUrl
, L
"::");
490 if(!skip_schema(pwzBaseUrl
))
491 return INET_E_USE_DEFAULT_PROTOCOLHANDLER
;
493 if(wcschr(pwzRelativeUrl
, ':'))
494 return STG_E_INVALIDNAME
;
496 if(pwzRelativeUrl
[0] == '#') {
497 base_end
+= lstrlenW(base_end
);
498 }else if(pwzRelativeUrl
[0] != '/') {
499 ptr
= wcsrchr(base_end
, '/');
503 base_end
+= lstrlenW(base_end
);
506 rel_len
= lstrlenW(pwzRelativeUrl
)+1;
508 *pcchResult
= rel_len
+ (base_end
-pwzBaseUrl
);
510 if(*pcchResult
> cchResult
)
511 return E_OUTOFMEMORY
;
513 memcpy(pwzResult
, pwzBaseUrl
, (base_end
-pwzBaseUrl
)*sizeof(WCHAR
));
514 lstrcpyW(pwzResult
+ (base_end
-pwzBaseUrl
), pwzRelativeUrl
);
519 static HRESULT WINAPI
ITSProtocolInfo_CompareUrl(IInternetProtocolInfo
*iface
, LPCWSTR pwzUrl1
,
520 LPCWSTR pwzUrl2
, DWORD dwCompareFlags
)
522 ITSProtocol
*This
= impl_from_IInternetProtocolInfo(iface
);
523 FIXME("%p)->(%s %s %08x)\n", This
, debugstr_w(pwzUrl1
), debugstr_w(pwzUrl2
), dwCompareFlags
);
527 static HRESULT WINAPI
ITSProtocolInfo_QueryInfo(IInternetProtocolInfo
*iface
, LPCWSTR pwzUrl
,
528 QUERYOPTION QueryOption
, DWORD dwQueryFlags
, LPVOID pBuffer
, DWORD cbBuffer
, DWORD
* pcbBuf
,
531 ITSProtocol
*This
= impl_from_IInternetProtocolInfo(iface
);
532 FIXME("(%p)->(%s %08x %08x %p %d %p %d)\n", This
, debugstr_w(pwzUrl
), QueryOption
,
533 dwQueryFlags
, pBuffer
, cbBuffer
, pcbBuf
, dwReserved
);
537 static const IInternetProtocolInfoVtbl ITSProtocolInfoVtbl
= {
538 ITSProtocolInfo_QueryInterface
,
539 ITSProtocolInfo_AddRef
,
540 ITSProtocolInfo_Release
,
541 ITSProtocolInfo_ParseUrl
,
542 ITSProtocolInfo_CombineUrl
,
543 ITSProtocolInfo_CompareUrl
,
544 ITSProtocolInfo_QueryInfo
547 HRESULT
ITSProtocol_create(IUnknown
*outer
, void **ppv
)
551 TRACE("(%p %p)\n", outer
, ppv
);
555 ret
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(ITSProtocol
));
557 return E_OUTOFMEMORY
;
559 ret
->IUnknown_inner
.lpVtbl
= &ITSProtocolUnkVtbl
;
560 ret
->IInternetProtocol_iface
.lpVtbl
= &ITSProtocolVtbl
;
561 ret
->IInternetProtocolInfo_iface
.lpVtbl
= &ITSProtocolInfoVtbl
;
563 ret
->outer
= outer
? outer
: &ret
->IUnknown_inner
;
565 *ppv
= &ret
->IUnknown_inner
;