1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416
|
/** @file
* ATL lookalike, just the tiny subset we actually need.
*/
/*
* Copyright (C) 2016-2025 Oracle and/or its affiliates.
*
* This file is part of VirtualBox base platform packages, as
* available from https://www.virtualbox.org.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, in version 3 of the
* License.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <https://www.gnu.org/licenses>.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
* in the VirtualBox distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*
* SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
*/
#ifndef VBOX_INCLUDED_com_microatl_h
#define VBOX_INCLUDED_com_microatl_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
#include <VBox/cdefs.h> /* VBOX_STRICT */
#include <iprt/assert.h>
#include <iprt/critsect.h>
#include <iprt/errcore.h> /* RT_FAILURE() */
#include <iprt/win/windows.h>
#include <new>
namespace ATL
{
#define ATL_NO_VTABLE __declspec(novtable)
class CAtlModule;
__declspec(selectany) CAtlModule *_pAtlModule = NULL;
class CComModule;
__declspec(selectany) CComModule *_pModule = NULL;
typedef HRESULT (WINAPI FNCREATEINSTANCE)(void *pv, REFIID riid, void **ppv);
typedef FNCREATEINSTANCE *PFNCREATEINSTANCE;
typedef HRESULT (WINAPI FNINTERFACEMAPHELPER)(void *pv, REFIID riid, void **ppv, DWORD_PTR dw);
typedef FNINTERFACEMAPHELPER *PFNINTERFACEMAPHELPER;
typedef void (__stdcall FNATLTERMFUNC)(void *pv);
typedef FNATLTERMFUNC *PFNATLTERMFUNC;
struct _ATL_TERMFUNC_ELEM
{
PFNATLTERMFUNC pfn;
void *pv;
_ATL_TERMFUNC_ELEM *pNext;
};
struct _ATL_INTMAP_ENTRY
{
const IID *piid; // interface ID
DWORD_PTR dw;
PFNINTERFACEMAPHELPER pFunc; // NULL: end of array, 1: offset based map entry, other: function pointer
};
#define COM_SIMPLEMAPENTRY ((ATL::PFNINTERFACEMAPHELPER)1)
#define DECLARE_CLASSFACTORY_EX(c) typedef ATL::CComCreator<ATL::CComObjectNoLock<c> > _ClassFactoryCreatorClass;
#define DECLARE_CLASSFACTORY() DECLARE_CLASSFACTORY_EX(ATL::CComClassFactory)
#define DECLARE_CLASSFACTORY_SINGLETON(o) DECLARE_CLASSFACTORY_EX(ATL::CComClassFactorySingleton<o>)
#define DECLARE_AGGREGATABLE(c) \
public: \
typedef ATL::CComCreator2<ATL::CComCreator<ATL::CComObject<c> >, ATL::CComCreator<ATL::CComAggObject<c> > > _CreatorClass;
#define DECLARE_NOT_AGGREGATABLE(c) \
public: \
typedef ATL::CComCreator2<ATL::CComCreator<ATL::CComObject<c> >, ATL::CComFailCreator<CLASS_E_NOAGGREGATION> > _CreatorClass;
#define DECLARE_PROTECT_FINAL_CONSTRUCT() \
void InternalFinalConstructAddRef() \
{ \
InternalAddRef(); \
} \
void InternalFinalConstructRelease() \
{ \
InternalRelease(); \
}
#define BEGIN_COM_MAP(c) \
public: \
typedef c _ComClass; \
HRESULT _InternalQueryInterface(REFIID iid, void **ppvObj) throw() \
{ \
return InternalQueryInterface(this, _GetEntries(), iid, ppvObj); \
} \
const static ATL::_ATL_INTMAP_ENTRY *WINAPI _GetEntries() throw() \
{ \
static const ATL::_ATL_INTMAP_ENTRY _aInterfaces[] = \
{
#define COM_INTERFACE_ENTRY(c) \
{ &__uuidof(c), (DWORD_PTR)(static_cast<c *>((_ComClass *)8))-8, COM_SIMPLEMAPENTRY },
#define COM_INTERFACE_ENTRY2(c, c2) \
{ &__uuidof(c), (DWORD_PTR)(static_cast<c *>(static_cast<c2 *>((_ComClass *)8)))-8, COM_SIMPLEMAPENTRY },
#define COM_INTERFACE_ENTRY_AGGREGATE(iid, pUnk) \
{ &iid, (DWORD_PTR)RT_UOFFSETOF(_ComClass, pUnk), _Delegate},
#define END_COM_MAP() \
{ NULL, 0, NULL} \
}; \
return _aInterfaces; \
} \
virtual ULONG STDMETHODCALLTYPE AddRef(void) throw() RT_OVERRIDE = 0; \
virtual ULONG STDMETHODCALLTYPE Release(void) throw() RT_OVERRIDE = 0; \
STDMETHOD(QueryInterface)(REFIID, void **) throw() RT_OVERRIDE = 0;
struct _ATL_OBJMAP_ENTRY
{
const CLSID *pclsid;
PFNCREATEINSTANCE pfnGetClassObject;
PFNCREATEINSTANCE pfnCreateInstance;
IUnknown *pCF;
DWORD dwRegister;
};
#define BEGIN_OBJECT_MAP(o) static ATL::_ATL_OBJMAP_ENTRY o[] = {
#define END_OBJECT_MAP() {NULL, NULL, NULL, NULL, 0}};
#define OBJECT_ENTRY(clsid, c) {&clsid, c::_ClassFactoryCreatorClass::CreateInstance, c::_CreatorClass::CreateInstance, NULL, 0 },
class CComCriticalSection
{
public:
CComCriticalSection() throw()
{
memset(&m_CritSect, 0, sizeof(m_CritSect));
}
~CComCriticalSection()
{
}
HRESULT Lock() throw()
{
RTCritSectEnter(&m_CritSect);
return S_OK;
}
HRESULT Unlock() throw()
{
RTCritSectLeave(&m_CritSect);
return S_OK;
}
HRESULT Init() throw()
{
HRESULT hrc = S_OK;
if (RT_FAILURE(RTCritSectInit(&m_CritSect)))
hrc = E_FAIL;
return hrc;
}
HRESULT Term() throw()
{
RTCritSectDelete(&m_CritSect);
return S_OK;
}
RTCRITSECT m_CritSect;
};
template<class TLock>
class CComCritSectLockManual
{
public:
CComCritSectLockManual(CComCriticalSection &cs)
: m_cs(cs)
, m_fLocked(false)
{
}
~CComCritSectLockManual() throw()
{
if (m_fLocked)
Unlock();
}
HRESULT Lock()
{
Assert(!m_fLocked);
HRESULT hrc = m_cs.Lock();
if (FAILED(hrc))
return hrc;
m_fLocked = true;
return S_OK;
}
void Unlock() throw()
{
Assert(m_fLocked);
m_cs.Unlock();
m_fLocked = false;
}
private:
TLock &m_cs;
bool m_fLocked;
CComCritSectLockManual(const CComCritSectLockManual&) throw(); // Do not call.
CComCritSectLockManual &operator=(const CComCritSectLockManual &) throw(); // Do not call.
};
#ifdef RT_EXCEPTIONS_ENABLED
/** This is called CComCritSecLock in real ATL... */
template<class TLock>
class CComCritSectLock : public CComCritSectLockManual<TLock>
{
public:
CComCritSectLock(CComCriticalSection &cs, bool fInitialLock = true)
: CComCritSectLockManual(cs)
{
if (fInitialLock)
{
HRESULT hrc = this->Lock();
if (FAILED(hrc))
throw hrc;
}
}
private:
CComCritSectLock(const CComCritSectLock&) throw(); // Do not call.
CComCritSectLock &operator=(const CComCritSectLock &) throw(); // Do not call.
};
#endif
class CComFakeCriticalSection
{
public:
HRESULT Lock() throw()
{
return S_OK;
}
HRESULT Unlock() throw()
{
return S_OK;
}
HRESULT Init() throw()
{
return S_OK;
}
HRESULT Term() throw()
{
return S_OK;
}
};
class CComAutoCriticalSection : public CComCriticalSection
{
public:
CComAutoCriticalSection()
{
HRESULT hrc = CComCriticalSection::Init();
if (FAILED(hrc))
throw hrc;
}
~CComAutoCriticalSection() throw()
{
CComCriticalSection::Term();
}
private :
HRESULT Init() throw(); // Do not call.
HRESULT Term() throw(); // Do not call.
};
class CComAutoDeleteCriticalSection : public CComCriticalSection
{
public:
CComAutoDeleteCriticalSection(): m_fInit(false)
{
}
~CComAutoDeleteCriticalSection() throw()
{
if (!m_fInit)
return;
m_fInit = false;
CComCriticalSection::Term();
}
HRESULT Init() throw()
{
Assert(!m_fInit);
HRESULT hrc = CComCriticalSection::Init();
if (SUCCEEDED(hrc))
m_fInit = true;
return hrc;
}
HRESULT Lock()
{
Assert(m_fInit);
return CComCriticalSection::Lock();
}
HRESULT Unlock()
{
Assert(m_fInit);
return CComCriticalSection::Unlock();
}
private:
HRESULT Term() throw();
bool m_fInit;
};
class CComMultiThreadModelNoCS
{
public:
static ULONG WINAPI Increment(LONG *pL) throw()
{
return InterlockedIncrement(pL);
}
static ULONG WINAPI Decrement(LONG *pL) throw()
{
return InterlockedDecrement(pL);
}
typedef CComFakeCriticalSection AutoCriticalSection;
typedef CComFakeCriticalSection AutoDeleteCriticalSection;
typedef CComMultiThreadModelNoCS ThreadModelNoCS;
};
class CComMultiThreadModel
{
public:
static ULONG WINAPI Increment(LONG *pL) throw()
{
return InterlockedIncrement(pL);
}
static ULONG WINAPI Decrement(LONG *pL) throw()
{
return InterlockedDecrement(pL);
}
typedef CComAutoCriticalSection AutoCriticalSection;
typedef CComAutoDeleteCriticalSection AutoDeleteCriticalSection;
typedef CComMultiThreadModelNoCS ThreadModelNoCS;
};
class ATL_NO_VTABLE CAtlModule
{
public:
static GUID m_LibID;
CComCriticalSection m_csStaticDataInitAndTypeInfo;
CAtlModule() throw()
{
// One instance only per linking namespace!
AssertMsg(!_pAtlModule, ("CAtlModule: trying to create more than one instance per linking namespace\n"));
fInit = false;
m_cLock = 0;
m_pTermFuncs = NULL;
_pAtlModule = this;
if (FAILED(m_csStaticDataInitAndTypeInfo.Init()))
{
AssertMsgFailed(("CAtlModule: failed to init critsect\n"));
return;
}
fInit = true;
}
void Term() throw()
{
if (!fInit)
return;
// Call all term functions.
if (m_pTermFuncs)
{
_ATL_TERMFUNC_ELEM *p = m_pTermFuncs;
_ATL_TERMFUNC_ELEM *pNext;
while (p)
{
p->pfn(p->pv);
pNext = p->pNext;
delete p;
p = pNext;
}
m_pTermFuncs = NULL;
}
m_csStaticDataInitAndTypeInfo.Term();
fInit = false;
}
virtual ~CAtlModule() throw()
{
Term();
}
virtual LONG Lock() throw()
{
return CComMultiThreadModel::Increment(&m_cLock);
}
virtual LONG Unlock() throw()
{
return CComMultiThreadModel::Decrement(&m_cLock);
}
virtual LONG GetLockCount() throw()
{
return m_cLock;
}
HRESULT AddTermFunc(PFNATLTERMFUNC pfn, void *pv)
{
_ATL_TERMFUNC_ELEM *pNew = new(std::nothrow) _ATL_TERMFUNC_ELEM;
if (!pNew)
return E_OUTOFMEMORY;
pNew->pfn = pfn;
pNew->pv = pv;
CComCritSectLockManual<CComCriticalSection> lock(m_csStaticDataInitAndTypeInfo);
HRESULT hrc = lock.Lock();
if (SUCCEEDED(hrc))
{
pNew->pNext = m_pTermFuncs;
m_pTermFuncs = pNew;
}
else
{
delete pNew;
AssertMsgFailed(("CComModule::AddTermFunc: failed to lock critsect\n"));
}
return hrc;
}
protected:
bool fInit;
LONG m_cLock;
_ATL_TERMFUNC_ELEM *m_pTermFuncs;
};
__declspec(selectany) GUID CAtlModule::m_LibID = {0x0, 0x0, 0x0, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0} };
struct _ATL_COM_MODULE
{
HINSTANCE m_hInstTypeLib;
CComCriticalSection m_csObjMap;
};
#ifndef _delayimp_h
extern "C" IMAGE_DOS_HEADER __ImageBase;
#endif
class CAtlComModule : public _ATL_COM_MODULE
{
public:
static bool m_fInitFailed;
CAtlComModule() throw()
{
m_hInstTypeLib = reinterpret_cast<HINSTANCE>(&__ImageBase);
if (FAILED(m_csObjMap.Init()))
{
AssertMsgFailed(("CAtlComModule: critsect init failed\n"));
m_fInitFailed = true;
return;
}
}
~CAtlComModule()
{
Term();
}
void Term()
{
m_csObjMap.Term();
}
};
__declspec(selectany) bool CAtlComModule::m_fInitFailed = false;
__declspec(selectany) CAtlComModule _AtlComModule;
template <class T> class ATL_NO_VTABLE CAtlModuleT : public CAtlModule
{
public:
CAtlModuleT() throw()
{
T::InitLibId();
}
static void InitLibId() throw()
{
}
};
/**
*
* This class not _not_ be statically instantiated as a global variable! It may
* use VBoxRT before it's initialized otherwise, messing up logging and whatnot.
*
* When possible create the instance inside the TrustedMain() or main() as a
* stack variable. In DLLs use 'new' to instantiate it in the DllMain function.
*/
class CComModule : public CAtlModuleT<CComModule>
{
public:
CComModule()
{
// One instance only per linking namespace!
AssertMsg(!_pModule, ("CComModule: trying to create more than one instance per linking namespace\n"));
_pModule = this;
m_pObjMap = NULL;
}
~CComModule()
{
}
_ATL_OBJMAP_ENTRY *m_pObjMap;
HRESULT Init(_ATL_OBJMAP_ENTRY *p, HINSTANCE h, const GUID *pLibID = NULL) throw()
{
RT_NOREF1(h);
if (pLibID)
m_LibID = *pLibID;
// Go over the object map to do some sanity checking, making things
// crash early if something is seriously busted.
_ATL_OBJMAP_ENTRY *pEntry;
if (p != (_ATL_OBJMAP_ENTRY *)-1)
{
m_pObjMap = p;
if (m_pObjMap)
{
pEntry = m_pObjMap;
while (pEntry->pclsid)
pEntry++;
}
}
return S_OK;
}
void Term() throw()
{
_ATL_OBJMAP_ENTRY *pEntry;
if (m_pObjMap)
{
pEntry = m_pObjMap;
while (pEntry->pclsid)
{
if (pEntry->pCF)
pEntry->pCF->Release();
pEntry->pCF = NULL;
pEntry++;
}
}
CAtlModuleT<CComModule>::Term();
}
HRESULT GetClassObject(REFCLSID rclsid, REFIID riid, void **ppv) throw()
{
*ppv = NULL;
HRESULT hrc = S_OK;
if (m_pObjMap)
{
const _ATL_OBJMAP_ENTRY *pEntry = m_pObjMap;
while (pEntry->pclsid)
{
if (pEntry->pfnGetClassObject && rclsid == *pEntry->pclsid)
{
if (!pEntry->pCF)
{
CComCritSectLockManual<CComCriticalSection> lock(_AtlComModule.m_csObjMap);
hrc = lock.Lock();
if (FAILED(hrc))
{
AssertMsgFailed(("CComModule::GetClassObject: failed to lock critsect\n"));
break;
}
if (!pEntry->pCF)
{
hrc = pEntry->pfnGetClassObject(pEntry->pfnCreateInstance, __uuidof(IUnknown), (void **)&pEntry->pCF);
}
}
if (pEntry->pCF)
{
hrc = pEntry->pCF->QueryInterface(riid, ppv);
}
break;
}
pEntry++;
}
}
return hrc;
}
// For EXE only: register all class factories with COM.
HRESULT RegisterClassObjects(DWORD dwClsContext, DWORD dwFlags) throw()
{
HRESULT hrc = S_OK;
_ATL_OBJMAP_ENTRY *pEntry;
if (m_pObjMap)
{
pEntry = m_pObjMap;
while (pEntry->pclsid && SUCCEEDED(hrc))
{
if (pEntry->pfnGetClassObject)
{
IUnknown *p;
hrc = pEntry->pfnGetClassObject(pEntry->pfnCreateInstance, __uuidof(IUnknown), (void **)&p);
if (SUCCEEDED(hrc))
hrc = CoRegisterClassObject(*(pEntry->pclsid), p, dwClsContext, dwFlags, &pEntry->dwRegister);
if (p)
p->Release();
}
pEntry++;
}
}
return hrc;
}
// For EXE only: revoke all class factories with COM.
HRESULT RevokeClassObjects() throw()
{
HRESULT hrc = S_OK;
_ATL_OBJMAP_ENTRY *pEntry;
if (m_pObjMap != NULL)
{
pEntry = m_pObjMap;
while (pEntry->pclsid && SUCCEEDED(hrc))
{
if (pEntry->dwRegister)
hrc = CoRevokeClassObject(pEntry->dwRegister);
pEntry++;
}
}
return hrc;
}
};
template <class T> class CComCreator
{
public:
static HRESULT WINAPI CreateInstance(void *pv, REFIID riid, void **ppv)
{
AssertReturn(ppv, E_POINTER);
*ppv = NULL;
HRESULT hrc = E_OUTOFMEMORY;
T *p = new(std::nothrow) T(pv);
if (p)
{
p->SetVoid(pv);
p->InternalFinalConstructAddRef();
hrc = p->_AtlInitialConstruct();
if (SUCCEEDED(hrc))
hrc = p->FinalConstruct();
p->InternalFinalConstructRelease();
if (SUCCEEDED(hrc))
hrc = p->QueryInterface(riid, ppv);
if (FAILED(hrc))
delete p;
}
return hrc;
}
};
template <HRESULT hrc> class CComFailCreator
{
public:
static HRESULT WINAPI CreateInstance(void *, REFIID, void **ppv)
{
AssertReturn(ppv, E_POINTER);
*ppv = NULL;
return hrc;
}
};
template <class T1, class T2> class CComCreator2
{
public:
static HRESULT WINAPI CreateInstance(void *pv, REFIID riid, void **ppv)
{
AssertReturn(ppv, E_POINTER);
return !pv ? T1::CreateInstance(NULL, riid, ppv) : T2::CreateInstance(pv, riid, ppv);
}
};
template <class Base> class CComObjectCached : public Base
{
public:
CComObjectCached(void * = NULL)
{
}
virtual ~CComObjectCached()
{
// Catch refcount screwups by setting refcount to -(LONG_MAX/2).
this->m_iRef = -(LONG_MAX/2);
this->FinalRelease();
}
STDMETHOD_(ULONG, AddRef)() throw()
{
// If you get errors about undefined InternalAddRef then Base does not
// derive from CComObjectRootEx.
ULONG l = this->InternalAddRef();
if (l == 2)
{
AssertMsg(_pAtlModule, ("ATL: referring to ATL module without having one declared in this linking namespace\n"));
_pAtlModule->Lock();
}
return l;
}
STDMETHOD_(ULONG, Release)() throw()
{
// If you get errors about undefined InternalRelease then Base does not
// derive from CComObjectRootEx.
ULONG l = this->InternalRelease();
if (l == 0)
delete this;
else if (l == 1)
{
AssertMsg(_pAtlModule, ("ATL: referring to ATL module without having one declared in this linking namespace\n"));
_pAtlModule->Unlock();
}
return l;
}
STDMETHOD(QueryInterface)(REFIID iid, void **ppvObj) throw()
{
// If you get errors about undefined _InternalQueryInterface then
// double check BEGIN_COM_MAP in the class definition.
return this->_InternalQueryInterface(iid, ppvObj);
}
static HRESULT WINAPI CreateInstance(CComObjectCached<Base> **pp) throw()
{
AssertReturn(pp, E_POINTER);
*pp = NULL;
HRESULT hrc = E_OUTOFMEMORY;
CComObjectCached<Base> *p = new(std::nothrow) CComObjectCached<Base>();
if (p)
{
p->SetVoid(NULL);
p->InternalFinalConstructAddRef();
hrc = p->_AtlInitialConstruct();
if (SUCCEEDED(hrc))
hrc = p->FinalConstruct();
p->InternalFinalConstructRelease();
if (FAILED(hrc))
delete p;
else
*pp = p;
}
return hrc;
}
};
template <class Base> class CComObjectNoLock : public Base
{
public:
CComObjectNoLock(void * = NULL)
{
}
virtual ~CComObjectNoLock()
{
// Catch refcount screwups by setting refcount to -(LONG_MAX/2).
this->m_iRef = -(LONG_MAX/2);
this->FinalRelease();
}
STDMETHOD_(ULONG, AddRef)() throw()
{
// If you get errors about undefined InternalAddRef then Base does not
// derive from CComObjectRootEx.
return this->InternalAddRef();
}
STDMETHOD_(ULONG, Release)() throw()
{
// If you get errors about undefined InternalRelease then Base does not
// derive from CComObjectRootEx.
ULONG l = this->InternalRelease();
if (l == 0)
delete this;
return l;
}
STDMETHOD(QueryInterface)(REFIID iid, void **ppvObj) throw()
{
// If you get errors about undefined _InternalQueryInterface then
// double check BEGIN_COM_MAP in the class definition.
return this->_InternalQueryInterface(iid, ppvObj);
}
};
class CComTypeInfoHolder
{
/** @todo implement type info caching, making stuff more efficient - would we benefit? */
public:
const GUID *m_pGUID;
const GUID *m_pLibID;
WORD m_iMajor;
WORD m_iMinor;
ITypeInfo *m_pTInfo;
HRESULT GetTypeInfo(UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)
{
if (iTInfo != 0)
return DISP_E_BADINDEX;
return GetTI(lcid, ppTInfo);
}
HRESULT GetIDsOfNames(REFIID riid, LPOLESTR *pwszNames, UINT cNames, LCID lcid, DISPID *pDispID)
{
RT_NOREF1(riid); /* should be IID_NULL */
HRESULT hrc = FetchTI(lcid);
if (m_pTInfo)
hrc = m_pTInfo->GetIDsOfNames(pwszNames, cNames, pDispID);
return hrc;
}
HRESULT Invoke(IDispatch *p, DISPID DispID, REFIID riid, LCID lcid, WORD iFlags, DISPPARAMS *pDispParams,
VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
{
RT_NOREF1(riid); /* should be IID_NULL */
HRESULT hrc = FetchTI(lcid);
if (m_pTInfo)
hrc = m_pTInfo->Invoke(p, DispID, iFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
return hrc;
}
private:
static void __stdcall Cleanup(void *pv)
{
AssertReturnVoid(pv);
CComTypeInfoHolder *p = (CComTypeInfoHolder *)pv;
if (p->m_pTInfo != NULL)
p->m_pTInfo->Release();
p->m_pTInfo = NULL;
}
HRESULT GetTI(LCID lcid)
{
AssertMsg(_pAtlModule, ("ATL: referring to ATL module without having one declared in this linking namespace\n"));
Assert(m_pLibID && m_pGUID);
if (m_pTInfo)
return S_OK;
CComCritSectLockManual<CComCriticalSection> lock(_pAtlModule->m_csStaticDataInitAndTypeInfo);
HRESULT hrc = lock.Lock();
if (SUCCEEDED(hrc))
{
ITypeLib *pTypeLib = NULL;
Assert(*m_pLibID != GUID_NULL);
hrc = LoadRegTypeLib(*m_pLibID, m_iMajor, m_iMinor, lcid, &pTypeLib);
if (SUCCEEDED(hrc))
{
ITypeInfo *pTypeInfo;
hrc = pTypeLib->GetTypeInfoOfGuid(*m_pGUID, &pTypeInfo);
if (SUCCEEDED(hrc))
{
ITypeInfo2 *pTypeInfo2;
if (SUCCEEDED(pTypeInfo->QueryInterface(__uuidof(ITypeInfo2), (void **)&pTypeInfo2)))
{
pTypeInfo->Release();
pTypeInfo = pTypeInfo2;
}
m_pTInfo = pTypeInfo;
_pAtlModule->AddTermFunc(Cleanup, (void *)this);
}
pTypeLib->Release();
}
}
return hrc;
}
HRESULT GetTI(LCID lcid, ITypeInfo **ppTInfo)
{
AssertReturn(ppTInfo, E_POINTER);
HRESULT hrc = S_OK;
if (!m_pTInfo)
hrc = GetTI(lcid);
if (m_pTInfo)
{
m_pTInfo->AddRef();
hrc = S_OK;
}
*ppTInfo = m_pTInfo;
return hrc;
}
HRESULT FetchTI(LCID lcid)
{
if (!m_pTInfo)
return GetTI(lcid);
return S_OK;
}
};
template <class ThreadModel> class CComObjectRootEx
{
public:
typedef ThreadModel _ThreadModel;
CComObjectRootEx()
{
m_iRef = 0L;
}
~CComObjectRootEx()
{
}
ULONG InternalAddRef()
{
Assert(m_iRef != -1L);
return ThreadModel::Increment(&m_iRef);
}
ULONG InternalRelease()
{
#ifdef VBOX_STRICT
LONG c = ThreadModel::Decrement(&m_iRef);
AssertMsg(c >= -(LONG_MAX / 2), /* See ~CComObjectNoLock, ~CComObject & ~CComAggObject. */
("Release called on object which has been already destroyed!\n"));
return c;
#else
return ThreadModel::Decrement(&m_iRef);
#endif
}
ULONG OuterAddRef()
{
return m_pOuterUnknown->AddRef();
}
ULONG OuterRelease()
{
return m_pOuterUnknown->Release();
}
HRESULT OuterQueryInterface(REFIID iid, void **ppvObject)
{
return m_pOuterUnknown->QueryInterface(iid, ppvObject);
}
HRESULT _AtlInitialConstruct()
{
return m_CritSect.Init();
}
void Lock()
{
m_CritSect.Lock();
}
void Unlock()
{
m_CritSect.Unlock();
}
void SetVoid(void *)
{
}
void InternalFinalConstructAddRef()
{
}
void InternalFinalConstructRelease()
{
Assert(m_iRef == 0);
}
HRESULT FinalConstruct()
{
return S_OK;
}
void FinalRelease()
{
}
static HRESULT WINAPI InternalQueryInterface(void *pThis, const _ATL_INTMAP_ENTRY *pEntries, REFIID iid, void **ppvObj)
{
AssertReturn(pThis, E_INVALIDARG);
AssertReturn(pEntries, E_INVALIDARG);
AssertReturn(ppvObj, E_POINTER);
*ppvObj = NULL;
if (iid == IID_IUnknown)
{
// For IUnknown use first interface, must be simple map entry.
Assert(pEntries->pFunc == COM_SIMPLEMAPENTRY);
IUnknown *pObj = (IUnknown *)((INT_PTR)pThis + pEntries->dw);
pObj->AddRef();
*ppvObj = pObj;
return S_OK;
}
while (pEntries->pFunc)
{
if (iid == *pEntries->piid)
{
if (pEntries->pFunc == COM_SIMPLEMAPENTRY)
{
IUnknown *pObj = (IUnknown *)((INT_PTR)pThis + pEntries->dw);
pObj->AddRef();
*ppvObj = pObj;
return S_OK;
}
else
return pEntries->pFunc(pThis, iid, ppvObj, pEntries->dw);
}
pEntries++;
}
return E_NOINTERFACE;
}
static HRESULT WINAPI _Delegate(void *pThis, REFIID iid, void **ppvObj, DWORD_PTR dw)
{
AssertPtrReturn(pThis, E_NOINTERFACE);
IUnknown *pObj = *(IUnknown **)((DWORD_PTR)pThis + dw);
// If this assertion fails then the object has a delegation with a NULL
// object pointer, which is highly unusual often means that the pointer
// was not set up correctly. Check the COM interface map of the class
// for bugs with initializing.
AssertPtrReturn(pObj, E_NOINTERFACE);
return pObj->QueryInterface(iid, ppvObj);
}
union
{
LONG m_iRef;
IUnknown *m_pOuterUnknown;
};
private:
typename ThreadModel::AutoDeleteCriticalSection m_CritSect;
};
template <class Base> class CComObject : public Base
{
public:
CComObject(void * = NULL) throw()
{
AssertMsg(_pAtlModule, ("ATL: referring to ATL module without having one declared in this linking namespace\n"));
_pAtlModule->Lock();
}
virtual ~CComObject() throw()
{
AssertMsg(_pAtlModule, ("ATL: referring to ATL module without having one declared in this linking namespace\n"));
// Catch refcount screwups by setting refcount to -(LONG_MAX/2).
this->m_iRef = -(LONG_MAX/2);
this->FinalRelease();
_pAtlModule->Unlock();
}
STDMETHOD_(ULONG, AddRef)()
{
// If you get errors about undefined InternalAddRef then Base does not
// derive from CComObjectRootEx.
return this->InternalAddRef();
}
STDMETHOD_(ULONG, Release)()
{
// If you get errors about undefined InternalRelease then Base does not
// derive from CComObjectRootEx.
ULONG l = this->InternalRelease();
if (l == 0)
delete this;
return l;
}
STDMETHOD(QueryInterface)(REFIID iid, void **ppvObj) throw()
{
// If you get errors about undefined _InternalQueryInterface then
// double check BEGIN_COM_MAP in the class definition.
return this->_InternalQueryInterface(iid, ppvObj);
}
static HRESULT WINAPI CreateInstance(CComObject<Base> **pp) throw()
{
AssertReturn(pp, E_POINTER);
*pp = NULL;
HRESULT hrc = E_OUTOFMEMORY;
CComObject<Base> *p = NULL;
#ifdef RT_EXCEPTIONS_ENABLED
try
{
#endif
p = new CComObject<Base>();
#ifdef RT_EXCEPTIONS_ENABLED
}
catch (std::bad_alloc &)
{
p = NULL;
}
#endif
if (p)
{
p->InternalFinalConstructAddRef();
#ifdef RT_EXCEPTIONS_ENABLED
try
{
#endif
hrc = p->_AtlInitialConstruct();
if (SUCCEEDED(hrc))
hrc = p->FinalConstruct();
#ifdef RT_EXCEPTIONS_ENABLED
}
catch (std::bad_alloc &)
{
hrc = E_OUTOFMEMORY;
}
#endif
p->InternalFinalConstructRelease();
if (FAILED(hrc))
{
delete p;
p = NULL;
}
}
*pp = p;
return hrc;
}
};
template <class T, const IID *piid, const GUID *pLibID, WORD iMajor = 1, WORD iMinor = 0>
class ATL_NO_VTABLE IDispatchImpl : public T
{
public:
// IDispatch
STDMETHOD(GetTypeInfoCount)(UINT *pcTInfo)
{
if (!pcTInfo)
return E_POINTER;
*pcTInfo = 1;
return S_OK;
}
STDMETHOD(GetTypeInfo)(UINT cTInfo, LCID lcid, ITypeInfo **ppTInfo)
{
return tih.GetTypeInfo(cTInfo, lcid, ppTInfo);
}
STDMETHOD(GetIDsOfNames)(REFIID riid, LPOLESTR *pwszNames, UINT cNames, LCID lcid, DISPID *pDispID)
{
return tih.GetIDsOfNames(riid, pwszNames, cNames, lcid, pDispID);
}
STDMETHOD(Invoke)(DISPID DispID, REFIID riid, LCID lcid, WORD iFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
{
return tih.Invoke((IDispatch *)this, DispID, riid, lcid, iFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
}
protected:
static CComTypeInfoHolder tih;
static HRESULT GetTI(LCID lcid, ITypeInfo **ppTInfo)
{
return tih.GetTI(lcid, ppTInfo);
}
};
template <class T, const IID *piid, const GUID *pLibID, WORD iMajor, WORD iMinor>
CComTypeInfoHolder IDispatchImpl<T, piid, pLibID, iMajor, iMinor>::tih = { piid, pLibID, iMajor, iMinor, NULL };
template <class Base> class CComContainedObject : public Base
{
public:
CComContainedObject(void *pv)
{
this->m_pOuterUnknown = (IUnknown *)pv;
}
STDMETHOD_(ULONG, AddRef)() throw()
{
return this->OuterAddRef();
}
STDMETHOD_(ULONG, Release)() throw()
{
return this->OuterRelease();
}
STDMETHOD(QueryInterface)(REFIID iid, void **ppvObj) throw()
{
return this->OuterQueryInterface(iid, ppvObj);
}
};
template <class Aggregated> class CComAggObject :
public IUnknown,
public CComObjectRootEx<typename Aggregated::_ThreadModel::ThreadModelNoCS>
{
public:
CComAggObject(void *pv) :
m_Aggregated(pv)
{
AssertMsg(_pAtlModule, ("ATL: referring to ATL module without having one declared in this linking namespace\n"));
_pAtlModule->Lock();
}
virtual ~CComAggObject()
{
AssertMsg(_pAtlModule, ("ATL: referring to ATL module without having one declared in this linking namespace\n"));
// Catch refcount screwups by setting refcount to -(LONG_MAX/2).
this->m_iRef = -(LONG_MAX/2);
this->FinalRelease();
_pAtlModule->Unlock();
}
HRESULT _AtlInitialConstruct()
{
HRESULT hrc = m_Aggregated._AtlInitialConstruct();
if (SUCCEEDED(hrc))
hrc = CComObjectRootEx<typename Aggregated::_ThreadModel::ThreadModelNoCS>::_AtlInitialConstruct();
return hrc;
}
HRESULT FinalConstruct()
{
CComObjectRootEx<Aggregated::_ThreadModel::ThreadModelNoCS>::FinalConstruct();
return m_Aggregated.FinalConstruct();
}
void FinalRelease()
{
CComObjectRootEx<Aggregated::_ThreadModel::ThreadModelNoCS>::FinalRelease();
m_Aggregated.FinalRelease();
}
STDMETHOD_(ULONG, AddRef)()
{
return this->InternalAddRef();
}
STDMETHOD_(ULONG, Release)()
{
ULONG l = this->InternalRelease();
if (l == 0)
delete this;
return l;
}
STDMETHOD(QueryInterface)(REFIID iid, void **ppvObj)
{
AssertReturn(ppvObj, E_POINTER);
*ppvObj = NULL;
HRESULT hrc = S_OK;
if (iid == __uuidof(IUnknown))
{
*ppvObj = (void *)(IUnknown *)this;
AddRef();
}
else
hrc = m_Aggregated._InternalQueryInterface(iid, ppvObj);
return hrc;
}
static HRESULT WINAPI CreateInstance(LPUNKNOWN pUnkOuter, CComAggObject<Aggregated> **pp)
{
AssertReturn(pp, E_POINTER);
*pp = NULL;
HRESULT hrc = E_OUTOFMEMORY;
CComAggObject<Aggregated> *p = new(std::nothrow) CComAggObject<Aggregated>(pUnkOuter);
if (p)
{
p->SetVoid(NULL);
p->InternalFinalConstructAddRef();
hrc = p->_AtlInitialConstruct();
if (SUCCEEDED(hrc))
hrc = p->FinalConstruct();
p->InternalFinalConstructRelease();
if (FAILED(hrc))
delete p;
else
*pp = p;
}
return hrc;
}
CComContainedObject<Aggregated> m_Aggregated;
};
class CComClassFactory:
public IClassFactory,
public CComObjectRootEx<CComMultiThreadModel>
{
public:
BEGIN_COM_MAP(CComClassFactory)
COM_INTERFACE_ENTRY(IClassFactory)
END_COM_MAP()
virtual ~CComClassFactory()
{
}
// IClassFactory
STDMETHOD(CreateInstance)(LPUNKNOWN pUnkOuter, REFIID riid, void **ppvObj)
{
Assert(m_pfnCreateInstance);
HRESULT hrc = E_POINTER;
if (ppvObj)
{
*ppvObj = NULL;
if (pUnkOuter && riid != __uuidof(IUnknown))
{
AssertMsgFailed(("CComClassFactory: cannot create an aggregated object other than IUnknown\n"));
hrc = CLASS_E_NOAGGREGATION;
}
else
hrc = m_pfnCreateInstance(pUnkOuter, riid, ppvObj);
}
return hrc;
}
STDMETHOD(LockServer)(BOOL fLock)
{
AssertMsg(_pAtlModule, ("ATL: referring to ATL module without having one declared in this linking namespace\n"));
if (fLock)
_pAtlModule->Lock();
else
_pAtlModule->Unlock();
return S_OK;
}
// Set creator for use by the factory.
void SetVoid(void *pv)
{
m_pfnCreateInstance = (PFNCREATEINSTANCE)pv;
}
PFNCREATEINSTANCE m_pfnCreateInstance;
};
template <class T> class CComClassFactorySingleton : public CComClassFactory
{
public:
CComClassFactorySingleton() :
m_hrc(S_OK),
m_pObj(NULL)
{
}
virtual ~CComClassFactorySingleton()
{
if (m_pObj)
m_pObj->Release();
}
// IClassFactory
STDMETHOD(CreateInstance)(LPUNKNOWN pUnkOuter, REFIID riid, void **ppvObj)
{
HRESULT hrc = E_POINTER;
if (ppvObj)
{
*ppvObj = NULL;
// Singleton factories do not support aggregation.
AssertReturn(!pUnkOuter, CLASS_E_NOAGGREGATION);
// Test if singleton is already created. Do it outside the lock,
// relying on atomic checks. Remember the inherent race!
if (SUCCEEDED(m_hrc) && !m_pObj)
{
Lock();
// Make sure that the module is in use, otherwise the
// module can terminate while we're creating a new
// instance, which leads to strange errors.
LockServer(true);
__try
{
// Repeat above test to avoid races when multiple threads
// want to create a singleton simultaneously.
if (SUCCEEDED(m_hrc) && !m_pObj)
{
CComObjectCached<T> *p;
m_hrc = CComObjectCached<T>::CreateInstance(&p);
if (SUCCEEDED(m_hrc))
{
m_hrc = p->QueryInterface(IID_IUnknown, (void **)&m_pObj);
if (FAILED(m_hrc))
{
delete p;
}
}
}
}
__finally
{
Unlock();
LockServer(false);
}
}
if (SUCCEEDED(m_hrc))
{
hrc = m_pObj->QueryInterface(riid, ppvObj);
}
else
{
hrc = m_hrc;
}
}
return hrc;
}
HRESULT m_hrc;
IUnknown *m_pObj;
};
template <class T, const CLSID *pClsID = &CLSID_NULL> class CComCoClass
{
public:
DECLARE_CLASSFACTORY()
DECLARE_AGGREGATABLE(T)
static const CLSID& WINAPI GetObjectCLSID()
{
return *pClsID;
}
template <class Q>
static HRESULT CreateInstance(Q **pp)
{
return T::_CreatorClass::CreateInstance(NULL, __uuidof(Q), (void **)pp);
}
};
} /* namespace ATL */
#endif /* !VBOX_INCLUDED_com_microatl_h */
|