#ifndef CEF_LIBCEF_DLL_CTOCPP_CTOCPP_REF_COUNTED_H_
#define CEF_LIBCEF_DLL_CTOCPP_CTOCPP_REF_COUNTED_H_
#pragma once
#include "include/base/cef_logging.h"
#include "include/capi/cef_base_capi.h"
#include "include/cef_base.h"
#include "libcef_dll/wrapper_types.h"
template <class ClassName, class BaseName, class StructName>
class CefCToCppRefCounted : public BaseName {
public:
CefCToCppRefCounted(const CefCToCppRefCounted&) = delete;
CefCToCppRefCounted& operator=(const CefCToCppRefCounted&) = delete;
static CefRefPtr<BaseName> Wrap(StructName* s);
static StructName* Unwrap(CefRefPtr<BaseName> c);
void AddRef() const {
UnderlyingAddRef();
ref_count_.AddRef();
}
bool Release() const;
bool HasOneRef() const { return UnderlyingHasOneRef(); }
bool HasAtLeastOneRef() const { return UnderlyingHasAtLeastOneRef(); }
protected:
CefCToCppRefCounted() = default;
virtual ~CefCToCppRefCounted() = default;
StructName* GetStruct() const {
WrapperStruct* wrapperStruct = GetWrapperStruct(this);
DCHECK_EQ(kWrapperType, wrapperStruct->type_);
return wrapperStruct->struct_;
}
private:
struct WrapperStruct;
static WrapperStruct* GetWrapperStruct(const BaseName* obj);
static StructName* UnwrapDerived(CefWrapperType type, BaseName* c);
NO_SANITIZE("cfi-icall")
void UnderlyingAddRef() const {
cef_base_ref_counted_t* base =
reinterpret_cast<cef_base_ref_counted_t*>(GetStruct());
if (base->add_ref)
base->add_ref(base);
}
NO_SANITIZE("cfi-icall")
bool UnderlyingRelease() const {
cef_base_ref_counted_t* base =
reinterpret_cast<cef_base_ref_counted_t*>(GetStruct());
if (!base->release)
return false;
return base->release(base) ? true : false;
}
NO_SANITIZE("cfi-icall")
bool UnderlyingHasOneRef() const {
cef_base_ref_counted_t* base =
reinterpret_cast<cef_base_ref_counted_t*>(GetStruct());
if (!base->has_one_ref)
return false;
return base->has_one_ref(base) ? true : false;
}
NO_SANITIZE("cfi-icall")
bool UnderlyingHasAtLeastOneRef() const {
cef_base_ref_counted_t* base =
reinterpret_cast<cef_base_ref_counted_t*>(GetStruct());
if (!base->has_at_least_one_ref)
return false;
return base->has_at_least_one_ref(base) ? true : false;
}
CefRefCount ref_count_;
static CefWrapperType kWrapperType;
};
template <class ClassName, class BaseName, class StructName>
struct CefCToCppRefCounted<ClassName, BaseName, StructName>::WrapperStruct {
CefWrapperType type_;
StructName* struct_;
ClassName wrapper_;
};
template <class ClassName, class BaseName, class StructName>
CefRefPtr<BaseName> CefCToCppRefCounted<ClassName, BaseName, StructName>::Wrap(
StructName* s) {
if (!s)
return nullptr;
WrapperStruct* wrapperStruct = new WrapperStruct;
wrapperStruct->type_ = kWrapperType;
wrapperStruct->struct_ = s;
CefRefPtr<BaseName> wrapperPtr(&wrapperStruct->wrapper_);
wrapperStruct->wrapper_.UnderlyingRelease();
return wrapperPtr;
}
template <class ClassName, class BaseName, class StructName>
StructName* CefCToCppRefCounted<ClassName, BaseName, StructName>::Unwrap(
CefRefPtr<BaseName> c) {
if (!c.get())
return nullptr;
WrapperStruct* wrapperStruct = GetWrapperStruct(c.get());
if (wrapperStruct->type_ != kWrapperType)
return UnwrapDerived(wrapperStruct->type_, c.get());
wrapperStruct->wrapper_.UnderlyingAddRef();
return wrapperStruct->struct_;
}
template <class ClassName, class BaseName, class StructName>
bool CefCToCppRefCounted<ClassName, BaseName, StructName>::Release() const {
UnderlyingRelease();
if (ref_count_.Release()) {
WrapperStruct* wrapperStruct = GetWrapperStruct(this);
DCHECK_EQ(kWrapperType, wrapperStruct->type_);
delete wrapperStruct;
return true;
}
return false;
}
template <class ClassName, class BaseName, class StructName>
typename CefCToCppRefCounted<ClassName, BaseName, StructName>::WrapperStruct*
CefCToCppRefCounted<ClassName, BaseName, StructName>::GetWrapperStruct(
const BaseName* obj) {
return reinterpret_cast<WrapperStruct*>(
reinterpret_cast<char*>(const_cast<BaseName*>(obj)) -
(sizeof(WrapperStruct) - sizeof(ClassName)));
}
#endif