msi: Verify that the PID_PAGECOUNT and PID_REVNUMBER summary info properties exist.
[wine] / dlls / urlmon / mk.c
1 /*
2  * Copyright 2007 Jacek Caban for CodeWeavers
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #include "urlmon_main.h"
20 #include "wine/debug.h"
21
22 WINE_DEFAULT_DEBUG_CHANNEL(urlmon);
23
24 typedef struct {
25     const IInternetProtocolVtbl  *lpInternetProtocolVtbl;
26
27     LONG ref;
28
29     IStream *stream;
30 } MkProtocol;
31
32 #define PROTOCOL_THIS(iface) DEFINE_THIS(MkProtocol, InternetProtocol, iface)
33
34 #define PROTOCOL(x)  ((IInternetProtocol*)  &(x)->lpInternetProtocolVtbl)
35
36 static HRESULT WINAPI MkProtocol_QueryInterface(IInternetProtocol *iface, REFIID riid, void **ppv)
37 {
38     MkProtocol *This = PROTOCOL_THIS(iface);
39
40     *ppv = NULL;
41     if(IsEqualGUID(&IID_IUnknown, riid)) {
42         TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
43         *ppv = PROTOCOL(This);
44     }else if(IsEqualGUID(&IID_IInternetProtocolRoot, riid)) {
45         TRACE("(%p)->(IID_IInternetProtocolRoot %p)\n", This, ppv);
46         *ppv = PROTOCOL(This);
47     }else if(IsEqualGUID(&IID_IInternetProtocol, riid)) {
48         TRACE("(%p)->(IID_IInternetProtocol %p)\n", This, ppv);
49         *ppv = PROTOCOL(This);
50     }
51
52     if(*ppv) {
53         IInternetProtocol_AddRef(iface);
54         return S_OK;
55     }
56
57     WARN("not supported interface %s\n", debugstr_guid(riid));
58     return E_NOINTERFACE;
59 }
60
61 static ULONG WINAPI MkProtocol_AddRef(IInternetProtocol *iface)
62 {
63     MkProtocol *This = PROTOCOL_THIS(iface);
64     LONG ref = InterlockedIncrement(&This->ref);
65     TRACE("(%p) ref=%d\n", This, ref);
66     return ref;
67 }
68
69 static ULONG WINAPI MkProtocol_Release(IInternetProtocol *iface)
70 {
71     MkProtocol *This = PROTOCOL_THIS(iface);
72     LONG ref = InterlockedDecrement(&This->ref);
73
74     TRACE("(%p) ref=%d\n", This, ref);
75
76     if(!ref) {
77         if(This->stream)
78             IStream_Release(This->stream);
79
80         heap_free(This);
81
82         URLMON_UnlockModule();
83     }
84
85     return ref;
86 }
87
88 static HRESULT report_result(IInternetProtocolSink *sink, HRESULT hres, DWORD dwError)
89 {
90     IInternetProtocolSink_ReportResult(sink, hres, dwError, NULL);
91     return hres;
92 }
93
94 static HRESULT WINAPI MkProtocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
95         IInternetProtocolSink *pOIProtSink, IInternetBindInfo *pOIBindInfo,
96         DWORD grfPI, DWORD dwReserved)
97 {
98     MkProtocol *This = PROTOCOL_THIS(iface);
99     IParseDisplayName *pdn;
100     IMoniker *mon;
101     LPWSTR mime, progid, display_name;
102     LPCWSTR ptr, ptr2;
103     BINDINFO bindinfo;
104     STATSTG statstg;
105     DWORD bindf=0, eaten=0, len;
106     CLSID clsid;
107     HRESULT hres;
108
109     static const WCHAR wszMK[] = {'m','k',':'};
110
111     TRACE("(%p)->(%s %p %p %08x %d)\n", This, debugstr_w(szUrl), pOIProtSink,
112             pOIBindInfo, grfPI, dwReserved);
113
114     if(strncmpiW(szUrl, wszMK, sizeof(wszMK)/sizeof(WCHAR)))
115         return INET_E_INVALID_URL;
116
117     memset(&bindinfo, 0, sizeof(bindinfo));
118     bindinfo.cbSize = sizeof(BINDINFO);
119     hres = IInternetBindInfo_GetBindInfo(pOIBindInfo, &bindf, &bindinfo);
120     if(FAILED(hres)) {
121         WARN("GetBindInfo failed: %08x\n", hres);
122         return hres;
123     }
124
125     ReleaseBindInfo(&bindinfo);
126
127     IInternetProtocolSink_ReportProgress(pOIProtSink, BINDSTATUS_DIRECTBIND, NULL);
128     IInternetProtocolSink_ReportProgress(pOIProtSink, BINDSTATUS_SENDINGREQUEST, NULL);
129
130     hres = FindMimeFromData(NULL, szUrl, NULL, 0, NULL, 0, &mime, 0);
131     if(SUCCEEDED(hres)) {
132         IInternetProtocolSink_ReportProgress(pOIProtSink, BINDSTATUS_MIMETYPEAVAILABLE, mime);
133         CoTaskMemFree(mime);
134     }
135
136     ptr2 = szUrl + sizeof(wszMK)/sizeof(WCHAR);
137     if(*ptr2 != '@')
138         return report_result(pOIProtSink, INET_E_RESOURCE_NOT_FOUND, ERROR_INVALID_PARAMETER);
139     ptr2++;
140
141     ptr = strchrW(ptr2, ':');
142     if(!ptr)
143         return report_result(pOIProtSink, INET_E_RESOURCE_NOT_FOUND, ERROR_INVALID_PARAMETER);
144
145     progid = heap_alloc((ptr-ptr2+1)*sizeof(WCHAR));
146     memcpy(progid, ptr2, (ptr-ptr2)*sizeof(WCHAR));
147     progid[ptr-ptr2] = 0;
148     hres = CLSIDFromProgID(progid, &clsid);
149     heap_free(progid);
150     if(FAILED(hres))
151         return report_result(pOIProtSink, INET_E_RESOURCE_NOT_FOUND, ERROR_INVALID_PARAMETER);
152
153     hres = CoCreateInstance(&clsid, NULL, CLSCTX_INPROC_SERVER|CLSCTX_INPROC_HANDLER,
154             &IID_IParseDisplayName, (void**)&pdn);
155     if(FAILED(hres)) {
156         WARN("Could not create object %s\n", debugstr_guid(&clsid));
157         return report_result(pOIProtSink, hres, ERROR_INVALID_PARAMETER);
158     }
159
160     len = strlenW(--ptr2);
161     display_name = heap_alloc((len+1)*sizeof(WCHAR));
162     memcpy(display_name, ptr2, (len+1)*sizeof(WCHAR));
163     hres = IParseDisplayName_ParseDisplayName(pdn, NULL /* FIXME */, display_name, &eaten, &mon);
164     heap_free(display_name);
165     IParseDisplayName_Release(pdn);
166     if(FAILED(hres)) {
167         WARN("ParseDisplayName failed: %08x\n", hres);
168         return report_result(pOIProtSink, hres, ERROR_INVALID_PARAMETER);
169     }
170
171     if(This->stream) {
172         IStream_Release(This->stream);
173         This->stream = NULL;
174     }
175
176     hres = IMoniker_BindToStorage(mon, NULL /* FIXME */, NULL, &IID_IStream, (void**)&This->stream);
177     IMoniker_Release(mon);
178     if(FAILED(hres)) {
179         WARN("BindToStorage failed: %08x\n", hres);
180         return report_result(pOIProtSink, hres, ERROR_INVALID_PARAMETER);
181     }
182
183     hres = IStream_Stat(This->stream, &statstg, STATFLAG_NONAME);
184     if(FAILED(hres)) {
185         WARN("Stat failed: %08x\n", hres);
186         return report_result(pOIProtSink, hres, ERROR_INVALID_PARAMETER);
187     }
188
189     IInternetProtocolSink_ReportData(pOIProtSink,
190             BSCF_FIRSTDATANOTIFICATION | BSCF_LASTDATANOTIFICATION,
191             statstg.cbSize.u.LowPart, statstg.cbSize.u.LowPart);
192
193     return report_result(pOIProtSink, S_OK, ERROR_SUCCESS);
194 }
195
196 static HRESULT WINAPI MkProtocol_Continue(IInternetProtocol *iface, PROTOCOLDATA *pProtocolData)
197 {
198     MkProtocol *This = PROTOCOL_THIS(iface);
199     FIXME("(%p)->(%p)\n", This, pProtocolData);
200     return E_NOTIMPL;
201 }
202
203 static HRESULT WINAPI MkProtocol_Abort(IInternetProtocol *iface, HRESULT hrReason,
204         DWORD dwOptions)
205 {
206     MkProtocol *This = PROTOCOL_THIS(iface);
207     FIXME("(%p)->(%08x %08x)\n", This, hrReason, dwOptions);
208     return E_NOTIMPL;
209 }
210
211 static HRESULT WINAPI MkProtocol_Terminate(IInternetProtocol *iface, DWORD dwOptions)
212 {
213     MkProtocol *This = PROTOCOL_THIS(iface);
214
215     TRACE("(%p)->(%08x)\n", This, dwOptions);
216
217     return S_OK;
218 }
219
220 static HRESULT WINAPI MkProtocol_Suspend(IInternetProtocol *iface)
221 {
222     MkProtocol *This = PROTOCOL_THIS(iface);
223     FIXME("(%p)\n", This);
224     return E_NOTIMPL;
225 }
226
227 static HRESULT WINAPI MkProtocol_Resume(IInternetProtocol *iface)
228 {
229     MkProtocol *This = PROTOCOL_THIS(iface);
230     FIXME("(%p)\n", This);
231     return E_NOTIMPL;
232 }
233
234 static HRESULT WINAPI MkProtocol_Read(IInternetProtocol *iface, void *pv,
235         ULONG cb, ULONG *pcbRead)
236 {
237     MkProtocol *This = PROTOCOL_THIS(iface);
238
239     TRACE("(%p)->(%p %u %p)\n", This, pv, cb, pcbRead);
240
241     if(!This->stream)
242         return E_FAIL;
243
244     return IStream_Read(This->stream, pv, cb, pcbRead);
245 }
246
247 static HRESULT WINAPI MkProtocol_Seek(IInternetProtocol *iface, LARGE_INTEGER dlibMove,
248         DWORD dwOrigin, ULARGE_INTEGER *plibNewPosition)
249 {
250     MkProtocol *This = PROTOCOL_THIS(iface);
251     FIXME("(%p)->(%d %d %p)\n", This, dlibMove.u.LowPart, dwOrigin, plibNewPosition);
252     return E_NOTIMPL;
253 }
254
255 static HRESULT WINAPI MkProtocol_LockRequest(IInternetProtocol *iface, DWORD dwOptions)
256 {
257     MkProtocol *This = PROTOCOL_THIS(iface);
258
259     TRACE("(%p)->(%08x)\n", This, dwOptions);
260
261     return S_OK;
262 }
263
264 static HRESULT WINAPI MkProtocol_UnlockRequest(IInternetProtocol *iface)
265 {
266     MkProtocol *This = PROTOCOL_THIS(iface);
267
268     TRACE("(%p)\n", This);
269
270     return S_OK;
271 }
272
273 #undef PROTOCOL_THIS
274
275 static const IInternetProtocolVtbl MkProtocolVtbl = {
276     MkProtocol_QueryInterface,
277     MkProtocol_AddRef,
278     MkProtocol_Release,
279     MkProtocol_Start,
280     MkProtocol_Continue,
281     MkProtocol_Abort,
282     MkProtocol_Terminate,
283     MkProtocol_Suspend,
284     MkProtocol_Resume,
285     MkProtocol_Read,
286     MkProtocol_Seek,
287     MkProtocol_LockRequest,
288     MkProtocol_UnlockRequest
289 };
290
291 HRESULT MkProtocol_Construct(IUnknown *pUnkOuter, LPVOID *ppobj)
292 {
293     MkProtocol *ret;
294
295     TRACE("(%p %p)\n", pUnkOuter, ppobj);
296
297     URLMON_LockModule();
298
299     ret = heap_alloc(sizeof(MkProtocol));
300
301     ret->lpInternetProtocolVtbl = &MkProtocolVtbl;
302     ret->ref = 1;
303     ret->stream = NULL;
304
305     /* NOTE:
306      * Native returns NULL ppobj and S_OK in CreateInstance if called with IID_IUnknown riid.
307      */
308     *ppobj = PROTOCOL(ret);
309
310     return S_OK;
311 }