14#include "arcane/utils/ArcanePrecomp.h"
16#include "arcane/utils/Iostream.h"
18#include "arcane/ServiceRegisterer.h"
30static ServiceRegisterer* global_arcane_first_service =
nullptr;
31static Integer global_arcane_nb_service = 0;
37ServiceRegisterer(ServiceInfoWithPropertyCreateFunc func,
54ServiceRegisterer(ModuleFactoryWithPropertyFunc func,
70void ServiceRegisterer::
73 if (global_arcane_first_service==
nullptr){
74 global_arcane_first_service =
this;
75 setPreviousService(
nullptr);
76 setNextService(
nullptr);
79 ServiceRegisterer* next = global_arcane_first_service->
nextService();
80 setNextService(global_arcane_first_service);
81 global_arcane_first_service =
this;
83 next->setPreviousService(
this);
85 ++global_arcane_nb_service;
88 ServiceRegisterer * p = global_arcane_first_service;
89 Integer count = global_arcane_nb_service;
90 while (p && count > 0) {
95 cout <<
"Arcane Fatal Error: Service '" << m_name <<
"' conflict in service registration" << std::endl;
97 }
else if (count > 0) {
98 cout <<
"Arcane Fatal Error: Service '" << m_name <<
"' breaks service registration (inconsistent shortcut)" << std::endl;
110 return global_arcane_first_service;
119 return global_arcane_nb_service;
Propriétés de création d'un module.
Propriétés de création d'un service.
ModuleProperty m_module_property
Propriétés du module.
ServiceRegisterer * m_next
Service suivant.
ServiceRegisterer * m_previous
Service précédent.
ServiceRegisterer * nextService() const
Service suivant (0 si le dernier)
ServiceInfoWithPropertyCreateFunc m_info_function_with_property
Fonction de création du IServiceInfo.
ModuleFactoryWithPropertyFunc m_module_factory_with_property_functor
Fonction de création du IModuleFactory.
const char * m_name
Nom du service.
ServiceRegisterer(ServiceInfoWithPropertyCreateFunc func, const ServiceProperty &properties) ARCANE_NOEXCEPT
Crée en enregistreur pour le service name et la fonction func.
ServiceProperty m_service_property
Propriétés du service.
Int32 Integer
Type représentant un entier.