12#ifndef ARCANE_MATERIALS_INTERNAL_COMPONENTITEMINTERNALDATA_H
13#define ARCANE_MATERIALS_INTERNAL_COMPONENTITEMINTERNALDATA_H
17#include "arcane/utils/TraceAccessor.h"
18#include "arcane/utils/Array.h"
19#include "arcane/utils/NumArray.h"
22#include "arcane/core/materials/ComponentItemInternal.h"
46 friend ComponentItemInternalRange;
50 Iterator(
Int32 current_value,
Int32 last_value)
51 : m_current_value(current_value)
52 , m_last_value(last_value)
58 void operator++() { ++m_current_value; }
59 bool operator==(
const Sentinel&)
const
61 return m_current_value == m_last_value;
63 bool operator!=(
const Sentinel&)
const
65 return m_current_value != m_last_value;
70 Int32 m_current_value = 0;
71 Int32 m_last_value = 0;
78 ARCANE_CHECK_AT(index, m_nb_value);
84 void setRange(
Int32 first_index,
Int32 nb_value)
86 m_first_index = first_index;
87 m_nb_value = nb_value;
91 return Iterator(m_first_index, m_first_index + m_nb_value);
97 Int32 size()
const {
return m_nb_value; }
98 ConstituentItemIndex firstValue()
const {
return ConstituentItemIndex(m_first_index); }
102 Int32 m_first_index = -1;
103 Int32 m_nb_value = 0;
115class ComponentItemInternalData
129 void resize(
Int32 new_size, ComponentItemSharedInfo* shared_info,
RunQueue& queue);
130 Int32 size()
const {
return m_size; }
164 ComponentItemSharedInfo* allEnvSharedInfo() {
return sharedInfo(LEVEL_ALLENVIRONMENT); }
165 ComponentItemSharedInfo* envSharedInfo() {
return sharedInfo(LEVEL_ENVIRONMENT); }
166 ComponentItemSharedInfo* matSharedInfo() {
return sharedInfo(LEVEL_MATERIAL); }
170 MeshMaterialMng* m_material_mng =
nullptr;
184 void _initSharedInfos();
File d'exécution pour un accélérateur.
Conteneur pour les informations de ComponentItemSharedInfo.
void endCreate()
Notification de la fin de création des milieux/matériaux.
void resizeComponentItemInternals(Int32 max_local_id, Int32 total_env_cell)
Redimensionne les structures allouant les 'ComponentItemInternal'.
void _resetItemsInternal()
Réinitialise les ComponentItemInternal associés aux EnvCell et AllEnvCell.
ComponentItemSharedInfo * sharedInfo(Int16 level)
Instance partagée associée au niveau level.
UniqueArray< ComponentItemSharedInfo > m_shared_infos
Liste des informations partagées.
Interval des identifiants des constituants dans la liste des ComponentItemInternal.
Index d'une entité constituant dans la liste des entités constituants.
Implémentation d'un gestion des matériaux.
Options pour configurer les allocations.
Chaîne de caractères unicode.
TraceAccessor(ITraceMng *m)
Construit un accesseur via le gestionnaire de trace m.
Vecteur 1D de données avec sémantique par valeur (style STL).
Active toujours les traces dans les parties Arcane concernant les matériaux.
std::int16_t Int16
Type entier signé sur 16 bits.
std::int32_t Int32
Type entier signé sur 32 bits.