2 * Copyright 2005 Jacek Caban
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
);
25 const IInternetProtocolVtbl
*lpIInternetProtocolVtbl
;
26 const IInternetPriorityVtbl
*lpInternetPriorityVtbl
;
34 #define PRIORITY(x) ((IInternetPriority*) &(x)->lpInternetPriorityVtbl)
36 #define PROTOCOL_THIS(iface) DEFINE_THIS(FileProtocol, IInternetProtocol, iface)
38 static HRESULT WINAPI
FileProtocol_QueryInterface(IInternetProtocol
*iface
, REFIID riid
, void **ppv
)
40 FileProtocol
*This
= PROTOCOL_THIS(iface
);
43 if(IsEqualGUID(&IID_IUnknown
, riid
)) {
44 TRACE("(%p)->(IID_IUnknown %p)\n", This
, ppv
);
45 *ppv
= PROTOCOL(This
);
46 }else if(IsEqualGUID(&IID_IInternetProtocolRoot
, riid
)) {
47 TRACE("(%p)->(IID_IInternetProtocolRoot %p)\n", This
, ppv
);
48 *ppv
= PROTOCOL(This
);
49 }else if(IsEqualGUID(&IID_IInternetProtocol
, riid
)) {
50 TRACE("(%p)->(IID_IInternetProtocol %p)\n", This
, ppv
);
51 *ppv
= PROTOCOL(This
);
52 }else if(IsEqualGUID(&IID_IInternetPriority
, riid
)) {
53 TRACE("(%p)->(IID_IInternetPriority %p)\n", This
, ppv
);
54 *ppv
= PRIORITY(This
);
58 IInternetProtocol_AddRef(iface
);
62 WARN("not supported interface %s\n", debugstr_guid(riid
));
66 static ULONG WINAPI
FileProtocol_AddRef(IInternetProtocol
*iface
)
68 FileProtocol
*This
= PROTOCOL_THIS(iface
);
69 LONG ref
= InterlockedIncrement(&This
->ref
);
70 TRACE("(%p) ref=%d\n", This
, ref
);
74 static ULONG WINAPI
FileProtocol_Release(IInternetProtocol
*iface
)
76 FileProtocol
*This
= PROTOCOL_THIS(iface
);
77 LONG ref
= InterlockedDecrement(&This
->ref
);
79 TRACE("(%p) ref=%d\n", This
, ref
);
83 CloseHandle(This
->file
);
86 URLMON_UnlockModule();
92 static HRESULT WINAPI
FileProtocol_Start(IInternetProtocol
*iface
, LPCWSTR szUrl
,
93 IInternetProtocolSink
*pOIProtSink
, IInternetBindInfo
*pOIBindInfo
,
94 DWORD grfPI
, HANDLE_PTR dwReserved
)
96 FileProtocol
*This
= PROTOCOL_THIS(iface
);
101 LPWSTR url
, mime
= NULL
, file_name
;
103 BOOL first_call
= FALSE
;
106 static const WCHAR wszFile
[] = {'f','i','l','e',':'};
108 TRACE("(%p)->(%s %p %p %08x %lx)\n", This
, debugstr_w(szUrl
), pOIProtSink
,
109 pOIBindInfo
, grfPI
, dwReserved
);
111 if(!szUrl
|| strlenW(szUrl
) < sizeof(wszFile
)/sizeof(WCHAR
)
112 || memcmp(szUrl
, wszFile
, sizeof(wszFile
)))
115 memset(&bindinfo
, 0, sizeof(bindinfo
));
116 bindinfo
.cbSize
= sizeof(BINDINFO
);
117 hres
= IInternetBindInfo_GetBindInfo(pOIBindInfo
, &grfBINDF
, &bindinfo
);
119 WARN("GetBindInfo failed: %08x\n", hres
);
123 ReleaseBindInfo(&bindinfo
);
125 len
= lstrlenW(szUrl
)+16;
126 url
= heap_alloc(len
*sizeof(WCHAR
));
127 hres
= CoInternetParseUrl(szUrl
, PARSE_ENCODE
, 0, url
, len
, &len
, 0);
133 if(!(grfBINDF
& BINDF_FROMURLMON
))
134 IInternetProtocolSink_ReportProgress(pOIProtSink
, BINDSTATUS_DIRECTBIND
, NULL
);
141 IInternetProtocolSink_ReportProgress(pOIProtSink
, BINDSTATUS_SENDINGREQUEST
, &null_char
);
143 file_name
= url
+sizeof(wszFile
)/sizeof(WCHAR
);
145 /* Strip both forward and back slashes */
146 if( (file_name
[0] == '/' && file_name
[1] == '/') ||
147 (file_name
[0] == '\\' && file_name
[1] == '\\'))
149 if(*file_name
== '/')
152 for(ptr
= file_name
; *ptr
; ptr
++) {
153 if(*ptr
== '?' || *ptr
== '#') {
159 if(file_name
[1] == '|')
162 This
->file
= CreateFileW(file_name
, GENERIC_READ
, FILE_SHARE_READ
, NULL
,
163 OPEN_EXISTING
, FILE_ATTRIBUTE_NORMAL
, NULL
);
165 if(This
->file
== INVALID_HANDLE_VALUE
) {
167 IInternetProtocolSink_ReportResult(pOIProtSink
, INET_E_RESOURCE_NOT_FOUND
,
168 GetLastError(), NULL
);
170 return INET_E_RESOURCE_NOT_FOUND
;
173 IInternetProtocolSink_ReportProgress(pOIProtSink
,
174 BINDSTATUS_CACHEFILENAMEAVAILABLE
, file_name
);
176 hres
= FindMimeFromData(NULL
, url
, NULL
, 0, NULL
, 0, &mime
, 0);
177 if(SUCCEEDED(hres
)) {
178 IInternetProtocolSink_ReportProgress(pOIProtSink
,
179 (grfBINDF
& BINDF_FROMURLMON
) ?
180 BINDSTATUS_VERIFIEDMIMETYPEAVAILABLE
: BINDSTATUS_MIMETYPEAVAILABLE
,
188 if(GetFileSizeEx(This
->file
, &size
))
189 IInternetProtocolSink_ReportData(pOIProtSink
,
190 BSCF_FIRSTDATANOTIFICATION
|BSCF_LASTDATANOTIFICATION
,
191 size
.u
.LowPart
, size
.u
.LowPart
);
194 IInternetProtocolSink_ReportResult(pOIProtSink
, S_OK
, 0, NULL
);
199 static HRESULT WINAPI
FileProtocol_Continue(IInternetProtocol
*iface
, PROTOCOLDATA
*pProtocolData
)
201 FileProtocol
*This
= PROTOCOL_THIS(iface
);
202 FIXME("(%p)->(%p)\n", This
, pProtocolData
);
206 static HRESULT WINAPI
FileProtocol_Abort(IInternetProtocol
*iface
, HRESULT hrReason
,
209 FileProtocol
*This
= PROTOCOL_THIS(iface
);
210 FIXME("(%p)->(%08x %08x)\n", This
, hrReason
, dwOptions
);
214 static HRESULT WINAPI
FileProtocol_Terminate(IInternetProtocol
*iface
, DWORD dwOptions
)
216 FileProtocol
*This
= PROTOCOL_THIS(iface
);
218 TRACE("(%p)->(%08x)\n", This
, dwOptions
);
223 static HRESULT WINAPI
FileProtocol_Suspend(IInternetProtocol
*iface
)
225 FileProtocol
*This
= PROTOCOL_THIS(iface
);
226 FIXME("(%p)\n", This
);
230 static HRESULT WINAPI
FileProtocol_Resume(IInternetProtocol
*iface
)
232 FileProtocol
*This
= PROTOCOL_THIS(iface
);
233 FIXME("(%p)\n", This
);
237 static HRESULT WINAPI
FileProtocol_Read(IInternetProtocol
*iface
, void *pv
,
238 ULONG cb
, ULONG
*pcbRead
)
240 FileProtocol
*This
= PROTOCOL_THIS(iface
);
243 TRACE("(%p)->(%p %u %p)\n", This
, pv
, cb
, pcbRead
);
249 return INET_E_DATA_NOT_AVAILABLE
;
251 if (!ReadFile(This
->file
, pv
, cb
, &read
, NULL
))
252 return INET_E_DOWNLOAD_FAILURE
;
257 return cb
== read
? S_OK
: S_FALSE
;
260 static HRESULT WINAPI
FileProtocol_Seek(IInternetProtocol
*iface
, LARGE_INTEGER dlibMove
,
261 DWORD dwOrigin
, ULARGE_INTEGER
*plibNewPosition
)
263 FileProtocol
*This
= PROTOCOL_THIS(iface
);
264 FIXME("(%p)->(%d %d %p)\n", This
, dlibMove
.u
.LowPart
, dwOrigin
, plibNewPosition
);
268 static HRESULT WINAPI
FileProtocol_LockRequest(IInternetProtocol
*iface
, DWORD dwOptions
)
270 FileProtocol
*This
= PROTOCOL_THIS(iface
);
272 TRACE("(%p)->(%08x)\n", This
, dwOptions
);
277 static HRESULT WINAPI
FileProtocol_UnlockRequest(IInternetProtocol
*iface
)
279 FileProtocol
*This
= PROTOCOL_THIS(iface
);
281 TRACE("(%p)\n", This
);
288 static const IInternetProtocolVtbl FileProtocolVtbl
= {
289 FileProtocol_QueryInterface
,
291 FileProtocol_Release
,
293 FileProtocol_Continue
,
295 FileProtocol_Terminate
,
296 FileProtocol_Suspend
,
300 FileProtocol_LockRequest
,
301 FileProtocol_UnlockRequest
304 #define PRIORITY_THIS(iface) DEFINE_THIS(FileProtocol, InternetPriority, iface)
306 static HRESULT WINAPI
FilePriority_QueryInterface(IInternetPriority
*iface
,
307 REFIID riid
, void **ppv
)
309 FileProtocol
*This
= PRIORITY_THIS(iface
);
310 return IInternetProtocol_QueryInterface(PROTOCOL(This
), riid
, ppv
);
313 static ULONG WINAPI
FilePriority_AddRef(IInternetPriority
*iface
)
315 FileProtocol
*This
= PRIORITY_THIS(iface
);
316 return IInternetProtocol_AddRef(PROTOCOL(This
));
319 static ULONG WINAPI
FilePriority_Release(IInternetPriority
*iface
)
321 FileProtocol
*This
= PRIORITY_THIS(iface
);
322 return IInternetProtocol_Release(PROTOCOL(This
));
325 static HRESULT WINAPI
FilePriority_SetPriority(IInternetPriority
*iface
, LONG nPriority
)
327 FileProtocol
*This
= PRIORITY_THIS(iface
);
329 TRACE("(%p)->(%d)\n", This
, nPriority
);
331 This
->priority
= nPriority
;
335 static HRESULT WINAPI
FilePriority_GetPriority(IInternetPriority
*iface
, LONG
*pnPriority
)
337 FileProtocol
*This
= PRIORITY_THIS(iface
);
339 TRACE("(%p)->(%p)\n", This
, pnPriority
);
341 *pnPriority
= This
->priority
;
347 static const IInternetPriorityVtbl FilePriorityVtbl
= {
348 FilePriority_QueryInterface
,
350 FilePriority_Release
,
351 FilePriority_SetPriority
,
352 FilePriority_GetPriority
355 HRESULT
FileProtocol_Construct(IUnknown
*pUnkOuter
, LPVOID
*ppobj
)
359 TRACE("(%p %p)\n", pUnkOuter
, ppobj
);
363 ret
= heap_alloc(sizeof(FileProtocol
));
365 ret
->lpIInternetProtocolVtbl
= &FileProtocolVtbl
;
366 ret
->lpInternetPriorityVtbl
= &FilePriorityVtbl
;
371 *ppobj
= PROTOCOL(ret
);