2 * Copyright 2009 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
19 #include "urlmon_main.h"
20 #include "wine/debug.h"
22 WINE_DEFAULT_DEBUG_CHANNEL(urlmon
);
27 IInternetProtocol IInternetProtocol_iface
;
28 IInternetPriority IInternetPriority_iface
;
33 static inline GopherProtocol
*impl_from_Protocol(Protocol
*prot
)
35 return CONTAINING_RECORD(prot
, GopherProtocol
, base
);
38 static HRESULT
GopherProtocol_open_request(Protocol
*prot
, IUri
*uri
, DWORD request_flags
,
39 HINTERNET internet_session
, IInternetBindInfo
*bind_info
)
41 GopherProtocol
*This
= impl_from_Protocol(prot
);
45 hres
= IUri_GetAbsoluteUri(uri
, &url
);
49 This
->base
.request
= InternetOpenUrlW(internet_session
, url
, NULL
, 0,
50 request_flags
, (DWORD_PTR
)&This
->base
);
52 if (!This
->base
.request
&& GetLastError() != ERROR_IO_PENDING
) {
53 WARN("InternetOpenUrl failed: %d\n", GetLastError());
54 return INET_E_RESOURCE_NOT_FOUND
;
60 static HRESULT
GopherProtocol_end_request(Protocol
*prot
)
65 static HRESULT
GopherProtocol_start_downloading(Protocol
*prot
)
70 static void GopherProtocol_close_connection(Protocol
*prot
)
74 static void GopherProtocol_on_error(Protocol
*prot
, DWORD error
)
76 FIXME("(%p) %d - stub\n", prot
, error
);
79 static const ProtocolVtbl AsyncProtocolVtbl
= {
80 GopherProtocol_open_request
,
81 GopherProtocol_end_request
,
82 GopherProtocol_start_downloading
,
83 GopherProtocol_close_connection
,
84 GopherProtocol_on_error
87 static inline GopherProtocol
*impl_from_IInternetProtocol(IInternetProtocol
*iface
)
89 return CONTAINING_RECORD(iface
, GopherProtocol
, IInternetProtocol_iface
);
92 static HRESULT WINAPI
GopherProtocol_QueryInterface(IInternetProtocol
*iface
, REFIID riid
, void **ppv
)
94 GopherProtocol
*This
= impl_from_IInternetProtocol(iface
);
97 if(IsEqualGUID(&IID_IUnknown
, riid
)) {
98 TRACE("(%p)->(IID_IUnknown %p)\n", This
, ppv
);
99 *ppv
= &This
->IInternetProtocol_iface
;
100 }else if(IsEqualGUID(&IID_IInternetProtocolRoot
, riid
)) {
101 TRACE("(%p)->(IID_IInternetProtocolRoot %p)\n", This
, ppv
);
102 *ppv
= &This
->IInternetProtocol_iface
;
103 }else if(IsEqualGUID(&IID_IInternetProtocol
, riid
)) {
104 TRACE("(%p)->(IID_IInternetProtocol %p)\n", This
, ppv
);
105 *ppv
= &This
->IInternetProtocol_iface
;
106 }else if(IsEqualGUID(&IID_IInternetPriority
, riid
)) {
107 TRACE("(%p)->(IID_IInternetPriority %p)\n", This
, ppv
);
108 *ppv
= &This
->IInternetPriority_iface
;
112 IInternetProtocol_AddRef(iface
);
116 WARN("not supported interface %s\n", debugstr_guid(riid
));
117 return E_NOINTERFACE
;
120 static ULONG WINAPI
GopherProtocol_AddRef(IInternetProtocol
*iface
)
122 GopherProtocol
*This
= impl_from_IInternetProtocol(iface
);
123 LONG ref
= InterlockedIncrement(&This
->ref
);
124 TRACE("(%p) ref=%d\n", This
, ref
);
128 static ULONG WINAPI
GopherProtocol_Release(IInternetProtocol
*iface
)
130 GopherProtocol
*This
= impl_from_IInternetProtocol(iface
);
131 LONG ref
= InterlockedDecrement(&This
->ref
);
133 TRACE("(%p) ref=%d\n", This
, ref
);
138 URLMON_UnlockModule();
144 static HRESULT WINAPI
GopherProtocol_Start(IInternetProtocol
*iface
, LPCWSTR szUrl
,
145 IInternetProtocolSink
*pOIProtSink
, IInternetBindInfo
*pOIBindInfo
,
146 DWORD grfPI
, HANDLE_PTR dwReserved
)
148 GopherProtocol
*This
= impl_from_IInternetProtocol(iface
);
152 TRACE("(%p)->(%s %p %p %08x %lx)\n", This
, debugstr_w(szUrl
), pOIProtSink
,
153 pOIBindInfo
, grfPI
, dwReserved
);
155 hres
= CreateUri(szUrl
, 0, 0, &uri
);
159 hres
= protocol_start(&This
->base
, &This
->IInternetProtocol_iface
, uri
, pOIProtSink
,
166 static HRESULT WINAPI
GopherProtocol_Continue(IInternetProtocol
*iface
, PROTOCOLDATA
*pProtocolData
)
168 GopherProtocol
*This
= impl_from_IInternetProtocol(iface
);
170 TRACE("(%p)->(%p)\n", This
, pProtocolData
);
172 return protocol_continue(&This
->base
, pProtocolData
);
175 static HRESULT WINAPI
GopherProtocol_Abort(IInternetProtocol
*iface
, HRESULT hrReason
,
178 GopherProtocol
*This
= impl_from_IInternetProtocol(iface
);
180 TRACE("(%p)->(%08x %08x)\n", This
, hrReason
, dwOptions
);
182 return protocol_abort(&This
->base
, hrReason
);
185 static HRESULT WINAPI
GopherProtocol_Terminate(IInternetProtocol
*iface
, DWORD dwOptions
)
187 GopherProtocol
*This
= impl_from_IInternetProtocol(iface
);
189 TRACE("(%p)->(%08x)\n", This
, dwOptions
);
191 protocol_close_connection(&This
->base
);
195 static HRESULT WINAPI
GopherProtocol_Suspend(IInternetProtocol
*iface
)
197 GopherProtocol
*This
= impl_from_IInternetProtocol(iface
);
198 FIXME("(%p)\n", This
);
202 static HRESULT WINAPI
GopherProtocol_Resume(IInternetProtocol
*iface
)
204 GopherProtocol
*This
= impl_from_IInternetProtocol(iface
);
205 FIXME("(%p)\n", This
);
209 static HRESULT WINAPI
GopherProtocol_Read(IInternetProtocol
*iface
, void *pv
,
210 ULONG cb
, ULONG
*pcbRead
)
212 GopherProtocol
*This
= impl_from_IInternetProtocol(iface
);
214 TRACE("(%p)->(%p %u %p)\n", This
, pv
, cb
, pcbRead
);
216 return protocol_read(&This
->base
, pv
, cb
, pcbRead
);
219 static HRESULT WINAPI
GopherProtocol_Seek(IInternetProtocol
*iface
, LARGE_INTEGER dlibMove
,
220 DWORD dwOrigin
, ULARGE_INTEGER
*plibNewPosition
)
222 GopherProtocol
*This
= impl_from_IInternetProtocol(iface
);
223 FIXME("(%p)->(%d %d %p)\n", This
, dlibMove
.u
.LowPart
, dwOrigin
, plibNewPosition
);
227 static HRESULT WINAPI
GopherProtocol_LockRequest(IInternetProtocol
*iface
, DWORD dwOptions
)
229 GopherProtocol
*This
= impl_from_IInternetProtocol(iface
);
231 TRACE("(%p)->(%08x)\n", This
, dwOptions
);
233 return protocol_lock_request(&This
->base
);
236 static HRESULT WINAPI
GopherProtocol_UnlockRequest(IInternetProtocol
*iface
)
238 GopherProtocol
*This
= impl_from_IInternetProtocol(iface
);
240 TRACE("(%p)\n", This
);
242 return protocol_unlock_request(&This
->base
);
245 static const IInternetProtocolVtbl GopherProtocolVtbl
= {
246 GopherProtocol_QueryInterface
,
247 GopherProtocol_AddRef
,
248 GopherProtocol_Release
,
249 GopherProtocol_Start
,
250 GopherProtocol_Continue
,
251 GopherProtocol_Abort
,
252 GopherProtocol_Terminate
,
253 GopherProtocol_Suspend
,
254 GopherProtocol_Resume
,
257 GopherProtocol_LockRequest
,
258 GopherProtocol_UnlockRequest
261 static inline GopherProtocol
*impl_from_IInternetPriority(IInternetPriority
*iface
)
263 return CONTAINING_RECORD(iface
, GopherProtocol
, IInternetPriority_iface
);
266 static HRESULT WINAPI
GopherPriority_QueryInterface(IInternetPriority
*iface
, REFIID riid
, void **ppv
)
268 GopherProtocol
*This
= impl_from_IInternetPriority(iface
);
269 return IInternetProtocol_QueryInterface(&This
->IInternetProtocol_iface
, riid
, ppv
);
272 static ULONG WINAPI
GopherPriority_AddRef(IInternetPriority
*iface
)
274 GopherProtocol
*This
= impl_from_IInternetPriority(iface
);
275 return IInternetProtocol_AddRef(&This
->IInternetProtocol_iface
);
278 static ULONG WINAPI
GopherPriority_Release(IInternetPriority
*iface
)
280 GopherProtocol
*This
= impl_from_IInternetPriority(iface
);
281 return IInternetProtocol_Release(&This
->IInternetProtocol_iface
);
284 static HRESULT WINAPI
GopherPriority_SetPriority(IInternetPriority
*iface
, LONG nPriority
)
286 GopherProtocol
*This
= impl_from_IInternetPriority(iface
);
288 TRACE("(%p)->(%d)\n", This
, nPriority
);
290 This
->base
.priority
= nPriority
;
294 static HRESULT WINAPI
GopherPriority_GetPriority(IInternetPriority
*iface
, LONG
*pnPriority
)
296 GopherProtocol
*This
= impl_from_IInternetPriority(iface
);
298 TRACE("(%p)->(%p)\n", This
, pnPriority
);
300 *pnPriority
= This
->base
.priority
;
304 static const IInternetPriorityVtbl GopherPriorityVtbl
= {
305 GopherPriority_QueryInterface
,
306 GopherPriority_AddRef
,
307 GopherPriority_Release
,
308 GopherPriority_SetPriority
,
309 GopherPriority_GetPriority
312 HRESULT
GopherProtocol_Construct(IUnknown
*pUnkOuter
, LPVOID
*ppobj
)
316 TRACE("(%p %p)\n", pUnkOuter
, ppobj
);
320 ret
= heap_alloc_zero(sizeof(GopherProtocol
));
322 ret
->base
.vtbl
= &AsyncProtocolVtbl
;
323 ret
->IInternetProtocol_iface
.lpVtbl
= &GopherProtocolVtbl
;
324 ret
->IInternetPriority_iface
.lpVtbl
= &GopherPriorityVtbl
;
327 *ppobj
= &ret
->IInternetProtocol_iface
;