/* * Registry_impl.hpp * * Created on: Jul 28, 2010 * Author: heber */ #ifndef REGISTRY_IMPL_HPP_ #define REGISTRY_IMPL_HPP_ #include "Helpers/MemDebug.hpp" #include "Patterns/Registry.hpp" #include "Patterns/Singleton_impl.hpp" #include "Helpers/Assert.hpp" #include /** Constructor for class Registry. */ template Registry::Registry() {} /** Destructor for class Registry. */ template Registry::~Registry() { typename std::map::iterator iter; for(iter=InstanceMap.begin();iter!=InstanceMap.end();++iter) { delete iter->second; } InstanceMap.clear(); } /** Returns pointer to an instance named by \a name. * \param name name of instance * \return pointer to instance */ template T* Registry::getByName(const std::string name){ typename std::map::iterator iter; iter = InstanceMap.find(name); ASSERT(iter!=InstanceMap.end(),"Query for an instance not stored in registry"); return iter->second; } /** States whether instance is present or not. * \note This is needed as Registry::getByName() ASSERT()s that instance is in std::map. * \param name name of instance * \return true - v present, false - instance absent */ template bool Registry::isPresentByName(const std::string name){ typename std::map::iterator iter; iter = InstanceMap.find(name); return iter!=InstanceMap.end(); } /** Registers an instance with the Registry. * \param *instance pointer to T. */ template void Registry::registerInstance(T* instance){ std::pair::iterator,bool> ret; //cout << "Trying to register instance with name " << instance->getName() << "." << endl; ret = InstanceMap.insert(typename std::pair(instance->getName(),instance)); ASSERT(ret.second,"Two instances with the same name added to registry"); } /** Unregisters an instance. * \param *instance pointer to instance. */ template void Registry::unregisterInstance(T* instance){ //cout << "Unregistering instance with name " << instance->getName() << "." << endl; InstanceMap.erase(instance->getName()); } /** Returns an iterator pointing to the start of the std::map of instance's. * \return begin iterator */ template typename std::map::iterator Registry::getBeginIter() { return InstanceMap.begin(); } /** Returns an iterator pointing to the end of the std::map of instance's. * \return end iterator */ template typename std::map::iterator Registry::getEndIter() { return InstanceMap.end(); } /** Returns a const iterator pointing to the start of the std::map of instance's. * \return constant begin iterator */ template typename std::map::const_iterator Registry::getBeginIter() const { return InstanceMap.begin(); } /** Returns a const iterator pointing to the end of the std::map of instance's. * \return constant end iterator */ template typename std::map::const_iterator Registry::getEndIter() const { return InstanceMap.end(); } /** Prints the contents of the Registry \a &m to \a &ost. * \param &ost output stream * \param &m reference to Registry * \return reference to the above out stream for concatenation */ template std::ostream& operator<<(std::ostream& ost, const Registry& m) { ost << "Registry contains:" << std::endl; for (typename std::map::const_iterator iter = m.getBeginIter(); iter != m.getEndIter(); ++iter) { ost << "\t" << iter->first << " with pointer " << iter->second << std::endl; } return ost; }; /** * This define allows simple instantiation of the necessary registryfunctions * at a chosen place. */ #define CONSTRUCT_REGISTRY(name) \ template name* Registry::getByName(const std::string name); \ template bool Registry::isPresentByName(const std::string name); \ template void Registry::registerInstance(name*); \ template void Registry::unregisterInstance(name*); \ template std::map::iterator Registry::getBeginIter(); \ template std::map::const_iterator Registry::getBeginIter() const; \ template std::map::iterator Registry::getEndIter(); \ template std::map::const_iterator Registry::getEndIter() const; #endif /* REGISTRY_IMPL_HPP_ */