rpcrt4: Use rpcrt4_conn_read in RPCRT4_OpenBinding.
[wine] / dlls / mshtml / main.c
1 /*
2  *    MSHTML Class Factory
3  *
4  * Copyright 2002 Lionel Ulmer
5  * Copyright 2003 Mike McCormack
6  * Copyright 2005 Jacek Caban
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 #include "config.h"
24
25 #include <stdarg.h>
26 #include <stdio.h>
27
28 #define COBJMACROS
29
30 #include "windef.h"
31 #include "winbase.h"
32 #include "winuser.h"
33 #include "winnls.h"
34 #include "winreg.h"
35 #include "ole2.h"
36 #include "advpub.h"
37
38 #include "wine/unicode.h"
39 #include "wine/debug.h"
40
41 #define INIT_GUID
42 #include "mshtml_private.h"
43
44 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
45
46 HINSTANCE hInst;
47 LONG module_ref = 0;
48
49 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
50 {
51     switch(fdwReason) {
52         case DLL_PROCESS_ATTACH:
53             hInst = hInstDLL;
54             break;
55         case DLL_PROCESS_DETACH:
56             close_gecko();
57             break;
58     }
59     return TRUE;
60 }
61
62 /***********************************************************
63  *    ClassFactory implementation
64  */
65 typedef HRESULT (*CreateInstanceFunc)(IUnknown*,REFIID,void**);
66 typedef struct {
67     const IClassFactoryVtbl *lpVtbl;
68     LONG ref;
69     CreateInstanceFunc fnCreateInstance;
70 } ClassFactory;
71
72 static HRESULT WINAPI ClassFactory_QueryInterface(IClassFactory *iface, REFGUID riid, void **ppvObject)
73 {
74     if(IsEqualGUID(&IID_IClassFactory, riid) || IsEqualGUID(&IID_IUnknown, riid)) {
75         IClassFactory_AddRef(iface);
76         *ppvObject = iface;
77         return S_OK;
78     }
79
80     WARN("not supported iid %s\n", debugstr_guid(riid));
81     *ppvObject = NULL;
82     return E_NOINTERFACE;
83 }
84
85 static ULONG WINAPI ClassFactory_AddRef(IClassFactory *iface)
86 {
87     ClassFactory *This = (ClassFactory*)iface;
88     ULONG ref = InterlockedIncrement(&This->ref);
89     TRACE("(%p) ref = %lu\n", This, ref);
90     return ref;
91 }
92
93 static ULONG WINAPI ClassFactory_Release(IClassFactory *iface)
94 {
95     ClassFactory *This = (ClassFactory*)iface;
96     ULONG ref = InterlockedDecrement(&This->ref);
97
98     TRACE("(%p) ref = %lu\n", This, ref);
99
100     if(!ref) {
101         HeapFree(GetProcessHeap(), 0, This);
102         UNLOCK_MODULE();
103     }
104
105     return ref;
106 }
107
108 static HRESULT WINAPI ClassFactory_CreateInstance(IClassFactory *iface, IUnknown *pUnkOuter,
109         REFIID riid, void **ppvObject)
110 {
111     ClassFactory *This = (ClassFactory*)iface;
112     return This->fnCreateInstance(pUnkOuter, riid, ppvObject);
113 }
114
115 static HRESULT WINAPI ClassFactory_LockServer(IClassFactory *iface, BOOL dolock)
116 {
117     TRACE("(%p)->(%x)\n", iface, dolock);
118
119     if(dolock)
120         LOCK_MODULE();
121     else
122         UNLOCK_MODULE();
123
124     return S_OK;
125 }
126
127 static const IClassFactoryVtbl HTMLClassFactoryVtbl = {
128     ClassFactory_QueryInterface,
129     ClassFactory_AddRef,
130     ClassFactory_Release,
131     ClassFactory_CreateInstance,
132     ClassFactory_LockServer
133 };
134
135 static HRESULT ClassFactory_Create(REFIID riid, void **ppv, CreateInstanceFunc fnCreateInstance)
136 {
137     ClassFactory *ret = HeapAlloc(GetProcessHeap(), 0, sizeof(ClassFactory));
138     HRESULT hres;
139
140     ret->lpVtbl = &HTMLClassFactoryVtbl;
141     ret->ref = 0;
142     ret->fnCreateInstance = fnCreateInstance;
143
144     hres = IClassFactory_QueryInterface((IClassFactory*)ret, riid, ppv);
145     if(SUCCEEDED(hres)) {
146         LOCK_MODULE();
147     }else {
148         HeapFree(GetProcessHeap(), 0, ret);
149         *ppv = NULL;
150     }
151     return hres;
152 }
153
154 /******************************************************************
155  *              DllGetClassObject (MSHTML.@)
156  */
157 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
158 {
159     if(IsEqualGUID(&CLSID_HTMLDocument, rclsid)) {
160         TRACE("(CLSID_HTMLDocument %s %p)\n", debugstr_guid(riid), ppv);
161         return ClassFactory_Create(riid, ppv, HTMLDocument_Create);
162     }else if(IsEqualGUID(&CLSID_AboutProtocol, rclsid)) {
163         TRACE("(CLSID_AboutProtocol %s %p)\n", debugstr_guid(riid), ppv);
164         return ProtocolFactory_Create(rclsid, riid, ppv);
165     }else if(IsEqualGUID(&CLSID_JSProtocol, rclsid)) {
166         TRACE("(CLSID_JSProtocol %s %p)\n", debugstr_guid(riid), ppv);
167         return ProtocolFactory_Create(rclsid, riid, ppv);
168     }else if(IsEqualGUID(&CLSID_MailtoProtocol, rclsid)) {
169         TRACE("(CLSID_MailtoProtocol %s %p)\n", debugstr_guid(riid), ppv);
170         return ProtocolFactory_Create(rclsid, riid, ppv);
171     }else if(IsEqualGUID(&CLSID_ResProtocol, rclsid)) {
172         TRACE("(CLSID_ResProtocol %s %p)\n", debugstr_guid(riid), ppv);
173         return ProtocolFactory_Create(rclsid, riid, ppv);
174     }else if(IsEqualGUID(&CLSID_SysimageProtocol, rclsid)) {
175         TRACE("(CLSID_SysimageProtocol %s %p)\n", debugstr_guid(riid), ppv);
176         return ProtocolFactory_Create(rclsid, riid, ppv);
177     }
178
179     FIXME("Unknown class %s\n", debugstr_guid(rclsid));
180     return CLASS_E_CLASSNOTAVAILABLE;
181 }
182
183 /******************************************************************
184  *              DllCanUnloadNow (MSHTML.@)
185  */
186 HRESULT WINAPI DllCanUnloadNow(void)
187 {
188     TRACE("() ref=%ld\n", module_ref);
189     return module_ref ? S_FALSE : S_OK;
190 }
191
192 /***********************************************************************
193  *          RunHTMLApplication (MSHTML.@)
194  *
195  * Appears to have the same prototype as WinMain.
196  */
197 HRESULT WINAPI RunHTMLApplication( HINSTANCE hinst, HINSTANCE hPrevInst,
198                                LPSTR szCmdLine, INT nCmdShow )
199 {
200     FIXME("%p %p %s %d\n", hinst, hPrevInst, debugstr_a(szCmdLine), nCmdShow );
201     return 0;
202 }
203
204 /***********************************************************************
205  *          RNIGetCompatibleVersion (MSHTML.@)
206  */
207 DWORD WINAPI RNIGetCompatibleVersion(void)
208 {
209     TRACE("()\n");
210     return 0x20000;
211 }
212
213 /***********************************************************************
214  *          DllInstall (MSHTML.@)
215  */
216 HRESULT WINAPI DllInstall(BOOL bInstall, LPCWSTR cmdline)
217 {
218     FIXME("stub %d %s: returning S_OK\n", bInstall, debugstr_w(cmdline));
219     return S_OK;
220 }
221
222 DEFINE_GUID(CLSID_CAnchorBrowsePropertyPage, 0x3050F3BB, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
223 DEFINE_GUID(CLSID_CBackgroundPropertyPage, 0x3050F232, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
224 DEFINE_GUID(CLSID_CCDAnchorPropertyPage, 0x3050F1FC, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
225 DEFINE_GUID(CLSID_CCDGenericPropertyPage, 0x3050F17F, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
226 DEFINE_GUID(CLSID_CDocBrowsePropertyPage, 0x3050F3B4, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
227 DEFINE_GUID(CLSID_CDwnBindInfo, 0x3050F3C2, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
228 DEFINE_GUID(CLSID_CHiFiUses, 0x5AAF51B3, 0xB1F0, 0x11D1, 0xB6,0xAB, 0x00,0xA0,0xC9,0x08,0x33,0xE9);
229 DEFINE_GUID(CLSID_CHtmlComponentConstructor, 0x3050F4F8, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
230 DEFINE_GUID(CLSID_CImageBrowsePropertyPage, 0x3050F3B3, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
231 DEFINE_GUID(CLSID_CInlineStylePropertyPage, 0x3050F296, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
232 DEFINE_GUID(CLSID_CPeerHandler, 0x5AAF51B2, 0xB1F0, 0x11D1, 0xB6,0xAB, 0x00,0xA0,0xC9,0x08,0x33,0xE9);
233 DEFINE_GUID(CLSID_CRecalcEngine, 0x3050F499, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
234 DEFINE_GUID(CLSID_CSvrOMUses, 0x3050F4F0, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
235 DEFINE_GUID(CLSID_CrSource, 0x65014010, 0x9F62, 0x11D1, 0xA6,0x51, 0x00,0x60,0x08,0x11,0xD5,0xCE);
236 DEFINE_GUID(CLSID_ExternalFrameworkSite, 0x3050F163, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
237 DEFINE_GUID(CLSID_HTADocument, 0x3050F5C8, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
238 DEFINE_GUID(CLSID_HTMLLoadOptions, 0x18845040, 0x0FA5, 0x11D1, 0xBA,0x19, 0x00,0xC0,0x4F,0xD9,0x12,0xD0);
239 DEFINE_GUID(CLSID_HTMLPluginDocument, 0x25336921, 0x03F9, 0x11CF, 0x8F,0xD0, 0x00,0xAA,0x00,0x68,0x6F,0x13);
240 DEFINE_GUID(CLSID_HTMLPopup, 0x3050F667, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
241 DEFINE_GUID(CLSID_HTMLPopupDoc, 0x3050F67D, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
242 DEFINE_GUID(CLSID_HTMLServerDoc, 0x3050F4E7, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
243 DEFINE_GUID(CLSID_HTMLWindowProxy, 0x3050F391, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
244 DEFINE_GUID(CLSID_IImageDecodeFilter, 0x607FD4E8, 0x0A03, 0x11D1, 0xAB,0x1D, 0x00,0xC0,0x4F,0xC9,0xB3,0x04);
245 DEFINE_GUID(CLSID_IImgCtx, 0x3050F3D6, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
246 DEFINE_GUID(CLSID_IntDitherer, 0x05F6FE1A, 0xECEF, 0x11D0, 0xAA,0xE7, 0x00,0xC0,0x4F,0xC9,0xB3,0x04);
247 DEFINE_GUID(CLSID_MHTMLDocument, 0x3050F3D9, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
248 DEFINE_GUID(CLSID_Scriptlet, 0xAE24FDAE, 0x03C6, 0x11D1, 0x8B,0x76, 0x00,0x80,0xC7,0x44,0xF3,0x89);
249 DEFINE_GUID(CLSID_TridentAPI, 0x429AF92C, 0xA51F, 0x11D2, 0x86,0x1E, 0x00,0xC0,0x4F,0xA3,0x5C,0x89);
250
251 #define INF_SET_ID(id) \
252     pse[i].pszName = #id; \
253     clsids[i++] = &id;
254
255 #define INF_SET_CLSID(clsid) INF_SET_ID(CLSID_ ## clsid)
256
257 static HRESULT register_server(BOOL do_register)
258 {
259     HRESULT hres;
260     HMODULE hAdvpack;
261     typeof(RegInstallA) *pRegInstall;
262     STRTABLEA strtable;
263     STRENTRYA pse[35];
264     static CLSID const *clsids[35];
265     int i = 0;
266     
267     static const WCHAR wszAdvpack[] = {'a','d','v','p','a','c','k','.','d','l','l',0};
268
269     TRACE("(%x)\n", do_register);
270     
271     INF_SET_CLSID(AboutProtocol);
272     INF_SET_CLSID(CAnchorBrowsePropertyPage);
273     INF_SET_CLSID(CBackgroundPropertyPage);
274     INF_SET_CLSID(CCDAnchorPropertyPage);
275     INF_SET_CLSID(CCDGenericPropertyPage);
276     INF_SET_CLSID(CDocBrowsePropertyPage);
277     INF_SET_CLSID(CDwnBindInfo);
278     INF_SET_CLSID(CHiFiUses);
279     INF_SET_CLSID(CHtmlComponentConstructor);
280     INF_SET_CLSID(CImageBrowsePropertyPage);
281     INF_SET_CLSID(CInlineStylePropertyPage);
282     INF_SET_CLSID(CPeerHandler);
283     INF_SET_CLSID(CRecalcEngine);
284     INF_SET_CLSID(CSvrOMUses);
285     INF_SET_CLSID(CrSource);
286     INF_SET_CLSID(ExternalFrameworkSite);
287     INF_SET_CLSID(HTADocument);
288     INF_SET_CLSID(HTMLDocument);
289     INF_SET_CLSID(HTMLLoadOptions);
290     INF_SET_CLSID(HTMLPluginDocument);
291     INF_SET_CLSID(HTMLPopup);
292     INF_SET_CLSID(HTMLPopupDoc);
293     INF_SET_CLSID(HTMLServerDoc);
294     INF_SET_CLSID(HTMLWindowProxy);
295     INF_SET_CLSID(IImageDecodeFilter);
296     INF_SET_CLSID(IImgCtx);
297     INF_SET_CLSID(IntDitherer);
298     INF_SET_CLSID(JSProtocol);
299     INF_SET_CLSID(MHTMLDocument);
300     INF_SET_CLSID(MailtoProtocol);
301     INF_SET_CLSID(ResProtocol);
302     INF_SET_CLSID(Scriptlet);
303     INF_SET_CLSID(SysimageProtocol);
304     INF_SET_CLSID(TridentAPI);
305     INF_SET_ID(LIBID_MSHTML);
306
307     for(i=0; i < sizeof(pse)/sizeof(pse[0]); i++) {
308         pse[i].pszValue = HeapAlloc(GetProcessHeap(), 0, 39);
309         sprintf(pse[i].pszValue, "{%08lX-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}",
310                 clsids[i]->Data1, clsids[i]->Data2, clsids[i]->Data3, clsids[i]->Data4[0],
311                 clsids[i]->Data4[1], clsids[i]->Data4[2], clsids[i]->Data4[3], clsids[i]->Data4[4],
312                 clsids[i]->Data4[5], clsids[i]->Data4[6], clsids[i]->Data4[7]);
313     }
314
315     strtable.cEntries = sizeof(pse)/sizeof(pse[0]);
316     strtable.pse = pse;
317
318     hAdvpack = LoadLibraryW(wszAdvpack);
319     pRegInstall = (typeof(RegInstallA)*)GetProcAddress(hAdvpack, "RegInstall");
320
321     hres = pRegInstall(hInst, do_register ? "RegisterDll" : "UnregisterDll", &strtable);
322
323     for(i=0; i < sizeof(pse)/sizeof(pse[0]); i++)
324         HeapFree(GetProcessHeap(), 0, pse[i].pszValue);
325
326     return hres;
327 }
328
329 #undef INF_SET_CLSID
330
331 /***********************************************************************
332  *          DllRegisterServer (MSHTML.@)
333  */
334 HRESULT WINAPI DllRegisterServer(void)
335 {
336     return register_server(TRUE);
337 }
338
339 /***********************************************************************
340  *          DllUnregisterServer (MSHTML.@)
341  */
342 HRESULT WINAPI DllUnregisterServer(void)
343 {
344     return register_server(FALSE);
345 }