12#ifndef ARCANE_MESH_DYNAMICMESHKINDINFOS_H
13#define ARCANE_MESH_DYNAMICMESHKINDINFOS_H
17#include "arcane/utils/Array.h"
18#include "arcane/utils/String.h"
19#include "arcane/utils/HashTableMap.h"
20#include "arcane/utils/TraceAccessor.h"
23#include "arcane/core/ItemGroup.h"
24#include "arcane/core/ItemInternal.h"
27#include "arcane/mesh/ItemInternalMap.h"
34#define ARCANE_ENABLE_EVENT_FOR_DYNAMICMESHKINDINFO
60 using ItemInternalMapData = ItemInternalMap::BaseData;
87 void prepareForDump();
103 ItemInternal* itemInternal(
Int32 local_id)
const {
return m_internals[local_id]; }
108 bool need_alloc =
false;
110#ifdef ARCANE_ENABLE_EVENT_FOR_DYNAMICMESHKINDINFO
111 _notifyAdd(next,unique_id);
113 if (m_has_unique_id_map)
115 _badSameUniqueId(unique_id);
123#ifdef ARCANE_ENABLE_EVENT_FOR_DYNAMICMESHKINDINFO
124 _notifyAdd(next,unique_id);
126 if (m_has_unique_id_map)
128 _badSameUniqueId(unique_id);
136 _checkActiveItem(item);
138 _setSuppressed(item);
139 if (m_has_unique_id_map){
141 if (uid != NULL_ITEM_UNIQUE_ID)
145 m_removed_items.add(item->
localId());
146#ifdef ARCANE_ENABLE_EVENT_FOR_DYNAMICMESHKINDINFO
156 _checkActiveItem(item);
158 _setSuppressed(item);
159#ifndef REMOVE_UID_ON_DETACH
160 if (m_has_unique_id_map)
164 m_removed_items.add(item->
localId());
165#ifdef ARCANE_ENABLE_EVENT_FOR_DYNAMICMESHKINDINFO
180 _checkActiveItem(item);
184#ifdef REMOVE_UID_ON_DETACH
185 if (m_has_unique_id_map)
198 if (!m_has_unique_id_map)
204 item_data.setValue(
_allocOne(need_alloc));
205#ifdef ARCANE_ENABLE_EVENT_FOR_DYNAMICMESHKINDINFO
206 _notifyAdd(item_data.value(),uid);
209 return item_data.value();
216 if (!m_has_unique_id_map)
227 Integer nbItem()
const {
return m_nb_item; }
229 eItemKind kind()
const {
return m_kind; }
233 return !m_added_items.empty() || !m_removed_items.empty();
236 void beginCompactItems(ItemFamilyCompactInfos& compact_infos);
257 void finishCompactItems(ItemFamilyCompactInfos& compact_infos);
259 void itemsUniqueIdToLocalId(ArrayView<Int64> ids,
bool do_fatal)
const;
260 void itemsUniqueIdToLocalId(Int32ArrayView local_ids,
261 Int64ConstArrayView unique_ids,
262 bool do_fatal)
const;
263 void itemsUniqueIdToLocalId(Int32ArrayView local_ids,
264 ConstArrayView<ItemUniqueId> unique_ids,
265 bool do_fatal)
const;
267 ItemFamily* itemFamily()
const
269 return m_item_family;
272 void setItemFamily(ItemFamily* item_family);
274 bool hasUniqueIdMap()
const
276 return m_has_unique_id_map;
279 void setHasUniqueIdMap(
bool v);
281 void printFreeInternals(Integer max_print);
285 EventObservableView<const ItemFamilyItemListChangedEventArgs&> itemListChangedEvent();
304 Integer nb_free2 = m_free_internals_in_multi_buffer.size();
306 new_item = m_free_internals_in_multi_buffer.back();
307 m_free_internals_in_multi_buffer.popBack();
312 new_item->setLocalId(lid);
314 _updateItemSharedInfoInternalView();
317 m_added_items.add(lid);
335 bool m_use_new_finalize;
336 bool m_is_first_finalize;
337 bool m_has_unique_id_map;
363 int f = item->
flags();
371 int f = item->
flags();
379 void _badSameUniqueId(
Int64 unique_id)
const;
380 void _badUniqueIdMap()
const;
381 void _updateItemSharedInfoInternalView();
384 if (m_item_list_change_event.hasObservers())
385 _notifyRemove2(item);
387 void _notifyAdd(ItemInternal* item,Int64 uid)
389 if (m_item_list_change_event.hasObservers())
390 _notifyAdd2(item,uid);
392 void _notifyRemove2(ItemInternal* item);
393 void _notifyAdd2(ItemInternal* item,Int64 uid);
Fichier contenant les mécanismes de gestion des évènements.
Vue constante d'un tableau de type T.
Classe de base d'un handler d'évènement.
ItemUniqueId uniqueId() const
Numéro unique de l'entité
Int32 flags() const
Flags de l'entité
Int32 localId() const
Numéro local (au sous-domaine) de l'entité
Informations pour gérer le compactage des entités d'une famille.
Flags pour les caractéristiques des entités.
@ II_Suppressed
L'entité vient d'être supprimée.
@ II_Added
L'entité vient d'être ajoutée.
Groupe d'entités de maillage.
Structure interne d'une entité de maillage.
Structure interne partagée d'une entité de maillage.
Tampon pour allocation multiple.
void setDetached(bool v)
Positionne l'état détachée de l'entité
void setFlags(Int32 f)
Positionne les flags de l'entité
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).
Integer m_nb_item
Groupe de toutes les entités.
String m_kind_name
Nom du genre des entités (Node, Cell, ...)
Integer maxUsedLocalId() const
Numéro local le plus grand utilisé.
MultiBufferT< ItemInternal > * m_item_internals_buffer
Tampon pour stocker une instance de ItemInternal.
void finalizeMeshChanged()
Réalloue et recalcule les structures après modification du maillage.
ItemGroup allItems() const
Groupe de toutes les entités.
void removeOne(ItemInternal *item)
Supprime l'entité item.
ItemInternal * allocOne(Int64 unique_id, bool &need_alloc)
Ajoute une entité de numéro unique unique_id.
UniqueArray< ItemInternal * > m_internals
ItemInternal des entités.
ItemInternal * findOrAllocOne(Int64 uid, bool &is_alloc)
Recherche l'entité de numéro unique unique_id et la créé si elle n'existe pas.
ConstArrayView< ItemInternal * > itemsInternal() const
Liste interne des ItemInternal's.
ItemInternal * _allocOne(bool &need_alloc)
Ajoute une entité.
Int32ConstArrayView addedItems() const
Liste des entitées ajoutées ou retirées depuis le dernier endUpdate()
DynamicMeshKindInfos(IMesh *mesh, eItemKind kind, const String &kind_name)
Créé une instance pour un maillage et un genre donnée.
ItemInternal * allocOne(Int64 unique_id)
Ajoute une entité de numéro unique unique_id.
void removeDetachedOne(ItemInternal *item)
Supprime l'entité détachée item.
ItemFamilyCompactInfos * m_compact_infos
Temporaire tant que oldToNewLocalIds() et newToOldLocalIds() existent.
String m_all_group_name
Nom du groupe contenant toutes les entités.
void detachOne(ItemInternal *item)
Détache une l'entité item.
ItemInternalMap m_items_map
Table de hachage conversion uniqueId() -> ItemInternal*.
Int32UniqueArray m_free_internals
Liste des ItemInternal de m_item_internals_buffer libres.
ItemInternal * findOne(Int64 uid)
Recherche l'entité de numéro unique uid.
IMesh * m_mesh
Maillage associé
eItemKind m_kind
Genre correspondant.
ItemFamily * m_item_family
Famille de maillage associée.
Tableau associatif de ItemInternal.
std::int64_t Int64
Type entier signé sur 64 bits.
Int32 Integer
Type représentant un entier.
ConstArrayView< Int32 > Int32ConstArrayView
Equivalent C d'un tableau à une dimension d'entiers 32 bits.
UniqueArray< Int32 > Int32UniqueArray
Tableau dynamique à une dimension d'entiers 32 bits.
eItemKind
Genre d'entité de maillage.
std::int32_t Int32
Type entier signé sur 32 bits.