File: generic.hpp

package info (click to toggle)
sight 25.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 42,180 kB
  • sloc: cpp: 289,476; xml: 17,257; ansic: 9,878; python: 1,379; sh: 144; makefile: 33
file content (397 lines) | stat: -rw-r--r-- 10,893 bytes parent folder | download | duplicates (2)
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
/************************************************************************
 *
 * Copyright (C) 2009-2024 IRCAD France
 * Copyright (C) 2012-2020 IHU Strasbourg
 *
 * This file is part of Sight.
 *
 * Sight is free software: you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Sight is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with Sight. If not, see <https://www.gnu.org/licenses/>.
 *
 ***********************************************************************/

#pragma once

#include <sight/data/config.hpp>

#include "data/exception.hpp"
#include "data/factory/new.hpp"
#include "data/string_serializable.hpp"

#include <boost/lexical_cast.hpp>

#include <string>

namespace sight::data
{

/* *INDENT-OFF* */
namespace
{

template <typename T>
concept supports_subscript = requires(T a, size_t i) {
    { a[i] };
};
}
/* *INDENT-ON* */

/**
 * @brief   Generic "field" object template.
 *
 * A generic object contains a value.
 *
 * @see     data::real data::real, data::boolean, data::integer, data::vec
 */
template<typename T>
class SIGHT_DATA_CLASS_API generic : public string_serializable
{
public:

    SIGHT_DECLARE_CLASS(generic<T>, string_serializable);

    using value_t = T;

    //------------------------------------------------------------------------------

    generic() noexcept :
        m_value(T())
    {
    }

    generic(const T& _value) noexcept :
        m_value(_value)
    {
    }

    explicit generic(const generic<T>& _other) :
        m_value(_other.value())
    {
    }

    explicit generic(generic<T>&& _other) :
        m_value(_other.value())
    {
    }

    //------------------------------------------------------------------------------

    virtual ~generic() noexcept = default;

    //------------------------------------------------------------------------------

    /// @brief Get the value (mutable version).
    T& value() noexcept
    {
        return m_value;
    }

    /// @brief Get the value (constant version).
    const T& value() const noexcept
    {
        return m_value;
    }

    /// @brief set the value
    void set_value(const T& _new_value) noexcept
    {
        m_value = _new_value;
    }

    /// @brief get the value
    T get_value() const noexcept
    {
        return m_value;
    }

    /// @brief Conversion to a scalar type.
    operator T() noexcept {
        return m_value;
    }

    //------------------------------------------------------------------------------

    const T& default_value() const
    {
        return m_default_value;
    }

    //------------------------------------------------------------------------------

    void set_default_value() final
    {
        m_default_value = m_value;
    }

    /// Reset to the default value
    void reset() final
    {
        m_value = m_default_value;
    }

    //------------------------------------------------------------------------------

    /// Defines shallow copy
    /// @throws data::exception if an errors occurs during copy
    /// @param[in] _source the source object to copy
    void shallow_copy(const object::csptr& _source) override;

    /// Defines deep copy
    /// @throws data::exception if an errors occurs during copy
    /// @param _source source object to copy
    /// @param _cache cache used to deduplicate pointers
    void deep_copy(
        const object::csptr& _source,
        const std::unique_ptr<deep_copy_cache_t>& _cache = std::make_unique<deep_copy_cache_t>()
    ) override;

    //------------------------------------------------------------------------------

    generic<T>& operator=(const generic<T>& _other);
    generic<T>& operator=(generic<T>&& _other);
    generic<T>& operator=(const T& _other);
    generic<T>& operator=(T&& _other);

    //------------------------------------------------------------------------------

    constexpr auto& operator[](const std::size_t _index) const noexcept requires supports_subscript<T>;
    constexpr auto& operator[](const std::size_t _index) noexcept requires supports_subscript<T>;

    //------------------------------------------------------------------------------

    bool operator==(const generic& _other) const noexcept;
    bool operator<(const generic& _other) const noexcept;
    bool operator>(const generic& _other) const noexcept;

    //------------------------------------------------------------------------------

    inline bool operator<=(const generic& _other) const noexcept
    {
        return !(*this > _other);
    }

    //------------------------------------------------------------------------------

    inline bool operator>=(const generic& _other) const noexcept
    {
        return !(*this < _other);
    }

protected:

    //------------------------------------------------------------------------------

    std::ostream& to_ostream(std::ostream& _os) const override
    {
        return _os << this->to_string();
    }

    /// The stored value.
    T m_value {};

    /// The default value.
    T m_default_value {};
};

//------------------------------------------------------------------------------

template<class T>
constexpr auto& generic<T>::operator[](const std::size_t _index) const noexcept requires supports_subscript<T>
{
    return this->value()[_index];
}

//------------------------------------------------------------------------------

template<class T>
constexpr auto& generic<T>::operator[](const std::size_t _index) noexcept requires supports_subscript<T>
{
    return this->value()[_index];
}

//------------------------------------------------------------------------------

template<typename T>
void generic<T>::shallow_copy(const object::csptr& _source)
{
    const auto& other = std::dynamic_pointer_cast<const generic<T> >(_source);

    SIGHT_THROW_EXCEPTION_IF(
        exception("Unable to copy " + (_source ? _source->classname() : std::string("<NULL>")) + " to " + classname()),
        other == nullptr
    );

    m_value = other->m_value;

    base_class_t::shallow_copy(other);
}

//------------------------------------------------------------------------------

template<typename T>
void generic<T>::deep_copy(const object::csptr& _source, const std::unique_ptr<deep_copy_cache_t>& _cache)
{
    const auto& other = std::dynamic_pointer_cast<const generic<T> >(_source);

    SIGHT_THROW_EXCEPTION_IF(
        exception("Unable to copy " + (_source ? _source->classname() : std::string("<NULL>")) + " to " + classname()),
        other == nullptr
    );

    m_value = other->m_value;

    base_class_t::deep_copy(other, _cache);
}

//------------------------------------------------------------------------------

template<class T>
generic<T>& generic<T>::operator=(const generic<T>& _other)
{
    this->value() = _other.value();
    return *this;
}

//------------------------------------------------------------------------------

template<class T>
generic<T>& generic<T>::operator=(generic<T>&& _other)
{
    this->value() = _other.value();
    return *this;
}

//------------------------------------------------------------------------------

template<class T>
generic<T>& generic<T>::operator=(const T& _other)
{
    this->value() = _other;
    return *this;
}

//------------------------------------------------------------------------------

template<class T>
generic<T>& generic<T>::operator=(T&& _other)
{
    this->value() = _other;
    return *this;
}

//------------------------------------------------------------------------------

template<typename T>
bool generic<T>::operator==(const generic& _other) const noexcept
{
    try
    {
        // Try to cast in the same type
        const auto& other_field = dynamic_cast<const generic<T>&>(_other);

        // If the type is a floating point type
        if constexpr(std::is_floating_point_v<T>)
        {
            // Use our handcrafted comparison (which manage scaled epsilon and NaN / Inf)
            if(!core::is_equal(this->m_value, other_field.m_value))
            {
                return false;
            }
        }
        else if(!(this->m_value == other_field.m_value))
        {
            return false;
        }

        // Do not forget to call superclass == operator
        // base_class_t have a pure virtual == operator, so we call the base class from base_class_t
        using base = typename base_class_t::base_class_t;
        return base::operator==(_other);
    }
    catch([[maybe_unused]] const std::bad_cast& exp)
    {
        SIGHT_ASSERT("generic must have same value_t: " << exp.what(), false);
    }

    return false;
}

//------------------------------------------------------------------------------

template<typename T>
bool generic<T>::operator<(const generic& _other) const noexcept
{
    try
    {
        // Try to cast in the same type
        const auto& other_field = dynamic_cast<const generic<T>&>(_other);

        // If the type is a floating point type
        if constexpr(std::is_floating_point_v<T>)
        {
            // Use our handcrafted comparison (which manage scaled epsilon and NaN / Inf)
            if(!core::is_less(this->m_value, other_field.m_value))
            {
                return false;
            }
        }
        else if(!(this->m_value < other_field.m_value))
        {
            return false;
        }

        return true;
    }
    catch([[maybe_unused]] const std::bad_cast& exp)
    {
        SIGHT_ASSERT("generic must have same value_t: " << exp.what(), false);
    }

    return false;
}

//------------------------------------------------------------------------------

template<typename T>
bool generic<T>::operator>(const generic& _other) const noexcept
{
    try
    {
        // Try to cast in the same type
        const auto& other_field = dynamic_cast<const generic<T>&>(_other);

        // If the type is a floating point type
        if constexpr(std::is_floating_point_v<T>)
        {
            // Use our handcrafted comparison (which manage scaled epsilon and NaN / Inf)
            if(!core::is_greater(this->m_value, other_field.m_value))
            {
                return false;
            }
        }
        else if(!(this->m_value > other_field.m_value))
        {
            return false;
        }

        return true;
    }
    catch([[maybe_unused]] const std::bad_cast& exp)
    {
        SIGHT_ASSERT("generic must have same value_t: " << exp.what(), false);
    }

    return false;
}

} // namespace sight::data