[CMAKE]
[reactos.git] / lib / atl / atlbase.h
1 /*
2 * ReactOS ATL
3 *
4 * Copyright 2009 Andrew Hill <ash77@reactos.org>
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #pragma once
22
23 #include "atlcore.h"
24 #include "statreg.h"
25
26 #ifdef _MSC_VER
27 // It is common to use this in ATL constructors. They only store this for later use, so the usage is safe.
28 #pragma warning(disable:4355)
29 #endif
30
31 #ifndef _ATL_PACKING
32 #define _ATL_PACKING 8
33 #endif
34
35 #ifndef _ATL_FREE_THREADED
36 #ifndef _ATL_APARTMENT_THREADED
37 #ifndef _ATL_SINGLE_THREADED
38 #define _ATL_FREE_THREADED
39 #endif
40 #endif
41 #endif
42
43 #ifndef ATLTRY
44 #define ATLTRY(x) x;
45 #endif
46
47 #ifdef _ATL_DISABLE_NO_VTABLE
48 #define ATL_NO_VTABLE
49 #else
50 #define ATL_NO_VTABLE __declspec(novtable)
51 #endif
52
53 #define offsetofclass(base, derived) (reinterpret_cast<DWORD_PTR>(static_cast<base *>(reinterpret_cast<derived *>(_ATL_PACKING))) - _ATL_PACKING)
54
55 namespace ATL
56 {
57
58 class CAtlModule;
59 class CComModule;
60 class CAtlComModule;
61 __declspec(selectany) CAtlModule *_pAtlModule = NULL;
62 __declspec(selectany) CComModule *_pModule = NULL;
63 extern CAtlComModule _AtlComModule;
64
65 typedef HRESULT (WINAPI _ATL_CREATORFUNC)(void *pv, REFIID riid, LPVOID *ppv);
66 typedef LPCTSTR (WINAPI _ATL_DESCRIPTIONFUNC)();
67 typedef const struct _ATL_CATMAP_ENTRY * (_ATL_CATMAPFUNC)();
68
69 struct _ATL_OBJMAP_ENTRY30
70 {
71 const CLSID *pclsid;
72 HRESULT (WINAPI *pfnUpdateRegistry)(BOOL bRegister);
73 _ATL_CREATORFUNC *pfnGetClassObject;
74 _ATL_CREATORFUNC *pfnCreateInstance;
75 IUnknown *pCF;
76 DWORD dwRegister;
77 _ATL_DESCRIPTIONFUNC *pfnGetObjectDescription;
78 _ATL_CATMAPFUNC *pfnGetCategoryMap;
79 void (WINAPI *pfnObjectMain)(bool bStarting);
80
81 HRESULT WINAPI RevokeClassObject()
82 {
83 if (dwRegister == 0)
84 return S_OK;
85 return CoRevokeClassObject(dwRegister);
86 }
87
88 HRESULT WINAPI RegisterClassObject(DWORD dwClsContext, DWORD dwFlags)
89 {
90 IUnknown *p;
91 HRESULT hResult;
92
93 p = NULL;
94 if (pfnGetClassObject == NULL)
95 return S_OK;
96
97 hResult = pfnGetClassObject(reinterpret_cast<LPVOID *>(pfnCreateInstance), IID_IUnknown, reinterpret_cast<LPVOID *>(&p));
98 if (SUCCEEDED(hResult))
99 hResult = CoRegisterClassObject(*pclsid, p, dwClsContext, dwFlags, &dwRegister);
100
101 if (p != NULL)
102 p->Release();
103
104 return hResult;
105 }
106 };
107
108 typedef _ATL_OBJMAP_ENTRY30 _ATL_OBJMAP_ENTRY;
109
110 typedef void (__stdcall _ATL_TERMFUNC)(DWORD_PTR dw);
111
112 struct _ATL_TERMFUNC_ELEM
113 {
114 _ATL_TERMFUNC *pFunc;
115 DWORD_PTR dw;
116 _ATL_TERMFUNC_ELEM *pNext;
117 };
118
119 struct _ATL_MODULE70
120 {
121 UINT cbSize;
122 LONG m_nLockCnt;
123 _ATL_TERMFUNC_ELEM *m_pTermFuncs;
124 CComCriticalSection m_csStaticDataInitAndTypeInfo;
125 };
126 typedef _ATL_MODULE70 _ATL_MODULE;
127
128 typedef HRESULT (WINAPI _ATL_CREATORARGFUNC)(void *pv, REFIID riid, LPVOID *ppv, DWORD_PTR dw);
129
130 #define _ATL_SIMPLEMAPENTRY ((ATL::_ATL_CREATORARGFUNC *)1)
131
132 struct _ATL_INTMAP_ENTRY
133 {
134 const IID *piid;
135 DWORD_PTR dw;
136 _ATL_CREATORARGFUNC *pFunc;
137 };
138
139 struct _AtlCreateWndData
140 {
141 void *m_pThis;
142 DWORD m_dwThreadID;
143 _AtlCreateWndData *m_pNext;
144 };
145
146 struct _ATL_COM_MODULE70
147 {
148 UINT cbSize;
149 HINSTANCE m_hInstTypeLib;
150 _ATL_OBJMAP_ENTRY **m_ppAutoObjMapFirst;
151 _ATL_OBJMAP_ENTRY **m_ppAutoObjMapLast;
152 CComCriticalSection m_csObjMap;
153 };
154 typedef _ATL_COM_MODULE70 _ATL_COM_MODULE;
155
156 struct _ATL_WIN_MODULE70
157 {
158 UINT cbSize;
159 CComCriticalSection m_csWindowCreate;
160 _AtlCreateWndData *m_pCreateWndList;
161 #ifdef NOTYET
162 CSimpleArray<ATOM> m_rgWindowClassAtoms;
163 #endif
164 };
165 typedef _ATL_WIN_MODULE70 _ATL_WIN_MODULE;
166
167 struct _ATL_REGMAP_ENTRY
168 {
169 LPCOLESTR szKey;
170 LPCOLESTR szData;
171 };
172
173 HRESULT __stdcall AtlWinModuleInit(_ATL_WIN_MODULE *pWinModule);
174 HRESULT __stdcall AtlWinModuleTerm(_ATL_WIN_MODULE *pWinModule, HINSTANCE hInst);
175 HRESULT __stdcall AtlInternalQueryInterface(void *pThis, const _ATL_INTMAP_ENTRY *pEntries, REFIID iid, void **ppvObject);
176 void __stdcall AtlWinModuleAddCreateWndData(_ATL_WIN_MODULE *pWinModule, _AtlCreateWndData *pData, void *pObject);
177 void *__stdcall AtlWinModuleExtractCreateWndData(_ATL_WIN_MODULE *pWinModule);
178 HRESULT __stdcall AtlComModuleGetClassObject(_ATL_COM_MODULE *pComModule, REFCLSID rclsid, REFIID riid, LPVOID *ppv);
179
180 template<class TLock>
181 class CComCritSecLock
182 {
183 private:
184 bool m_bLocked;
185 TLock &m_cs;
186 public:
187 CComCritSecLock(TLock &cs, bool bInitialLock = true) : m_cs(cs)
188 {
189 HRESULT hResult;
190
191 m_bLocked = false;
192 if (bInitialLock)
193 {
194 hResult = Lock();
195 if (FAILED(hResult))
196 {
197 ATLASSERT(false);
198 }
199 }
200 }
201
202 ~CComCritSecLock()
203 {
204 if (m_bLocked)
205 Unlock();
206 }
207
208 HRESULT Lock()
209 {
210 HRESULT hResult;
211
212 ATLASSERT(!m_bLocked);
213 hResult = m_cs.Lock();
214 if (FAILED(hResult))
215 return hResult;
216 m_bLocked = true;
217
218 return S_OK;
219 }
220
221 void Unlock()
222 {
223 HRESULT hResult;
224
225 ATLASSERT(m_bLocked);
226 hResult = m_cs.Unlock();
227 if (FAILED(hResult))
228 {
229 ATLASSERT(false);
230 }
231 m_bLocked = false;
232 }
233 };
234
235 inline BOOL WINAPI InlineIsEqualUnknown(REFGUID rguid1)
236 {
237 return (
238 ((unsigned long *)&rguid1)[0] == 0 &&
239 ((unsigned long *)&rguid1)[1] == 0 &&
240 ((unsigned long *)&rguid1)[2] == 0x000000C0 &&
241 ((unsigned long *)&rguid1)[3] == 0x46000000);
242 }
243
244 class CComMultiThreadModelNoCS
245 {
246 public:
247 typedef CComFakeCriticalSection AutoCriticalSection;
248 typedef CComFakeCriticalSection CriticalSection;
249 typedef CComMultiThreadModelNoCS ThreadModelNoCS;
250 typedef CComFakeCriticalSection AutoDeleteCriticalSection;
251
252 static ULONG WINAPI Increment(LPLONG p)
253 {
254 return InterlockedIncrement(p);
255 }
256
257 static ULONG WINAPI Decrement(LPLONG p)
258 {
259 return InterlockedDecrement(p);
260 }
261 };
262
263 class CComMultiThreadModel
264 {
265 public:
266 typedef CComAutoCriticalSection AutoCriticalSection;
267 typedef CComCriticalSection CriticalSection;
268 typedef CComMultiThreadModelNoCS ThreadModelNoCS;
269 typedef CComAutoDeleteCriticalSection AutoDeleteCriticalSection;
270
271 static ULONG WINAPI Increment(LPLONG p)
272 {
273 return InterlockedIncrement(p);
274 }
275
276 static ULONG WINAPI Decrement(LPLONG p)
277 {
278 return InterlockedDecrement(p);
279 }
280 };
281
282 class CComSingleThreadModel
283 {
284 public:
285 typedef CComFakeCriticalSection AutoCriticalSection;
286 typedef CComFakeCriticalSection CriticalSection;
287 typedef CComSingleThreadModel ThreadModelNoCS;
288 typedef CComFakeCriticalSection AutoDeleteCriticalSection;
289
290 static ULONG WINAPI Increment(LPLONG p)
291 {
292 return ++*p;
293 }
294
295 static ULONG WINAPI Decrement(LPLONG p)
296 {
297 return --*p;
298 }
299 };
300
301 #if defined(_ATL_FREE_THREADED)
302
303 typedef CComMultiThreadModel CComObjectThreadModel;
304 typedef CComMultiThreadModel CComGlobalsThreadModel;
305
306 #elif defined(_ATL_APARTMENT_THREADED)
307
308 typedef CComSingleThreadModel CComObjectThreadModel;
309 typedef CComMultiThreadModel CComGlobalsThreadModel;
310
311 #elif defined(_ATL_SINGLE_THREADED)
312
313 typedef CComSingleThreadModel CComObjectThreadModel;
314 typedef CComSingleThreadModel CComGlobalsThreadModel;
315
316 #else
317 #error No threading model
318 #endif
319
320 class CAtlModule : public _ATL_MODULE
321 {
322 protected:
323 static GUID m_libid;
324 public:
325 CAtlModule()
326 {
327 ATLASSERT(_pAtlModule == NULL);
328 _pAtlModule = this;
329 cbSize = sizeof(_ATL_MODULE);
330 m_nLockCnt = 0;
331 }
332
333 virtual LONG GetLockCount()
334 {
335 return m_nLockCnt;
336 }
337
338 virtual LONG Lock()
339 {
340 return CComGlobalsThreadModel::Increment(&m_nLockCnt);
341 }
342
343 virtual LONG Unlock()
344 {
345 return CComGlobalsThreadModel::Decrement(&m_nLockCnt);
346 }
347
348 virtual HRESULT AddCommonRGSReplacements(IRegistrarBase* /*pRegistrar*/) = 0;
349
350 HRESULT WINAPI UpdateRegistryFromResource(LPCTSTR lpszRes, BOOL bRegister, struct _ATL_REGMAP_ENTRY *pMapEntries = NULL)
351 {
352 CRegObject registrar;
353 TCHAR modulePath[MAX_PATH];
354 HRESULT hResult;
355
356 hResult = CommonInitRegistrar(registrar, modulePath, sizeof(modulePath) / sizeof(modulePath[0]), pMapEntries);
357 if (FAILED(hResult))
358 return hResult;
359
360 if (bRegister != FALSE)
361 hResult = registrar.ResourceRegisterSz(modulePath, lpszRes, _T("REGISTRY"));
362 else
363 hResult = registrar.ResourceUnregisterSz(modulePath, lpszRes, _T("REGISTRY"));
364
365 return hResult;
366 }
367
368 HRESULT WINAPI UpdateRegistryFromResource(UINT nResID, BOOL bRegister, struct _ATL_REGMAP_ENTRY *pMapEntries = NULL)
369 {
370 CRegObject registrar;
371 TCHAR modulePath[MAX_PATH];
372 HRESULT hResult;
373
374 hResult = CommonInitRegistrar(registrar, modulePath, sizeof(modulePath) / sizeof(modulePath[0]), pMapEntries);
375 if (FAILED(hResult))
376 return hResult;
377
378 if (bRegister != FALSE)
379 hResult = registrar.ResourceRegister(modulePath, nResID, _T("REGISTRY"));
380 else
381 hResult = registrar.ResourceRegister(modulePath, nResID, _T("REGISTRY"));
382
383 return hResult;
384 }
385
386 private:
387 HRESULT CommonInitRegistrar(CRegObject &registrar, TCHAR *modulePath, DWORD modulePathCount, struct _ATL_REGMAP_ENTRY *pMapEntries)
388 {
389 HINSTANCE hInstance;
390 DWORD dwFLen;
391 HRESULT hResult;
392
393 hInstance = _AtlBaseModule.GetModuleInstance();
394 dwFLen = GetModuleFileName(hInstance, modulePath, modulePathCount);
395 if (dwFLen == modulePathCount)
396 return HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER);
397 else if (dwFLen == 0)
398 return HRESULT_FROM_WIN32(GetLastError());
399
400 if (pMapEntries != NULL)
401 {
402 while (pMapEntries->szKey != NULL)
403 {
404 ATLASSERT(pMapEntries->szData != NULL);
405 hResult = registrar.AddReplacement(pMapEntries->szKey, pMapEntries->szData);
406 if (FAILED(hResult))
407 return hResult;
408 pMapEntries++;
409 }
410 }
411
412 hResult = AddCommonRGSReplacements(&registrar);
413 if (FAILED(hResult))
414 return hResult;
415
416 hResult = registrar.AddReplacement(_T("Module"), modulePath);
417 if (FAILED(hResult))
418 return hResult;
419
420 hResult = registrar.AddReplacement(_T("Module_Raw"), modulePath);
421 if (FAILED(hResult))
422 return hResult;
423
424 return S_OK;
425 }
426 };
427
428 __declspec(selectany) GUID CAtlModule::m_libid = {0x0, 0x0, 0x0, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0} };
429
430 template <class T>
431 class CAtlModuleT : public CAtlModule
432 {
433 public:
434
435 virtual HRESULT AddCommonRGSReplacements(IRegistrarBase *pRegistrar)
436 {
437 return pRegistrar->AddReplacement(L"APPID", T::GetAppId());
438 }
439
440 static LPCOLESTR GetAppId()
441 {
442 return L"";
443 }
444 };
445
446 class CAtlComModule : public _ATL_COM_MODULE
447 {
448 public:
449 CAtlComModule()
450 {
451 GetModuleHandleExW(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS, (LPCWSTR)this, &m_hInstTypeLib);
452 m_ppAutoObjMapFirst = NULL;
453 m_ppAutoObjMapLast = NULL;
454 if (FAILED(m_csObjMap.Init()))
455 {
456 ATLASSERT(0);
457 CAtlBaseModule::m_bInitFailed = true;
458 return;
459 }
460 cbSize = sizeof(_ATL_COM_MODULE);
461 }
462
463 ~CAtlComModule()
464 {
465 Term();
466 }
467
468 void Term()
469 {
470 if (cbSize != 0)
471 {
472 ATLASSERT(m_ppAutoObjMapFirst == NULL);
473 ATLASSERT(m_ppAutoObjMapLast == NULL);
474 m_csObjMap.Term();
475 cbSize = 0;
476 }
477 }
478 };
479
480 template <class T>
481 class CAtlDllModuleT : public CAtlModuleT<T>
482 {
483 public:
484 CAtlDllModuleT()
485 {
486 }
487
488 HRESULT DllCanUnloadNow()
489 {
490 T *pThis;
491
492 pThis = static_cast<T *>(this);
493 if (pThis->GetLockCount() == 0)
494 return S_OK;
495 return S_FALSE;
496 }
497
498 HRESULT DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
499 {
500 T *pThis;
501
502 pThis = static_cast<T *>(this);
503 return pThis->GetClassObject(rclsid, riid, ppv);
504 }
505
506 HRESULT DllRegisterServer(BOOL bRegTypeLib = TRUE)
507 {
508 T *pThis;
509 HRESULT hResult;
510
511 pThis = static_cast<T *>(this);
512 hResult = pThis->RegisterServer(bRegTypeLib);
513 return hResult;
514 }
515
516 HRESULT DllUnregisterServer(BOOL bUnRegTypeLib = TRUE)
517 {
518 T *pThis;
519 HRESULT hResult;
520
521 pThis = static_cast<T *>(this);
522 hResult = pThis->UnregisterServer(bUnRegTypeLib);
523 return hResult;
524 }
525
526 HRESULT GetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
527 {
528 return AtlComModuleGetClassObject(&_AtlComModule, rclsid, riid, ppv);
529 }
530 };
531
532 class CComModule : public CAtlModuleT<CComModule>
533 {
534 public:
535 _ATL_OBJMAP_ENTRY *m_pObjMap;
536 public:
537 CComModule()
538 {
539 ATLASSERT(_pModule == NULL);
540 _pModule = this;
541 }
542
543 ~CComModule()
544 {
545 _pModule = NULL;
546 }
547
548 HRESULT Init(_ATL_OBJMAP_ENTRY *p, HINSTANCE /* h */, const GUID *plibid)
549 {
550 _ATL_OBJMAP_ENTRY *objectMapEntry;
551
552 if (plibid != NULL)
553 m_libid = *plibid;
554
555 if (p != reinterpret_cast<_ATL_OBJMAP_ENTRY *>(-1))
556 {
557 m_pObjMap = p;
558 if (p != NULL)
559 {
560 objectMapEntry = p;
561 while (objectMapEntry->pclsid != NULL)
562 {
563 objectMapEntry->pfnObjectMain(true);
564 objectMapEntry++;
565 }
566 }
567 }
568 return S_OK;
569 }
570
571 void Term()
572 {
573 _ATL_OBJMAP_ENTRY *objectMapEntry;
574
575 if (m_pObjMap != NULL)
576 {
577 objectMapEntry = m_pObjMap;
578 while (objectMapEntry->pclsid != NULL)
579 {
580 if (objectMapEntry->pCF != NULL)
581 objectMapEntry->pCF->Release();
582 objectMapEntry->pCF = NULL;
583 objectMapEntry->pfnObjectMain(false);
584 objectMapEntry++;
585 }
586 }
587 }
588
589 HRESULT GetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
590 {
591 _ATL_OBJMAP_ENTRY *objectMapEntry;
592 HRESULT hResult;
593
594 ATLASSERT(ppv != NULL);
595 if (ppv == NULL)
596 return E_POINTER;
597 hResult = S_OK;
598 if (m_pObjMap != NULL)
599 {
600 objectMapEntry = m_pObjMap;
601 while (objectMapEntry->pclsid != NULL)
602 {
603 if (objectMapEntry->pfnGetClassObject != NULL && InlineIsEqualGUID(rclsid, *objectMapEntry->pclsid) != FALSE)
604 {
605 if (objectMapEntry->pCF == NULL)
606 {
607 CComCritSecLock<CComCriticalSection> lock(_AtlComModule.m_csObjMap, true);
608
609 if (objectMapEntry->pCF == NULL)
610 hResult = objectMapEntry->pfnGetClassObject(reinterpret_cast<void *>(objectMapEntry->pfnCreateInstance), IID_IUnknown, reinterpret_cast<LPVOID *>(&objectMapEntry->pCF));
611 }
612 if (objectMapEntry->pCF != NULL)
613 hResult = objectMapEntry->pCF->QueryInterface(riid, ppv);
614 break;
615 }
616 objectMapEntry++;
617 }
618 }
619 return hResult;
620 }
621
622 HRESULT RegisterServer(BOOL bRegTypeLib = FALSE, const CLSID *pCLSID = NULL)
623 {
624 _ATL_OBJMAP_ENTRY *objectMapEntry;
625 HRESULT hResult;
626
627 hResult = S_OK;
628 objectMapEntry = m_pObjMap;
629 if (objectMapEntry != NULL)
630 {
631 while (objectMapEntry->pclsid != NULL)
632 {
633 if (pCLSID == NULL || IsEqualGUID(*pCLSID, *objectMapEntry->pclsid) != FALSE)
634 {
635 hResult = objectMapEntry->pfnUpdateRegistry(TRUE);
636 if (FAILED(hResult))
637 break;
638 }
639 objectMapEntry++;
640 }
641 }
642 return hResult;
643 }
644
645 HRESULT UnregisterServer(BOOL bUnRegTypeLib, const CLSID *pCLSID = NULL)
646 {
647 _ATL_OBJMAP_ENTRY *objectMapEntry;
648 HRESULT hResult;
649
650 hResult = S_OK;
651 objectMapEntry = m_pObjMap;
652 if (objectMapEntry != NULL)
653 {
654 while (objectMapEntry->pclsid != NULL)
655 {
656 if (pCLSID == NULL || IsEqualGUID(*pCLSID, *objectMapEntry->pclsid) != FALSE)
657 {
658 hResult = objectMapEntry->pfnUpdateRegistry(FALSE); //unregister
659 if (FAILED(hResult))
660 break;
661 }
662 objectMapEntry++;
663 }
664 }
665 return hResult;
666 }
667
668 HRESULT DllCanUnloadNow()
669 {
670 if (GetLockCount() == 0)
671 return S_OK;
672 return S_FALSE;
673 }
674
675 HRESULT DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
676 {
677 return GetClassObject(rclsid, riid, ppv);
678 }
679
680 HRESULT DllRegisterServer(BOOL bRegTypeLib = TRUE)
681 {
682 return RegisterServer(bRegTypeLib);
683 }
684
685 HRESULT DllUnregisterServer(BOOL bUnRegTypeLib = TRUE)
686 {
687 return UnregisterServer(bUnRegTypeLib);
688 }
689
690 };
691
692 class CAtlWinModule : public _ATL_WIN_MODULE
693 {
694 public:
695 CAtlWinModule()
696 {
697 HRESULT hResult;
698
699 hResult = AtlWinModuleInit(this);
700 if (FAILED(hResult))
701 {
702 CAtlBaseModule::m_bInitFailed = true;
703 ATLASSERT(0);
704 }
705 }
706
707 ~CAtlWinModule()
708 {
709 Term();
710 }
711
712 void Term()
713 {
714 AtlWinModuleTerm(this, _AtlBaseModule.GetModuleInstance());
715 }
716
717 void AddCreateWndData(_AtlCreateWndData *pData, void *pObject)
718 {
719 AtlWinModuleAddCreateWndData(this, pData, pObject);
720 }
721
722 void *ExtractCreateWndData()
723 {
724 return AtlWinModuleExtractCreateWndData(this);
725 }
726 };
727
728 extern CAtlWinModule _AtlWinModule;
729
730 template<class T>
731 class CComPtr
732 {
733 public:
734 T *p;
735 public:
736 CComPtr()
737 {
738 p = NULL;
739 }
740
741 CComPtr(T *lp)
742 {
743 p = lp;
744 if (p != NULL)
745 p->AddRef();
746 }
747
748 CComPtr(const CComPtr<T> &lp)
749 {
750 p = lp.p;
751 if (p != NULL)
752 p->AddRef();
753 }
754
755 ~CComPtr()
756 {
757 if (p != NULL)
758 p->Release();
759 }
760
761 T *operator = (T *lp)
762 {
763 if (p != NULL)
764 p->Release();
765 p = lp;
766 if (p != NULL)
767 p->AddRef();
768 return *this;
769 }
770
771 T *operator = (const CComPtr<T> &lp)
772 {
773 if (p != NULL)
774 p->Release();
775 p = lp.p;
776 if (p != NULL)
777 p->AddRef();
778 return *this;
779 }
780
781 void Release()
782 {
783 if (p != NULL)
784 {
785 p->Release();
786 p = NULL;
787 }
788 }
789
790 void Attach(T *lp)
791 {
792 if (p != NULL)
793 p->Release();
794 p = lp;
795 }
796
797 T *Detach()
798 {
799 T *saveP;
800
801 saveP = p;
802 p = NULL;
803 return saveP;
804 }
805
806 T **operator & ()
807 {
808 ATLASSERT(p == NULL);
809 return &p;
810 }
811
812 operator T * ()
813 {
814 return p;
815 }
816
817 T *operator -> ()
818 {
819 ATLASSERT(p != NULL);
820 return p;
821 }
822 };
823
824 class CComBSTR
825 {
826 public:
827 BSTR m_str;
828 public:
829 CComBSTR(LPCOLESTR pSrc)
830 {
831 if (pSrc == NULL)
832 m_str = NULL;
833 else
834 m_str = ::SysAllocString(pSrc);
835 }
836 ~CComBSTR()
837 {
838 ::SysFreeString(m_str);
839 m_str = NULL;
840 }
841 };
842
843 class CComVariant : public tagVARIANT
844 {
845 public:
846 CComVariant()
847 {
848 ::VariantInit(this);
849 }
850
851 ~CComVariant()
852 {
853 Clear();
854 }
855
856 HRESULT Clear()
857 {
858 return ::VariantClear(this);
859 }
860 };
861
862 inline HRESULT __stdcall AtlAdvise(IUnknown *pUnkCP, IUnknown *pUnk, const IID &iid, LPDWORD pdw)
863 {
864 CComPtr<IConnectionPointContainer> container;
865 CComPtr<IConnectionPoint> connectionPoint;
866 HRESULT hResult;
867
868 if (pUnkCP == NULL)
869 return E_INVALIDARG;
870 hResult = pUnkCP->QueryInterface(IID_IConnectionPointContainer, (void **)&container);
871 if (FAILED(hResult))
872 return hResult;
873 hResult = container->FindConnectionPoint(iid, &connectionPoint);
874 if (FAILED(hResult))
875 return hResult;
876 return connectionPoint->Advise(pUnk, pdw);
877 }
878
879 inline HRESULT __stdcall AtlUnadvise(IUnknown *pUnkCP, const IID &iid, DWORD dw)
880 {
881 CComPtr<IConnectionPointContainer> container;
882 CComPtr<IConnectionPoint> connectionPoint;
883 HRESULT hResult;
884
885 if (pUnkCP == NULL)
886 return E_INVALIDARG;
887 hResult = pUnkCP->QueryInterface(IID_IConnectionPointContainer, (void **)&container);
888 if (FAILED(hResult))
889 return hResult;
890 hResult = container->FindConnectionPoint(iid, &connectionPoint);
891 if (FAILED(hResult))
892 return hResult;
893 return connectionPoint->Unadvise(dw);
894 }
895
896 inline HRESULT __stdcall AtlInternalQueryInterface(void *pThis, const _ATL_INTMAP_ENTRY *pEntries, REFIID iid, void **ppvObject)
897 {
898 int i;
899 IUnknown *resultInterface;
900 HRESULT hResult;
901
902 ATLASSERT(pThis != NULL && pEntries != NULL);
903 if (pThis == NULL || pEntries == NULL)
904 return E_INVALIDARG;
905 ATLASSERT(ppvObject != NULL);
906 if (ppvObject == NULL)
907 return E_POINTER;
908
909 if (InlineIsEqualUnknown(iid))
910 {
911 resultInterface = reinterpret_cast<IUnknown *>(reinterpret_cast<char *>(pThis) + pEntries[0].dw);
912 *ppvObject = resultInterface;
913 resultInterface->AddRef();
914 return S_OK;
915 }
916
917 i = 0;
918 while (pEntries[i].pFunc != 0)
919 {
920 if (pEntries[i].piid == NULL || InlineIsEqualGUID(iid, *pEntries[i].piid))
921 {
922 if (pEntries[i].pFunc == reinterpret_cast<_ATL_CREATORARGFUNC *>(1))
923 {
924 ATLASSERT(pEntries[i].piid != NULL);
925 resultInterface = reinterpret_cast<IUnknown *>(reinterpret_cast<char *>(pThis) + pEntries[i].dw);
926 *ppvObject = resultInterface;
927 resultInterface->AddRef();
928 return S_OK;
929 }
930 else
931 {
932 hResult = pEntries[i].pFunc(pThis, iid, ppvObject, 0);
933 if (hResult == S_OK || (FAILED(hResult) && pEntries[i].piid != NULL))
934 return hResult;
935 }
936 break;
937 }
938 i++;
939 }
940 *ppvObject = NULL;
941 return E_NOINTERFACE;
942 }
943
944 inline HRESULT __stdcall AtlWinModuleInit(_ATL_WIN_MODULE *pWinModule)
945 {
946 if (pWinModule == NULL)
947 return E_INVALIDARG;
948 pWinModule->m_pCreateWndList = NULL;
949 return pWinModule->m_csWindowCreate.Init();
950 }
951
952 inline HRESULT __stdcall AtlWinModuleTerm(_ATL_WIN_MODULE *pWinModule, HINSTANCE hInst)
953 {
954 if (pWinModule == NULL)
955 return E_INVALIDARG;
956 pWinModule->m_csWindowCreate.Term();
957 return S_OK;
958 }
959
960 inline void __stdcall AtlWinModuleAddCreateWndData(_ATL_WIN_MODULE *pWinModule, _AtlCreateWndData *pData, void *pObject)
961 {
962 CComCritSecLock<CComCriticalSection> lock(pWinModule->m_csWindowCreate, true);
963
964 ATLASSERT(pWinModule != NULL);
965 ATLASSERT(pObject != NULL);
966
967 pData->m_pThis = pObject;
968 pData->m_dwThreadID = ::GetCurrentThreadId();
969 pData->m_pNext = pWinModule->m_pCreateWndList;
970 pWinModule->m_pCreateWndList = pData;
971 }
972
973 inline void *__stdcall AtlWinModuleExtractCreateWndData(_ATL_WIN_MODULE *pWinModule)
974 {
975 CComCritSecLock<CComCriticalSection> lock(pWinModule->m_csWindowCreate, true);
976 void *result;
977 _AtlCreateWndData *currentEntry;
978 _AtlCreateWndData **previousLink;
979 DWORD threadID;
980
981 ATLASSERT(pWinModule != NULL);
982
983 result = NULL;
984 threadID = GetCurrentThreadId();
985 currentEntry = pWinModule->m_pCreateWndList;
986 previousLink = &pWinModule->m_pCreateWndList;
987 while (currentEntry != NULL)
988 {
989 if (currentEntry->m_dwThreadID == threadID)
990 {
991 *previousLink = currentEntry->m_pNext;
992 result = currentEntry->m_pThis;
993 break;
994 }
995 previousLink = &currentEntry->m_pNext;
996 currentEntry = currentEntry->m_pNext;
997 }
998 return result;
999 }
1000
1001 }; // namespace ATL
1002
1003 #ifndef _ATL_NO_AUTOMATIC_NAMESPACE
1004 using namespace ATL;
1005 #endif //!_ATL_NO_AUTOMATIC_NAMESPACE