libMesh::FactoryImp< Derived, Base > Class Template Reference

#include <factory.h>

Inheritance diagram for libMesh::FactoryImp< Derived, Base >:

Public Member Functions

 FactoryImp (const std::string &name)
 
 ~FactoryImp ()
 

Static Public Member Functions

static std::unique_ptr< Base > build (const std::string &name)
 

Protected Member Functions

template<>
std::map< std::string, Factory< Partitioner > *> & factory_map ()
 

Static Protected Member Functions

static std::map< std::string, Factory< Base > * > & factory_map ()
 

Private Member Functions

virtual std::unique_ptr< Base > create () override
 

Detailed Description

template<class Derived, class Base>
class libMesh::FactoryImp< Derived, Base >

Factory implementation class.

Definition at line 88 of file factory.h.

Constructor & Destructor Documentation

◆ FactoryImp()

template<class Derived, class Base>
libMesh::FactoryImp< Derived, Base >::FactoryImp ( const std::string &  name)
inline

Constructor. Takes a name as input.

Definition at line 95 of file factory.h.

95 : Factory<Base>(name) { }
std::string name(const ElemQuality q)
Definition: elem_quality.C:42

◆ ~FactoryImp()

template<class Derived, class Base>
libMesh::FactoryImp< Derived, Base >::~FactoryImp ( )
inline

Destructor. Empty.

Definition at line 100 of file factory.h.

100 {}

Member Function Documentation

◆ build()

template<class Base >
std::unique_ptr< Base > libMesh::Factory< Base >::build ( const std::string &  name)
inlinestaticinherited

Builds an object of type Base identified by name.

Definition at line 129 of file factory.h.

References libMesh::Factory< Base >::create(), libMesh::err, and libMesh::Quality::name().

130 {
131  // name not found in the map
132  if (!factory_map().count(name))
133  {
134  libMesh::err << "Tried to build an unknown type: " << name << std::endl;
135 
136  libMesh::err << "valid options are:" << std::endl;
137 
138  for (const auto & pr : factory_map())
139  libMesh::err << " " << pr.first << std::endl;
140 
141  libmesh_error_msg("Exiting...");
142  }
143 
144  Factory<Base> * f = factory_map()[name];
145  return std::unique_ptr<Base>(f->create());
146 }
std::string name(const ElemQuality q)
Definition: elem_quality.C:42
static std::map< std::string, Factory< Base > * > & factory_map()
OStreamProxy err(std::cerr)

◆ create()

template<class Derived , class Base >
std::unique_ptr< Base > libMesh::FactoryImp< Derived, Base >::create ( )
inlineoverrideprivatevirtual
Returns
A new object of type Derived.

Implements libMesh::Factory< Base >.

Definition at line 152 of file factory.h.

153 {
154  return libmesh_make_unique<Derived>();
155 }

◆ factory_map() [1/2]

template<>
std::map< std::string, Factory< Partitioner > * > & libMesh::Factory< Partitioner >::factory_map ( )
protectedinherited

Definition at line 38 of file partitioner_factory.C.

39 {
40  static std::map<std::string, Factory<Partitioner> *> _map;
41  return _map;
42 }

◆ factory_map() [2/2]

template<class Base>
static std::map<std::string, Factory<Base> *>& libMesh::Factory< Base >::factory_map ( )
staticprotectedinherited

Map from a name to a Factory<Base> * pointer.


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