2 * Implementation of Active Template Library (atl.dll)
4 * Copyright 2004 Aric Stewart for CodeWeavers
5 * Copyright 2005 Jacek Caban
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
31 #include "wine/debug.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(atl
);
35 extern HINSTANCE atl_instance
;
37 #define ATLVer1Size FIELD_OFFSET(_ATL_MODULEW, dwAtlBuildVer)
39 HRESULT WINAPI
AtlModuleInit(_ATL_MODULEW
* pM
, _ATL_OBJMAP_ENTRYW
* p
, HINSTANCE h
)
44 TRACE("(%p %p %p)\n", pM
, p
, h
);
50 case sizeof(_ATL_MODULEW
):
52 case sizeof(_ATL_MODULEW
) + sizeof(void *):
56 WARN("Unknown structure version (size %i)\n",size
);
60 memset(pM
,0,pM
->cbSize
);
63 pM
->m_hInstResource
= h
;
64 pM
->m_hInstTypeLib
= h
;
66 pM
->m_hHeap
= GetProcessHeap();
68 InitializeCriticalSection(&pM
->u
.m_csTypeInfoHolder
);
69 InitializeCriticalSection(&pM
->m_csWindowCreate
);
70 InitializeCriticalSection(&pM
->m_csObjMap
);
74 if (pM
->m_pObjMap
!= NULL
&& size
> ATLVer1Size
)
76 while (pM
->m_pObjMap
[i
].pclsid
!= NULL
)
78 TRACE("Initializing object %i %p\n",i
,p
[i
].pfnObjectMain
);
79 if (p
[i
].pfnObjectMain
)
80 p
[i
].pfnObjectMain(TRUE
);
88 static _ATL_OBJMAP_ENTRYW_V1
*get_objmap_entry( _ATL_MODULEW
*mod
, unsigned int index
)
90 _ATL_OBJMAP_ENTRYW_V1
*ret
;
92 if (mod
->cbSize
== ATLVer1Size
)
93 ret
= (_ATL_OBJMAP_ENTRYW_V1
*)mod
->m_pObjMap
+ index
;
95 ret
= (_ATL_OBJMAP_ENTRYW_V1
*)(mod
->m_pObjMap
+ index
);
97 if (!ret
->pclsid
) ret
= NULL
;
101 HRESULT WINAPI
AtlModuleLoadTypeLib(_ATL_MODULEW
*pM
, LPCOLESTR lpszIndex
,
102 BSTR
*pbstrPath
, ITypeLib
**ppTypeLib
)
104 TRACE("(%p, %s, %p, %p)\n", pM
, debugstr_w(lpszIndex
), pbstrPath
, ppTypeLib
);
109 return AtlLoadTypeLib(pM
->m_hInstTypeLib
, lpszIndex
, pbstrPath
, ppTypeLib
);
112 HRESULT WINAPI
AtlModuleTerm(_ATL_MODULE
*pM
)
114 _ATL_TERMFUNC_ELEM
*iter
, *tmp
;
118 if (pM
->cbSize
> ATLVer1Size
)
120 iter
= pM
->m_pTermFuncs
;
123 iter
->pFunc(iter
->dw
);
126 HeapFree(GetProcessHeap(), 0, tmp
);
133 HRESULT WINAPI
AtlModuleRegisterClassObjects(_ATL_MODULEW
*pM
, DWORD dwClsContext
,
136 _ATL_OBJMAP_ENTRYW_V1
*obj
;
139 TRACE("(%p %i %i)\n",pM
, dwClsContext
, dwFlags
);
144 while ((obj
= get_objmap_entry( pM
, i
++ )))
149 TRACE("Registering object %i\n",i
);
150 if (obj
->pfnGetClassObject
)
152 rc
= obj
->pfnGetClassObject(obj
->pfnCreateInstance
, &IID_IUnknown
,
156 rc
= CoRegisterClassObject(obj
->pclsid
, pUnknown
, dwClsContext
,
157 dwFlags
, &obj
->dwRegister
);
160 WARN("Failed to register object %i: 0x%08x\n", i
, rc
);
163 IUnknown_Release(pUnknown
);
171 HRESULT WINAPI
AtlModuleUnregisterServerEx(_ATL_MODULEW
* pM
, BOOL bUnRegTypeLib
, const CLSID
* pCLSID
)
173 FIXME("(%p, %i, %p) stub\n", pM
, bUnRegTypeLib
, pCLSID
);
177 /***********************************************************************
178 * AtlModuleRegisterServer [ATL.@]
181 HRESULT WINAPI
AtlModuleRegisterServer(_ATL_MODULEW
* pM
, BOOL bRegTypeLib
, const CLSID
* clsid
)
183 const _ATL_OBJMAP_ENTRYW_V1
*obj
;
187 TRACE("%p %d %s\n", pM
, bRegTypeLib
, debugstr_guid(clsid
));
192 for (i
= 0; (obj
= get_objmap_entry( pM
, i
)) != NULL
; i
++) /* register CLSIDs */
194 if (!clsid
|| IsEqualCLSID(obj
->pclsid
, clsid
))
196 TRACE("Registering clsid %s\n", debugstr_guid(obj
->pclsid
));
197 hRes
= obj
->pfnUpdateRegistry(TRUE
); /* register */
201 if(pM
->cbSize
> ATLVer1Size
) {
202 const struct _ATL_CATMAP_ENTRY
*catmap
;
204 catmap
= ((const _ATL_OBJMAP_ENTRYW
*)obj
)->pfnGetCategoryMap();
206 hRes
= AtlRegisterClassCategoriesHelper(obj
->pclsid
, catmap
, TRUE
);
216 hRes
= AtlRegisterTypeLib(pM
->m_hInstTypeLib
, NULL
);
224 /***********************************************************************
225 * AtlModuleGetClassObject [ATL.@]
227 HRESULT WINAPI
AtlModuleGetClassObject(_ATL_MODULEW
*pm
, REFCLSID rclsid
,
228 REFIID riid
, LPVOID
*ppv
)
230 _ATL_OBJMAP_ENTRYW_V1
*obj
;
232 HRESULT hres
= CLASS_E_CLASSNOTAVAILABLE
;
234 TRACE("%p %s %s %p\n", pm
, debugstr_guid(rclsid
), debugstr_guid(riid
), ppv
);
239 for (i
= 0; (obj
= get_objmap_entry( pm
, i
)) != NULL
; i
++)
241 if (IsEqualCLSID(obj
->pclsid
, rclsid
))
243 TRACE("found object %i\n", i
);
244 if (obj
->pfnGetClassObject
)
247 hres
= obj
->pfnGetClassObject(obj
->pfnCreateInstance
,
251 hres
= IUnknown_QueryInterface(obj
->pCF
, riid
, ppv
);
257 WARN("no class object found for %s\n", debugstr_guid(rclsid
));
262 /***********************************************************************
263 * AtlModuleGetClassObject [ATL.@]
265 HRESULT WINAPI
AtlModuleRegisterTypeLib(_ATL_MODULEW
*pm
, LPCOLESTR lpszIndex
)
267 TRACE("%p %s\n", pm
, debugstr_w(lpszIndex
));
272 return AtlRegisterTypeLib(pm
->m_hInstTypeLib
, lpszIndex
);
275 /***********************************************************************
276 * AtlModuleRevokeClassObjects [ATL.@]
278 HRESULT WINAPI
AtlModuleRevokeClassObjects(_ATL_MODULEW
*pm
)
284 /***********************************************************************
285 * AtlModuleUnregisterServer [ATL.@]
287 HRESULT WINAPI
AtlModuleUnregisterServer(_ATL_MODULEW
*pm
, const CLSID
*clsid
)
289 FIXME("%p %s\n", pm
, debugstr_guid(clsid
));
293 /***********************************************************************
294 * AtlModuleRegisterWndClassInfoA [ATL.@]
296 * See AtlModuleRegisterWndClassInfoW.
298 ATOM WINAPI
AtlModuleRegisterWndClassInfoA(_ATL_MODULEA
*pm
, _ATL_WNDCLASSINFOA
*wci
, WNDPROC
*pProc
)
302 FIXME("%p %p %p semi-stub\n", pm
, wci
, pProc
);
309 TRACE("wci->m_wc.lpszClassName = %s\n", wci
->m_wc
.lpszClassName
);
311 if (wci
->m_lpszOrigName
)
312 FIXME( "subclassing %s not implemented\n", debugstr_a(wci
->m_lpszOrigName
));
314 if (!wci
->m_wc
.lpszClassName
)
316 sprintf(wci
->m_szAutoName
, "ATL:%p", wci
);
317 TRACE("auto-generated class name %s\n", wci
->m_szAutoName
);
318 wci
->m_wc
.lpszClassName
= wci
->m_szAutoName
;
321 atom
= GetClassInfoExA(pm
->m_hInst
, wci
->m_wc
.lpszClassName
, &wc
);
324 wci
->m_wc
.hInstance
= pm
->m_hInst
;
325 wci
->m_wc
.hCursor
= LoadCursorA( wci
->m_bSystemCursor
? NULL
: pm
->m_hInst
,
326 wci
->m_lpszCursorID
);
327 atom
= RegisterClassExA(&wci
->m_wc
);
329 wci
->pWndProc
= wci
->m_wc
.lpfnWndProc
;
333 if (wci
->m_lpszOrigName
) *pProc
= wci
->pWndProc
;
335 TRACE("returning 0x%04x\n", atom
);
339 /***********************************************************************
340 * AtlModuleRegisterWndClassInfoW [ATL.@]
343 * pm [IO] Information about the module registering the window.
344 * wci [IO] Information about the window being registered.
345 * pProc [O] Window procedure of the registered class.
348 * Atom representing the registered class.
351 * Can be called multiple times without error, unlike RegisterClassEx().
353 * If the class name is NULL, then a class with a name of "ATL:xxxxxxxx" is
354 * registered, where 'xxxxxxxx' represents a unique hexadecimal value.
357 ATOM WINAPI
AtlModuleRegisterWndClassInfoW(_ATL_MODULEW
*pm
, _ATL_WNDCLASSINFOW
*wci
, WNDPROC
*pProc
)
361 FIXME("%p %p %p semi-stub\n", pm
, wci
, pProc
);
368 TRACE("wci->m_wc.lpszClassName = %s\n", debugstr_w(wci
->m_wc
.lpszClassName
));
370 if (wci
->m_lpszOrigName
)
371 FIXME( "subclassing %s not implemented\n", debugstr_w(wci
->m_lpszOrigName
));
373 if (!wci
->m_wc
.lpszClassName
)
375 swprintf(wci
->m_szAutoName
, ARRAY_SIZE(wci
->m_szAutoName
), L
"ATL:%p", wci
);
376 TRACE("auto-generated class name %s\n", debugstr_w(wci
->m_szAutoName
));
377 wci
->m_wc
.lpszClassName
= wci
->m_szAutoName
;
380 atom
= GetClassInfoExW(pm
->m_hInst
, wci
->m_wc
.lpszClassName
, &wc
);
383 wci
->m_wc
.hInstance
= pm
->m_hInst
;
384 wci
->m_wc
.hCursor
= LoadCursorW( wci
->m_bSystemCursor
? NULL
: pm
->m_hInst
,
385 wci
->m_lpszCursorID
);
386 atom
= RegisterClassExW(&wci
->m_wc
);
388 wci
->pWndProc
= wci
->m_wc
.lpfnWndProc
;
392 if (wci
->m_lpszOrigName
) *pProc
= wci
->pWndProc
;
394 TRACE("returning 0x%04x\n", atom
);
398 /***********************************************************************
399 * AtlModuleAddCreateWndData [ATL.@]
401 void WINAPI
AtlModuleAddCreateWndData(_ATL_MODULEW
*pM
, _AtlCreateWndData
*pData
, void* pvObject
)
403 TRACE("(%p, %p, %p)\n", pM
, pData
, pvObject
);
405 pData
->m_pThis
= pvObject
;
406 pData
->m_dwThreadID
= GetCurrentThreadId();
408 EnterCriticalSection(&pM
->m_csWindowCreate
);
409 pData
->m_pNext
= pM
->m_pCreateWndList
;
410 pM
->m_pCreateWndList
= pData
;
411 LeaveCriticalSection(&pM
->m_csWindowCreate
);
414 /***********************************************************************
415 * AtlModuleExtractCreateWndData [ATL.@]
417 * NOTE: Tests show that this function extracts one of _AtlCreateWndData
418 * records from the current thread from a list
421 void* WINAPI
AtlModuleExtractCreateWndData(_ATL_MODULEW
*pM
)
423 _AtlCreateWndData
**ppData
;
428 EnterCriticalSection(&pM
->m_csWindowCreate
);
430 for(ppData
= &pM
->m_pCreateWndList
; *ppData
!=NULL
; ppData
= &(*ppData
)->m_pNext
)
432 if ((*ppData
)->m_dwThreadID
== GetCurrentThreadId())
434 _AtlCreateWndData
*pData
= *ppData
;
435 *ppData
= pData
->m_pNext
;
436 ret
= pData
->m_pThis
;
441 LeaveCriticalSection(&pM
->m_csWindowCreate
);
445 /***********************************************************************
446 * AtlModuleUpdateRegistryFromResourceD [ATL.@]
449 HRESULT WINAPI
AtlModuleUpdateRegistryFromResourceD(_ATL_MODULEW
* pM
, LPCOLESTR lpszRes
,
450 BOOL bRegister
, struct _ATL_REGMAP_ENTRY
* pMapEntries
, IRegistrar
* pReg
)
452 TRACE("(%p %s %d %p %p)\n", pM
, debugstr_w(lpszRes
), bRegister
, pMapEntries
, pReg
);
454 return AtlUpdateRegistryFromResourceD(pM
->m_hInst
, lpszRes
, bRegister
, pMapEntries
, pReg
);
457 static HRESULT WINAPI
RegistrarCF_QueryInterface(IClassFactory
*iface
, REFIID riid
, void **ppvObject
)
459 TRACE("(%p)->(%s %p)\n", iface
, debugstr_guid(riid
), ppvObject
);
461 if(IsEqualGUID(&IID_IUnknown
, riid
) || IsEqualGUID(&IID_IClassFactory
, riid
)) {
463 IClassFactory_AddRef( iface
);
467 return E_NOINTERFACE
;
470 static ULONG WINAPI
RegistrarCF_AddRef(IClassFactory
*iface
)
475 static ULONG WINAPI
RegistrarCF_Release(IClassFactory
*iface
)
480 static HRESULT WINAPI
RegistrarCF_CreateInstance(IClassFactory
*iface
, LPUNKNOWN pUnkOuter
,
481 REFIID riid
, void **ppv
)
483 IRegistrar
*registrar
;
486 TRACE("(%p)->(%s %p)\n", iface
, debugstr_guid(riid
), ppv
);
490 return CLASS_E_NOAGGREGATION
;
493 hres
= AtlCreateRegistrar(®istrar
);
497 hres
= IRegistrar_QueryInterface(registrar
, riid
, ppv
);
498 IRegistrar_Release(registrar
);
502 static HRESULT WINAPI
RegistrarCF_LockServer(IClassFactory
*iface
, BOOL lock
)
504 TRACE("(%p)->(%x)\n", iface
, lock
);
508 static const IClassFactoryVtbl IRegistrarCFVtbl
= {
509 RegistrarCF_QueryInterface
,
512 RegistrarCF_CreateInstance
,
513 RegistrarCF_LockServer
516 static IClassFactory RegistrarCF
= { &IRegistrarCFVtbl
};
518 /**************************************************************
519 * DllGetClassObject (ATL.2)
521 HRESULT WINAPI
DllGetClassObject(REFCLSID clsid
, REFIID riid
, LPVOID
*ppvObject
)
523 TRACE("(%s %s %p)\n", debugstr_guid(clsid
), debugstr_guid(riid
), ppvObject
);
525 if(IsEqualGUID(&CLSID_Registrar
, clsid
))
526 return IClassFactory_QueryInterface( &RegistrarCF
, riid
, ppvObject
);
528 FIXME("Not supported class %s\n", debugstr_guid(clsid
));
529 return CLASS_E_CLASSNOTAVAILABLE
;
532 /***********************************************************************
533 * DllRegisterServer (ATL.@)
535 HRESULT WINAPI
DllRegisterServer(void)
537 return __wine_register_resources( atl_instance
);
540 /***********************************************************************
541 * DllUnRegisterServer (ATL.@)
543 HRESULT WINAPI
DllUnregisterServer(void)
545 return __wine_unregister_resources( atl_instance
);
548 /***********************************************************************
549 * DllCanUnloadNow (ATL.@)
551 HRESULT WINAPI
DllCanUnloadNow(void)