2022-04-07 07:57:02 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "CoreTypes.h"
|
2022-12-12 14:07:12 +00:00
|
|
|
#include "Memory/Memory.h"
|
2022-12-03 15:11:05 +00:00
|
|
|
#include "Templates/Meta.h"
|
2022-04-07 07:57:02 +00:00
|
|
|
#include "Templates/Invoke.h"
|
2022-04-08 03:44:36 +00:00
|
|
|
#include "Templates/Utility.h"
|
2022-04-07 07:57:02 +00:00
|
|
|
#include "TypeTraits/TypeTraits.h"
|
|
|
|
#include "Miscellaneous/AssertionMacros.h"
|
|
|
|
|
2022-12-12 14:07:12 +00:00
|
|
|
// NOTE: In the STL, the assignment operation of the std::any type uses the copy-and-swap idiom
|
|
|
|
// instead of directly calling the assignment operation of the contained value.
|
|
|
|
// But we don't follow the the copy-and-swap idiom, see "Templates/Any.h".
|
|
|
|
// This class implements assignment operations in a way that assumes no assignment operations of the type,
|
|
|
|
// because the assignment operations of TFunction are in most cases different between LHS and RHS.
|
|
|
|
|
2022-04-07 07:57:02 +00:00
|
|
|
NAMESPACE_REDCRAFT_BEGIN
|
|
|
|
NAMESPACE_MODULE_BEGIN(Redcraft)
|
|
|
|
NAMESPACE_MODULE_BEGIN(Utility)
|
|
|
|
|
2022-11-15 11:28:43 +00:00
|
|
|
template <CFunction F>
|
|
|
|
class TFunctionRef;
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-11-15 11:28:43 +00:00
|
|
|
template <CFunction F>
|
|
|
|
class TFunction;
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-11-15 11:28:43 +00:00
|
|
|
template <CFunction F>
|
|
|
|
class TUniqueFunction;
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-05-20 15:35:36 +00:00
|
|
|
NAMESPACE_PRIVATE_BEGIN
|
|
|
|
|
2022-05-14 14:52:21 +00:00
|
|
|
template <typename T> struct TIsTFunctionRef : FFalse { };
|
|
|
|
template <typename F> struct TIsTFunctionRef<TFunctionRef<F>> : FTrue { };
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-11-13 14:21:00 +00:00
|
|
|
template <typename T> struct TIsTFunction : FFalse { };
|
|
|
|
template <typename F> struct TIsTFunction<TFunction<F>> : FTrue { };
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-11-13 14:21:00 +00:00
|
|
|
template <typename T> struct TIsTUniqueFunction : FFalse { };
|
|
|
|
template <typename F> struct TIsTUniqueFunction<TUniqueFunction<F>> : FTrue { };
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-05-20 15:35:36 +00:00
|
|
|
NAMESPACE_PRIVATE_END
|
|
|
|
|
2022-11-17 12:57:54 +00:00
|
|
|
template <typename T> concept CTFunctionRef = NAMESPACE_PRIVATE::TIsTFunctionRef<TRemoveCV<T>>::Value;
|
|
|
|
template <typename T> concept CTFunction = NAMESPACE_PRIVATE::TIsTFunction<TRemoveCV<T>>::Value;
|
|
|
|
template <typename T> concept CTUniqueFunction = NAMESPACE_PRIVATE::TIsTUniqueFunction<TRemoveCV<T>>::Value;
|
2022-05-20 15:35:36 +00:00
|
|
|
|
2022-05-14 14:52:21 +00:00
|
|
|
NAMESPACE_PRIVATE_BEGIN
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-12-12 14:07:12 +00:00
|
|
|
template <bool bIsRef, bool bIsUnique>
|
|
|
|
class TFunctionStorage;
|
|
|
|
|
|
|
|
template <bool bIsUnique>
|
|
|
|
class TFunctionStorage<true, bIsUnique>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr TFunctionStorage() = default;
|
|
|
|
FORCEINLINE constexpr TFunctionStorage(const TFunctionStorage&) = default;
|
|
|
|
FORCEINLINE constexpr TFunctionStorage(TFunctionStorage&&) = default;
|
|
|
|
FORCEINLINE constexpr TFunctionStorage& operator=(const TFunctionStorage&) = delete;
|
|
|
|
FORCEINLINE constexpr TFunctionStorage& operator=(TFunctionStorage&&) = delete;
|
|
|
|
FORCEINLINE constexpr ~TFunctionStorage() = default;
|
2022-12-12 14:07:12 +00:00
|
|
|
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr uintptr GetValuePtr() const { return ValuePtr; }
|
|
|
|
FORCEINLINE constexpr uintptr GetCallable() const { return Callable; }
|
2022-12-12 14:07:12 +00:00
|
|
|
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr bool IsValid() const { return ValuePtr != 0; }
|
2022-12-12 14:07:12 +00:00
|
|
|
|
|
|
|
// Use Invalidate() to invalidate the storage or use Emplace<T>() to emplace a new object after destruction.
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr void Destroy() { }
|
2022-12-12 14:07:12 +00:00
|
|
|
|
|
|
|
// Make sure you call this function after you have destroyed the held object using Destroy().
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr void Invalidate() { ValuePtr = 0; }
|
2022-12-12 14:07:12 +00:00
|
|
|
|
|
|
|
// Make sure you call this function after you have destroyed the held object using Destroy().
|
|
|
|
template <typename T, typename U>
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr void Emplace(intptr InCallable, U&& Args)
|
2022-12-12 14:07:12 +00:00
|
|
|
{
|
|
|
|
static_assert(CSameAs<TDecay<T>, TDecay<U>>);
|
|
|
|
ValuePtr = reinterpret_cast<uintptr>(AddressOf(Args));
|
|
|
|
Callable = InCallable;
|
|
|
|
}
|
|
|
|
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr void Swap(TFunctionStorage& InValue)
|
2022-12-12 14:07:12 +00:00
|
|
|
{
|
|
|
|
NAMESPACE_REDCRAFT::Swap(ValuePtr, InValue.ValuePtr);
|
|
|
|
NAMESPACE_REDCRAFT::Swap(Callable, InValue.Callable);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
uintptr ValuePtr;
|
|
|
|
uintptr Callable;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
// For non-unique storage, the memory layout should be compatible with unique storage,
|
|
|
|
// i.e. it can be directly reinterpreted_cast.
|
|
|
|
template <bool bIsUnique>
|
|
|
|
class alignas(16) TFunctionStorage<false, bIsUnique>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr TFunctionStorage() = default;
|
2022-12-12 14:07:12 +00:00
|
|
|
|
|
|
|
FORCEINLINE TFunctionStorage(const TFunctionStorage& InValue) requires (!bIsUnique)
|
|
|
|
: TypeInfo(InValue.TypeInfo)
|
|
|
|
{
|
|
|
|
if (!IsValid()) return;
|
|
|
|
|
|
|
|
Callable = InValue.Callable;
|
|
|
|
|
|
|
|
switch (GetRepresentation())
|
|
|
|
{
|
|
|
|
case ERepresentation::Empty:
|
|
|
|
break;
|
|
|
|
case ERepresentation::Trivial:
|
|
|
|
Memory::Memcpy(InternalStorage, InValue.InternalStorage);
|
|
|
|
break;
|
|
|
|
case ERepresentation::Small:
|
|
|
|
GetTypeInfo().CopyConstruct(GetStorage(), InValue.GetStorage());
|
|
|
|
break;
|
|
|
|
case ERepresentation::Big:
|
|
|
|
ExternalStorage = Memory::Malloc(GetTypeInfo().TypeSize, GetTypeInfo().TypeAlignment);
|
|
|
|
GetTypeInfo().CopyConstruct(GetStorage(), InValue.GetStorage());
|
|
|
|
break;
|
|
|
|
default: check_no_entry();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE TFunctionStorage(TFunctionStorage&& InValue)
|
|
|
|
: TypeInfo(InValue.TypeInfo)
|
|
|
|
{
|
|
|
|
if (!IsValid()) return;
|
|
|
|
|
|
|
|
Callable = InValue.Callable;
|
|
|
|
|
|
|
|
switch (GetRepresentation())
|
|
|
|
{
|
|
|
|
case ERepresentation::Empty:
|
|
|
|
break;
|
|
|
|
case ERepresentation::Trivial:
|
|
|
|
Memory::Memcpy(InternalStorage, InValue.InternalStorage);
|
|
|
|
break;
|
|
|
|
case ERepresentation::Small:
|
|
|
|
GetTypeInfo().MoveConstruct(GetStorage(), InValue.GetStorage());
|
|
|
|
break;
|
|
|
|
case ERepresentation::Big:
|
|
|
|
ExternalStorage = InValue.ExternalStorage;
|
|
|
|
InValue.Invalidate();
|
|
|
|
break;
|
|
|
|
default: check_no_entry();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE ~TFunctionStorage()
|
|
|
|
{
|
|
|
|
Destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE TFunctionStorage& operator=(const TFunctionStorage& InValue) requires (!bIsUnique)
|
|
|
|
{
|
|
|
|
if (&InValue == this) return *this;
|
|
|
|
|
|
|
|
if (!InValue.IsValid())
|
|
|
|
{
|
|
|
|
Destroy();
|
|
|
|
Invalidate();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Destroy();
|
|
|
|
|
|
|
|
TypeInfo = InValue.TypeInfo;
|
|
|
|
Callable = InValue.Callable;
|
|
|
|
|
|
|
|
switch (GetRepresentation())
|
|
|
|
{
|
|
|
|
case ERepresentation::Empty:
|
|
|
|
break;
|
|
|
|
case ERepresentation::Trivial:
|
|
|
|
Memory::Memcpy(InternalStorage, InValue.InternalStorage);
|
|
|
|
break;
|
|
|
|
case ERepresentation::Small:
|
|
|
|
GetTypeInfo().CopyConstruct(GetStorage(), InValue.GetStorage());
|
|
|
|
break;
|
|
|
|
case ERepresentation::Big:
|
|
|
|
ExternalStorage = Memory::Malloc(GetTypeInfo().TypeSize, GetTypeInfo().TypeAlignment);
|
|
|
|
GetTypeInfo().CopyConstruct(GetStorage(), InValue.GetStorage());
|
|
|
|
break;
|
|
|
|
default: check_no_entry();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE TFunctionStorage& operator=(TFunctionStorage&& InValue)
|
|
|
|
{
|
|
|
|
if (&InValue == this) return *this;
|
|
|
|
|
|
|
|
if (!InValue.IsValid())
|
|
|
|
{
|
|
|
|
Destroy();
|
|
|
|
Invalidate();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Destroy();
|
|
|
|
|
|
|
|
TypeInfo = InValue.TypeInfo;
|
|
|
|
Callable = InValue.Callable;
|
|
|
|
|
|
|
|
switch (GetRepresentation())
|
|
|
|
{
|
|
|
|
case ERepresentation::Empty:
|
|
|
|
break;
|
|
|
|
case ERepresentation::Trivial:
|
|
|
|
Memory::Memcpy(InternalStorage, InValue.InternalStorage);
|
|
|
|
break;
|
|
|
|
case ERepresentation::Small:
|
|
|
|
GetTypeInfo().MoveConstruct(GetStorage(), InValue.GetStorage());
|
|
|
|
break;
|
|
|
|
case ERepresentation::Big:
|
|
|
|
ExternalStorage = InValue.ExternalStorage;
|
|
|
|
InValue.Invalidate();
|
|
|
|
break;
|
|
|
|
default: check_no_entry();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr uintptr GetValuePtr() const { return reinterpret_cast<uintptr>(GetStorage()); }
|
|
|
|
FORCEINLINE constexpr uintptr GetCallable() const { return Callable; }
|
2022-12-12 14:07:12 +00:00
|
|
|
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr bool IsValid() const { return TypeInfo != 0; }
|
2022-12-12 14:07:12 +00:00
|
|
|
|
|
|
|
// Use Invalidate() to invalidate the storage or use Emplace<T>() to emplace a new object after destruction.
|
|
|
|
FORCEINLINE void Destroy()
|
|
|
|
{
|
|
|
|
if (!IsValid()) return;
|
|
|
|
|
|
|
|
switch (GetRepresentation())
|
|
|
|
{
|
|
|
|
case ERepresentation::Empty:
|
|
|
|
case ERepresentation::Trivial:
|
|
|
|
break;
|
|
|
|
case ERepresentation::Small:
|
|
|
|
GetTypeInfo().Destruct(GetStorage());
|
|
|
|
break;
|
|
|
|
case ERepresentation::Big:
|
|
|
|
GetTypeInfo().Destruct(GetStorage());
|
|
|
|
Memory::Free(ExternalStorage);
|
|
|
|
break;
|
|
|
|
default: check_no_entry();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure you call this function after you have destroyed the held object using Destroy().
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr void Invalidate() { TypeInfo = 0; }
|
2022-12-12 14:07:12 +00:00
|
|
|
|
|
|
|
// Make sure you call this function after you have destroyed the held object using Destroy().
|
|
|
|
template <typename T, typename... Ts>
|
|
|
|
FORCEINLINE void Emplace(uintptr InCallable, Ts&&... Args)
|
|
|
|
{
|
|
|
|
Callable = InCallable;
|
|
|
|
|
|
|
|
using DecayedType = TDecay<T>;
|
|
|
|
|
|
|
|
static constexpr const FTypeInfo SelectedTypeInfo(InPlaceType<DecayedType>);
|
|
|
|
TypeInfo = reinterpret_cast<uintptr>(&SelectedTypeInfo);
|
|
|
|
|
|
|
|
if constexpr (CEmpty<DecayedType>) return;
|
|
|
|
|
|
|
|
constexpr bool bIsInlineStorable = sizeof(DecayedType) <= sizeof(InternalStorage) && alignof(DecayedType) <= alignof(TFunctionStorage);
|
|
|
|
constexpr bool bIsTriviallyStorable = bIsInlineStorable && CTrivial<DecayedType> && CTriviallyCopyable<DecayedType>;
|
|
|
|
|
|
|
|
if constexpr (bIsTriviallyStorable)
|
|
|
|
{
|
|
|
|
new (&InternalStorage) DecayedType(Forward<Ts>(Args)...);
|
|
|
|
TypeInfo |= static_cast<uintptr>(ERepresentation::Trivial);
|
|
|
|
}
|
|
|
|
else if constexpr (bIsInlineStorable)
|
|
|
|
{
|
|
|
|
new (&InternalStorage) DecayedType(Forward<Ts>(Args)...);
|
|
|
|
TypeInfo |= static_cast<uintptr>(ERepresentation::Small);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ExternalStorage = new DecayedType(Forward<Ts>(Args)...);
|
|
|
|
TypeInfo |= static_cast<uintptr>(ERepresentation::Big);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
FORCEINLINE void Swap(TFunctionStorage& InValue)
|
|
|
|
{
|
|
|
|
if (!IsValid() && !InValue.IsValid()) return;
|
|
|
|
|
|
|
|
if (IsValid() && !InValue.IsValid())
|
|
|
|
{
|
|
|
|
InValue = MoveTemp(*this);
|
|
|
|
Destroy();
|
|
|
|
Invalidate();
|
|
|
|
}
|
|
|
|
else if (InValue.IsValid() && !IsValid())
|
|
|
|
{
|
|
|
|
*this = MoveTemp(InValue);
|
|
|
|
InValue.Destroy();
|
|
|
|
InValue.Invalidate();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TFunctionStorage Temp = MoveTemp(*this);
|
|
|
|
*this = MoveTemp(InValue);
|
|
|
|
InValue = MoveTemp(Temp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
union
|
|
|
|
{
|
|
|
|
uint8 InternalStorage[64 - sizeof(uintptr) - sizeof(uintptr)];
|
|
|
|
void* ExternalStorage;
|
|
|
|
};
|
|
|
|
|
|
|
|
uintptr TypeInfo;
|
|
|
|
uintptr Callable;
|
|
|
|
|
|
|
|
struct FMovableTypeInfo
|
|
|
|
{
|
|
|
|
const size_t TypeSize;
|
|
|
|
const size_t TypeAlignment;
|
|
|
|
|
|
|
|
using FMoveConstruct = void(*)(void*, void*);
|
|
|
|
using FDestruct = void(*)(void* );
|
|
|
|
|
|
|
|
const FMoveConstruct MoveConstruct;
|
|
|
|
const FDestruct Destruct;
|
|
|
|
|
|
|
|
template <typename T>
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr FMovableTypeInfo(TInPlaceType<T>)
|
2022-12-12 14:07:12 +00:00
|
|
|
: TypeSize(sizeof(T)), TypeAlignment(alignof(T))
|
|
|
|
, MoveConstruct(
|
|
|
|
[](void* A, void* B)
|
|
|
|
{
|
|
|
|
new (A) T(*reinterpret_cast<T*>(B));
|
|
|
|
}
|
|
|
|
)
|
|
|
|
, Destruct(
|
|
|
|
[](void* A)
|
|
|
|
{
|
|
|
|
reinterpret_cast<T*>(A)->~T();
|
|
|
|
}
|
|
|
|
)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
struct FCopyableTypeInfo : public FMovableTypeInfo
|
|
|
|
{
|
|
|
|
using FCopyConstruct = void(*)(void*, const void*);
|
|
|
|
|
|
|
|
const FCopyConstruct CopyConstruct;
|
|
|
|
|
|
|
|
template <typename T>
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr FCopyableTypeInfo(TInPlaceType<T>)
|
2022-12-12 14:07:12 +00:00
|
|
|
: FMovableTypeInfo(InPlaceType<T>)
|
|
|
|
, CopyConstruct(
|
|
|
|
[](void* A, const void* B)
|
|
|
|
{
|
|
|
|
new (A) T(*reinterpret_cast<const T*>(B));
|
|
|
|
}
|
|
|
|
)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
using FTypeInfo = TConditional<bIsUnique, FMovableTypeInfo, FCopyableTypeInfo>;
|
|
|
|
|
|
|
|
static_assert(alignof(FTypeInfo) >= 4);
|
|
|
|
|
|
|
|
static constexpr uintptr_t RepresentationMask = 3;
|
|
|
|
|
|
|
|
enum class ERepresentation : uintptr
|
|
|
|
{
|
|
|
|
Empty = 0, // EmptyType
|
|
|
|
Trivial = 1, // Trivial & Internal
|
|
|
|
Small = 2, // InternalStorage
|
|
|
|
Big = 3, // ExternalStorage
|
|
|
|
};
|
|
|
|
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr ERepresentation GetRepresentation() const { return static_cast<ERepresentation>(TypeInfo & RepresentationMask); }
|
|
|
|
FORCEINLINE constexpr const FTypeInfo& GetTypeInfo() const { return *reinterpret_cast<const FTypeInfo*>(TypeInfo & ~RepresentationMask); }
|
2022-12-12 14:07:12 +00:00
|
|
|
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr void* GetStorage() { return GetRepresentation() == ERepresentation::Trivial || GetRepresentation() == ERepresentation::Small ? InternalStorage : ExternalStorage; }
|
|
|
|
FORCEINLINE constexpr const void* GetStorage() const { return GetRepresentation() == ERepresentation::Trivial || GetRepresentation() == ERepresentation::Small ? InternalStorage : ExternalStorage; }
|
2022-12-12 14:07:12 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2022-05-14 14:52:21 +00:00
|
|
|
template <typename T>
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr bool FunctionIsBound(const T& Func)
|
2022-04-07 07:57:02 +00:00
|
|
|
{
|
2022-05-20 15:35:36 +00:00
|
|
|
if constexpr (CPointer<T> || CMemberPointer<T> || CTFunctionRef<T> || CTFunction<T> || CTUniqueFunction<T>)
|
2022-04-07 07:57:02 +00:00
|
|
|
{
|
2022-05-14 14:52:21 +00:00
|
|
|
return !!Func;
|
2022-04-07 07:57:02 +00:00
|
|
|
}
|
2022-05-14 14:52:21 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-05-14 14:52:21 +00:00
|
|
|
template <typename Signature, typename F> struct TIsInvocableSignature : FFalse { };
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-11-16 11:13:37 +00:00
|
|
|
template <typename Ret, typename... Ts, typename F>
|
|
|
|
struct TIsInvocableSignature<Ret(Ts...), F>
|
|
|
|
: TBoolConstant<CInvocableResult<Ret, F, Ts...> && CInvocableResult<Ret, F&, Ts...>>
|
2022-04-07 07:57:02 +00:00
|
|
|
{ };
|
|
|
|
|
2022-11-16 11:13:37 +00:00
|
|
|
template <typename Ret, typename... Ts, typename F> struct TIsInvocableSignature<Ret(Ts...) & , F> : TBoolConstant<CInvocableResult<Ret, F&, Ts...>> { };
|
|
|
|
template <typename Ret, typename... Ts, typename F> struct TIsInvocableSignature<Ret(Ts...) &&, F> : TBoolConstant<CInvocableResult<Ret, F , Ts...>> { };
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-11-16 11:13:37 +00:00
|
|
|
template <typename Ret, typename... Ts, typename F>
|
|
|
|
struct TIsInvocableSignature<Ret(Ts...) const, F>
|
|
|
|
: TBoolConstant<CInvocableResult<Ret, const F, Ts...> && CInvocableResult<Ret, const F&, Ts...>>
|
2022-04-07 07:57:02 +00:00
|
|
|
{ };
|
|
|
|
|
2022-11-16 11:13:37 +00:00
|
|
|
template <typename Ret, typename... Ts, typename F> struct TIsInvocableSignature<Ret(Ts...) const& , F> : TBoolConstant<CInvocableResult<Ret, const F&, Ts...>> { };
|
|
|
|
template <typename Ret, typename... Ts, typename F> struct TIsInvocableSignature<Ret(Ts...) const&&, F> : TBoolConstant<CInvocableResult<Ret, const F , Ts...>> { };
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-12-12 14:07:12 +00:00
|
|
|
template <typename F> struct TFunctionInfo;
|
2022-11-16 11:13:37 +00:00
|
|
|
template <typename Ret, typename... Ts> struct TFunctionInfo<Ret(Ts...) > { using Fn = Ret(Ts...); using CVRef = int; };
|
|
|
|
template <typename Ret, typename... Ts> struct TFunctionInfo<Ret(Ts...) & > { using Fn = Ret(Ts...); using CVRef = int&; };
|
|
|
|
template <typename Ret, typename... Ts> struct TFunctionInfo<Ret(Ts...) && > { using Fn = Ret(Ts...); using CVRef = int&&; };
|
|
|
|
template <typename Ret, typename... Ts> struct TFunctionInfo<Ret(Ts...) const > { using Fn = Ret(Ts...); using CVRef = const int; };
|
|
|
|
template <typename Ret, typename... Ts> struct TFunctionInfo<Ret(Ts...) const& > { using Fn = Ret(Ts...); using CVRef = const int&; };
|
|
|
|
template <typename Ret, typename... Ts> struct TFunctionInfo<Ret(Ts...) const&&> { using Fn = Ret(Ts...); using CVRef = const int&&; };
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-12-12 14:07:12 +00:00
|
|
|
template <typename F, typename CVRef, bool bIsRef, bool bIsUnique = false> class TFunctionImpl;
|
2022-11-13 14:21:00 +00:00
|
|
|
|
2022-12-12 14:07:12 +00:00
|
|
|
template <typename Ret, typename... Ts, typename CVRef, bool bIsRef, bool bIsUnique>
|
|
|
|
class TFunctionImpl<Ret(Ts...), CVRef, bIsRef, bIsUnique>
|
2022-05-14 14:52:21 +00:00
|
|
|
{
|
|
|
|
public:
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-05-14 14:52:21 +00:00
|
|
|
using ResultType = Ret;
|
2022-12-03 15:11:05 +00:00
|
|
|
using ArgumentType = TTypeSequence<Ts...>;
|
2022-11-13 14:21:00 +00:00
|
|
|
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr TFunctionImpl() = default;
|
|
|
|
FORCEINLINE constexpr TFunctionImpl(const TFunctionImpl&) = default;
|
|
|
|
FORCEINLINE constexpr TFunctionImpl(TFunctionImpl&&) = default;
|
|
|
|
FORCEINLINE constexpr TFunctionImpl& operator=(const TFunctionImpl&) = default;
|
|
|
|
FORCEINLINE constexpr TFunctionImpl& operator=(TFunctionImpl&&) = default;
|
|
|
|
FORCEINLINE constexpr ~TFunctionImpl() = default;
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-11-16 11:13:37 +00:00
|
|
|
FORCEINLINE ResultType operator()(Ts... Args) requires (CSameAs<CVRef, int >) { return CallImpl(Forward<Ts>(Args)...); }
|
|
|
|
FORCEINLINE ResultType operator()(Ts... Args) & requires (CSameAs<CVRef, int& >) { return CallImpl(Forward<Ts>(Args)...); }
|
|
|
|
FORCEINLINE ResultType operator()(Ts... Args) && requires (CSameAs<CVRef, int&&>) { return CallImpl(Forward<Ts>(Args)...); }
|
|
|
|
FORCEINLINE ResultType operator()(Ts... Args) const requires (CSameAs<CVRef, const int >) { return CallImpl(Forward<Ts>(Args)...); }
|
|
|
|
FORCEINLINE ResultType operator()(Ts... Args) const& requires (CSameAs<CVRef, const int& >) { return CallImpl(Forward<Ts>(Args)...); }
|
|
|
|
FORCEINLINE ResultType operator()(Ts... Args) const&& requires (CSameAs<CVRef, const int&&>) { return CallImpl(Forward<Ts>(Args)...); }
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr bool IsValid() const { return Storage.IsValid(); }
|
|
|
|
FORCEINLINE constexpr explicit operator bool() const { return Storage.IsValid(); }
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr void Swap(TFunctionImpl& InValue) { Storage.Swap(InValue.Storage); }
|
2022-04-14 14:41:22 +00:00
|
|
|
|
2022-04-07 07:57:02 +00:00
|
|
|
private:
|
|
|
|
|
2022-12-12 14:07:12 +00:00
|
|
|
using CallableType = ResultType(*)(uintptr, Ts&&...);
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-12-12 14:07:12 +00:00
|
|
|
TFunctionStorage<bIsRef, bIsUnique> Storage;
|
2022-05-14 14:52:21 +00:00
|
|
|
|
2022-11-16 11:13:37 +00:00
|
|
|
FORCEINLINE ResultType CallImpl(Ts&&... Args) const
|
2022-05-14 14:52:21 +00:00
|
|
|
{
|
|
|
|
checkf(IsValid(), TEXT("Attempting to call an unbound TFunction!"));
|
2022-12-12 14:07:12 +00:00
|
|
|
CallableType Callable = reinterpret_cast<CallableType>(Storage.GetCallable());
|
|
|
|
return Callable(Storage.GetValuePtr(), Forward<Ts>(Args)...);
|
2022-05-14 14:52:21 +00:00
|
|
|
}
|
|
|
|
|
2022-11-16 14:03:54 +00:00
|
|
|
protected: // These functions should not be used by user-defined class
|
2022-05-14 14:52:21 +00:00
|
|
|
|
2022-12-12 14:07:12 +00:00
|
|
|
// Use Invalidate() to invalidate the storage or use Emplace<T>() to emplace a new object after destruction.
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr void Destroy() { Storage.Destroy(); }
|
2022-05-01 10:02:26 +00:00
|
|
|
|
2022-12-12 14:07:12 +00:00
|
|
|
// Make sure you call this function after you have destroyed the held object using Destroy().
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr void Invalidate() { Storage.Invalidate(); }
|
2022-04-24 14:42:40 +00:00
|
|
|
|
2022-12-12 14:07:12 +00:00
|
|
|
// Make sure you call this function after you have destroyed the held object using Destroy().
|
|
|
|
template <typename T, typename... ArgTypes>
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr TDecay<T>& Emplace(ArgTypes&&... Args)
|
2022-12-12 14:07:12 +00:00
|
|
|
{
|
|
|
|
using DecayedType = TDecay<T>;
|
2022-05-14 14:52:21 +00:00
|
|
|
|
2022-12-12 14:07:12 +00:00
|
|
|
// This add a l-value reference to a non-reference type, while preserving the r-value reference.
|
|
|
|
using ObjectType = TCopyCVRef<CVRef, DecayedType>;
|
|
|
|
using InvokeType = TConditional<CReference<ObjectType>, ObjectType, ObjectType&>;
|
2022-04-24 14:42:40 +00:00
|
|
|
|
2022-12-12 14:07:12 +00:00
|
|
|
CallableType Callable = [](uintptr ObjectPtr, Ts&&... Args) -> ResultType
|
|
|
|
{
|
|
|
|
return InvokeResult<ResultType>(
|
|
|
|
static_cast<InvokeType>(*reinterpret_cast<DecayedType*>(ObjectPtr)),
|
|
|
|
Forward<Ts>(Args)...
|
|
|
|
);
|
2022-04-24 14:42:40 +00:00
|
|
|
};
|
|
|
|
|
2022-12-12 14:07:12 +00:00
|
|
|
Storage.template Emplace<DecayedType>(
|
|
|
|
reinterpret_cast<uintptr>(Callable),
|
|
|
|
Forward<ArgTypes>(Args)...
|
|
|
|
);
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-12-12 14:07:12 +00:00
|
|
|
return *reinterpret_cast<DecayedType*>(Storage.GetValuePtr());
|
2022-04-07 07:57:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2022-05-14 14:52:21 +00:00
|
|
|
NAMESPACE_PRIVATE_END
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-11-15 11:28:43 +00:00
|
|
|
template <CFunction F>
|
|
|
|
class TFunctionRef
|
2022-05-14 14:52:21 +00:00
|
|
|
: public NAMESPACE_PRIVATE::TFunctionImpl<
|
|
|
|
typename NAMESPACE_PRIVATE::TFunctionInfo<F>::Fn,
|
|
|
|
typename NAMESPACE_PRIVATE::TFunctionInfo<F>::CVRef,
|
|
|
|
true>
|
2022-04-07 07:57:02 +00:00
|
|
|
{
|
2022-05-14 14:52:21 +00:00
|
|
|
private:
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-11-15 11:28:43 +00:00
|
|
|
using Impl = NAMESPACE_PRIVATE::TFunctionImpl<
|
2022-05-14 14:52:21 +00:00
|
|
|
typename NAMESPACE_PRIVATE::TFunctionInfo<F>::Fn,
|
|
|
|
typename NAMESPACE_PRIVATE::TFunctionInfo<F>::CVRef,
|
|
|
|
true>;
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-05-14 14:52:21 +00:00
|
|
|
public:
|
|
|
|
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr TFunctionRef() = delete;
|
2022-05-14 14:52:21 +00:00
|
|
|
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr TFunctionRef(const TFunctionRef& InValue) = default;
|
|
|
|
FORCEINLINE constexpr TFunctionRef(TFunctionRef&& InValue) = default;
|
2022-05-14 14:52:21 +00:00
|
|
|
|
2022-12-12 14:07:12 +00:00
|
|
|
// We delete the assignment operators because we don't want it to be confused with being related to
|
|
|
|
// regular C++ reference assignment - i.e. calling the assignment operator of whatever the reference
|
|
|
|
// is bound to - because that's not what TFunctionRef does, nor is it even capable of doing that.
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr TFunctionRef& operator=(const TFunctionRef& InValue) = delete;
|
|
|
|
FORCEINLINE constexpr TFunctionRef& operator=(TFunctionRef&& InValue) = delete;
|
2022-05-14 14:52:21 +00:00
|
|
|
|
2022-12-12 14:07:12 +00:00
|
|
|
template <typename T> requires (!CTFunctionRef<TDecay<T>>
|
2022-11-16 14:03:54 +00:00
|
|
|
&& NAMESPACE_PRIVATE::TIsInvocableSignature<F, TDecay<T>>::Value)
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr TFunctionRef(T&& InValue)
|
2022-05-14 14:52:21 +00:00
|
|
|
{
|
|
|
|
checkf(NAMESPACE_PRIVATE::FunctionIsBound(InValue), TEXT("Cannot bind a null/unbound callable to a TFunctionRef"));
|
2022-12-12 14:07:12 +00:00
|
|
|
Impl::template Emplace<T>(Forward<T>(InValue));
|
2022-05-14 14:52:21 +00:00
|
|
|
}
|
2022-04-07 07:57:02 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2022-11-15 11:28:43 +00:00
|
|
|
template <CFunction F>
|
|
|
|
class TFunction
|
2022-05-14 14:52:21 +00:00
|
|
|
: public NAMESPACE_PRIVATE::TFunctionImpl<
|
|
|
|
typename NAMESPACE_PRIVATE::TFunctionInfo<F>::Fn,
|
|
|
|
typename NAMESPACE_PRIVATE::TFunctionInfo<F>::CVRef,
|
2022-12-12 14:07:12 +00:00
|
|
|
false, false>
|
2022-04-07 07:57:02 +00:00
|
|
|
{
|
2022-05-14 14:52:21 +00:00
|
|
|
private:
|
|
|
|
|
2022-11-15 11:28:43 +00:00
|
|
|
using Impl = NAMESPACE_PRIVATE::TFunctionImpl<
|
2022-05-14 14:52:21 +00:00
|
|
|
typename NAMESPACE_PRIVATE::TFunctionInfo<F>::Fn,
|
|
|
|
typename NAMESPACE_PRIVATE::TFunctionInfo<F>::CVRef,
|
2022-12-12 14:07:12 +00:00
|
|
|
false, false>;
|
2022-05-14 14:52:21 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr TFunction(nullptr_t = nullptr) { Impl::Invalidate(); }
|
2022-05-14 14:52:21 +00:00
|
|
|
|
2022-12-12 14:07:12 +00:00
|
|
|
FORCEINLINE TFunction(const TFunction& InValue) = default;
|
|
|
|
FORCEINLINE TFunction(TFunction&& InValue) = default;
|
|
|
|
FORCEINLINE TFunction& operator=(const TFunction& InValue) = default;
|
|
|
|
FORCEINLINE TFunction& operator=(TFunction&& InValue) = default;
|
2022-05-14 14:52:21 +00:00
|
|
|
|
2022-11-16 14:03:54 +00:00
|
|
|
template <typename T> requires (!CTInPlaceType<TDecay<T>>
|
|
|
|
&& !CTFunctionRef<TDecay<T>> && !CTFunction<TDecay<T>> && !CTUniqueFunction<TDecay<T>>
|
2022-05-22 14:52:47 +00:00
|
|
|
&& CConstructibleFrom<TDecay<T>, T&&> && CCopyConstructible<TDecay<T>>
|
2022-12-12 14:07:12 +00:00
|
|
|
&& CMoveConstructible<TDecay<T>> && CDestructible<TDecay<T>>
|
2022-11-16 14:03:54 +00:00
|
|
|
&& NAMESPACE_PRIVATE::TIsInvocableSignature<F, TDecay<T>>::Value)
|
2022-05-14 14:52:21 +00:00
|
|
|
FORCEINLINE TFunction(T&& InValue)
|
|
|
|
{
|
2022-12-12 14:07:12 +00:00
|
|
|
if (!NAMESPACE_PRIVATE::FunctionIsBound(InValue)) Impl::Invalidate();
|
|
|
|
else Impl::template Emplace<T>(Forward<T>(InValue));
|
2022-05-14 14:52:21 +00:00
|
|
|
}
|
|
|
|
|
2022-11-16 14:03:54 +00:00
|
|
|
template <typename T, typename... ArgTypes> requires (NAMESPACE_PRIVATE::TIsInvocableSignature<F, TDecay<T>>::Value
|
2022-12-12 14:07:12 +00:00
|
|
|
&& CConstructibleFrom<TDecay<T>, ArgTypes...> && CCopyConstructible<TDecay<T>>
|
|
|
|
&& CMoveConstructible<TDecay<T>> && CDestructible<TDecay<T>>)
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE explicit TFunction(TInPlaceType<T>, ArgTypes&&... Args)
|
2022-05-14 14:52:21 +00:00
|
|
|
{
|
2022-12-12 14:07:12 +00:00
|
|
|
Impl::template Emplace<T>(Forward<ArgTypes>(Args)...);
|
2022-05-14 14:52:21 +00:00
|
|
|
}
|
|
|
|
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr TFunction& operator=(nullptr_t) { Reset(); return *this; }
|
2022-05-14 14:52:21 +00:00
|
|
|
|
2022-11-16 14:03:54 +00:00
|
|
|
template <typename T> requires (NAMESPACE_PRIVATE::TIsInvocableSignature<F, TDecay<T>>::Value
|
|
|
|
&& !CTFunctionRef<TDecay<T>> && !CTFunction<TDecay<T>> && !CTUniqueFunction<TDecay<T>>
|
2022-12-12 14:07:12 +00:00
|
|
|
&& CConstructibleFrom<TDecay<T>, T&&> && CCopyConstructible<TDecay<T>>
|
|
|
|
&& CMoveConstructible<TDecay<T>> && CDestructible<TDecay<T>>)
|
2022-05-14 14:52:21 +00:00
|
|
|
FORCEINLINE TFunction& operator=(T&& InValue)
|
|
|
|
{
|
2022-12-12 14:07:12 +00:00
|
|
|
if (!NAMESPACE_PRIVATE::FunctionIsBound(InValue)) Reset();
|
|
|
|
else Emplace<T>(Forward<T>(InValue));
|
2022-05-14 14:52:21 +00:00
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2022-11-16 14:03:54 +00:00
|
|
|
template <typename T, typename... ArgTypes> requires (NAMESPACE_PRIVATE::TIsInvocableSignature<F, TDecay<T>>::Value
|
2022-12-12 14:07:12 +00:00
|
|
|
&& CConstructibleFrom<TDecay<T>, ArgTypes...> && CCopyConstructible<TDecay<T>>
|
|
|
|
&& CMoveConstructible<TDecay<T>> && CDestructible<TDecay<T>>)
|
2022-05-22 14:52:47 +00:00
|
|
|
FORCEINLINE TDecay<T>& Emplace(ArgTypes&&... Args)
|
2022-05-14 14:52:21 +00:00
|
|
|
{
|
2022-12-12 14:07:12 +00:00
|
|
|
Impl::Destroy();
|
|
|
|
return Impl::template Emplace<T>(Forward<ArgTypes>(Args)...);
|
2022-05-14 14:52:21 +00:00
|
|
|
}
|
|
|
|
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr void Reset() { Impl::Destroy(); Impl::Invalidate(); }
|
2022-05-14 14:52:21 +00:00
|
|
|
|
2022-04-07 07:57:02 +00:00
|
|
|
};
|
|
|
|
|
2022-11-15 11:28:43 +00:00
|
|
|
template <CFunction F>
|
|
|
|
class TUniqueFunction
|
2022-05-14 14:52:21 +00:00
|
|
|
: public NAMESPACE_PRIVATE::TFunctionImpl<
|
|
|
|
typename NAMESPACE_PRIVATE::TFunctionInfo<F>::Fn,
|
|
|
|
typename NAMESPACE_PRIVATE::TFunctionInfo<F>::CVRef,
|
2022-12-12 14:07:12 +00:00
|
|
|
false, true>
|
2022-04-07 07:57:02 +00:00
|
|
|
{
|
2022-05-14 14:52:21 +00:00
|
|
|
private:
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-11-15 11:28:43 +00:00
|
|
|
using Impl = NAMESPACE_PRIVATE::TFunctionImpl<
|
2022-05-14 14:52:21 +00:00
|
|
|
typename NAMESPACE_PRIVATE::TFunctionInfo<F>::Fn,
|
|
|
|
typename NAMESPACE_PRIVATE::TFunctionInfo<F>::CVRef,
|
2022-12-12 14:07:12 +00:00
|
|
|
false, true>;
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-05-14 14:52:21 +00:00
|
|
|
public:
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr TUniqueFunction(nullptr_t = nullptr) { Impl::Invalidate(); }
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-12-12 14:07:12 +00:00
|
|
|
FORCEINLINE TUniqueFunction(const TUniqueFunction& InValue) = delete;
|
|
|
|
FORCEINLINE TUniqueFunction(TUniqueFunction&& InValue) = default;
|
2022-05-14 14:52:21 +00:00
|
|
|
FORCEINLINE TUniqueFunction& operator=(const TUniqueFunction& InValue) = delete;
|
2022-12-12 14:07:12 +00:00
|
|
|
FORCEINLINE TUniqueFunction& operator=(TUniqueFunction&& InValue) = default;
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-11-13 14:21:00 +00:00
|
|
|
FORCEINLINE TUniqueFunction(const TFunction<F>& InValue)
|
2022-12-12 14:07:12 +00:00
|
|
|
{
|
|
|
|
new (this) TFunction<F>(InValue);
|
|
|
|
}
|
2022-05-14 14:52:21 +00:00
|
|
|
|
2022-11-13 14:21:00 +00:00
|
|
|
FORCEINLINE TUniqueFunction(TFunction<F>&& InValue)
|
2022-05-14 14:52:21 +00:00
|
|
|
{
|
2022-12-12 14:07:12 +00:00
|
|
|
new (this) TFunction<F>(MoveTemp(InValue));
|
2022-05-14 14:52:21 +00:00
|
|
|
}
|
|
|
|
|
2022-11-13 14:21:00 +00:00
|
|
|
FORCEINLINE TUniqueFunction& operator=(const TFunction<F>& InValue)
|
2022-05-14 14:52:21 +00:00
|
|
|
{
|
2022-12-12 14:07:12 +00:00
|
|
|
*reinterpret_cast<TFunction<F>*>(this) = InValue;
|
2022-05-14 14:52:21 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2022-11-13 14:21:00 +00:00
|
|
|
FORCEINLINE TUniqueFunction& operator=(TFunction<F>&& InValue)
|
2022-05-14 14:52:21 +00:00
|
|
|
{
|
2022-12-12 14:07:12 +00:00
|
|
|
*reinterpret_cast<TFunction<F>*>(this) = MoveTemp(InValue);
|
2022-05-14 14:52:21 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2022-11-16 14:03:54 +00:00
|
|
|
template <typename T> requires (!CTInPlaceType<TDecay<T>>
|
|
|
|
&& !CTFunctionRef<TDecay<T>> && !CTFunction<TDecay<T>> && !CTUniqueFunction<TDecay<T>>
|
2022-12-12 14:07:12 +00:00
|
|
|
&& CConstructibleFrom<TDecay<T>, T&&> && CMoveConstructible<TDecay<T>> && CDestructible<TDecay<T>>
|
2022-11-16 14:03:54 +00:00
|
|
|
&& NAMESPACE_PRIVATE::TIsInvocableSignature<F, TDecay<T>>::Value)
|
2022-05-14 14:52:21 +00:00
|
|
|
FORCEINLINE TUniqueFunction(T&& InValue)
|
|
|
|
{
|
2022-12-12 14:07:12 +00:00
|
|
|
if (!NAMESPACE_PRIVATE::FunctionIsBound(InValue)) Impl::Invalidate();
|
|
|
|
else Impl::template Emplace<T>(Forward<T>(InValue));
|
2022-05-14 14:52:21 +00:00
|
|
|
}
|
|
|
|
|
2022-11-16 14:03:54 +00:00
|
|
|
template <typename T, typename... ArgTypes> requires (NAMESPACE_PRIVATE::TIsInvocableSignature<F, TDecay<T>>::Value
|
2022-12-12 14:07:12 +00:00
|
|
|
&& CConstructibleFrom<TDecay<T>, ArgTypes...> && CMoveConstructible<TDecay<T>> && CDestructible<TDecay<T>>)
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE explicit TUniqueFunction(TInPlaceType<T>, ArgTypes&&... Args)
|
2022-05-14 14:52:21 +00:00
|
|
|
{
|
2022-12-12 14:07:12 +00:00
|
|
|
Impl::template Emplace<T>(Forward<ArgTypes>(Args)...);
|
2022-05-14 14:52:21 +00:00
|
|
|
}
|
|
|
|
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr TUniqueFunction& operator=(nullptr_t) { Impl::Destroy(); Impl::Invalidate(); return *this; }
|
2022-05-14 14:52:21 +00:00
|
|
|
|
2022-11-16 14:03:54 +00:00
|
|
|
template <typename T> requires (NAMESPACE_PRIVATE::TIsInvocableSignature<F, TDecay<T>>::Value
|
|
|
|
&& !CTFunctionRef<TDecay<T>> && !CTFunction<TDecay<T>> && !CTUniqueFunction<TDecay<T>>
|
2022-12-12 14:07:12 +00:00
|
|
|
&& CConstructibleFrom<TDecay<T>, T&&> && CMoveConstructible<TDecay<T>> && CDestructible<TDecay<T>>)
|
2022-05-14 14:52:21 +00:00
|
|
|
FORCEINLINE TUniqueFunction& operator=(T&& InValue)
|
|
|
|
{
|
2022-12-12 14:07:12 +00:00
|
|
|
if (!NAMESPACE_PRIVATE::FunctionIsBound(InValue)) Reset();
|
|
|
|
else Emplace<T>(Forward<T>(InValue));
|
2022-05-14 14:52:21 +00:00
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2022-11-16 14:03:54 +00:00
|
|
|
template <typename T, typename... ArgTypes> requires (NAMESPACE_PRIVATE::TIsInvocableSignature<F, TDecay<T>>::Value
|
2022-12-12 14:07:12 +00:00
|
|
|
&& CConstructibleFrom<TDecay<T>, ArgTypes...> && CMoveConstructible<TDecay<T>> && CDestructible<TDecay<T>>)
|
2022-05-22 14:52:47 +00:00
|
|
|
FORCEINLINE TDecay<T>& Emplace(ArgTypes&&... Args)
|
2022-05-14 14:52:21 +00:00
|
|
|
{
|
2022-12-12 14:07:12 +00:00
|
|
|
Impl::Destroy();
|
2022-05-22 14:52:47 +00:00
|
|
|
using DecayedType = TDecay<T>;
|
2022-12-12 14:07:12 +00:00
|
|
|
return Impl::template Emplace<T>(Forward<ArgTypes>(Args)...);
|
2022-05-14 14:52:21 +00:00
|
|
|
}
|
|
|
|
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr void Reset() { Impl::Destroy(); Impl::Invalidate(); }
|
2022-05-14 14:52:21 +00:00
|
|
|
|
|
|
|
};
|
2022-04-07 07:57:02 +00:00
|
|
|
|
2022-11-15 11:28:43 +00:00
|
|
|
template <CFunction F>
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr bool operator==(const TFunctionRef<F>& LHS, nullptr_t)
|
2022-04-07 07:57:02 +00:00
|
|
|
{
|
|
|
|
return !LHS;
|
|
|
|
}
|
|
|
|
|
2022-11-15 11:28:43 +00:00
|
|
|
template <CFunction F>
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr bool operator==(const TFunction<F>& LHS, nullptr_t)
|
2022-04-07 07:57:02 +00:00
|
|
|
{
|
|
|
|
return !LHS;
|
|
|
|
}
|
|
|
|
|
2022-11-15 11:28:43 +00:00
|
|
|
template <CFunction F>
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr bool operator==(const TUniqueFunction<F>& LHS, nullptr_t)
|
2022-04-07 07:57:02 +00:00
|
|
|
{
|
|
|
|
return !LHS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static_assert(sizeof(TFunction<void()>) == 64, "The byte size of TFunction is unexpected");
|
|
|
|
static_assert(sizeof(TUniqueFunction<void()>) == 64, "The byte size of TUniqueFunction is unexpected");
|
|
|
|
|
2022-12-12 14:07:12 +00:00
|
|
|
static_assert(alignof(TFunction<void()>) == 16, "The byte alignment of TFunction is unexpected");
|
|
|
|
static_assert(alignof(TUniqueFunction<void()>) == 16, "The byte alignment of TUniqueFunction is unexpected");
|
|
|
|
|
2022-04-08 03:44:36 +00:00
|
|
|
NAMESPACE_PRIVATE_BEGIN
|
|
|
|
|
|
|
|
template <typename F>
|
2022-05-14 14:52:21 +00:00
|
|
|
struct TNotFunction
|
2022-04-08 03:44:36 +00:00
|
|
|
{
|
2022-05-14 14:52:21 +00:00
|
|
|
F Storage;
|
2022-04-08 03:44:36 +00:00
|
|
|
|
2022-11-16 14:03:54 +00:00
|
|
|
template <typename... Ts> requires (CInvocable<F&, Ts&&...>)
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr auto operator()(Ts&&... Args) &
|
2022-11-16 11:13:37 +00:00
|
|
|
-> decltype(!Invoke(Storage, Forward<Ts>(Args)...))
|
2022-04-08 03:44:36 +00:00
|
|
|
{
|
2022-11-16 11:13:37 +00:00
|
|
|
return !Invoke(Storage, Forward<Ts>(Args)...);
|
2022-04-08 03:44:36 +00:00
|
|
|
}
|
|
|
|
|
2022-11-16 14:03:54 +00:00
|
|
|
template <typename... Ts> requires (CInvocable<F&&, Ts&&...>)
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr auto operator()(Ts&&... Args) &&
|
2022-11-16 11:13:37 +00:00
|
|
|
-> decltype(!Invoke(MoveTemp(Storage), Forward<Ts>(Args)...))
|
2022-04-08 03:44:36 +00:00
|
|
|
{
|
2022-11-16 11:13:37 +00:00
|
|
|
return !Invoke(MoveTemp(Storage), Forward<Ts>(Args)...);
|
2022-04-08 03:44:36 +00:00
|
|
|
}
|
|
|
|
|
2022-11-16 14:03:54 +00:00
|
|
|
template <typename... Ts> requires (CInvocable<const F&, Ts&&...>)
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr auto operator()(Ts&&... Args) const&
|
2022-11-16 11:13:37 +00:00
|
|
|
-> decltype(!Invoke(Storage, Forward<Ts>(Args)...))
|
2022-04-08 03:44:36 +00:00
|
|
|
{
|
2022-11-16 11:13:37 +00:00
|
|
|
return !Invoke(Storage, Forward<Ts>(Args)...);
|
2022-04-08 03:44:36 +00:00
|
|
|
}
|
|
|
|
|
2022-11-16 14:03:54 +00:00
|
|
|
template <typename... Ts> requires (CInvocable<const F&&, Ts&&...>)
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr auto operator()(Ts&&... Args) const&&
|
2022-11-16 11:13:37 +00:00
|
|
|
-> decltype(!Invoke(MoveTemp(Storage), Forward<Ts>(Args)...))
|
2022-04-08 03:44:36 +00:00
|
|
|
{
|
2022-11-16 11:13:37 +00:00
|
|
|
return !Invoke(MoveTemp(Storage), Forward<Ts>(Args)...);
|
2022-04-08 03:44:36 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
NAMESPACE_PRIVATE_END
|
|
|
|
|
2022-11-16 14:03:54 +00:00
|
|
|
template <typename F> requires (CConstructibleFrom<F, F&&>)
|
2022-12-13 14:02:39 +00:00
|
|
|
FORCEINLINE constexpr NAMESPACE_PRIVATE::TNotFunction<TDecay<F>> NotFn(F&& Func)
|
2022-04-08 03:44:36 +00:00
|
|
|
{
|
2022-12-13 14:02:39 +00:00
|
|
|
return { Forward<F>(Func) };
|
2022-04-08 03:44:36 +00:00
|
|
|
}
|
|
|
|
|
2022-04-07 07:57:02 +00:00
|
|
|
NAMESPACE_MODULE_END(Utility)
|
|
|
|
NAMESPACE_MODULE_END(Redcraft)
|
|
|
|
NAMESPACE_REDCRAFT_END
|