Arbutils/src/Memory/BorrowedPtr.hpp

56 lines
1.9 KiB
C++
Raw Normal View History

#ifndef ARBUTILS_BORROWEDPTR_HPP
#define ARBUTILS_BORROWEDPTR_HPP
#include <memory>
namespace ArbUt {
/// A borrowed pointer is used to indicate a pointer that is not owned by an object, but instead borrowed from
/// another owning object that is assumed to always be kept alive during the entire lifetime of the borrowing
/// object.
template <class T> class BorrowedPtr {
private:
T* _raw;
public:
inline BorrowedPtr<T>() : _raw(nullptr){};
inline BorrowedPtr<T>(T* ptr) : _raw(ptr){};
inline BorrowedPtr(const BorrowedPtr<T>& other) : _raw(other._raw){};
inline BorrowedPtr(const std::unique_ptr<T>& other) : _raw(other.get()){};
~BorrowedPtr() = default;
inline BorrowedPtr<T>& operator=(const BorrowedPtr<T>& rhs) {
_raw = rhs._raw;
return *this;
}
inline T* operator->() const noexcept { return _raw; }
inline T* GetRaw() const noexcept { return _raw; }
inline bool operator==(const BorrowedPtr& rhs) const { return _raw == rhs._raw; }
inline bool operator!=(const BorrowedPtr& rhs) const { return _raw != rhs._raw; }
[[nodiscard]] inline constexpr bool IsNull() const noexcept { return _raw == nullptr; }
template <class TCast> inline BorrowedPtr<TCast> As() const {
auto cast = dynamic_cast<TCast*>(_raw);
return BorrowedPtr<TCast>(cast);
}
template <class TCast> inline bool TryAs(BorrowedPtr<TCast>& out) const {
auto cast = dynamic_cast<TCast*>(_raw);
if (cast == nullptr)
return false;
out = BorrowedPtr<TCast>(cast);
return true;
}
template <class TCast> inline BorrowedPtr<TCast> ForceAs() const {
auto cast = reinterpret_cast<TCast*>(_raw);
return BorrowedPtr<TCast>(cast);
}
};
}
#endif // ARBUTILS_BORROWEDPTR_HPP