summaryrefslogtreecommitdiff
path: root/include/fud_option.hpp
blob: 9d3068c900f2c510d17bae83f15f4626f5085381 (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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
/*
 * libfud
 * Copyright 2024 Dominick Allen
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef FUD_OPTION_HPP
#define FUD_OPTION_HPP

#include "fud_assert.hpp"

#include <cstddef>
#include <functional>
#include <new> // IWYU pragma: keep (placement new)
#include <type_traits>

namespace fud {

namespace option_detail {

struct NullOptionType {
    enum class NullOptConstructor : char
    {
        Monostate
    };

    constexpr explicit NullOptionType(NullOptConstructor /*unnamed*/)
    {
    }
};

template <size_t Size>
struct DataArray {
    // NOLINTBEGIN(cppcoreguidelines-avoid-c-arrays)
    std::byte m_data[Size];
    // NOLINTEND(cppcoreguidelines-avoid-c-arrays)

    constexpr std::byte* data() noexcept
    {
        return m_data;
    }

    [[nodiscard]] constexpr const std::byte* data() const noexcept
    {
        return m_data;
    }

    constexpr bool operator==(const DataArray&) const noexcept = default;

    constexpr void clear()
    {
        for (size_t idx = 0; idx < Size; ++idx) {
            m_data[idx] = std::byte(0);
        }
    }
};

} // namespace option_detail

inline constexpr option_detail::NullOptionType NullOpt{option_detail::NullOptionType::NullOptConstructor::Monostate};

template <typename T>
class Option {
  private:
    static_assert(!std::is_same_v<T, option_detail::NullOptionType>);
    static constexpr bool IsRef = std::is_reference_v<T>;

  public:
    using ValueType = std::remove_reference_t<T>;
    static constexpr size_t Size = IsRef ? sizeof(std::reference_wrapper<ValueType>) : sizeof(ValueType);

    constexpr Option() noexcept : m_engaged{false}
    {
    }

    constexpr Option(option_detail::NullOptionType nullOpt) noexcept : m_engaged{false}
    {
        static_cast<void>(nullOpt);
    }

    constexpr Option(T value) noexcept : m_engaged{true}
    {
        if constexpr (IsRef) {
            new (m_data.data()) std::reference_wrapper<ValueType>(std::ref(value));
        } else {
            new (m_data.data()) ValueType(value);
        }
    }

    constexpr static Option take(T&& value) noexcept
    {
        Option option{};
        option.m_engaged = true;
        if constexpr (IsRef) {
            new (option.m_data.data()) std::reference_wrapper<ValueType>(std::ref(value));
        } else {
            new (option.m_data.data()) ValueType(std::move(value));
        }
        return option;
    }

    constexpr Option(const Option& rhs) noexcept : m_data(rhs.m_data), m_engaged(rhs.m_engaged)
    {
    }

    constexpr Option(Option&& rhs) noexcept : m_data(std::move(rhs.m_data)), m_engaged(rhs.m_engaged)
    {
        rhs.cleanup();
    }

    constexpr ~Option() noexcept
    {
        destroy();
    }

    Option& operator=(const Option& rhs) noexcept
    {
        if (&rhs == this) {
            return *this;
        }
        destroy();
        m_engaged = rhs.m_engaged;
        m_data = rhs.m_data;
        return *this;
    }

    Option& operator=(Option&& rhs) noexcept
    {
        destroy();
        m_engaged = rhs.m_engaged;
        m_data = std::move(rhs.m_data);
        rhs.cleanup();
        return *this;
    }

    [[nodiscard]] bool hasValue() const
    {
        return m_engaged;
    }

    [[nodiscard]] bool isNone() const
    {
        return !m_engaged;
    }

    operator bool() const
    {
        return hasValue();
    }

    [[nodiscard]] constexpr const ValueType& value() const&
    {
        fudAssert(m_engaged);
        if constexpr (IsRef) {
            // NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast)
            return *reinterpret_cast<const std::reference_wrapper<ValueType>*>(m_data.data());
        } else {
            // NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast)
            return *reinterpret_cast<const ValueType*>(m_data.data());
        }
    }

    [[nodiscard]] constexpr ValueType& value() &
    {
        fudAssert(m_engaged);
        if constexpr (IsRef) {
            // NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast)
            return *reinterpret_cast<std::reference_wrapper<ValueType>*>(m_data.data());
        } else {
            // NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast)
            return *reinterpret_cast<ValueType*>(m_data.data());
        }
    }

    [[nodiscard]] constexpr const ValueType&& value() const&&
    {
        fudAssert(m_engaged);
        static_assert(!IsRef);
        // NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast)
        return std::move(*reinterpret_cast<const ValueType*>(m_data.data()));
    }

    [[nodiscard]] constexpr const ValueType& valueOr(const ValueType& alternative) const&
    {
        if (m_engaged) {
            return value();
        }
        return alternative;
    }

    [[nodiscard]] constexpr ValueType&& valueOr(ValueType&& alternative) const&&
    {
        if (m_engaged) {
            return value();
        }
        return std::move(alternative);
    }

    template <typename F>
    constexpr auto map(F&& func) const& -> Option<decltype(std::forward<F>(func)(value()))>
    {
        using U = decltype(std::forward<F>(func)(value()));
        // static_assert(std::is_same_v<decltype(std::forward<F>(func)(value())), Option<U>>());
        if (hasValue()) {
            return Option<U>{std::forward<F>(func)(value())};
        }
        return Option<U>{NullOpt};
    }

  private:
    constexpr void destroy() noexcept
    {
        if (m_engaged) {
            if constexpr (IsRef) {
                // reinterpret_cast<std::reference_wrapper<ValueType>*>(m_data.data());
            } else {
                // NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast)
                reinterpret_cast<ValueType*>(m_data.data())->~ValueType();
            }
            cleanup();
        }
    }

    constexpr void cleanup() noexcept
    {
        m_engaged = false;
        m_data.clear();
    }

    static constexpr auto Align = std::max(alignof(ValueType), alignof(std::reference_wrapper<ValueType>));
    alignas(Align) option_detail::DataArray<Size> m_data{};

    bool m_engaged;
};

} // namespace fud

#endif