winex11: Fix ctrl-<symbol> to generate codes below 0x20 where necessary.
[wine/multimedia.git] / dlls / urlmon / gopher.c
blob4087ed5ace20115a7f241eee36b1f3a179d93261
1 /*
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);
24 typedef struct {
25 Protocol base;
27 IInternetProtocol IInternetProtocol_iface;
28 IInternetPriority IInternetPriority_iface;
30 LONG ref;
31 } GopherProtocol;
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);
42 BSTR url;
43 HRESULT hres;
45 hres = IUri_GetAbsoluteUri(uri, &url);
46 if(FAILED(hres))
47 return hres;
49 This->base.request = InternetOpenUrlW(internet_session, url, NULL, 0,
50 request_flags, (DWORD_PTR)&This->base);
51 SysFreeString(url);
52 if (!This->base.request && GetLastError() != ERROR_IO_PENDING) {
53 WARN("InternetOpenUrl failed: %d\n", GetLastError());
54 return INET_E_RESOURCE_NOT_FOUND;
57 return S_OK;
60 static HRESULT GopherProtocol_end_request(Protocol *prot)
62 return E_NOTIMPL;
65 static HRESULT GopherProtocol_start_downloading(Protocol *prot)
67 return S_OK;
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);
96 *ppv = NULL;
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;
111 if(*ppv) {
112 IInternetProtocol_AddRef(iface);
113 return S_OK;
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);
125 return 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);
135 if(!ref) {
136 heap_free(This);
138 URLMON_UnlockModule();
141 return ref;
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);
149 IUri *uri;
150 HRESULT hres;
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);
156 if(FAILED(hres))
157 return hres;
159 hres = protocol_start(&This->base, &This->IInternetProtocol_iface, uri, pOIProtSink,
160 pOIBindInfo);
162 IUri_Release(uri);
163 return hres;
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,
176 DWORD dwOptions)
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);
192 return S_OK;
195 static HRESULT WINAPI GopherProtocol_Suspend(IInternetProtocol *iface)
197 GopherProtocol *This = impl_from_IInternetProtocol(iface);
198 FIXME("(%p)\n", This);
199 return E_NOTIMPL;
202 static HRESULT WINAPI GopherProtocol_Resume(IInternetProtocol *iface)
204 GopherProtocol *This = impl_from_IInternetProtocol(iface);
205 FIXME("(%p)\n", This);
206 return E_NOTIMPL;
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);
224 return E_NOTIMPL;
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,
255 GopherProtocol_Read,
256 GopherProtocol_Seek,
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;
291 return S_OK;
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;
301 return S_OK;
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)
314 GopherProtocol *ret;
316 TRACE("(%p %p)\n", pUnkOuter, ppobj);
318 URLMON_LockModule();
320 ret = heap_alloc_zero(sizeof(GopherProtocol));
322 ret->base.vtbl = &AsyncProtocolVtbl;
323 ret->IInternetProtocol_iface.lpVtbl = &GopherProtocolVtbl;
324 ret->IInternetPriority_iface.lpVtbl = &GopherPriorityVtbl;
325 ret->ref = 1;
327 *ppobj = &ret->IInternetProtocol_iface;
329 return S_OK;