5#include "../DataBinder/Core.hpp"
6#include "../DataBinder/SqlNullValue.hpp"
7#include "../SqlStatement.hpp"
8#include "BelongsTo.hpp"
12#include <reflection-cpp/reflection.hpp>
29template <
typename OtherRecord>
43 using iterator =
typename ReferencedRecordList::iterator;
58 template <typename Callable>
59 void Each(Callable const& callable);
65 [[nodiscard]] std::
size_t Count() const noexcept;
68 [[nodiscard]]
bool IsEmpty() const noexcept;
75 [[nodiscard]] OtherRecord const&
At(std::
size_t index) const;
82 [[nodiscard]] OtherRecord&
At(std::
size_t index);
89 [[nodiscard]] OtherRecord const& operator[](std::
size_t index) const;
96 [[nodiscard]] OtherRecord& operator[](std::
size_t index);
103 constexpr std::weak_ordering operator<=>(
HasMany<OtherRecord> const& other) const noexcept = default;
104 constexpr
bool operator==(
HasMany<OtherRecord> const& other) const noexcept = default;
105 constexpr
bool operator!=(
HasMany<OtherRecord> const& other) const noexcept = default;
109 std::function<size_t()> count {};
110 std::function<void()> all {};
118 void RequireLoaded();
121 std::optional<ReferencedRecordList> _records;
122 std::optional<size_t> _count;
126constexpr bool IsHasMany = IsSpecializationOf<HasMany, T>;
128template <
typename OtherRecord>
131 _loader = std::move(loader);
134template <
typename OtherRecord>
141template <
typename OtherRecord>
145 _records = { std::move(records) };
149template <
typename OtherRecord>
156template <
typename OtherRecord>
157template <
typename Callable>
160 if (!_records && _loader.each)
162 _loader.each(callable);
166 for (
auto const& record: All())
170template <
typename OtherRecord>
178template <
typename OtherRecord>
182 return _records->size();
190template <
typename OtherRecord>
196template <
typename OtherRecord>
200 return *_records->at(index);
203template <
typename OtherRecord>
207 return *_records->at(index);
210template <
typename OtherRecord>
214 return *(*_records)[index];
217template <
typename OtherRecord>
221 return *(*_records)[index];
224template <
typename OtherRecord>
228 return _records->begin();
231template <
typename OtherRecord>
235 return _records->end();
238template <
typename OtherRecord>
242 return _records->begin();
245template <
typename OtherRecord>
249 return _records->end();
This HasMany<OtherRecord> represents a simple one-to-many relationship between two records.
typename ReferencedRecordList::iterator iterator
Iterator type for the list of records.
ReferencedRecordList const & All() const noexcept
Retrieves the list of loaded records.
OtherRecord value_type
Record type of the "many" side of the relationship.
bool IsEmpty() const noexcept
Checks if this 1-to-many relationship is empty.
std::size_t Count() const noexcept
Retrieves the number of records in this 1-to-many relationship.
void Each(Callable const &callable)
Iterates over the list of records and calls the given callable for each record.
void SetAutoLoader(Loader loader) noexcept
Used internally to configure on-demand loading of the records.
std::vector< std::shared_ptr< OtherRecord > > ReferencedRecordList
The list of records on the "many" side of the relationship.
ReferencedRecordList & Emplace(ReferencedRecordList &&records) noexcept
Emplaces the given list of records.
typename ReferencedRecordList::const_iterator const_iterator
Const iterator type for the list of records.
OtherRecord ReferencedRecord
The record type of the "many" side of the relationship.
OtherRecord const & At(std::size_t index) const
Retrieves the record at the given index.
OtherRecord const & operator[](std::size_t index) const
Retrieves the record at the given index.