Lightweight 0.1.0
Loading...
Searching...
No Matches
CollectDifferences.hpp
1// SPDX-License-Identifier: Apache-2.0
2#pragma once
3
4#include <reflection-cpp/reflection.hpp>
5
6#include <any>
7#include <iostream>
8
9template <typename Record>
10struct DifferenceView
11{
12
13 DifferenceView(const Record* lhs, const Record* rhs) noexcept:
14 lhs(lhs),
15 rhs(rhs)
16 {
17 }
18
19 template <typename Callback>
20 void iterate(Callback&& callback) noexcept
21 {
22 Reflection::template_for<0, Reflection::CountMembers<Record>>([&]<auto I>() {
23 if (std::find(indexes.begin(), indexes.end(), I) != indexes.end())
24 {
25 callback(Reflection::GetMemberAt<I>(*lhs), Reflection::GetMemberAt<I>(*rhs));
26 }
27 });
28 }
29
30 void push_back(size_t ind) noexcept
31 {
32 indexes.push_back(ind);
33 }
34
35 std::vector<size_t> indexes;
36 const Record* lhs;
37 const Record* rhs;
38};
39
40template <typename Record>
41DifferenceView<Record> CollectDifferences(Record const& left, Record const& right) noexcept
42{
43
44 DifferenceView<Record> view { &left, &right };
45
46 Reflection::CollectDifferences(
47 left, right, [&](size_t ind, [[maybe_unused]] auto const& left_elem, [[maybe_unused]] auto const& right_elem) { view.push_back(ind); });
48
49 return view;
50}