summaryrefslogtreecommitdiffhomepage
path: root/entity/accessor.hpp
blob: 9dd9c3b6e253885a7c93d42c017f43499aca9a8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
#pragma once
#include "util.hpp"
#include "erased-constraints.hpp"
#include "name-of.hpp"
#include <type_traits>
#include <Corrade/Containers/StringView.h>

namespace floormat::erased_constraints {

struct range;
struct max_length;
struct group;

} // namespace floormat::erased_constraints

namespace floormat::entities {

enum class field_status : unsigned char { hidden, readonly, enabled, COUNT, };

struct erased_accessor final {
    using reader_t = void;
    using writer_t = void;
    using predicate_t = void;
    using c_range_t = void;
    using c_length_t = void;
    using Object = void;
    using Value = void;

    const reader_t* reader = nullptr;
    const writer_t* writer = nullptr;
    const predicate_t* predicate = nullptr;
    const c_range_t* range = nullptr;
    const c_length_t* length = nullptr;

    StringView field_name, object_type, field_type;
    void(*read_fun)(const Object*, const reader_t*, Value*) = nullptr;
    void(*write_fun)(Object*, const writer_t*, Value*) = nullptr;
    field_status(*predicate_fun)(const Object*, const predicate_t*) = nullptr;
    erased_constraints::range(*range_fun)(const Object*, const c_range_t*) = nullptr;
    erased_constraints::max_length(*length_fun)(const Object*, const c_length_t*) = nullptr;

    explicit constexpr erased_accessor() noexcept = default;
    constexpr erased_accessor(const erased_accessor&) = default;
    constexpr erased_accessor(const reader_t* reader, const writer_t* writer, const predicate_t* predicate,
                              const c_range_t* range, const c_length_t* length,
                              StringView field_name, StringView object_name, StringView field_type_name,
                              void(*read_fun)(const Object*, const reader_t*, Value*),
                              void(*write_fun)(Object*, const writer_t*, Value*),
                              field_status(*predicate_fun)(const Object*, const predicate_t*),
                              erased_constraints::range(*range_fun)(const Object*, const c_range_t*),
                              erased_constraints::max_length(*length_fun)(const Object*, const c_length_t*)) :
        reader{reader}, writer{writer}, predicate{predicate},
        range{range}, length{length},
        field_name{field_name}, object_type{object_name}, field_type{field_type_name},
        read_fun{read_fun}, write_fun{write_fun}, predicate_fun{predicate_fun},
        range_fun{range_fun}, length_fun{length_fun}
    {}

    template<typename T, typename FieldType>
    [[nodiscard]] static constexpr bool check_name_static();

    template<typename T, typename FieldType>
    [[nodiscard]] constexpr bool check_name() const noexcept;

    template<typename FieldType>
    [[nodiscard]] constexpr bool check_field_type() const noexcept;

    template<typename Obj>
    constexpr void do_asserts() const;

    template<typename Obj, typename FieldType> constexpr void assert_name() const noexcept;
    template<typename Obj, typename FieldType> void read_unchecked(const Obj& x, FieldType& value) const noexcept;
    template<typename Obj, typename FieldType> requires std::is_default_constructible_v<FieldType> FieldType read_unchecked(const Obj& x) const noexcept;
    template<typename Obj, typename FieldType> void write_unchecked(Obj& x, move_qualified<FieldType> value) const noexcept;
    template<typename Obj, typename FieldType> requires std::is_default_constructible_v<FieldType> FieldType read(const Obj& x) const noexcept;
    template<typename Obj, typename FieldType> void read(const Obj& x, FieldType& value) const noexcept;
    template<typename Obj, typename FieldType> void write(Obj& x, move_qualified<FieldType> value) const noexcept;

    inline field_status is_enabled(const void* x) const noexcept;
    inline bool can_write() const noexcept { return writer != nullptr; }
    inline erased_constraints::range get_range(const void* x) const noexcept;
    inline erased_constraints::max_length get_max_length(const void* x) const noexcept;
};

template<typename T, typename FieldType>
constexpr bool erased_accessor::check_name_static()
{
    return !std::is_pointer_v<T> && !std::is_reference_v<T> &&
           !std::is_pointer_v<FieldType> && !std::is_reference_v<T>;
}

template<typename Obj>
constexpr void erased_accessor::do_asserts() const
{
    static_assert(!std::is_pointer_v<Obj> && !std::is_reference_v<Obj>);
    constexpr auto obj = name_of<Obj>;
    fm_assert(obj.data() == object_type.data() || obj == object_type);
}

template<typename T, typename FieldType>
constexpr bool erased_accessor::check_name() const noexcept
{
    static_assert(check_name_static<T, FieldType>());
    constexpr auto obj = name_of<T>, field = name_of<FieldType>;
    return (obj.data() == object_type.data() && field.data() == field_type.data()) ||
           obj == object_type && field == field_type;
}

template<typename FieldType>
constexpr bool erased_accessor::check_field_type() const noexcept
{
    constexpr auto name = name_of<FieldType>;
    return field_type == name;
}

template<typename Obj, typename FieldType>
constexpr void erased_accessor::assert_name() const noexcept
{
    fm_assert(check_name<Obj, FieldType>());
}

template<typename Obj, typename FieldType>
void erased_accessor::read_unchecked(const Obj& x, FieldType& value) const noexcept
{
    static_assert(check_name_static<Obj, FieldType>());
    read_fun(&x, reader, &value);
}

template<typename Obj, typename FieldType>
requires std::is_default_constructible_v<FieldType>
FieldType erased_accessor::read_unchecked(const Obj& x) const noexcept
{
    static_assert(check_name_static<Obj, FieldType>());
    FieldType value;
    read_unchecked(x, value);
    return value;
}

template<typename Obj, typename FieldType>
void erased_accessor::write_unchecked(Obj& x, move_qualified<FieldType> value) const noexcept
{
    static_assert(check_name_static<Obj, FieldType>());
    write_fun(&x, writer, &value);
}

template<typename Obj, typename FieldType>
requires std::is_default_constructible_v<FieldType>
FieldType erased_accessor::read(const Obj& x) const noexcept {
    assert_name<Obj, FieldType>();
    return read_unchecked<Obj, FieldType>(x);
}

template<typename Obj, typename FieldType>
void erased_accessor::read(const Obj& x, FieldType& value) const noexcept
{
    assert_name<Obj, FieldType>();
    read_unchecked<Obj, FieldType>(x, value);
}

template<typename Obj, typename FieldType>
void erased_accessor::write(Obj& x, move_qualified<FieldType> value) const noexcept
{
    assert_name<Obj, FieldType>();
    write_unchecked<Obj, FieldType>(x, value);
}

field_status erased_accessor::is_enabled(const void* x) const noexcept { return predicate_fun(x, predicate); }
erased_constraints::range erased_accessor::get_range(const void* x) const noexcept { return range_fun(x,range); }
erased_constraints::max_length erased_accessor::get_max_length(const void* x) const noexcept { return length_fun(x,length); }

} // namespace floormat::entities