MoReFEM
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Static Public Member Functions | Private Member Functions | Static Private Member Functions | Private Attributes | Static Private Attributes | Friends
MoReFEM::UnknownManager Class Referencefinal

Singleton that is aware of all considered unknown, regardless of GodOfDof. More...

#include <UnknownManager.hpp>

Inheritance diagram for MoReFEM::UnknownManager:
Collaboration diagram for MoReFEM::UnknownManager:

Public Types

using indexed_section_tag = ::MoReFEM::Internal::InputDataNS::UnknownNS::Tag
 Convenient alias to the (internal) tag used to identify IndexedSection of a specific type (e.g. all the sections related to a Mesh).
 
using self
 Convenient alias.
 

Public Member Functions

template<class IndexedSectionDescriptionT , ::MoReFEM::Concept::ModelSettingsType ModelSettingsT, ::MoReFEM::Concept::InputDataType InputDataT>
void Create (const IndexedSectionDescriptionT &indexed_section_description, const ModelSettingsT &model_settings, const InputDataT &input_data)
 Create a Unknown object from InputData and ModelSettings information.
 
std::size_t Nunknown () const noexcept
 Returns the number of unknowns.
 
const UnknownGetUnknown (UnknownNS::unique_id unique_id) const noexcept
 
Unknown::const_shared_ptr GetUnknownPtr (UnknownNS::unique_id unique_id) const
 
const UnknownGetUnknown (const std::string &name) const
 Get the unknown which name is given as argument.
 
Unknown::const_shared_ptr GetUnknownPtr (const std::string &name) const
 Get the unknown which name is given as argument.
 
const Unknown::vector_const_shared_ptrGetList () const noexcept
 Access to the list of unknowns.
 
Special members.
 UnknownManager (const UnknownManager &rhs)=delete
 The copy constructor.
 
 UnknownManager (UnknownManager &&rhs)=delete
 The move constructor.
 
UnknownManageroperator= (const UnknownManager &rhs)=delete
 The (copy) operator=.
 
UnknownManageroperator= (UnknownManager &&rhs)=delete
 The (move) operator=.
 

Static Public Member Functions

static const std::string & ClassName ()
 Return the name of the class.
 
static UnknownManagerCreateOrGetInstance (const std::source_location location=std::source_location::current(), Args &&... args)
 Call instance of the singleton.
 
static UnknownManagerGetInstance (const std::source_location location=std::source_location::current())
 Call an instance of the singleton that must already have been created.
 
static void Destroy ()
 Destroy the singleton.
 

Private Member Functions

void Create (UnknownNS::unique_id unique_id, const std::string &name, const std::string &nature)
 Create a new Unknown, which is a unique id, a name and a nature (scalar or vectorial).
 
void Clear ()
 Clear the storage content.
 
void RegisterUnknown (const Unknown::const_shared_ptr &unknown)
 

Static Private Member Functions

static void OnDeadReference (const std::source_location location=std::source_location::current())
 Gets called if dead reference detected.
 
static std::mutex & GetNonCstSingletonMutex ()
 Get reference to the singleton mutex.
 

Private Attributes

Unknown::vector_const_shared_ptr unknown_list_
 List of unknowns.
 

Static Private Attributes

static UnknownManagerinstance_
 Internal pointer to the actual instance.
 
static bool destroyed_
 Used for protection against dead reference problem (invocation while the instance has been destroyed).
 
static std::mutex singleton_mutex_
 Mutex object.
 

Friends

template<TIME_MANAGER_TEMPLATE_KEYWORD TimeManagerTT>
struct MoReFEM::TestNS::ClearSingletons
 Friendship to a function in tests that is allowed to call Clear(). This function should be used only for tests!
 

Singleton requirements.

class Utilities::Singleton< UnknownManager >
 Friendship declaration to Singleton template class (to enable call to constructor).
 
 UnknownManager ()=default
 Constructor.
 
virtual ~UnknownManager () override
 Destructor.
 

Detailed Description

Singleton that is aware of all considered unknown, regardless of GodOfDof.

Each of the unknowns must be defined in the input data file.

Member Typedef Documentation

◆ indexed_section_tag

Convenient alias to the (internal) tag used to identify IndexedSection of a specific type (e.g. all the sections related to a Mesh).

Tag used to identify IndexedSection of a given type (e.g. all Mesh sections in the input data or model settings)

Constructor & Destructor Documentation

◆ UnknownManager() [1/2]

MoReFEM::UnknownManager::UnknownManager ( const UnknownManager & rhs)
delete

The copy constructor.

Parameters
[in]rhsThe object from which the construction occurs.

◆ UnknownManager() [2/2]

MoReFEM::UnknownManager::UnknownManager ( UnknownManager && rhs)
delete

The move constructor.

Parameters
[in]rhsThe object from which the construction occurs.

Member Function Documentation

◆ operator=() [1/2]

UnknownManager & MoReFEM::UnknownManager::operator= ( const UnknownManager & rhs)
delete

The (copy) operator=.

Parameters
[in]rhsThe object from which the affectation occurs.
Returns
Reference to the object (to enable chained affectation).

◆ operator=() [2/2]

UnknownManager & MoReFEM::UnknownManager::operator= ( UnknownManager && rhs)
delete

The (move) operator=.

Parameters
[in]rhsThe object from which the affectation occurs.
Returns
Reference to the object (to enable chained affectation).

◆ Create() [1/2]

template<class IndexedSectionDescriptionT , ::MoReFEM::Concept::ModelSettingsType ModelSettingsT, ::MoReFEM::Concept::InputDataType InputDataT>
void MoReFEM::UnknownManager::Create ( const IndexedSectionDescriptionT & indexed_section_description,
const ModelSettingsT & model_settings,
const InputDataT & input_data )

Create a Unknown object from InputData and ModelSettings information.

Parameters
[in]indexed_section_descriptionInstantiation of a IndexedSectionDescription object that is a placeholder to tell a given IndexedSection exists for the Model. Most of the time the instantiation itself is not used and the relevant information is in fact its type (from which type of the IndexedSection may be inferred).
Parameters
[in]model_settingsObject which hold the values of all the input data that should not be modifiable by the end user. Example (in most of the models): NumberingSubset in which an Unknown should be allotted in a FEltSpace.
Parameters
[in]input_dataObject which hold the values of all the input data that were defined in the Lua file (and that is thus modifiable by the end user). Example (in most of the models): the shape function to use for an Unknown in a FEltSpace.

◆ GetUnknown() [1/2]

const Unknown & MoReFEM::UnknownManager::GetUnknown ( UnknownNS::unique_id unique_id) const
noexcept

Get the unknown associated with unique_id.

Parameters
[in]unique_idUnique identifier of the sought Unknown (as returned by Unknown::GetUniqueId()).

◆ GetUnknownPtr() [1/2]

Unknown::const_shared_ptr MoReFEM::UnknownManager::GetUnknownPtr ( UnknownNS::unique_id unique_id) const

Get the unknown associated with unique_id as a smart pointer.

Parameters
[in]unique_idUnique identifier of the sought Unknown (as returned by Unknown::GetUniqueId()).

◆ GetUnknown() [2/2]

const Unknown & MoReFEM::UnknownManager::GetUnknown ( const std::string & name) const

Get the unknown which name is given as argument.

Parameters
[in]nameName of the sought Unknown (as returned by Unknown::GetName()).

◆ GetUnknownPtr() [2/2]

Unknown::const_shared_ptr MoReFEM::UnknownManager::GetUnknownPtr ( const std::string & name) const

Get the unknown which name is given as argument.

Parameters
[in]nameName of the sought Unknown (as returned by Unknown::GetName()).

◆ Create() [2/2]

void MoReFEM::UnknownManager::Create ( UnknownNS::unique_id unique_id,
const std::string & name,
const std::string & nature )
private

Create a new Unknown, which is a unique id, a name and a nature (scalar or vectorial).

Parameters
[in]unique_idUnique identifier of the unknown, used to tag it in the input data file.
[in]nameName of the unknown, which can be whatever you wish provided it's unique within the model.
[in]natureWhether the unknown is scalar or vectorial.

◆ Clear()

void MoReFEM::UnknownManager::Clear ( )
private

Clear the storage content.

This is a functionality only to be used in tests, after the call to TestNS::ClearSingletons::Do()...

◆ RegisterUnknown()

void MoReFEM::UnknownManager::RegisterUnknown ( const Unknown::const_shared_ptr & unknown)
private

Register properly unknown in use.

Parameters
[in]unknownNew Unknown to register.

◆ CreateOrGetInstance()

static UnknownManager & MoReFEM::Utilities::Singleton< UnknownManager >::CreateOrGetInstance ( const std::source_location location = std::source_location::current(),
Args &&... args )
staticinherited

Call instance of the singleton.

If not already existing it will be created on the fly, otherwise the existing one will be used. This method should be called in two cases:

  • If we do not know whether the instance already exists or not. The most typical example is when a value is registered within the singleton in an anonymous namespace.
  • If we know for sure it is the first call to the singleton. For instance the initialization of TimeKeep sinfgleton class that sets the initial time.

In all other cases, call instead GetInstance().

Template Parameters
ArgsVariadic template arguments.
Parameters
[in]argsArguments passed to the constructor if the object is to be built.
Parameters
[in]locationSTL object with relevant information about the calling site (usually to help when an exception is thrown.
Returns
Instance of the singleton.

◆ GetInstance()

static UnknownManager & MoReFEM::Utilities::Singleton< UnknownManager >::GetInstance ( const std::source_location location = std::source_location::current())
staticinherited

Call an instance of the singleton that must already have been created.

This must be called instead of CreateOrGetInstance(location) if T doesn't get a default constructor.

Parameters
[in]locationSTL object with relevant information about the calling site (usually to help when an exception is thrown.
Returns
Instance of the singleton.

◆ OnDeadReference()

static void MoReFEM::Utilities::Singleton< UnknownManager >::OnDeadReference ( const std::source_location location = std::source_location::current())
staticprivateinherited

Gets called if dead reference detected.

Parameters
[in]locationSTL object with relevant information about the calling site (usually to help when an exception is thrown.

Friends And Related Symbol Documentation

◆ MoReFEM::TestNS::ClearSingletons

template<TIME_MANAGER_TEMPLATE_KEYWORD TimeManagerTT>
friend struct MoReFEM::TestNS::ClearSingletons
friend

Friendship to a function in tests that is allowed to call Clear(). This function should be used only for tests!

Field Documentation

◆ destroyed_

bool MoReFEM::Utilities::Singleton< UnknownManager >::destroyed_
staticprivateinherited

Used for protection against dead reference problem (invocation while the instance has been destroyed).

Should not occur in our case, but it is much safer to put the protection there anyway.

◆ singleton_mutex_

std::mutex MoReFEM::Utilities::Singleton< UnknownManager >::singleton_mutex_
staticprivateinherited

Mutex object.

This follows item 16 of Scott Meyers's "Effective Modern C++", which advises to make const member functions thread safe.


The documentation for this class was generated from the following file: