32 template <
class base_t>
41 static base_t*
Create(
const std::string& type,
const std::string& name) {
46 static base_t*
Cast(base_t* base,
const std::string& type) {
52 return (
Cast(base,type) != 0);
56 virtual base_t*
Create(
const std::string& name)
const = 0;
58 virtual base_t*
Cast(base_t* base)
const = 0;
64 static std::map<std::string,VQwFactory<base_t>*> theMap;
69 typename std::map<std::string,VQwFactory<base_t>*>::iterator type;
83 QwWarning <<
"To register this type, add the following line to the top "
86 QwWarning <<
"Ensure that the dynamic library contains the factory object."
104 template <
class base_t,
class type_t>
115 base_t*
Create(
const std::string& name)
const {
116 return new type_t(name);
120 type_t*
Cast(base_t* base)
const {
121 return dynamic_cast<type_t*
>(base);
141 template <
class subsystem_t>
143 template <
class dataelement_t>
148 template <
class base_t>
159 const type_info& ti =
typeid(*this);
160 char* name = abi::__cxa_demangle(ti.name(), 0, 0, &status);
161 std::string str(name);
183 template <
class base_t,
class type_t>
193 return new type_t(static_cast<const type_t&>(*
this));
200 static base_t*
Create(
const std::string& name) {
206 static type_t*
Cast(type_t* type) {
220 template <
class subsystem_t>
224 template <
class dataelement_t>
230 #define RegisterSubsystemFactory(A) template<> const VQwSubsystemFactory* MQwCloneable<VQwSubsystem,A>::fFactory = new QwFactory<VQwSubsystem,A>(#A)
234 #define RegisterDataElementFactory(A) template<> const VQwDataElementFactory* MQwCloneable<VQwDataElement,A>::fFactory = new QwFactory<VQwDataElement,A>(#A)
237 #endif // __QWFACTORY__
#define QwMessage
Predefined log drain for regular messages.
virtual base_t * Clone() const
Abstract clone method when no derived method is defined.
virtual ~MQwCloneable()
Virtual destructor.
std::string GetClassName() const
Get demangled name of this class.
class VQwCloneable< VQwSubsystem > VQwSubsystemCloneable
Mix-in factory functionality for subsystems.
virtual ~VQwFactory()
Default virtual destructor.
const VQwFactory< base_t > * Factory() const
Factory getter.
type_t * Cast(base_t *base) const
Dynamic cast of type.
static base_t * Cast(base_t *base, const std::string &type)
Dynamic cast of object into type.
virtual const VQwFactory< base_t > * Factory() const
Virtual factory getter.
The pure virtual base class of all data elements.
A logfile class, based on an identical class in the Hermes analyzer.
static std::map< std::string, VQwFactory * > & GetRegisteredTypes()
Map from string to concrete type factories.
QwFactory(const std::string &type)
Constructor which stores type name in list of registered types.
The pure virtual base class of all subsystems.
class VQwCloneable< VQwDataElement > VQwDataElementCloneable
Mix-in factory functionality for data elements.
static base_t * Create(const std::string &type, const std::string &name)
Create an object of type with name.
static VQwFactory * GetFactory(const std::string &type)
Get a concrete type factory by string.
virtual ~VQwCloneable()
Virtual destructor.
Concrete templated type factory.
static void ListRegisteredTypes()
List available type factories.
static std::ostream & endl(std::ostream &)
End of the line.
static base_t * Create(const std::string &name)
Object creation.
Polymorphic copy constructor virtual base class.
#define QwWarning
Predefined log drain for warnings.
class VQwFactory< VQwSubsystem > VQwSubsystemFactory
Factory type with functionality for subsystems.
static type_t * Cast(type_t *type)
Object dynamic cast.
static bool InheritsFrom(base_t *base, const std::string &type)
Test whether object inherits from type.
QwException_TypeUnknown()
base_t * Create(const std::string &name) const
Concrete type creation.
class VQwFactory< VQwDataElement > VQwDataElementFactory
Factory type with functionality for data elements.
virtual base_t * Clone() const
Concrete clone method.
#define QwError
Predefined log drain for errors.
static const VQwFactory< base_t > * fFactory
Pointer to the factory of this type.