libMesh::Factory< Base > Class Template Referenceabstract

Handles name-based creation of objects. More...

#include <factory.h>

Inheritance diagram for libMesh::Factory< Base >:

Public Member Functions

virtual ~Factory ()
 
virtual std::unique_ptr< Base > create ()=0
 

Static Public Member Functions

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

Protected Member Functions

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

Static Protected Member Functions

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

Detailed Description

template<class Base>
class libMesh::Factory< Base >

Handles name-based creation of objects.

Factory class definition.

Author
Benjamin S. Kirk
Date
2002

Definition at line 46 of file factory.h.

Constructor & Destructor Documentation

◆ Factory()

template<class Base >
libMesh::Factory< Base >::Factory ( const std::string &  name)
inlineprotected

Constructor. Takes the name to be mapped.

Definition at line 116 of file factory.h.

References libMesh::Quality::name().

117 {
118  // Make sure we haven't already added this name
119  // to the map
120  libmesh_assert (!factory_map().count(name));
121 
122  factory_map()[name] = this;
123 }
std::string name(const ElemQuality q)
Definition: elem_quality.C:42
static std::map< std::string, Factory< Base > * > & factory_map()

◆ ~Factory()

template<class Base>
virtual libMesh::Factory< Base >::~Factory ( )
inlinevirtual

Destructor. (Empty.)

Definition at line 60 of file factory.h.

60 {}

Member Function Documentation

◆ build()

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

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 Base>
virtual std::unique_ptr<Base> libMesh::Factory< Base >::create ( )
pure virtual

Create a Base class. Force this to be implemented later.

Implemented in libMesh::FactoryImp< Derived, Base >.

Referenced by libMesh::Factory< Base >::build().

◆ factory_map() [1/2]

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

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 ( )
staticprotected

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


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