2023-12-22 06:54:39 +00:00
|
|
|
/***
|
|
|
|
Copyright (C) 2023 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
|
|
|
|
File: CppHeapWrapper.hpp
|
|
|
|
Date: 2023-12-22
|
|
|
|
Author: Reece
|
|
|
|
***/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Aurora::Memory
|
|
|
|
{
|
|
|
|
template <class T>
|
|
|
|
struct CppHeapWrapper
|
|
|
|
{
|
|
|
|
using value_type = T;
|
|
|
|
|
|
|
|
using size_type = size_t;
|
|
|
|
using difference_type = ptrdiff_t;
|
|
|
|
|
|
|
|
using propagate_on_container_move_assignment = AuTrueType;
|
|
|
|
using is_always_equal = AuTrueType;
|
|
|
|
|
|
|
|
#if defined(AU_LANG_CPP_17)
|
|
|
|
using pointer = T *;
|
|
|
|
using const_pointer = const T *;
|
|
|
|
|
|
|
|
using reference = T &;
|
|
|
|
using const_reference = const T &;
|
|
|
|
|
|
|
|
template <class Z>
|
|
|
|
struct rebind
|
|
|
|
{
|
|
|
|
using other = CppHeapWrapper<Z>;
|
|
|
|
};
|
|
|
|
|
|
|
|
T *address(T &val) const noexcept
|
|
|
|
{
|
|
|
|
return std::addressof(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
const T *address(const T &val) const noexcept
|
|
|
|
{
|
|
|
|
return std::addressof(val);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
inline CppHeapWrapper(std::shared_ptr<Heap> pHeap) :
|
|
|
|
pHeap(pHeap)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
2024-01-30 08:55:08 +00:00
|
|
|
inline CppHeapWrapper(CppHeapWrapper *pFuckCppRetardsFixYourWorthlessSpec) :
|
|
|
|
pFuckCppRetardsFixYourWorthlessSpec(pFuckCppRetardsFixYourWorthlessSpec)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
inline CppHeapWrapper(const CppHeapWrapper &fuckCpp) :
|
|
|
|
pFuckCppRetardsFixYourWorthlessSpec((CppHeapWrapper *)&fuckCpp)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
AU_MOVE(CppHeapWrapper)
|
|
|
|
AU_DEF(CppHeapWrapper)
|
2023-12-22 06:54:39 +00:00
|
|
|
|
|
|
|
constexpr void deallocate(const T *pType,
|
|
|
|
const size_t count)
|
|
|
|
{
|
2024-01-30 08:55:08 +00:00
|
|
|
this->GetHeap()->Free((T *)pType);
|
2023-12-22 06:54:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
constexpr AU_ALLOC T *allocate(const size_t count)
|
|
|
|
{
|
|
|
|
if (!count)
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2024-01-30 08:55:08 +00:00
|
|
|
auto pData = this->GetHeap()->FAlloc(count * sizeof(T), alignof(T));
|
2023-12-22 06:54:39 +00:00
|
|
|
if (!pData)
|
|
|
|
{
|
|
|
|
throw std::bad_alloc();
|
|
|
|
}
|
|
|
|
return (T *)pData;
|
|
|
|
}
|
|
|
|
|
2024-01-30 08:55:08 +00:00
|
|
|
template <class U, class... Args >
|
|
|
|
void construct(U *p, Args&&... args)
|
|
|
|
{
|
|
|
|
if constexpr (AuIsClass_v<T>)
|
|
|
|
{
|
|
|
|
new ((void *)p) T(AuForward<Args &&>(args)...);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class U, class... Args >
|
|
|
|
void construct_at(U *p, Args&&... args)
|
|
|
|
{
|
|
|
|
if constexpr (AuIsClass_v<T>)
|
|
|
|
{
|
|
|
|
new ((void *)p) T(AuForward<Args &&>(args)...);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-22 06:54:39 +00:00
|
|
|
#if defined(AU_LANG_CPP_23)
|
|
|
|
constexpr std::allocation_result<T *> allocate_at_least(const size_t count)
|
|
|
|
{
|
2023-12-23 02:45:50 +00:00
|
|
|
auto pThat = this->allocate(count);
|
2024-01-30 08:55:08 +00:00
|
|
|
return { (T *)pThat, this->GetHeap()->GetChunkSize(pThat) / sizeof(T) };
|
2023-12-22 06:54:39 +00:00
|
|
|
}
|
|
|
|
#endif
|
2024-01-30 08:55:08 +00:00
|
|
|
|
|
|
|
std::shared_ptr<Heap> &GetHeap()
|
|
|
|
{
|
|
|
|
if (this->pFuckCppRetardsFixYourWorthlessSpec)
|
|
|
|
{
|
|
|
|
return this->pFuckCppRetardsFixYourWorthlessSpec->GetHeap();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return this->pHeap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetHeap(std::shared_ptr<Heap> pHeap)
|
|
|
|
{
|
|
|
|
if (this->pFuckCppRetardsFixYourWorthlessSpec)
|
|
|
|
{
|
|
|
|
this->pFuckCppRetardsFixYourWorthlessSpec->SetHeap(pHeap);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->pHeap = pHeap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::shared_ptr<Heap> pHeap;
|
|
|
|
CppHeapWrapper *pFuckCppRetardsFixYourWorthlessSpec {};
|
2023-12-22 06:54:39 +00:00
|
|
|
};
|
|
|
|
}
|