1
0
mirror of https://github.com/EduApps-CDG/OpenDX synced 2024-12-30 09:45:37 +01:00
OpenDX/src/util/com/com_object.h
Philip Rebohle cdf6ffb9bc
[util] Add private reference count to COM object
This can be used in case DXVK needs to keep a strong reference
to an object but may not expose that reference to the application.
2018-08-05 21:31:09 +02:00

73 lines
1.5 KiB
C++

#pragma once
#include <atomic>
#include "com_include.h"
namespace dxvk {
/**
* \brief Reference-counted COM object
*
* This can serve as a templated base class for most
* COM objects. It implements AddRef and Release from
* \c IUnknown, and provides methods to increment and
* decrement private references which are not visible
* to the application.
*
* Having two reference counters is sadly necessary
* in order to not break games which steal internal
* references if the refefence count of an object is
+ greater than they expect. DXVK sometimes requires
* holding on to objects which the application wants
* to delete.
*/
template<typename... Base>
class ComObject : public Base... {
public:
virtual ~ComObject() { }
ULONG STDMETHODCALLTYPE AddRef() {
ULONG refCount = m_refCount++;
if (refCount == 0ul)
AddRefPrivate();
return refCount;
}
ULONG STDMETHODCALLTYPE Release() {
ULONG refCount = --m_refCount;
if (refCount == 0ul)
ReleasePrivate();
return refCount;
}
void AddRefPrivate() {
++m_refPrivate;
}
void ReleasePrivate() {
if (--m_refPrivate == 0ul) {
m_refPrivate += 0x80000000;
delete this;
}
}
private:
std::atomic<ULONG> m_refCount = { 0ul };
std::atomic<ULONG> m_refPrivate = { 0ul };
};
template<typename T>
inline void InitReturnPtr(T** ptr) {
if (ptr != nullptr)
*ptr = nullptr;
}
}