2009-03-04 19:06:42 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2009 Jacek Caban for CodeWeavers
|
|
|
|
*
|
|
|
|
* 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 "urlmon_main.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(urlmon);
|
|
|
|
|
|
|
|
typedef struct {
|
2009-03-04 19:07:05 +01:00
|
|
|
Protocol base;
|
|
|
|
|
2011-01-09 20:32:59 +01:00
|
|
|
IInternetProtocol IInternetProtocol_iface;
|
|
|
|
IInternetPriority IInternetPriority_iface;
|
2009-03-04 19:06:42 +01:00
|
|
|
|
|
|
|
LONG ref;
|
|
|
|
} GopherProtocol;
|
|
|
|
|
2011-01-04 10:59:54 +01:00
|
|
|
static inline GopherProtocol *impl_from_Protocol(Protocol *prot)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(prot, GopherProtocol, base);
|
|
|
|
}
|
2009-03-04 19:07:29 +01:00
|
|
|
|
2010-09-20 20:00:52 +02:00
|
|
|
static HRESULT GopherProtocol_open_request(Protocol *prot, IUri *uri, DWORD request_flags,
|
2009-08-02 00:11:46 +02:00
|
|
|
HINTERNET internet_session, IInternetBindInfo *bind_info)
|
2009-03-04 19:07:29 +01:00
|
|
|
{
|
2011-01-04 10:59:54 +01:00
|
|
|
GopherProtocol *This = impl_from_Protocol(prot);
|
2010-09-20 20:00:52 +02:00
|
|
|
BSTR url;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = IUri_GetAbsoluteUri(uri, &url);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
2009-03-04 19:07:29 +01:00
|
|
|
|
2009-08-02 00:11:46 +02:00
|
|
|
This->base.request = InternetOpenUrlW(internet_session, url, NULL, 0,
|
2009-03-04 19:07:29 +01:00
|
|
|
request_flags, (DWORD_PTR)&This->base);
|
2010-09-20 20:00:52 +02:00
|
|
|
SysFreeString(url);
|
2009-03-04 19:07:29 +01:00
|
|
|
if (!This->base.request && GetLastError() != ERROR_IO_PENDING) {
|
|
|
|
WARN("InternetOpenUrl failed: %d\n", GetLastError());
|
|
|
|
return INET_E_RESOURCE_NOT_FOUND;
|
|
|
|
}
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2010-10-06 21:36:44 +02:00
|
|
|
static HRESULT GopherProtocol_end_request(Protocol *prot)
|
|
|
|
{
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2009-03-04 19:07:29 +01:00
|
|
|
static HRESULT GopherProtocol_start_downloading(Protocol *prot)
|
|
|
|
{
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void GopherProtocol_close_connection(Protocol *prot)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-01-03 03:47:38 +01:00
|
|
|
static void GopherProtocol_on_error(Protocol *prot, DWORD error)
|
|
|
|
{
|
|
|
|
FIXME("(%p) %d - stub\n", prot, error);
|
|
|
|
}
|
|
|
|
|
2009-03-04 19:07:29 +01:00
|
|
|
static const ProtocolVtbl AsyncProtocolVtbl = {
|
|
|
|
GopherProtocol_open_request,
|
2010-10-06 21:36:44 +02:00
|
|
|
GopherProtocol_end_request,
|
2009-03-04 19:07:29 +01:00
|
|
|
GopherProtocol_start_downloading,
|
2011-01-03 03:47:38 +01:00
|
|
|
GopherProtocol_close_connection,
|
|
|
|
GopherProtocol_on_error
|
2009-03-04 19:07:29 +01:00
|
|
|
};
|
|
|
|
|
2011-01-09 20:32:59 +01:00
|
|
|
static inline GopherProtocol *impl_from_IInternetProtocol(IInternetProtocol *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, GopherProtocol, IInternetProtocol_iface);
|
|
|
|
}
|
2009-03-04 19:06:42 +01:00
|
|
|
|
|
|
|
static HRESULT WINAPI GopherProtocol_QueryInterface(IInternetProtocol *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
2011-01-09 20:32:59 +01:00
|
|
|
GopherProtocol *This = impl_from_IInternetProtocol(iface);
|
2009-03-04 19:06:42 +01:00
|
|
|
|
|
|
|
*ppv = NULL;
|
|
|
|
if(IsEqualGUID(&IID_IUnknown, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
|
2011-01-09 20:32:59 +01:00
|
|
|
*ppv = &This->IInternetProtocol_iface;
|
2009-03-04 19:06:42 +01:00
|
|
|
}else if(IsEqualGUID(&IID_IInternetProtocolRoot, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IInternetProtocolRoot %p)\n", This, ppv);
|
2011-01-09 20:32:59 +01:00
|
|
|
*ppv = &This->IInternetProtocol_iface;
|
2009-03-04 19:06:42 +01:00
|
|
|
}else if(IsEqualGUID(&IID_IInternetProtocol, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IInternetProtocol %p)\n", This, ppv);
|
2011-01-09 20:32:59 +01:00
|
|
|
*ppv = &This->IInternetProtocol_iface;
|
2009-03-04 19:07:05 +01:00
|
|
|
}else if(IsEqualGUID(&IID_IInternetPriority, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IInternetPriority %p)\n", This, ppv);
|
2011-01-09 20:32:59 +01:00
|
|
|
*ppv = &This->IInternetPriority_iface;
|
2009-03-04 19:06:42 +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 GopherProtocol_AddRef(IInternetProtocol *iface)
|
|
|
|
{
|
2011-01-09 20:32:59 +01:00
|
|
|
GopherProtocol *This = impl_from_IInternetProtocol(iface);
|
2009-03-04 19:06:42 +01:00
|
|
|
LONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
TRACE("(%p) ref=%d\n", This, ref);
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI GopherProtocol_Release(IInternetProtocol *iface)
|
|
|
|
{
|
2011-01-09 20:32:59 +01:00
|
|
|
GopherProtocol *This = impl_from_IInternetProtocol(iface);
|
2009-03-04 19:06:42 +01:00
|
|
|
LONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) ref=%d\n", This, ref);
|
|
|
|
|
|
|
|
if(!ref) {
|
|
|
|
heap_free(This);
|
|
|
|
|
|
|
|
URLMON_UnlockModule();
|
|
|
|
}
|
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI GopherProtocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
|
|
|
|
IInternetProtocolSink *pOIProtSink, IInternetBindInfo *pOIBindInfo,
|
2009-04-01 03:42:37 +02:00
|
|
|
DWORD grfPI, HANDLE_PTR dwReserved)
|
2009-03-04 19:06:42 +01:00
|
|
|
{
|
2011-01-09 20:32:59 +01:00
|
|
|
GopherProtocol *This = impl_from_IInternetProtocol(iface);
|
2010-09-20 20:00:52 +02:00
|
|
|
IUri *uri;
|
|
|
|
HRESULT hres;
|
2009-03-04 19:07:29 +01:00
|
|
|
|
2009-04-01 03:42:37 +02:00
|
|
|
TRACE("(%p)->(%s %p %p %08x %lx)\n", This, debugstr_w(szUrl), pOIProtSink,
|
2009-03-04 19:06:42 +01:00
|
|
|
pOIBindInfo, grfPI, dwReserved);
|
2009-03-04 19:07:29 +01:00
|
|
|
|
2010-09-20 20:00:52 +02:00
|
|
|
hres = CreateUri(szUrl, 0, 0, &uri);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2011-01-09 20:32:59 +01:00
|
|
|
hres = protocol_start(&This->base, &This->IInternetProtocol_iface, uri, pOIProtSink,
|
|
|
|
pOIBindInfo);
|
2010-09-20 20:00:52 +02:00
|
|
|
|
|
|
|
IUri_Release(uri);
|
|
|
|
return hres;
|
2009-03-04 19:06:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI GopherProtocol_Continue(IInternetProtocol *iface, PROTOCOLDATA *pProtocolData)
|
|
|
|
{
|
2011-01-09 20:32:59 +01:00
|
|
|
GopherProtocol *This = impl_from_IInternetProtocol(iface);
|
2009-03-04 19:07:29 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, pProtocolData);
|
|
|
|
|
|
|
|
return protocol_continue(&This->base, pProtocolData);
|
2009-03-04 19:06:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI GopherProtocol_Abort(IInternetProtocol *iface, HRESULT hrReason,
|
|
|
|
DWORD dwOptions)
|
|
|
|
{
|
2011-01-09 20:32:59 +01:00
|
|
|
GopherProtocol *This = impl_from_IInternetProtocol(iface);
|
2010-10-04 14:00:17 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%08x %08x)\n", This, hrReason, dwOptions);
|
|
|
|
|
|
|
|
return protocol_abort(&This->base, hrReason);
|
2009-03-04 19:06:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI GopherProtocol_Terminate(IInternetProtocol *iface, DWORD dwOptions)
|
|
|
|
{
|
2011-01-09 20:32:59 +01:00
|
|
|
GopherProtocol *This = impl_from_IInternetProtocol(iface);
|
2009-03-04 19:07:29 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%08x)\n", This, dwOptions);
|
|
|
|
|
|
|
|
protocol_close_connection(&This->base);
|
|
|
|
return S_OK;
|
2009-03-04 19:06:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI GopherProtocol_Suspend(IInternetProtocol *iface)
|
|
|
|
{
|
2011-01-09 20:32:59 +01:00
|
|
|
GopherProtocol *This = impl_from_IInternetProtocol(iface);
|
2009-03-04 19:06:42 +01:00
|
|
|
FIXME("(%p)\n", This);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI GopherProtocol_Resume(IInternetProtocol *iface)
|
|
|
|
{
|
2011-01-09 20:32:59 +01:00
|
|
|
GopherProtocol *This = impl_from_IInternetProtocol(iface);
|
2009-03-04 19:06:42 +01:00
|
|
|
FIXME("(%p)\n", This);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI GopherProtocol_Read(IInternetProtocol *iface, void *pv,
|
|
|
|
ULONG cb, ULONG *pcbRead)
|
|
|
|
{
|
2011-01-09 20:32:59 +01:00
|
|
|
GopherProtocol *This = impl_from_IInternetProtocol(iface);
|
2009-03-04 19:07:29 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p %u %p)\n", This, pv, cb, pcbRead);
|
|
|
|
|
|
|
|
return protocol_read(&This->base, pv, cb, pcbRead);
|
2009-03-04 19:06:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI GopherProtocol_Seek(IInternetProtocol *iface, LARGE_INTEGER dlibMove,
|
|
|
|
DWORD dwOrigin, ULARGE_INTEGER *plibNewPosition)
|
|
|
|
{
|
2011-01-09 20:32:59 +01:00
|
|
|
GopherProtocol *This = impl_from_IInternetProtocol(iface);
|
2009-03-04 19:06:42 +01:00
|
|
|
FIXME("(%p)->(%d %d %p)\n", This, dlibMove.u.LowPart, dwOrigin, plibNewPosition);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI GopherProtocol_LockRequest(IInternetProtocol *iface, DWORD dwOptions)
|
|
|
|
{
|
2011-01-09 20:32:59 +01:00
|
|
|
GopherProtocol *This = impl_from_IInternetProtocol(iface);
|
2009-03-04 19:07:29 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%08x)\n", This, dwOptions);
|
|
|
|
|
|
|
|
return protocol_lock_request(&This->base);
|
2009-03-04 19:06:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI GopherProtocol_UnlockRequest(IInternetProtocol *iface)
|
|
|
|
{
|
2011-01-09 20:32:59 +01:00
|
|
|
GopherProtocol *This = impl_from_IInternetProtocol(iface);
|
2009-03-04 19:07:29 +01:00
|
|
|
|
|
|
|
TRACE("(%p)\n", This);
|
|
|
|
|
|
|
|
return protocol_unlock_request(&This->base);
|
2009-03-04 19:06:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static const IInternetProtocolVtbl GopherProtocolVtbl = {
|
|
|
|
GopherProtocol_QueryInterface,
|
|
|
|
GopherProtocol_AddRef,
|
|
|
|
GopherProtocol_Release,
|
|
|
|
GopherProtocol_Start,
|
|
|
|
GopherProtocol_Continue,
|
|
|
|
GopherProtocol_Abort,
|
|
|
|
GopherProtocol_Terminate,
|
|
|
|
GopherProtocol_Suspend,
|
|
|
|
GopherProtocol_Resume,
|
|
|
|
GopherProtocol_Read,
|
|
|
|
GopherProtocol_Seek,
|
|
|
|
GopherProtocol_LockRequest,
|
|
|
|
GopherProtocol_UnlockRequest
|
|
|
|
};
|
|
|
|
|
2011-01-09 20:32:59 +01:00
|
|
|
static inline GopherProtocol *impl_from_IInternetPriority(IInternetPriority *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, GopherProtocol, IInternetPriority_iface);
|
|
|
|
}
|
2009-03-04 19:07:05 +01:00
|
|
|
|
|
|
|
static HRESULT WINAPI GopherPriority_QueryInterface(IInternetPriority *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
2011-01-09 20:32:59 +01:00
|
|
|
GopherProtocol *This = impl_from_IInternetPriority(iface);
|
|
|
|
return IInternetProtocol_QueryInterface(&This->IInternetProtocol_iface, riid, ppv);
|
2009-03-04 19:07:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI GopherPriority_AddRef(IInternetPriority *iface)
|
|
|
|
{
|
2011-01-09 20:32:59 +01:00
|
|
|
GopherProtocol *This = impl_from_IInternetPriority(iface);
|
|
|
|
return IInternetProtocol_AddRef(&This->IInternetProtocol_iface);
|
2009-03-04 19:07:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI GopherPriority_Release(IInternetPriority *iface)
|
|
|
|
{
|
2011-01-09 20:32:59 +01:00
|
|
|
GopherProtocol *This = impl_from_IInternetPriority(iface);
|
|
|
|
return IInternetProtocol_Release(&This->IInternetProtocol_iface);
|
2009-03-04 19:07:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI GopherPriority_SetPriority(IInternetPriority *iface, LONG nPriority)
|
|
|
|
{
|
2011-01-09 20:32:59 +01:00
|
|
|
GopherProtocol *This = impl_from_IInternetPriority(iface);
|
2009-03-04 19:07:05 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%d)\n", This, nPriority);
|
|
|
|
|
|
|
|
This->base.priority = nPriority;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI GopherPriority_GetPriority(IInternetPriority *iface, LONG *pnPriority)
|
|
|
|
{
|
2011-01-09 20:32:59 +01:00
|
|
|
GopherProtocol *This = impl_from_IInternetPriority(iface);
|
2009-03-04 19:07:05 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, pnPriority);
|
|
|
|
|
|
|
|
*pnPriority = This->base.priority;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IInternetPriorityVtbl GopherPriorityVtbl = {
|
|
|
|
GopherPriority_QueryInterface,
|
|
|
|
GopherPriority_AddRef,
|
|
|
|
GopherPriority_Release,
|
|
|
|
GopherPriority_SetPriority,
|
|
|
|
GopherPriority_GetPriority
|
|
|
|
};
|
|
|
|
|
2009-03-04 19:06:42 +01:00
|
|
|
HRESULT GopherProtocol_Construct(IUnknown *pUnkOuter, LPVOID *ppobj)
|
|
|
|
{
|
|
|
|
GopherProtocol *ret;
|
|
|
|
|
|
|
|
TRACE("(%p %p)\n", pUnkOuter, ppobj);
|
|
|
|
|
|
|
|
URLMON_LockModule();
|
|
|
|
|
|
|
|
ret = heap_alloc_zero(sizeof(GopherProtocol));
|
|
|
|
|
2009-03-04 19:07:29 +01:00
|
|
|
ret->base.vtbl = &AsyncProtocolVtbl;
|
2011-01-09 20:32:59 +01:00
|
|
|
ret->IInternetProtocol_iface.lpVtbl = &GopherProtocolVtbl;
|
|
|
|
ret->IInternetPriority_iface.lpVtbl = &GopherPriorityVtbl;
|
2009-03-04 19:06:42 +01:00
|
|
|
ret->ref = 1;
|
|
|
|
|
2011-01-09 20:32:59 +01:00
|
|
|
*ppobj = &ret->IInternetProtocol_iface;
|
2009-03-04 19:06:42 +01:00
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|