Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BLI_index_range.cc « intern « blenlib « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fde4dcf6d41504c4b6c095faa3025abc59b7cbfb (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
/*
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 */

#include <atomic>
#include <mutex>

#include "BLI_index_range.h"
#include "BLI_array_ref.h"
#include "BLI_array_cxx.h"
#include "BLI_vector.h"

namespace BLI {

static Vector<Array<uint, RawAllocator>, 1, RawAllocator> arrays;
static uint current_array_size = 0;
static uint *current_array = nullptr;
static std::mutex current_array_mutex;

ArrayRef<uint> IndexRange::as_array_ref() const
{
  uint min_required_size = m_start + m_size;

  if (min_required_size <= current_array_size) {
    return ArrayRef<uint>(current_array + m_start, m_size);
  }

  std::lock_guard<std::mutex> lock(current_array_mutex);

  if (min_required_size <= current_array_size) {
    return ArrayRef<uint>(current_array + m_start, m_size);
  }

  uint new_size = std::max<uint>(1000, power_of_2_max_u(min_required_size));
  Array<uint, RawAllocator> new_array(new_size);
  for (uint i = 0; i < new_size; i++) {
    new_array[i] = i;
  }
  arrays.append(std::move(new_array));

  current_array = arrays.last().begin();
  std::atomic_thread_fence(std::memory_order_seq_cst);
  current_array_size = new_size;

  return ArrayRef<uint>(current_array + m_start, m_size);
}

}  // namespace BLI