Sync to Wine-0_9_4:
[reactos.git] / reactos / lib / urlmon / file.c
1 /*
2 * Copyright 2005 Jacek Caban
3 *
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.
8 *
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.
13 *
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
19 #include <stdarg.h>
20
21 #define COBJMACROS
22
23 #include "windef.h"
24 #include "winbase.h"
25 #include "winuser.h"
26 #include "ole2.h"
27 #include "urlmon.h"
28 #include "urlmon_main.h"
29
30 #include "wine/debug.h"
31
32 WINE_DEFAULT_DEBUG_CHANNEL(urlmon);
33
34 typedef struct {
35 const IInternetProtocolVtbl *lpInternetProtocolVtbl;
36 const IInternetPriorityVtbl *lpInternetPriorityVtbl;
37
38 HANDLE file;
39 LONG priority;
40
41 LONG ref;
42 } FileProtocol;
43
44 #define PROTOCOL(x) ((IInternetProtocol*) &(x)->lpInternetProtocolVtbl)
45 #define PRIORITY(x) ((IInternetPriority*) &(x)->lpInternetPriorityVtbl)
46
47 #define PROTOCOL_THIS(iface) DEFINE_THIS(FileProtocol, InternetProtocol, iface)
48
49 static HRESULT WINAPI FileProtocol_QueryInterface(IInternetProtocol *iface, REFIID riid, void **ppv)
50 {
51 FileProtocol *This = PROTOCOL_THIS(iface);
52
53 *ppv = NULL;
54 if(IsEqualGUID(&IID_IUnknown, riid)) {
55 TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
56 *ppv = PROTOCOL(This);
57 }else if(IsEqualGUID(&IID_IInternetProtocolRoot, riid)) {
58 TRACE("(%p)->(IID_IInternetProtocolRoot %p)\n", This, ppv);
59 *ppv = PROTOCOL(This);
60 }else if(IsEqualGUID(&IID_IInternetProtocol, riid)) {
61 TRACE("(%p)->(IID_IInternetProtocol %p)\n", This, ppv);
62 *ppv = PROTOCOL(This);
63 }else if(IsEqualGUID(&IID_IInternetPriority, riid)) {
64 TRACE("(%p)->(IID_IInternetPriority %p)\n", This, ppv);
65 *ppv = PRIORITY(This);
66 }
67
68 if(*ppv) {
69 IInternetProtocol_AddRef(iface);
70 return S_OK;
71 }
72
73 WARN("not supported interface %s\n", debugstr_guid(riid));
74 return E_NOINTERFACE;
75 }
76
77 static ULONG WINAPI FileProtocol_AddRef(IInternetProtocol *iface)
78 {
79 FileProtocol *This = PROTOCOL_THIS(iface);
80 LONG ref = InterlockedIncrement(&This->ref);
81 TRACE("(%p) ref=%ld\n", This, ref);
82 return ref;
83 }
84
85 static ULONG WINAPI FileProtocol_Release(IInternetProtocol *iface)
86 {
87 FileProtocol *This = PROTOCOL_THIS(iface);
88 LONG ref = InterlockedDecrement(&This->ref);
89
90 TRACE("(%p) ref=%ld\n", This, ref);
91
92 if(!ref) {
93 if(This->file)
94 CloseHandle(This->file);
95 HeapFree(GetProcessHeap(), 0, This);
96
97 URLMON_UnlockModule();
98 }
99
100 return ref;
101 }
102
103 static HRESULT WINAPI FileProtocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
104 IInternetProtocolSink *pOIProtSink, IInternetBindInfo *pOIBindInfo,
105 DWORD grfPI, DWORD dwReserved)
106 {
107 FileProtocol *This = PROTOCOL_THIS(iface);
108 BINDINFO bindinfo;
109 DWORD grfBINDF = 0;
110 LARGE_INTEGER size;
111 DWORD len;
112 LPWSTR url, mime = NULL;
113 LPCWSTR file_name;
114 WCHAR null_char = 0;
115 BOOL first_call = FALSE;
116 HRESULT hres;
117
118 static const WCHAR wszFile[] = {'f','i','l','e',':'};
119
120 TRACE("(%p)->(%s %p %p %08lx %ld)\n", This, debugstr_w(szUrl), pOIProtSink,
121 pOIBindInfo, grfPI, dwReserved);
122
123 memset(&bindinfo, 0, sizeof(bindinfo));
124 bindinfo.cbSize = sizeof(BINDINFO);
125 IInternetBindInfo_GetBindInfo(pOIBindInfo, &grfBINDF, &bindinfo);
126
127 if(lstrlenW(szUrl) < sizeof(wszFile)/sizeof(WCHAR)
128 || memcmp(szUrl, wszFile, sizeof(wszFile)))
129 return MK_E_SYNTAX;
130
131 len = lstrlenW(szUrl)+16;
132 url = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
133 hres = CoInternetParseUrl(szUrl, PARSE_ENCODE, 0, url, len, &len, 0);
134 if(FAILED(hres)) {
135 HeapFree(GetProcessHeap(), 0, url);
136 return hres;
137 }
138
139 if(!(grfBINDF & BINDF_FROMURLMON))
140 IInternetProtocolSink_ReportProgress(pOIProtSink, BINDSTATUS_DIRECTBIND, NULL);
141
142 if(!This->file) {
143 first_call = TRUE;
144
145 IInternetProtocolSink_ReportProgress(pOIProtSink, BINDSTATUS_SENDINGREQUEST, &null_char);
146
147 file_name = url+sizeof(wszFile)/sizeof(WCHAR);
148 if(file_name[0] == '/' && file_name[1] == '/' && file_name[2] == '/')
149 file_name += 3;
150
151 This->file = CreateFileW(file_name, GENERIC_READ, FILE_SHARE_READ, NULL,
152 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
153
154 if(This->file == INVALID_HANDLE_VALUE) {
155 This->file = NULL;
156 IInternetProtocolSink_ReportResult(pOIProtSink, INET_E_RESOURCE_NOT_FOUND,
157 GetLastError(), NULL);
158 HeapFree(GetProcessHeap(), 0, url);
159 return INET_E_RESOURCE_NOT_FOUND;
160 }
161
162 IInternetProtocolSink_ReportProgress(pOIProtSink,
163 BINDSTATUS_CACHEFILENAMEAVAILABLE, file_name);
164
165 hres = FindMimeFromData(NULL, url, NULL, 0, NULL, 0, &mime, 0);
166 if(SUCCEEDED(hres)) {
167 IInternetProtocolSink_ReportProgress(pOIProtSink,
168 (grfBINDF & BINDF_FROMURLMON) ?
169 BINDSTATUS_VERIFIEDMIMETYPEAVAILABLE : BINDSTATUS_MIMETYPEAVAILABLE,
170 mime);
171 CoTaskMemFree(mime);
172 }
173 }
174
175 HeapFree(GetProcessHeap(), 0, url);
176
177 if(GetFileSizeEx(This->file, &size))
178 IInternetProtocolSink_ReportData(pOIProtSink,
179 BSCF_FIRSTDATANOTIFICATION|BSCF_LASTDATANOTIFICATION,
180 size.u.LowPart, size.u.LowPart);
181
182 if(first_call)
183 IInternetProtocolSink_ReportResult(pOIProtSink, S_OK, 0, NULL);
184
185 return S_OK;
186 }
187
188 static HRESULT WINAPI FileProtocol_Continue(IInternetProtocol *iface, PROTOCOLDATA *pProtocolData)
189 {
190 FileProtocol *This = PROTOCOL_THIS(iface);
191 FIXME("(%p)->(%p)\n", This, pProtocolData);
192 return E_NOTIMPL;
193 }
194
195 static HRESULT WINAPI FileProtocol_Abort(IInternetProtocol *iface, HRESULT hrReason,
196 DWORD dwOptions)
197 {
198 FileProtocol *This = PROTOCOL_THIS(iface);
199 FIXME("(%p)->(%08lx %08lx)\n", This, hrReason, dwOptions);
200 return E_NOTIMPL;
201 }
202
203 static HRESULT WINAPI FileProtocol_Terminate(IInternetProtocol *iface, DWORD dwOptions)
204 {
205 FileProtocol *This = PROTOCOL_THIS(iface);
206
207 TRACE("(%p)->(%08lx)\n", This, dwOptions);
208
209 return S_OK;
210 }
211
212 static HRESULT WINAPI FileProtocol_Suspend(IInternetProtocol *iface)
213 {
214 FileProtocol *This = PROTOCOL_THIS(iface);
215 FIXME("(%p)\n", This);
216 return E_NOTIMPL;
217 }
218
219 static HRESULT WINAPI FileProtocol_Resume(IInternetProtocol *iface)
220 {
221 FileProtocol *This = PROTOCOL_THIS(iface);
222 FIXME("(%p)\n", This);
223 return E_NOTIMPL;
224 }
225
226 static HRESULT WINAPI FileProtocol_Read(IInternetProtocol *iface, void *pv,
227 ULONG cb, ULONG *pcbRead)
228 {
229 FileProtocol *This = PROTOCOL_THIS(iface);
230 DWORD read = 0;
231
232 TRACE("(%p)->(%p %lu %p)\n", This, pv, cb, pcbRead);
233
234 if(!This->file)
235 return INET_E_DATA_NOT_AVAILABLE;
236
237 ReadFile(This->file, pv, cb, &read, NULL);
238
239 if(pcbRead)
240 *pcbRead = read;
241
242 return cb == read ? S_OK : S_FALSE;
243 }
244
245 static HRESULT WINAPI FileProtocol_Seek(IInternetProtocol *iface, LARGE_INTEGER dlibMove,
246 DWORD dwOrgin, ULARGE_INTEGER *plibNewPosition)
247 {
248 FileProtocol *This = PROTOCOL_THIS(iface);
249 FIXME("(%p)->(%ld %ld %p)\n", This, dlibMove.u.LowPart, dwOrgin, plibNewPosition);
250 return E_NOTIMPL;
251 }
252
253 static HRESULT WINAPI FileProtocol_LockRequest(IInternetProtocol *iface, DWORD dwOptions)
254 {
255 FileProtocol *This = PROTOCOL_THIS(iface);
256
257 TRACE("(%p)->(%08lx)\n", This, dwOptions);
258
259 return S_OK;
260 }
261
262 static HRESULT WINAPI FileProtocol_UnlockRequest(IInternetProtocol *iface)
263 {
264 FileProtocol *This = PROTOCOL_THIS(iface);
265
266 TRACE("(%p)\n", This);
267
268 return S_OK;
269 }
270
271 #undef PROTOCOL_THIS
272
273 static const IInternetProtocolVtbl FileProtocolVtbl = {
274 FileProtocol_QueryInterface,
275 FileProtocol_AddRef,
276 FileProtocol_Release,
277 FileProtocol_Start,
278 FileProtocol_Continue,
279 FileProtocol_Abort,
280 FileProtocol_Terminate,
281 FileProtocol_Suspend,
282 FileProtocol_Resume,
283 FileProtocol_Read,
284 FileProtocol_Seek,
285 FileProtocol_LockRequest,
286 FileProtocol_UnlockRequest
287 };
288
289 #define PRIORITY_THIS(iface) DEFINE_THIS(FileProtocol, InternetPriority, iface)
290
291 static HRESULT WINAPI FilePriority_QueryInterface(IInternetPriority *iface,
292 REFIID riid, void **ppv)
293 {
294 FileProtocol *This = PRIORITY_THIS(iface);
295 return IInternetProtocol_QueryInterface(PROTOCOL(This), riid, ppv);
296 }
297
298 static ULONG WINAPI FilePriority_AddRef(IInternetPriority *iface)
299 {
300 FileProtocol *This = PRIORITY_THIS(iface);
301 return IInternetProtocol_AddRef(PROTOCOL(This));
302 }
303
304 static ULONG WINAPI FilePriority_Release(IInternetPriority *iface)
305 {
306 FileProtocol *This = PRIORITY_THIS(iface);
307 return IInternetProtocol_Release(PROTOCOL(This));
308 }
309
310 static HRESULT WINAPI FilePriority_SetPriority(IInternetPriority *iface, LONG nPriority)
311 {
312 FileProtocol *This = PRIORITY_THIS(iface);
313
314 TRACE("(%p)->(%ld)\n", This, nPriority);
315
316 This->priority = nPriority;
317 return S_OK;
318 }
319
320 static HRESULT WINAPI FilePriority_GetPriority(IInternetPriority *iface, LONG *pnPriority)
321 {
322 FileProtocol *This = PRIORITY_THIS(iface);
323
324 TRACE("(%p)->(%p)\n", This, pnPriority);
325
326 *pnPriority = This->priority;
327 return S_OK;
328 }
329
330 #undef PRIORITY_THIS
331
332 static const IInternetPriorityVtbl FilePriorityVtbl = {
333 FilePriority_QueryInterface,
334 FilePriority_AddRef,
335 FilePriority_Release,
336 FilePriority_SetPriority,
337 FilePriority_GetPriority
338 };
339
340 HRESULT FileProtocol_Construct(IUnknown *pUnkOuter, LPVOID *ppobj)
341 {
342 FileProtocol *ret;
343
344 TRACE("(%p %p)\n", pUnkOuter, ppobj);
345
346 URLMON_LockModule();
347
348 ret = HeapAlloc(GetProcessHeap(), 0, sizeof(FileProtocol));
349
350 ret->lpInternetProtocolVtbl = &FileProtocolVtbl;
351 ret->lpInternetPriorityVtbl = &FilePriorityVtbl;
352 ret->file = NULL;
353 ret->priority = 0;
354 ret->ref = 1;
355
356 *ppobj = PROTOCOL(ret);
357
358 return S_OK;
359 }