14#include "arcane/utils/FatalErrorException.h"
15#include "arcane/utils/PlatformUtils.h"
16#include "arcane/utils/NotImplementedException.h"
17#include "arcane/utils/StringBuilder.h"
19#include "arcane/core/IMesh.h"
20#include "arcane/core/IItemFamily.h"
22#include "arcane/core/IParallelMng.h"
23#include "arcane/core/ItemPrinter.h"
24#include "arcane/core/VariableTypes.h"
25#include "arcane/core/Timer.h"
26#include "arcane/core/IItemInternalSortFunction.h"
27#include "arcane/core/ItemFamilyCompactInfos.h"
28#include "arcane/core/IMeshCompacter.h"
29#include "arcane/core/MeshPartInfo.h"
30#include "arcane/core/ItemFamilyItemListChangedEventArgs.h"
32#include "arcane/mesh/DynamicMeshKindInfos.h"
33#include "arcane/mesh/ItemFamily.h"
58, m_use_new_finalize(true)
59, m_is_first_finalize(true)
60, m_has_unique_id_map(true)
78void DynamicMeshKindInfos::
94 m_use_new_finalize =
false;
97 m_is_first_finalize =
true;
115 <<
" internal size= " << internal_size
118 for(
Integer i=0; i<internal_size; ++i ){
120 info() <<
"Item " << i <<
" lib=" << item->
localId()
129 Integer nb_added_items = m_added_items.size();
130 Integer nb_removed_items = m_removed_items.size();
131 bool test_mode = m_use_new_finalize;
135 <<
" internal size " << internal_size
136 <<
" nb_add=" << nb_added_items
137 <<
" nb_remove=" << nb_removed_items;
147 for(
Integer i=0; i<nb_added_items; ++i )
148 m_internals[ m_added_items[i] ]->setOwner(sid,sid);
154 impl.beginTransaction();
155 if (nb_added_items==0 && nb_removed_items!=0 && test_mode){
156 impl.removeItems(m_removed_items,
true);
157 }
else if (nb_added_items!=0 && nb_removed_items==0 && test_mode){
158 impl.addItems(m_added_items,
true);
160 impl.removeAddItems(m_removed_items,m_added_items,
true);
162 impl.endTransaction();
165 impl.checkNeedUpdate();
167#if defined(ARCANE_DEBUG_MESH)
169 m_all_group.checkValid();
175#if defined(ARCANE_DEBUG_MESH)
180 m_removed_items.clear();
181 m_added_items.clear();
187void DynamicMeshKindInfos::
190 if (!m_has_unique_id_map)
195 Int64 unique_id = ids[i];
201 Int64 unique_id = ids[i];
209 Int64 unique_id = ids[i];
211 if ((ids[i] == NULL_ITEM_LOCAL_ID) && do_fatal) {
213 error() <<
"DynamicMeshKindInfos::itemsUniqueIdToLocalId() can't find "
215 << unique_id <<
" in the subdomain.";
230void DynamicMeshKindInfos::
234 if (!m_has_unique_id_map)
238 for(
Integer i=0, s=unique_ids.size(); i<s; ++i ){
239 Int64 unique_id = unique_ids[i];
240 local_ids[i] = (unique_id == NULL_ITEM_UNIQUE_ID) ? NULL_ITEM_LOCAL_ID :
m_items_map.findLocalId(unique_id);
244 for(
Integer i=0, s=unique_ids.size(); i<s; ++i ){
245 Int64 unique_id = unique_ids[i];
246 local_ids[i] =
m_items_map.tryFindLocalId(unique_id);
252 for(
Integer i=0, s=unique_ids.size(); i<s; ++i ){
253 Int64 unique_id = unique_ids[i];
254 local_ids[i] =
m_items_map.tryFindLocalId(unique_id);
255 if ((local_ids[i] == NULL_ITEM_LOCAL_ID) && do_fatal && unique_id != NULL_ITEM_UNIQUE_ID) {
257 error() <<
"DynamicMeshKindInfos::itemsUniqueIdToLocalId() can't find "
259 << unique_id <<
" in the subdomain.";
274void DynamicMeshKindInfos::
276 ConstArrayView<ItemUniqueId> unique_ids,
bool do_fatal)
const
278 if (!m_has_unique_id_map)
282 for(
Integer i=0, s=unique_ids.size(); i<s; ++i ){
283 Int64 unique_id = unique_ids[i];
288 for(
Integer i=0, s=unique_ids.size(); i<s; ++i ){
289 Int64 unique_id = unique_ids[i];
290 local_ids[i] =
m_items_map.tryFindLocalId(unique_id);
296 for(
Integer i=0, s=unique_ids.size(); i<s; ++i ){
297 Int64 unique_id = unique_ids[i];
298 local_ids[i] =
m_items_map.tryFindLocalId(unique_id);
299 if ((local_ids[i] == NULL_ITEM_LOCAL_ID) && do_fatal) {
301 error() <<
"DynamicMeshKindInfos::itemsUniqueIdToLocalId() can't find "
303 << unique_id <<
" in the subdomain.";
333 _updateItemSharedInfoInternalView();
338 m_free_internals_in_multi_buffer.clear();
357 for(
Integer i=0; i<nb_internal; ++i ){
359 if (item->
localId()!=i && nb_error<10){
360 error() <<
"The local id (" << item->
localId() <<
") of the entity "
362 <<
"consistent with its internal value (" << i <<
")";
369 if (item->
owner()==NULL_SUB_DOMAIN_ID && nb_error<10){
371 <<
":uid=" << item->
uniqueId() <<
" belongs to no subdomain";
375 if (item->
owner()!=sid && item->
isOwn() && nb_error<10){
377 <<
":uid=" << item->
uniqueId() <<
" incoherence between isOwn() and owner()"
378 <<
" " << item->
owner() <<
' ' << sid;
384 if (nb_killed_item!=nb_free){
386 <<
": incoherence between killed and free entities"
387 <<
" free=" << nb_free
388 <<
" killed=" << nb_killed_item
389 <<
" internal=" << nb_internal
395 ARCANE_FATAL(
"Internal error in the mesh structure mesh={0} part={1}",
403class ItemParticleCompareWithSuppression
433 return item1.m_unique_id < item2.m_unique_id;
480 bool do_sort = compact_infos.compacter()->
isSorted();
486 info(4) <<
m_kind_name <<
" beginCompactItems() Family Internal Size=" << nb_internal
489 <<
" do_sort=" << do_sort;
498 old_to_new_local_ids.
fill(NULL_ITEM_LOCAL_ID);
500 new_to_old_local_ids.
fill(NULL_ITEM_LOCAL_ID);
508 const bool print_infos =
false;
515 info() <<
"Before Sort: " << i <<
" uid=" << items[i]->uniqueId()
516 <<
" lid=" << items[i]->localId()
517 <<
" destroyed?=" << items[i]->isSuppressed();
526 <<
" sort_func_name=" << sort_func->
name();
530 info() <<
"After Sort: " << i <<
" uid=" << items[i]->uniqueId()
531 <<
" lid=" << items[i]->localId()
532 <<
" destroyed?=" << items[i]->isSuppressed();
537#ifdef ARCANE_TEST_ADD_MESH
538 typedef std::set<ItemInternal*,ItemCompare> ItemSet;
543 ItemSet::const_iterator b = items_set.begin();
544 ItemSet::const_iterator e = items_set.end();
545 for(
Integer z=0; b!=e; ++b, ++z)
551 Integer current_local_id = items[i]->localId();
554 old_to_new_local_ids[ current_local_id ] = i;
555 new_to_old_local_ids[ i ] = current_local_id;
559 const bool use_old =
true;
561 info(4) <<
"USE_OLD_METHOD";
565 Integer current_local_id = existing_items[i];
566 old_to_new_local_ids[ current_local_id ] = i;
567 new_to_old_local_ids[ i ] = current_local_id;
575 for(
Integer i=0, n=total_nb; i<n; ++i ){
577 if (old_to_new_local_ids[i]==NULL_ITEM_ID){
579 old_to_new_local_ids[i] = old_index;
587 if (old_index!=total_nb){
588 ARCANE_FATAL(
"Family '{0}' bad indices: expected={1} found={2} (nb_internal={3})",
589 itemFamily()->name(),old_index,total_nb,nb_internal);
602 old_to_new_local_ids[i] = free_index;
606 old_to_new_local_ids[i] = new_index;
607 new_to_old_local_ids[new_index] = i;
615 ARCANE_FATAL(
"Family '{0}' bad indices: expected={1} found={2}",
616 itemFamily()->name(),
m_nb_item,new_index);
620 compact_infos.setOldToNewLocalIds(std::move(old_to_new_local_ids));
621 compact_infos.setNewToOldLocalIds(std::move(new_to_old_local_ids));
627void DynamicMeshKindInfos::
639 <<
" nb_internal=" << nb_internal
642 <<
" nb_free" << m_free_internals_in_multi_buffer.size();
658 info() <<
"DumpItemsBefore:";
672 new_uids[i] = old_item->
uniqueId().asInt64();
673 new_owners[i] = old_item->
owner();
674 new_flags[i] = old_item->
flags();
675 new_typeids[i] = old_item->
typeId();
676 new_items[i] = *old_item;
686 ii->setFlags(new_flags[i]);
687 ii->setOwner(new_owners[i],sid);
688 ii->setUniqueId(new_uids[i]);
689 ItemSharedInfo* isi = ItemInternalCompatibility::_getSharedInfo(ii);
690 ii->_setSharedInfo(isi,ItemTypeId(new_typeids[i]));
694 if (ii->isSuppressed()){
696 error() <<
"Entity deleted from the list of created entities "
697 << ItemPrinter(ii) <<
" index=" << i;
712 m_free_internals_in_multi_buffer.add(removed_item);
717 _updateItemSharedInfoInternalView();
721 info() <<
"DumpItemsAfter:";
726 ARCANE_FATAL(
"Error in compacting nb_error={0}",nb_error);
728 debug() <<
"Compression: old=" << nb_internal <<
" new=" <<
m_nb_item
733 compact_infos.clear();
765 std::sort(std::begin(ids),std::end(ids),_Inverse());
774void DynamicMeshKindInfos::
775printFreeInternals(
Integer max_print)
778 max_print =
math::min(nb_free,max_print);
779 for(
Integer i=0; i<max_print; ++i ){
783 info() <<
"I=" << i <<
" pos=" << pos <<
" index=" << index
784 <<
" local_id=" << iitem->
localId();
797 if (m_has_unique_id_map){
798 for(
Integer i=0; i<nb_item; ++i ){
799 Int32 lid = local_ids[i];
802 _checkActiveItem(item);
804 _setSuppressed(item);
805 if (uids[lid] != NULL_ITEM_UNIQUE_ID)
810 for(
Integer i=0; i<nb_item; ++i ){
811 Int32 lid = local_ids[i];
814 _checkActiveItem(item);
816 _setSuppressed(item);
821 Integer nb_removed = m_removed_items.size();
822 m_removed_items.resize(nb_removed + nb_item);
823 memcpy(m_removed_items.data()+nb_removed,local_ids.
data(),
sizeof(
Int32)*nb_item);
832void DynamicMeshKindInfos::
833setHasUniqueIdMap(
bool v)
837 m_has_unique_id_map = v;
843void DynamicMeshKindInfos::
847 ARCANE_FATAL(
"Attempting to remove an entity already deleted item={0}",
854void DynamicMeshKindInfos::
859 for(
Integer i=0; i<nb_internal; ++i ){
864 info() <<
"Item: INDEX=" << i
865 <<
" LID=" << item->localId()
866 <<
" UID=" << item->uniqueId()
867 <<
" KILLED=" << is_suppressed;
869 info() <<
"EndOfDump: "
870 <<
" nb_internal=" << nb_internal
872 <<
" computed_nb_item= " << (nb_internal-computed_nb_item);
878void DynamicMeshKindInfos::
879_badSameUniqueId(
Int64 unique_id)
const
888void DynamicMeshKindInfos::
889_badUniqueIdMap()
const
891 if (m_has_unique_id_map)
900void DynamicMeshKindInfos::
904 m_common_item_shared_info = item_family->commonItemSharedInfo();
910void DynamicMeshKindInfos::
911_updateItemSharedInfoInternalView()
913 if (m_common_item_shared_info)
914 m_common_item_shared_info->m_items_internal =
m_internals.constView();
920EventObservableView<const ItemFamilyItemListChangedEventArgs&> DynamicMeshKindInfos::
921itemListChangedEvent()
923 return EventObservableView<const ItemFamilyItemListChangedEventArgs&>(m_item_list_change_event);
929void DynamicMeshKindInfos::
930_notifyRemove2(ItemInternal* item)
932 ItemFamilyItemListChangedEventArgs args(
m_item_family,item->localId(),item->uniqueId());
933 m_item_list_change_event.notify(args);
934 args.setIsAdd(
false);
940void DynamicMeshKindInfos::
941_notifyAdd2(ItemInternal* item,
Int64 uid)
943 ItemFamilyItemListChangedEventArgs args(
m_item_family,item->localId(),uid);
945 m_item_list_change_event.notify(args);
#define ARCANE_FATAL(...)
Macro envoyant une exception FatalErrorException.
Integer size() const
Nombre d'éléments du vecteur.
Vue modifiable d'un tableau d'un type T.
constexpr Integer size() const noexcept
Retourne la taille du tableau.
void fill(const DataType &data)
Remplissage du tableau.
const T * data() const
Accès à la racine du tableau hors toute protection.
constexpr const_pointer data() const noexcept
Pointeur sur la mémoire allouée.
constexpr Integer size() const noexcept
Nombre d'éléments du tableau.
Interface d'une fonction de tri des entités.
virtual void sortItems(ItemInternalMutableArrayView items)=0
Trie les entités du tableau items.
virtual const String & name() const =0
Nom de la fonction de tri.
virtual bool isSorted() const =0
Indique si souhaite trier les entités en plus de les compacter.
virtual const MeshPartInfo & meshPartInfo() const =0
Informations sur les parties du maillage.
Interface du gestionnaire de parallélisme pour un sous-domaine.
virtual Int32 commRank() const =0
Rang de cette instance dans le communicateur.
virtual bool isParallel() const =0
Retourne true si l'exécution est parallèle.
Interface d'un gestionnaire de timer.
bool isSuppressed() const
Vrai si l'entité est supprimée.
ItemUniqueId uniqueId() const
Numéro unique de l'entité
Int32 owner() const
Numéro du sous-domaine propriétaire de l'entité
Int32 flags() const
Flags de l'entité
Int16 typeId() const
Type de l'entité
bool isOwn() const
Vrai si l'entité appartient au sous-domaine.
Int32 localId() const
Numéro local (au sous-domaine) de l'entité
Informations pour gérer le compactage des entités d'une famille.
Int32ConstArrayView newToOldLocalIds() const
Conversion entre les nouveaux et les anciens id locaux.
Int32ConstArrayView oldToNewLocalIds() const
Conversion entre les anciens et les nouveaux id locaux.
Implémentation d'un groupe d'entités de maillage.
void setIsAllItems()
Indique à ce groupe qu'il s'agit du groupe de toutes les entités de la famille.
void setLocalToSubDomain(bool v)
Positionne le booléen indiquant si le groupe est local au sous-domaine.
ItemGroupImpl * internal() const
Retourne l'implémentation du groupe.
Structure interne d'une entité de maillage.
Classe utilitaire pour imprimer les infos sur une entité.
ItemUniqueId uniqueId() const
Identifiant unique sur tous les domaines.
Tampon pour allocation multiple.
Cell cell() const
Maille à laquelle appartient la particule. Il faut appeler setCell() avant d'appeler cette fonction....
Constructeur de chaîne de caractère unicode.
Chaîne de caractères unicode.
Sentinelle pour le timer. La sentinelle associée à un timer permet de déclancher celui-ci au moment d...
@ TimerReal
Timer utilisant le temps réel.
Real lastActivationTime() const
Retourne le temps (en secondes) passé lors de la dernière activation du timer.
TraceAccessor(ITraceMng *m)
Construit un accesseur via le gestionnaire de trace m.
TraceMessageDbg debug(Trace::eDebugLevel=Trace::Medium) const
Flot pour un message de debug.
TraceMessage info() const
Flot pour un message d'information.
TraceMessage error() const
Flot pour un message d'erreur.
ITraceMng * traceMng() const
Gestionnaire de trace.
TraceMessage pwarning() const
Positionne une classe de message.
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.
void removeMany(Int32ConstArrayView local_ids)
Supprime une liste d'entités.
void prepareForDump()
Prépare les variables pour les sauvegardes.
void beginCompactItems(ItemFamilyCompactInfos &compact_infos)
Calcule les nouveaux id locaux des entités pour qu'ils soient consécutifs.
ARCANE_DEPRECATED_240 Int32ConstArrayView oldToNewLocalIds() const
Conversion entre les anciens et les nouveaux id locaux.
UniqueArray< ItemInternal * > m_internals
ItemInternal des entités.
void readFromDump()
Restaure les infos à partir des dumps.
DynamicMeshKindInfos(IMesh *mesh, eItemKind kind, const String &kind_name)
Créé une instance pour un maillage et un genre donnée.
ARCANE_DEPRECATED_240 Int32ConstArrayView newToOldLocalIds() const
Conversion entre les nouveaux et les anciens id locaux.
ItemFamilyCompactInfos * m_compact_infos
Temporaire tant que oldToNewLocalIds() et newToOldLocalIds() existent.
void checkValid()
Vérifie si les structures internes de l'instance sont valides.
~DynamicMeshKindInfos()
Libère les ressources.
String m_all_group_name
Nom du groupe contenant toutes les entités.
ItemInternalMap m_items_map
Table de hachage conversion uniqueId() -> ItemInternal*.
Int32UniqueArray m_free_internals
Liste des ItemInternal de m_item_internals_buffer libres.
void clear()
Supprime toutes les entités.
IMesh * m_mesh
Maillage associé
eItemKind m_kind
Genre correspondant.
ItemFamily * m_item_family
Famille de maillage associée.
ItemGroup createGroup(const String &name, Int32ConstArrayView elements, bool do_override=false) override
Créé un groupe d'entités de nom name contenant les entités local_ids.
Int32 tryFindLocalId(Int64 key) const
Retourne le localId() associé à key si trouvé ou NULL_ITEM_LOCAL_ID sinon aucun.
Int32 findLocalId(Int64 uid) const
Retourne le numéro local de l'entité de numéro unique uid.
void _changeLocalIds(ArrayView< ItemInternal * > items_internal, ConstArrayView< Int32 > old_to_new_local_ids)
Change la valeurs des localId()
__host__ __device__ Real2 min(Real2 a, Real2 b)
Retourne le minimum de deux Real2.
ArrayView< Int64 > Int64ArrayView
Equivalent C d'un tableau à une dimension d'entiers 64 bits.
bool arcaneIsCheck()
Vrai si on est en mode vérification.
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.
ConstArrayView< Int64 > Int64ConstArrayView
Equivalent C d'un tableau à une dimension d'entiers 64 bits.
UniqueArray< Int32 > Int32UniqueArray
Tableau dynamique à une dimension d'entiers 32 bits.
ArrayView< Int32 > Int32ArrayView
Equivalent C d'un tableau à une dimension d'entiers 32 bits.
eItemKind
Genre d'entité de maillage.
std::int32_t Int32
Type entier signé sur 32 bits.