8#include <reflection-cpp/reflection.hpp>
19template <
typename Record>
25template <std::
size_t I,
typename Record>
26constexpr std::optional<size_t> FindPrimaryKeyIndex()
29 if constexpr (I < Reflection::CountMembers<Record>)
31 if constexpr (IsPrimaryKey<Reflection::MemberTypeOf<I, Record>>)
34 return FindPrimaryKeyIndex<I + 1, Record>();
42template <
typename Record>
43constexpr size_t RecordPrimaryKeyIndex =
44 detail::FindPrimaryKeyIndex<0, Record>().value_or((std::numeric_limits<size_t>::max)());
47template <
typename Record>
48decltype(
auto) RecordPrimaryKeyOf(Record&& record)
52 return Reflection::GetMemberAt<RecordPrimaryKeyIndex<std::remove_cvref_t<Record>>>(std::forward<Record>(record));
58template <
typename Record>
59struct RecordPrimaryKeyTypeHelper
64template <
typename Record>
65 requires(RecordPrimaryKeyIndex<Record> < Reflection::CountMembers<Record>)
66struct RecordPrimaryKeyTypeHelper<Record>
68 using type =
typename Reflection::MemberTypeOf<RecordPrimaryKeyIndex<Record>, Record>::ValueType;
74template <
typename Record>
75using RecordPrimaryKeyType =
typename details::RecordPrimaryKeyTypeHelper<Record>::type;
78template <
typename Record,
typename TargetMappable>
79void MapFromRecordFields(Record&& record, TargetMappable& target)
81 Reflection::EnumerateMembers(std::forward<Record>(record), [&]<std::size_t I>(
auto const& field) {
82 using MemberType = Reflection::MemberTypeOf<I, Record>;
83 static_assert(IsField<MemberType>,
"Record member must be a Field<> type");
84 static_assert(std::is_assignable_v<
decltype(target[I]),
decltype(field.Value())>,
85 "Target must support operator[] with the field type");
86 target[I] = field.Value();
Represents a record type that can be used with the DataMapper.