2 * Copyright 2005-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"
21 #define NO_SHLWAPI_REG
24 #include "wine/debug.h"
26 WINE_DEFAULT_DEBUG_CHANNEL(urlmon
);
31 IInternetProtocolEx IInternetProtocolEx_iface
;
32 IInternetPriority IInternetPriority_iface
;
33 IWinInetHttpInfo IWinInetHttpInfo_iface
;
38 static inline FtpProtocol
*impl_from_IInternetProtocolEx(IInternetProtocolEx
*iface
)
40 return CONTAINING_RECORD(iface
, FtpProtocol
, IInternetProtocolEx_iface
);
43 static inline FtpProtocol
*impl_from_IInternetPriority(IInternetPriority
*iface
)
45 return CONTAINING_RECORD(iface
, FtpProtocol
, IInternetPriority_iface
);
47 static inline FtpProtocol
*impl_from_IWinInetHttpInfo(IWinInetHttpInfo
*iface
)
50 return CONTAINING_RECORD(iface
, FtpProtocol
, IWinInetHttpInfo_iface
);
53 #define ASYNCPROTOCOL_THIS(iface) DEFINE_THIS2(FtpProtocol, base, iface)
55 static HRESULT
FtpProtocol_open_request(Protocol
*prot
, IUri
*uri
, DWORD request_flags
,
56 HINTERNET internet_session
, IInternetBindInfo
*bind_info
)
58 FtpProtocol
*This
= ASYNCPROTOCOL_THIS(prot
);
62 hres
= IUri_GetAbsoluteUri(uri
, &url
);
66 This
->base
.request
= InternetOpenUrlW(internet_session
, url
, NULL
, 0,
67 request_flags
|INTERNET_FLAG_EXISTING_CONNECT
|INTERNET_FLAG_PASSIVE
,
68 (DWORD_PTR
)&This
->base
);
70 if (!This
->base
.request
&& GetLastError() != ERROR_IO_PENDING
) {
71 WARN("InternetOpenUrl failed: %d\n", GetLastError());
72 return INET_E_RESOURCE_NOT_FOUND
;
78 static HRESULT
FtpProtocol_end_request(Protocol
*prot
)
83 static HRESULT
FtpProtocol_start_downloading(Protocol
*prot
)
85 FtpProtocol
*This
= ASYNCPROTOCOL_THIS(prot
);
89 res
= FtpGetFileSize(This
->base
.request
, &size
);
91 This
->base
.content_length
= size
;
93 WARN("FtpGetFileSize failed: %d\n", GetLastError());
98 static void FtpProtocol_close_connection(Protocol
*prot
)
102 #undef ASYNCPROTOCOL_THIS
104 static const ProtocolVtbl AsyncProtocolVtbl
= {
105 FtpProtocol_open_request
,
106 FtpProtocol_end_request
,
107 FtpProtocol_start_downloading
,
108 FtpProtocol_close_connection
111 static HRESULT WINAPI
FtpProtocol_QueryInterface(IInternetProtocolEx
*iface
, REFIID riid
, void **ppv
)
113 FtpProtocol
*This
= impl_from_IInternetProtocolEx(iface
);
116 if(IsEqualGUID(&IID_IUnknown
, riid
)) {
117 TRACE("(%p)->(IID_IUnknown %p)\n", This
, ppv
);
118 *ppv
= &This
->IInternetProtocolEx_iface
;
119 }else if(IsEqualGUID(&IID_IInternetProtocolRoot
, riid
)) {
120 TRACE("(%p)->(IID_IInternetProtocolRoot %p)\n", This
, ppv
);
121 *ppv
= &This
->IInternetProtocolEx_iface
;
122 }else if(IsEqualGUID(&IID_IInternetProtocol
, riid
)) {
123 TRACE("(%p)->(IID_IInternetProtocol %p)\n", This
, ppv
);
124 *ppv
= &This
->IInternetProtocolEx_iface
;
125 }else if(IsEqualGUID(&IID_IInternetProtocolEx
, riid
)) {
126 TRACE("(%p)->(IID_IInternetProtocolEx %p)\n", This
, ppv
);
127 *ppv
= &This
->IInternetProtocolEx_iface
;
128 }else if(IsEqualGUID(&IID_IInternetPriority
, riid
)) {
129 TRACE("(%p)->(IID_IInternetPriority %p)\n", This
, ppv
);
130 *ppv
= &This
->IInternetPriority_iface
;
131 }else if(IsEqualGUID(&IID_IWinInetInfo
, riid
)) {
132 TRACE("(%p)->(IID_IWinInetInfo %p)\n", This
, ppv
);
133 *ppv
= &This
->IWinInetHttpInfo_iface
;
134 }else if(IsEqualGUID(&IID_IWinInetHttpInfo
, riid
)) {
135 TRACE("(%p)->(IID_IWinInetHttpInfo %p)\n", This
, ppv
);
136 *ppv
= &This
->IWinInetHttpInfo_iface
;
140 IInternetProtocol_AddRef(iface
);
144 WARN("not supported interface %s\n", debugstr_guid(riid
));
145 return E_NOINTERFACE
;
148 static ULONG WINAPI
FtpProtocol_AddRef(IInternetProtocolEx
*iface
)
150 FtpProtocol
*This
= impl_from_IInternetProtocolEx(iface
);
151 LONG ref
= InterlockedIncrement(&This
->ref
);
152 TRACE("(%p) ref=%d\n", This
, ref
);
156 static ULONG WINAPI
FtpProtocol_Release(IInternetProtocolEx
*iface
)
158 FtpProtocol
*This
= impl_from_IInternetProtocolEx(iface
);
159 LONG ref
= InterlockedDecrement(&This
->ref
);
161 TRACE("(%p) ref=%d\n", This
, ref
);
164 protocol_close_connection(&This
->base
);
167 URLMON_UnlockModule();
173 static HRESULT WINAPI
FtpProtocol_Start(IInternetProtocolEx
*iface
, LPCWSTR szUrl
,
174 IInternetProtocolSink
*pOIProtSink
, IInternetBindInfo
*pOIBindInfo
,
175 DWORD grfPI
, HANDLE_PTR dwReserved
)
177 FtpProtocol
*This
= impl_from_IInternetProtocolEx(iface
);
181 TRACE("(%p)->(%s %p %p %08x %lx)\n", This
, debugstr_w(szUrl
), pOIProtSink
,
182 pOIBindInfo
, grfPI
, dwReserved
);
184 hres
= CreateUri(szUrl
, 0, 0, &uri
);
188 hres
= IInternetProtocolEx_StartEx(&This
->IInternetProtocolEx_iface
, uri
, pOIProtSink
,
189 pOIBindInfo
, grfPI
, (HANDLE
*)dwReserved
);
195 static HRESULT WINAPI
FtpProtocol_Continue(IInternetProtocolEx
*iface
, PROTOCOLDATA
*pProtocolData
)
197 FtpProtocol
*This
= impl_from_IInternetProtocolEx(iface
);
199 TRACE("(%p)->(%p)\n", This
, pProtocolData
);
201 return protocol_continue(&This
->base
, pProtocolData
);
204 static HRESULT WINAPI
FtpProtocol_Abort(IInternetProtocolEx
*iface
, HRESULT hrReason
,
207 FtpProtocol
*This
= impl_from_IInternetProtocolEx(iface
);
209 TRACE("(%p)->(%08x %08x)\n", This
, hrReason
, dwOptions
);
211 return protocol_abort(&This
->base
, hrReason
);
214 static HRESULT WINAPI
FtpProtocol_Terminate(IInternetProtocolEx
*iface
, DWORD dwOptions
)
216 FtpProtocol
*This
= impl_from_IInternetProtocolEx(iface
);
218 TRACE("(%p)->(%08x)\n", This
, dwOptions
);
220 protocol_close_connection(&This
->base
);
224 static HRESULT WINAPI
FtpProtocol_Suspend(IInternetProtocolEx
*iface
)
226 FtpProtocol
*This
= impl_from_IInternetProtocolEx(iface
);
227 FIXME("(%p)\n", This
);
231 static HRESULT WINAPI
FtpProtocol_Resume(IInternetProtocolEx
*iface
)
233 FtpProtocol
*This
= impl_from_IInternetProtocolEx(iface
);
234 FIXME("(%p)\n", This
);
238 static HRESULT WINAPI
FtpProtocol_Read(IInternetProtocolEx
*iface
, void *pv
,
239 ULONG cb
, ULONG
*pcbRead
)
241 FtpProtocol
*This
= impl_from_IInternetProtocolEx(iface
);
243 TRACE("(%p)->(%p %u %p)\n", This
, pv
, cb
, pcbRead
);
245 return protocol_read(&This
->base
, pv
, cb
, pcbRead
);
248 static HRESULT WINAPI
FtpProtocol_Seek(IInternetProtocolEx
*iface
, LARGE_INTEGER dlibMove
,
249 DWORD dwOrigin
, ULARGE_INTEGER
*plibNewPosition
)
251 FtpProtocol
*This
= impl_from_IInternetProtocolEx(iface
);
252 FIXME("(%p)->(%d %d %p)\n", This
, dlibMove
.u
.LowPart
, dwOrigin
, plibNewPosition
);
256 static HRESULT WINAPI
FtpProtocol_LockRequest(IInternetProtocolEx
*iface
, DWORD dwOptions
)
258 FtpProtocol
*This
= impl_from_IInternetProtocolEx(iface
);
260 TRACE("(%p)->(%08x)\n", This
, dwOptions
);
262 return protocol_lock_request(&This
->base
);
265 static HRESULT WINAPI
FtpProtocol_UnlockRequest(IInternetProtocolEx
*iface
)
267 FtpProtocol
*This
= impl_from_IInternetProtocolEx(iface
);
269 TRACE("(%p)\n", This
);
271 return protocol_unlock_request(&This
->base
);
274 static HRESULT WINAPI
FtpProtocol_StartEx(IInternetProtocolEx
*iface
, IUri
*pUri
,
275 IInternetProtocolSink
*pOIProtSink
, IInternetBindInfo
*pOIBindInfo
,
276 DWORD grfPI
, HANDLE
*dwReserved
)
278 FtpProtocol
*This
= impl_from_IInternetProtocolEx(iface
);
282 TRACE("(%p)->(%p %p %p %08x %p)\n", This
, pUri
, pOIProtSink
,
283 pOIBindInfo
, grfPI
, dwReserved
);
285 hres
= IUri_GetScheme(pUri
, &scheme
);
288 if(scheme
!= URL_SCHEME_FTP
)
291 return protocol_start(&This
->base
, (IInternetProtocol
*)&This
->IInternetProtocolEx_iface
, pUri
,
292 pOIProtSink
, pOIBindInfo
);
295 static const IInternetProtocolExVtbl FtpProtocolVtbl
= {
296 FtpProtocol_QueryInterface
,
300 FtpProtocol_Continue
,
302 FtpProtocol_Terminate
,
307 FtpProtocol_LockRequest
,
308 FtpProtocol_UnlockRequest
,
312 static HRESULT WINAPI
FtpPriority_QueryInterface(IInternetPriority
*iface
, REFIID riid
, void **ppv
)
314 FtpProtocol
*This
= impl_from_IInternetPriority(iface
);
315 return IInternetProtocolEx_QueryInterface(&This
->IInternetProtocolEx_iface
, riid
, ppv
);
318 static ULONG WINAPI
FtpPriority_AddRef(IInternetPriority
*iface
)
320 FtpProtocol
*This
= impl_from_IInternetPriority(iface
);
321 return IInternetProtocolEx_AddRef(&This
->IInternetProtocolEx_iface
);
324 static ULONG WINAPI
FtpPriority_Release(IInternetPriority
*iface
)
326 FtpProtocol
*This
= impl_from_IInternetPriority(iface
);
327 return IInternetProtocolEx_Release(&This
->IInternetProtocolEx_iface
);
330 static HRESULT WINAPI
FtpPriority_SetPriority(IInternetPriority
*iface
, LONG nPriority
)
332 FtpProtocol
*This
= impl_from_IInternetPriority(iface
);
334 TRACE("(%p)->(%d)\n", This
, nPriority
);
336 This
->base
.priority
= nPriority
;
340 static HRESULT WINAPI
FtpPriority_GetPriority(IInternetPriority
*iface
, LONG
*pnPriority
)
342 FtpProtocol
*This
= impl_from_IInternetPriority(iface
);
344 TRACE("(%p)->(%p)\n", This
, pnPriority
);
346 *pnPriority
= This
->base
.priority
;
350 static const IInternetPriorityVtbl FtpPriorityVtbl
= {
351 FtpPriority_QueryInterface
,
354 FtpPriority_SetPriority
,
355 FtpPriority_GetPriority
358 static HRESULT WINAPI
HttpInfo_QueryInterface(IWinInetHttpInfo
*iface
, REFIID riid
, void **ppv
)
360 FtpProtocol
*This
= impl_from_IWinInetHttpInfo(iface
);
361 return IInternetProtocolEx_QueryInterface(&This
->IInternetProtocolEx_iface
, riid
, ppv
);
364 static ULONG WINAPI
HttpInfo_AddRef(IWinInetHttpInfo
*iface
)
366 FtpProtocol
*This
= impl_from_IWinInetHttpInfo(iface
);
367 return IInternetProtocolEx_AddRef(&This
->IInternetProtocolEx_iface
);
370 static ULONG WINAPI
HttpInfo_Release(IWinInetHttpInfo
*iface
)
372 FtpProtocol
*This
= impl_from_IWinInetHttpInfo(iface
);
373 return IInternetProtocolEx_Release(&This
->IInternetProtocolEx_iface
);
376 static HRESULT WINAPI
HttpInfo_QueryOption(IWinInetHttpInfo
*iface
, DWORD dwOption
,
377 void *pBuffer
, DWORD
*pcbBuffer
)
379 FtpProtocol
*This
= impl_from_IWinInetHttpInfo(iface
);
380 FIXME("(%p)->(%x %p %p)\n", This
, dwOption
, pBuffer
, pcbBuffer
);
384 static HRESULT WINAPI
HttpInfo_QueryInfo(IWinInetHttpInfo
*iface
, DWORD dwOption
,
385 void *pBuffer
, DWORD
*pcbBuffer
, DWORD
*pdwFlags
, DWORD
*pdwReserved
)
387 FtpProtocol
*This
= impl_from_IWinInetHttpInfo(iface
);
388 FIXME("(%p)->(%x %p %p %p %p)\n", This
, dwOption
, pBuffer
, pcbBuffer
, pdwFlags
, pdwReserved
);
392 static const IWinInetHttpInfoVtbl WinInetHttpInfoVtbl
= {
393 HttpInfo_QueryInterface
,
396 HttpInfo_QueryOption
,
400 HRESULT
FtpProtocol_Construct(IUnknown
*pUnkOuter
, LPVOID
*ppobj
)
404 TRACE("(%p %p)\n", pUnkOuter
, ppobj
);
408 ret
= heap_alloc_zero(sizeof(FtpProtocol
));
410 ret
->base
.vtbl
= &AsyncProtocolVtbl
;
411 ret
->IInternetProtocolEx_iface
.lpVtbl
= &FtpProtocolVtbl
;
412 ret
->IInternetPriority_iface
.lpVtbl
= &FtpPriorityVtbl
;
413 ret
->IWinInetHttpInfo_iface
.lpVtbl
= &WinInetHttpInfoVtbl
;
416 *ppobj
= &ret
->IInternetProtocolEx_iface
;