AuroraRuntime/Include/Aurora/Threading/LockGuard.hpp

79 lines
2.0 KiB
C++
Raw Normal View History

2021-06-27 21:25:29 +00:00
/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: LockGuard.hpp
Date: 2021-6-10
Author: Reece
***/
#pragma once
namespace Aurora::Threading
{
template<typename T>
class LockGuard
{
2021-09-06 10:58:08 +00:00
private:
using Internal_t = std::remove_pointer_t<T>;
2021-06-27 21:25:29 +00:00
public:
2021-09-06 10:58:08 +00:00
LockGuard(T &lock)
{
if constexpr (std::is_pointer_v<T>)
{
annoying_ = lock;
}
else
{
annoying_ = &lock;
}
if constexpr (AuIsBaseOfTemplate<AURORA_RUNTIME_AU_SHARED_PTR, Internal_t>::value || AuIsBaseOfTemplate<AURORA_RUNTIME_AU_UNIQUE_PTR, Internal_t>::value)
{
annoying_->get()->Lock();
}
else
{
annoying_->Lock();
}
}
LockGuard(T &&lock)
2021-06-27 21:25:29 +00:00
{
2021-09-06 10:58:08 +00:00
if constexpr (std::is_pointer_v<T>)
{
annoying_ = lock;
}
else
{
annoying_ = &lock;
}
if constexpr (AuIsBaseOfTemplate<AURORA_RUNTIME_AU_SHARED_PTR, Internal_t>::value || AuIsBaseOfTemplate<AURORA_RUNTIME_AU_UNIQUE_PTR, Internal_t>::value)
{
annoying_->get()->Lock();
}
else
{
annoying_->Lock();
}
2021-06-27 21:25:29 +00:00
}
~LockGuard()
{
2021-09-06 10:58:08 +00:00
if constexpr (AuIsBaseOfTemplate<AURORA_RUNTIME_AU_SHARED_PTR, Internal_t>::value || AuIsBaseOfTemplate<AURORA_RUNTIME_AU_UNIQUE_PTR, Internal_t>::value)
{
annoying_->get()->Unlock();
}
else
{
annoying_->Unlock();
}
2021-06-27 21:25:29 +00:00
}
private:
2021-09-06 10:58:08 +00:00
std::conditional_t<std::is_pointer_v<T>, T, T*> annoying_;
2021-06-27 21:25:29 +00:00
};
2021-09-06 10:58:08 +00:00
#define AU_LOCK_GUARD(variable) Aurora::Threading::LockGuard<decltype(variable)> AU_CONCAT(__stack_lock, __COUNTER__) (variable);
2021-06-27 21:25:29 +00:00
}