5#include "../SqlStatement.hpp"
19template <
typename OtherTable,
typename ThroughTable>
32 LIGHTWEIGHT_FORCE_INLINE
constexpr void EmplaceRecord(std::shared_ptr<ReferencedRecord> record) { _record = std::move(record); }
35 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE
constexpr ReferencedRecord&
Record() noexcept { RequireLoaded();
return *_record.get(); }
38 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE
constexpr ReferencedRecord const&
Record() const noexcept { RequireLoaded();
return *_record.get(); }
41 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE
constexpr bool IsLoaded() const noexcept {
return _record.get() !=
nullptr; }
44 LIGHTWEIGHT_FORCE_INLINE
void Unload() noexcept { _record = std::nullopt; }
52 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE
constexpr ReferencedRecord const&
operator*() const noexcept { RequireLoaded();
return *_record; }
60 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE
constexpr ReferencedRecord const*
operator->() const noexcept { RequireLoaded();
return &_record.get(); }
63 std::weak_ordering operator<=>(
HasOneThrough const& other)
const noexcept =
default;
67 std::function<void()> loadReference {};
73 _loader = std::move(loader);
77 void RequireLoaded()
const
82 if (_loader.loadReference)
83 _loader.loadReference();
92 std::shared_ptr<ReferencedRecord> _record {};
98struct IsHasOneThrough: std::false_type
102template <
typename OtherTable,
typename ThroughTable>
103struct IsHasOneThrough<
HasOneThrough<OtherTable, ThroughTable>>: std::true_type
109constexpr bool IsHasOneThrough = detail::IsHasOneThrough<std::remove_cvref_t<T>>::value;
Represents a one-to-one relationship through a join table.
LIGHTWEIGHT_FORCE_INLINE constexpr ReferencedRecord & operator*() noexcept
Retrieves the record in this relationship.
OtherTable ReferencedRecord
The record type of the "Other" side of the relationship.
ThroughTable ThroughRecord
The record type of the "through" side of the relationship.
void SetAutoLoader(Loader loader)
Used internally to configure on-demand loading of the record.
LIGHTWEIGHT_FORCE_INLINE constexpr ReferencedRecord * operator->() noexcept
Retrieves the record in this relationship.
LIGHTWEIGHT_FORCE_INLINE void Unload() noexcept
Unloads the record from memory.
LIGHTWEIGHT_FORCE_INLINE constexpr ReferencedRecord const & operator*() const noexcept
Retrieves the record in this relationship.
LIGHTWEIGHT_FORCE_INLINE constexpr ReferencedRecord const * operator->() const noexcept
Retrieves the record in this relationship.
LIGHTWEIGHT_FORCE_INLINE constexpr ReferencedRecord const & Record() const noexcept
Retrieves the record in this relationship.
LIGHTWEIGHT_FORCE_INLINE constexpr ReferencedRecord & Record() noexcept
Retrieves the record in this relationship.
LIGHTWEIGHT_FORCE_INLINE constexpr bool IsLoaded() const noexcept
Checks if the record is loaded.
LIGHTWEIGHT_FORCE_INLINE constexpr void EmplaceRecord(std::shared_ptr< ReferencedRecord > record)
Emplaces the given record into this relationship.
Represents an error when a record is required to be loaded but is not.