File: array.cpp

package info (click to toggle)
sight 25.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 43,252 kB
  • sloc: cpp: 310,629; xml: 17,622; ansic: 9,960; python: 1,379; sh: 144; makefile: 33
file content (441 lines) | stat: -rw-r--r-- 11,757 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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
/************************************************************************
 *
 * 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/>.
 *
 ***********************************************************************/

#include "data/array.hpp"

#include "data/exception.hpp"
#include "data/registry/macros.hpp"

#include <algorithm>
#include <cstdlib>
#include <functional>
#include <numeric>

namespace sight::data
{

SIGHT_REGISTER_DATA(sight::data::array);

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

inline static std::size_t compute_size(
    std::size_t _element_size,
    const data::array::size_t& _size
)
{
    std::size_t total = 0;
    if(!_size.empty())
    {
        total  = _element_size;
        total *=
            std::accumulate(
                _size.begin(),
                _size.end(),
                static_cast<std::size_t>(1),
                std::multiplies<>()
            );
    }

    return total;
}

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

data::array::offset_t array::compute_strides(size_t _size, std::size_t _size_of_type)
{
    data::array::offset_t strides;
    strides.reserve(_size.size());

    std::size_t current_stride = _size_of_type;
    for(const auto& s : _size)
    {
        strides.push_back(current_stride);
        current_stride *= s;
    }

    return strides;
}

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

array::array() :
    m_buffer_object(std::make_shared<core::memory::buffer_object>())
{
}

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

array::~array()
{
    this->clear();
}

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

void array::swap(array::sptr _source) noexcept
{
    m_fields.swap(_source->m_fields);
    m_strides.swap(_source->m_strides);
    m_size.swap(_source->m_size);
    m_buffer_object->swap(_source->m_buffer_object);

    std::swap(m_type, _source->m_type);
    std::swap(m_is_buffer_owner, _source->m_is_buffer_owner);
}

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

void array::shallow_copy(const object::csptr& /*unused*/)
{
    SIGHT_FATAL("shallow_copy not implemented for : " + this->get_classname());
}

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

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

    SIGHT_THROW_EXCEPTION_IF(
        exception(
            "Unable to copy " + (_source ? _source->get_classname() : std::string("<NULL>"))
            + " to " + get_classname()
        ),
        !bool(other)
    );

    if(!other->m_buffer_object->is_empty())
    {
        resize(other->m_size, other->m_type, true);
        std::memcpy(m_buffer_object->buffer(), other->m_buffer_object->buffer(), other->size_in_bytes());
    }
    else
    {
        this->clear();

        m_strides = other->m_strides;
        m_type    = other->m_type;
        m_size    = other->m_size;
    }

    base_class_t::deep_copy(other, _cache);
}

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

std::size_t array::resize(
    const size_t& _size,
    const core::type& _type,
    bool _reallocate
)
{
    const std::size_t buf_size = compute_size(_type.size(), _size);

    if(_reallocate && buf_size != m_buffer_object->size())
    {
        if(m_buffer_object->is_empty())
        {
            m_is_buffer_owner = true;
            m_buffer_object->allocate(buf_size);
        }
        else if(m_is_buffer_owner)
        {
            m_buffer_object->reallocate(buf_size);
        }
        else
        {
            SIGHT_THROW_EXCEPTION_MSG(
                data::exception,
                "Tried to reallocate a not-owned Buffer."
            );
        }
    }

    m_strides = compute_strides(_size, _type.size());
    m_type    = _type;
    m_size    = _size;

    return buf_size;
}

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

std::size_t array::resize(const size_t& _size, bool _reallocate)
{
    return this->resize(_size, m_type, _reallocate);
}

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

void array::clear()
{
    if(!this->m_buffer_object->is_empty())
    {
        if(m_is_buffer_owner)
        {
            this->m_buffer_object->destroy();
        }

        m_strides.clear();
        m_type = core::type::NONE;
        m_size.clear();
    }
}

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

bool array::empty() const
{
    return m_size.empty();
}

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

std::size_t array::element_size_in_bytes() const
{
    return m_type.size();
}

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

std::size_t array::num_elements() const
{
    return compute_size(1, m_size);
}

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

std::size_t array::size_in_bytes() const
{
    return compute_size(m_type.size(), m_size);
}

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

const data::array::size_t& array::size() const
{
    return m_size;
}

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

const data::array::offset_t& array::get_strides() const
{
    return m_strides;
}

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

std::size_t array::num_dimensions() const
{
    return m_size.size();
}

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

void array::set_is_buffer_owner(const bool _own)
{
    m_is_buffer_owner = _own;
}

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

bool array::get_is_buffer_owner() const
{
    return m_is_buffer_owner;
}

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

core::type array::type() const
{
    return m_type;
}

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

std::size_t array::get_buffer_offset(const data::array::index_t& _id) const
{
    SIGHT_THROW_EXCEPTION_IF(
        data::exception(
            "Given index has " + std::to_string(_id.size()) + " dimensions, but array has "
            + std::to_string(m_size.size()) + " dimensions."
        ),
        _id.size() != m_size.size()
    );

    offset_t offsets(_id.size());

    std::transform(
        _id.begin(),
        _id.end(),
        m_strides.begin(),
        offsets.begin(),
        std::multiplies<>()
    );

    const std::size_t offset = std::accumulate(offsets.begin(), offsets.end(), static_cast<std::size_t>(0));

    return offset;
}

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

void* array::buffer()
{
    SIGHT_THROW_EXCEPTION_IF(
        data::exception(
            "The buffer cannot be accessed if the array is not locked for dump "
            "(see lock())"
        ),
        !m_buffer_object->is_locked()
    );
    return m_buffer_object->buffer();
}

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

const void* array::buffer() const
{
    SIGHT_THROW_EXCEPTION_IF(
        data::exception("The buffer cannot be accessed if the array is not locked"),
        !m_buffer_object->is_locked()
    );
    return m_buffer_object->buffer();
}

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

void array::set_buffer(void* _buf, bool _take_ownership, core::memory::buffer_allocation_policy::sptr _policy)
{
    if(m_buffer_object)
    {
        if(!m_buffer_object->is_empty())
        {
            m_buffer_object->destroy();
        }
    }
    else
    {
        core::memory::buffer_object::sptr new_buffer_object = std::make_shared<core::memory::buffer_object>();
        m_buffer_object->swap(new_buffer_object);
    }

    m_buffer_object->set_buffer(_buf, (_buf == nullptr) ? 0 : this->size_in_bytes(), _policy);
    this->set_is_buffer_owner(_take_ownership);
}

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

void array::set_buffer(
    void* _buf,
    bool _take_ownership,
    const data::array::size_t& _size,
    const core::type& _type,
    core::memory::buffer_allocation_policy::sptr _policy
)
{
    this->resize(_size, _type, false);
    this->set_buffer(_buf, _take_ownership, _policy);
}

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

char* array::get_buffer_ptr(const data::array::index_t& _id)
{
    const std::size_t offset = this->get_buffer_offset(_id);
    char* item               = static_cast<char*>(this->buffer()) + offset;
    return item;
}

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

const char* array::get_buffer_ptr(const data::array::index_t& _id) const
{
    const std::size_t offset = this->get_buffer_offset(_id);
    const char* item         = static_cast<const char*>(this->buffer()) + offset;
    return item;
}

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

void array::dump_lock_impl(std::vector<core::memory::buffer_object::lock_t>& _locks) const
{
    _locks.push_back(m_buffer_object->lock());
}

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

array::iterator<char> array::begin()
{
    return {static_cast<char*>(buffer())};
}

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

array::iterator<char> array::end()
{
    auto itr = iterator<char>(static_cast<char*>(buffer()));
    itr += static_cast<std::ptrdiff_t>(this->size_in_bytes());
    return itr;
}

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

array::const_iterator<char> array::begin() const
{
    return {static_cast<const char*>(buffer())};
}

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

array::const_iterator<char> array::end() const
{
    auto itr = const_iterator<char>(static_cast<const char*>(buffer()));
    itr += static_cast<std::ptrdiff_t>(this->size_in_bytes());
    return itr;
}

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

bool array::operator==(const array& _other) const noexcept
{
    if(m_strides != _other.m_strides
       || m_type != _other.m_type
       || m_size != _other.m_size
       || !core::is_equal(m_buffer_object, _other.m_buffer_object))
    {
        return false;
    }

    // Super class last
    return base_class_t::operator==(_other);
}

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

bool array::operator!=(const array& _other) const noexcept
{
    return !(*this == _other);
}

} //namespace sight::data