2006-12-24 01:22:30 +01:00
|
|
|
/*
|
2007-02-22 21:10:42 +01:00
|
|
|
* Copyright 2006-2007 Jacek Caban for CodeWeavers
|
2006-12-24 01:22:30 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winuser.h"
|
2007-02-22 21:09:31 +01:00
|
|
|
#include "winreg.h"
|
2006-12-24 01:22:30 +01:00
|
|
|
#include "ole2.h"
|
|
|
|
#include "urlmon.h"
|
2007-02-22 21:09:31 +01:00
|
|
|
#include "shlwapi.h"
|
2006-12-24 01:22:30 +01:00
|
|
|
#include "itsstor.h"
|
2006-12-25 16:08:20 +01:00
|
|
|
#include "chm_lib.h"
|
2006-12-24 01:22:30 +01:00
|
|
|
|
|
|
|
#include "wine/debug.h"
|
2006-12-25 16:08:20 +01:00
|
|
|
#include "wine/unicode.h"
|
2006-12-24 01:22:30 +01:00
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(itss);
|
|
|
|
|
|
|
|
typedef struct {
|
2007-02-22 21:10:42 +01:00
|
|
|
const IInternetProtocolVtbl *lpInternetProtocolVtbl;
|
|
|
|
const IInternetProtocolInfoVtbl *lpInternetProtocolInfoVtbl;
|
2006-12-25 16:08:20 +01:00
|
|
|
|
2006-12-24 01:22:30 +01:00
|
|
|
LONG ref;
|
|
|
|
|
2006-12-25 16:08:20 +01:00
|
|
|
ULONG offset;
|
|
|
|
struct chmFile *chm_file;
|
|
|
|
struct chmUnitInfo chm_object;
|
|
|
|
} ITSProtocol;
|
2006-12-24 01:22:30 +01:00
|
|
|
|
|
|
|
#define PROTOCOL(x) ((IInternetProtocol*) &(x)->lpInternetProtocolVtbl)
|
2009-01-26 11:01:19 +01:00
|
|
|
#define PROTINFO(x) (&(x)->lpInternetProtocolInfoVtbl)
|
2006-12-24 01:22:30 +01:00
|
|
|
|
2006-12-25 16:08:20 +01:00
|
|
|
static void release_chm(ITSProtocol *This)
|
|
|
|
{
|
|
|
|
if(This->chm_file) {
|
|
|
|
chm_close(This->chm_file);
|
|
|
|
This->chm_file = NULL;
|
|
|
|
}
|
|
|
|
This->offset = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define PROTOCOL_THIS(iface) DEFINE_THIS(ITSProtocol, InternetProtocol, iface)
|
|
|
|
|
2006-12-24 01:22:30 +01:00
|
|
|
static HRESULT WINAPI ITSProtocol_QueryInterface(IInternetProtocol *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
ITSProtocol *This = PROTOCOL_THIS(iface);
|
|
|
|
|
|
|
|
*ppv = NULL;
|
|
|
|
if(IsEqualGUID(&IID_IUnknown, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
|
|
|
|
*ppv = PROTOCOL(This);
|
|
|
|
}else if(IsEqualGUID(&IID_IInternetProtocolRoot, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IInternetProtocolRoot %p)\n", This, ppv);
|
|
|
|
*ppv = PROTOCOL(This);
|
|
|
|
}else if(IsEqualGUID(&IID_IInternetProtocol, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IInternetProtocol %p)\n", This, ppv);
|
|
|
|
*ppv = PROTOCOL(This);
|
2007-02-22 21:10:42 +01:00
|
|
|
}else if(IsEqualGUID(&IID_IInternetProtocolInfo, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IInternetProtocolInfo %p)\n", This, ppv);
|
|
|
|
*ppv = PROTINFO(This);
|
2006-12-24 01:22:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if(*ppv) {
|
|
|
|
IInternetProtocol_AddRef(iface);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("not supported interface %s\n", debugstr_guid(riid));
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ITSProtocol_AddRef(IInternetProtocol *iface)
|
|
|
|
{
|
|
|
|
ITSProtocol *This = PROTOCOL_THIS(iface);
|
|
|
|
LONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
TRACE("(%p) ref=%d\n", This, ref);
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ITSProtocol_Release(IInternetProtocol *iface)
|
|
|
|
{
|
|
|
|
ITSProtocol *This = PROTOCOL_THIS(iface);
|
|
|
|
LONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) ref=%d\n", This, ref);
|
|
|
|
|
|
|
|
if(!ref) {
|
2006-12-25 16:08:20 +01:00
|
|
|
release_chm(This);
|
2006-12-24 01:22:30 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
2006-12-25 16:08:20 +01:00
|
|
|
|
2006-12-24 01:22:30 +01:00
|
|
|
ITSS_UnlockModule();
|
|
|
|
}
|
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
2006-12-25 16:08:20 +01:00
|
|
|
static LPCWSTR skip_schema(LPCWSTR url)
|
|
|
|
{
|
|
|
|
static const WCHAR its_schema[] = {'i','t','s',':'};
|
|
|
|
static const WCHAR msits_schema[] = {'m','s','-','i','t','s',':'};
|
|
|
|
static const WCHAR mk_schema[] = {'m','k',':','@','M','S','I','T','S','t','o','r','e',':'};
|
|
|
|
|
|
|
|
if(!strncmpiW(its_schema, url, sizeof(its_schema)/sizeof(WCHAR)))
|
|
|
|
return url+sizeof(its_schema)/sizeof(WCHAR);
|
|
|
|
if(!strncmpiW(msits_schema, url, sizeof(msits_schema)/sizeof(WCHAR)))
|
|
|
|
return url+sizeof(msits_schema)/sizeof(WCHAR);
|
|
|
|
if(!strncmpiW(mk_schema, url, sizeof(mk_schema)/sizeof(WCHAR)))
|
|
|
|
return url+sizeof(mk_schema)/sizeof(WCHAR);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT report_result(IInternetProtocolSink *sink, HRESULT hres)
|
|
|
|
{
|
|
|
|
IInternetProtocolSink_ReportResult(sink, hres, 0, NULL);
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2006-12-24 01:22:30 +01:00
|
|
|
static HRESULT WINAPI ITSProtocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
|
|
|
|
IInternetProtocolSink *pOIProtSink, IInternetBindInfo *pOIBindInfo,
|
2009-04-01 03:42:37 +02:00
|
|
|
DWORD grfPI, HANDLE_PTR dwReserved)
|
2006-12-24 01:22:30 +01:00
|
|
|
{
|
|
|
|
ITSProtocol *This = PROTOCOL_THIS(iface);
|
2006-12-25 16:08:20 +01:00
|
|
|
BINDINFO bindinfo;
|
|
|
|
DWORD bindf = 0, len;
|
2007-02-22 21:09:31 +01:00
|
|
|
LPWSTR file_name, mime, object_name, p;
|
|
|
|
LPCWSTR ptr;
|
2006-12-25 16:08:20 +01:00
|
|
|
struct chmFile *chm_file;
|
|
|
|
struct chmUnitInfo chm_object;
|
|
|
|
int res;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
static const WCHAR separator[] = {':',':',0};
|
|
|
|
|
2009-04-01 03:42:37 +02:00
|
|
|
TRACE("(%p)->(%s %p %p %08x %lx)\n", This, debugstr_w(szUrl), pOIProtSink,
|
2006-12-24 01:22:30 +01:00
|
|
|
pOIBindInfo, grfPI, dwReserved);
|
2006-12-25 16:08:20 +01:00
|
|
|
|
2007-02-22 21:09:31 +01:00
|
|
|
ptr = skip_schema(szUrl);
|
|
|
|
if(!ptr)
|
2006-12-25 16:08:20 +01:00
|
|
|
return INET_E_USE_DEFAULT_PROTOCOLHANDLER;
|
|
|
|
|
|
|
|
memset(&bindinfo, 0, sizeof(bindinfo));
|
|
|
|
bindinfo.cbSize = sizeof(BINDINFO);
|
|
|
|
hres = IInternetBindInfo_GetBindInfo(pOIBindInfo, &bindf, &bindinfo);
|
|
|
|
if(FAILED(hres)) {
|
|
|
|
WARN("GetBindInfo failed: %08x\n", hres);
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReleaseBindInfo(&bindinfo);
|
|
|
|
|
2007-02-22 21:09:31 +01:00
|
|
|
len = strlenW(ptr)+3;
|
|
|
|
file_name = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
|
|
|
|
memcpy(file_name, ptr, len*sizeof(WCHAR));
|
|
|
|
hres = UrlUnescapeW(file_name, NULL, &len, URL_UNESCAPE_INPLACE);
|
|
|
|
if(FAILED(hres)) {
|
|
|
|
WARN("UrlUnescape failed: %08x\n", hres);
|
|
|
|
HeapFree(GetProcessHeap(), 0, file_name);
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
p = strstrW(file_name, separator);
|
|
|
|
if(!p) {
|
2006-12-25 16:08:20 +01:00
|
|
|
WARN("invalid url\n");
|
2007-02-22 21:09:31 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, file_name);
|
2006-12-25 16:08:20 +01:00
|
|
|
return report_result(pOIProtSink, STG_E_FILENOTFOUND);
|
|
|
|
}
|
|
|
|
|
2007-02-22 21:09:31 +01:00
|
|
|
*p = 0;
|
2006-12-25 16:08:20 +01:00
|
|
|
chm_file = chm_openW(file_name);
|
|
|
|
if(!chm_file) {
|
|
|
|
WARN("Could not open chm file\n");
|
2007-02-22 21:09:31 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, file_name);
|
2006-12-25 16:08:20 +01:00
|
|
|
return report_result(pOIProtSink, STG_E_FILENOTFOUND);
|
|
|
|
}
|
|
|
|
|
2007-02-22 21:09:31 +01:00
|
|
|
object_name = p+2;
|
2007-03-13 18:42:34 +01:00
|
|
|
len = strlenW(object_name);
|
|
|
|
|
2007-02-22 21:09:31 +01:00
|
|
|
if(*object_name != '/' && *object_name != '\\') {
|
2007-03-13 18:42:34 +01:00
|
|
|
memmove(object_name+1, object_name, (len+1)*sizeof(WCHAR));
|
2007-02-22 21:09:31 +01:00
|
|
|
*object_name = '/';
|
2007-03-13 18:42:34 +01:00
|
|
|
len++;
|
2007-02-22 21:09:31 +01:00
|
|
|
}
|
|
|
|
|
2007-03-13 18:42:34 +01:00
|
|
|
if(object_name[len-1] == '/')
|
|
|
|
object_name[--len] = 0;
|
|
|
|
|
2007-02-22 21:09:31 +01:00
|
|
|
for(p=object_name; *p; p++) {
|
|
|
|
if(*p == '\\')
|
|
|
|
*p = '/';
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("Resolving %s\n", debugstr_w(object_name));
|
|
|
|
|
2006-12-25 16:08:20 +01:00
|
|
|
memset(&chm_object, 0, sizeof(chm_object));
|
|
|
|
res = chm_resolve_object(chm_file, object_name, &chm_object);
|
|
|
|
if(res != CHM_RESOLVE_SUCCESS) {
|
|
|
|
WARN("Could not resolve chm object\n");
|
2007-09-25 22:59:30 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, file_name);
|
2006-12-25 16:08:20 +01:00
|
|
|
chm_close(chm_file);
|
|
|
|
return report_result(pOIProtSink, STG_E_FILENOTFOUND);
|
|
|
|
}
|
|
|
|
|
2007-02-10 16:30:42 +01:00
|
|
|
IInternetProtocolSink_ReportProgress(pOIProtSink, BINDSTATUS_SENDINGREQUEST,
|
2007-02-22 21:09:31 +01:00
|
|
|
strrchrW(object_name, '/')+1);
|
2006-12-25 16:08:20 +01:00
|
|
|
|
|
|
|
/* FIXME: Native doesn't use FindMimeFromData */
|
2007-03-13 18:43:17 +01:00
|
|
|
hres = FindMimeFromData(NULL, object_name, NULL, 0, NULL, 0, &mime, 0);
|
2007-10-21 14:36:38 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, file_name);
|
2006-12-25 16:08:20 +01:00
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
IInternetProtocolSink_ReportProgress(pOIProtSink, BINDSTATUS_MIMETYPEAVAILABLE, mime);
|
|
|
|
CoTaskMemFree(mime);
|
|
|
|
}
|
|
|
|
|
2007-02-06 20:49:02 +01:00
|
|
|
release_chm(This); /* Native leaks handle here */
|
|
|
|
This->chm_file = chm_file;
|
2008-02-29 23:06:59 +01:00
|
|
|
This->chm_object = chm_object;
|
2007-02-06 20:49:02 +01:00
|
|
|
|
2006-12-25 16:08:20 +01:00
|
|
|
hres = IInternetProtocolSink_ReportData(pOIProtSink,
|
|
|
|
BSCF_FIRSTDATANOTIFICATION|BSCF_DATAFULLYAVAILABLE,
|
|
|
|
chm_object.length, chm_object.length);
|
|
|
|
if(FAILED(hres)) {
|
|
|
|
WARN("ReportData failed: %08x\n", hres);
|
2007-02-22 21:09:31 +01:00
|
|
|
release_chm(This);
|
2006-12-25 16:08:20 +01:00
|
|
|
return report_result(pOIProtSink, hres);
|
|
|
|
}
|
|
|
|
|
|
|
|
hres = IInternetProtocolSink_ReportProgress(pOIProtSink, BINDSTATUS_BEGINDOWNLOADDATA, NULL);
|
|
|
|
|
|
|
|
return report_result(pOIProtSink, hres);
|
2006-12-24 01:22:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ITSProtocol_Continue(IInternetProtocol *iface, PROTOCOLDATA *pProtocolData)
|
|
|
|
{
|
|
|
|
ITSProtocol *This = PROTOCOL_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, pProtocolData);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ITSProtocol_Abort(IInternetProtocol *iface, HRESULT hrReason,
|
|
|
|
DWORD dwOptions)
|
|
|
|
{
|
|
|
|
ITSProtocol *This = PROTOCOL_THIS(iface);
|
|
|
|
FIXME("(%p)->(%08x %08x)\n", This, hrReason, dwOptions);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ITSProtocol_Terminate(IInternetProtocol *iface, DWORD dwOptions)
|
|
|
|
{
|
|
|
|
ITSProtocol *This = PROTOCOL_THIS(iface);
|
2006-12-25 16:08:20 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%08x)\n", This, dwOptions);
|
|
|
|
|
|
|
|
return S_OK;
|
2006-12-24 01:22:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ITSProtocol_Suspend(IInternetProtocol *iface)
|
|
|
|
{
|
|
|
|
ITSProtocol *This = PROTOCOL_THIS(iface);
|
|
|
|
FIXME("(%p)\n", This);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ITSProtocol_Resume(IInternetProtocol *iface)
|
|
|
|
{
|
|
|
|
ITSProtocol *This = PROTOCOL_THIS(iface);
|
|
|
|
FIXME("(%p)\n", This);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ITSProtocol_Read(IInternetProtocol *iface, void *pv,
|
|
|
|
ULONG cb, ULONG *pcbRead)
|
|
|
|
{
|
|
|
|
ITSProtocol *This = PROTOCOL_THIS(iface);
|
2006-12-25 16:08:20 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p %u %p)\n", This, pv, cb, pcbRead);
|
|
|
|
|
|
|
|
if(!This->chm_file)
|
|
|
|
return INET_E_DATA_NOT_AVAILABLE;
|
|
|
|
|
|
|
|
*pcbRead = chm_retrieve_object(This->chm_file, &This->chm_object, pv, This->offset, cb);
|
|
|
|
This->offset += *pcbRead;
|
|
|
|
|
|
|
|
return *pcbRead ? S_OK : S_FALSE;
|
2006-12-24 01:22:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ITSProtocol_Seek(IInternetProtocol *iface, LARGE_INTEGER dlibMove,
|
2007-01-04 10:52:22 +01:00
|
|
|
DWORD dwOrigin, ULARGE_INTEGER *plibNewPosition)
|
2006-12-24 01:22:30 +01:00
|
|
|
{
|
|
|
|
ITSProtocol *This = PROTOCOL_THIS(iface);
|
2007-01-04 10:52:22 +01:00
|
|
|
FIXME("(%p)->(%d %d %p)\n", This, dlibMove.u.LowPart, dwOrigin, plibNewPosition);
|
2006-12-24 01:22:30 +01:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ITSProtocol_LockRequest(IInternetProtocol *iface, DWORD dwOptions)
|
|
|
|
{
|
|
|
|
ITSProtocol *This = PROTOCOL_THIS(iface);
|
2006-12-25 16:08:20 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%08x)\n", This, dwOptions);
|
|
|
|
|
|
|
|
return S_OK;
|
2006-12-24 01:22:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ITSProtocol_UnlockRequest(IInternetProtocol *iface)
|
|
|
|
{
|
|
|
|
ITSProtocol *This = PROTOCOL_THIS(iface);
|
2006-12-25 16:08:20 +01:00
|
|
|
|
|
|
|
TRACE("(%p)\n", This);
|
|
|
|
|
|
|
|
return S_OK;
|
2006-12-24 01:22:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#undef PROTOCOL_THIS
|
|
|
|
|
|
|
|
static const IInternetProtocolVtbl ITSProtocolVtbl = {
|
|
|
|
ITSProtocol_QueryInterface,
|
|
|
|
ITSProtocol_AddRef,
|
|
|
|
ITSProtocol_Release,
|
|
|
|
ITSProtocol_Start,
|
|
|
|
ITSProtocol_Continue,
|
|
|
|
ITSProtocol_Abort,
|
|
|
|
ITSProtocol_Terminate,
|
|
|
|
ITSProtocol_Suspend,
|
|
|
|
ITSProtocol_Resume,
|
|
|
|
ITSProtocol_Read,
|
|
|
|
ITSProtocol_Seek,
|
|
|
|
ITSProtocol_LockRequest,
|
|
|
|
ITSProtocol_UnlockRequest
|
|
|
|
};
|
|
|
|
|
2007-02-22 21:10:42 +01:00
|
|
|
#define PROTINFO_THIS(iface) DEFINE_THIS(ITSProtocol, InternetProtocolInfo, iface)
|
|
|
|
|
|
|
|
static HRESULT WINAPI ITSProtocolInfo_QueryInterface(IInternetProtocolInfo *iface,
|
|
|
|
REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
ITSProtocol *This = PROTINFO_THIS(iface);
|
|
|
|
return IInternetProtocol_QueryInterface(PROTOCOL(This), riid, ppv);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ITSProtocolInfo_AddRef(IInternetProtocolInfo *iface)
|
|
|
|
{
|
|
|
|
ITSProtocol *This = PROTINFO_THIS(iface);
|
|
|
|
return IInternetProtocol_AddRef(PROTOCOL(This));
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ITSProtocolInfo_Release(IInternetProtocolInfo *iface)
|
|
|
|
{
|
|
|
|
ITSProtocol *This = PROTINFO_THIS(iface);
|
|
|
|
return IInternetProtocol_Release(PROTOCOL(This));
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ITSProtocolInfo_ParseUrl(IInternetProtocolInfo *iface, LPCWSTR pwzUrl,
|
|
|
|
PARSEACTION ParseAction, DWORD dwParseFlags, LPWSTR pwzResult, DWORD cchResult,
|
|
|
|
DWORD *pcchResult, DWORD dwReserved)
|
|
|
|
{
|
|
|
|
ITSProtocol *This = PROTINFO_THIS(iface);
|
2007-02-22 21:11:21 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s %x %08x %p %d %p %d)\n", This, debugstr_w(pwzUrl), ParseAction,
|
2007-02-22 21:10:42 +01:00
|
|
|
dwParseFlags, pwzResult, cchResult, pcchResult, dwReserved);
|
2007-02-22 21:11:21 +01:00
|
|
|
|
|
|
|
switch(ParseAction) {
|
|
|
|
case PARSE_CANONICALIZE:
|
|
|
|
FIXME("PARSE_CANONICALIZE\n");
|
|
|
|
return E_NOTIMPL;
|
|
|
|
case PARSE_SECURITY_URL:
|
|
|
|
FIXME("PARSE_SECURITY_URL\n");
|
|
|
|
return E_NOTIMPL;
|
|
|
|
default:
|
|
|
|
return INET_E_DEFAULT_ACTION;
|
|
|
|
}
|
|
|
|
|
|
|
|
return S_OK;
|
2007-02-22 21:10:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ITSProtocolInfo_CombineUrl(IInternetProtocolInfo *iface,
|
|
|
|
LPCWSTR pwzBaseUrl, LPCWSTR pwzRelativeUrl, DWORD dwCombineFlags, LPWSTR pwzResult,
|
|
|
|
DWORD cchResult, DWORD* pcchResult, DWORD dwReserved)
|
|
|
|
{
|
|
|
|
ITSProtocol *This = PROTINFO_THIS(iface);
|
2007-02-22 21:12:19 +01:00
|
|
|
LPCWSTR base_end, ptr;
|
|
|
|
DWORD rel_len;
|
|
|
|
|
|
|
|
static const WCHAR separator[] = {':',':',0};
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s %s %08x %p %d %p %d)\n", This, debugstr_w(pwzBaseUrl),
|
2007-02-22 21:10:42 +01:00
|
|
|
debugstr_w(pwzRelativeUrl), dwCombineFlags, pwzResult, cchResult,
|
|
|
|
pcchResult, dwReserved);
|
2007-02-22 21:12:19 +01:00
|
|
|
|
|
|
|
base_end = strstrW(pwzBaseUrl, separator);
|
|
|
|
if(!base_end)
|
|
|
|
return 0x80041001;
|
|
|
|
base_end += 2;
|
|
|
|
|
|
|
|
if(!skip_schema(pwzBaseUrl))
|
|
|
|
return INET_E_USE_DEFAULT_PROTOCOLHANDLER;
|
|
|
|
|
|
|
|
if(strchrW(pwzRelativeUrl, ':'))
|
|
|
|
return STG_E_INVALIDNAME;
|
|
|
|
|
|
|
|
if(pwzRelativeUrl[0] != '/') {
|
|
|
|
ptr = strrchrW(base_end, '/');
|
|
|
|
if(ptr)
|
|
|
|
base_end = ptr+1;
|
|
|
|
else
|
|
|
|
base_end += strlenW(base_end);
|
|
|
|
}
|
|
|
|
|
|
|
|
rel_len = strlenW(pwzRelativeUrl)+1;
|
|
|
|
|
|
|
|
*pcchResult = rel_len + (base_end-pwzBaseUrl);
|
|
|
|
|
|
|
|
if(*pcchResult > cchResult)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
memcpy(pwzResult, pwzBaseUrl, (base_end-pwzBaseUrl)*sizeof(WCHAR));
|
|
|
|
strcpyW(pwzResult + (base_end-pwzBaseUrl), pwzRelativeUrl);
|
|
|
|
|
|
|
|
return S_OK;
|
2007-02-22 21:10:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ITSProtocolInfo_CompareUrl(IInternetProtocolInfo *iface, LPCWSTR pwzUrl1,
|
|
|
|
LPCWSTR pwzUrl2, DWORD dwCompareFlags)
|
|
|
|
{
|
|
|
|
ITSProtocol *This = PROTINFO_THIS(iface);
|
|
|
|
FIXME("%p)->(%s %s %08x)\n", This, debugstr_w(pwzUrl1), debugstr_w(pwzUrl2), dwCompareFlags);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ITSProtocolInfo_QueryInfo(IInternetProtocolInfo *iface, LPCWSTR pwzUrl,
|
|
|
|
QUERYOPTION QueryOption, DWORD dwQueryFlags, LPVOID pBuffer, DWORD cbBuffer, DWORD* pcbBuf,
|
|
|
|
DWORD dwReserved)
|
|
|
|
{
|
|
|
|
ITSProtocol *This = PROTINFO_THIS(iface);
|
|
|
|
FIXME("(%p)->(%s %08x %08x %p %d %p %d)\n", This, debugstr_w(pwzUrl), QueryOption,
|
|
|
|
dwQueryFlags, pBuffer, cbBuffer, pcbBuf, dwReserved);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef PROTINFO_THIS
|
|
|
|
|
|
|
|
static const IInternetProtocolInfoVtbl ITSProtocolInfoVtbl = {
|
|
|
|
ITSProtocolInfo_QueryInterface,
|
|
|
|
ITSProtocolInfo_AddRef,
|
|
|
|
ITSProtocolInfo_Release,
|
|
|
|
ITSProtocolInfo_ParseUrl,
|
|
|
|
ITSProtocolInfo_CombineUrl,
|
|
|
|
ITSProtocolInfo_CompareUrl,
|
|
|
|
ITSProtocolInfo_QueryInfo
|
|
|
|
};
|
|
|
|
|
2006-12-24 01:22:30 +01:00
|
|
|
HRESULT ITSProtocol_create(IUnknown *pUnkOuter, LPVOID *ppobj)
|
|
|
|
{
|
|
|
|
ITSProtocol *ret;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", pUnkOuter, ppobj);
|
|
|
|
|
|
|
|
ITSS_LockModule();
|
|
|
|
|
2006-12-25 16:08:20 +01:00
|
|
|
ret = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(ITSProtocol));
|
2006-12-24 01:22:30 +01:00
|
|
|
|
|
|
|
ret->lpInternetProtocolVtbl = &ITSProtocolVtbl;
|
2007-02-22 21:10:42 +01:00
|
|
|
ret->lpInternetProtocolInfoVtbl = &ITSProtocolInfoVtbl;
|
2006-12-24 01:22:30 +01:00
|
|
|
ret->ref = 1;
|
|
|
|
|
|
|
|
*ppobj = PROTOCOL(ret);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|