|
RDFS
The Rice Comp413 2017 class' continuation on the work of the 2016 RDFS.
|
A pointer registry mechanism to manage memory and provide search functionalities. (predicate version) More...
#include <easylogging++.h>
Public Types | |
|
typedef RegistryWithPred < T_Ptr, Pred >::iterator | iterator |
|
typedef RegistryWithPred < T_Ptr, Pred > ::const_iterator | const_iterator |
Public Types inherited from el::base::utils::AbstractRegistry< T_Ptr, std::vector< T_Ptr * > > | |
|
typedef std::vector< T_Ptr * > ::iterator | iterator |
|
typedef std::vector< T_Ptr * > ::const_iterator | const_iterator |
Public Member Functions | |
| RegistryWithPred (const RegistryWithPred &sr) | |
| Copy constructor that is useful for base classes. Try to avoid this constructor, use move constructor. | |
| RegistryWithPred & | operator= (const RegistryWithPred &sr) |
| Assignment operator that unregisters all the existing registeries and deeply copies each of repo element. More... | |
Public Member Functions inherited from el::base::utils::AbstractRegistry< T_Ptr, std::vector< T_Ptr * > > | |
| AbstractRegistry (void) | |
| Default constructor. | |
| AbstractRegistry (AbstractRegistry &&sr) | |
| Move constructor that is useful for base classes. | |
| bool | operator== (const AbstractRegistry< T_Ptr, std::vector< T_Ptr * > > &other) |
| bool | operator!= (const AbstractRegistry< T_Ptr, std::vector< T_Ptr * > > &other) |
| AbstractRegistry & | operator= (AbstractRegistry &&sr) |
| Assignment move operator. | |
| virtual iterator | begin (void) ELPP_FINAL |
| virtual iterator | end (void) ELPP_FINAL |
| virtual const_iterator | cbegin (void) const ELPP_FINAL |
| virtual const_iterator | cend (void) const ELPP_FINAL |
| virtual bool | empty (void) const ELPP_FINAL |
| virtual std::size_t | size (void) const ELPP_FINAL |
| virtual std::vector< T_Ptr * > & | list (void) ELPP_FINAL |
| Returns underlying container by reference. | |
|
virtual const std::vector < T_Ptr * > & | list (void) const ELPP_FINAL |
| Returns underlying container by constant reference. | |
Public Member Functions inherited from el::base::threading::ThreadSafe | |
| virtual void | acquireLock (void) ELPP_FINAL |
| virtual void | releaseLock (void) ELPP_FINAL |
| virtual base::threading::Mutex & | lock (void) ELPP_FINAL |
Protected Member Functions | |
| virtual void | unregisterAll (void) ELPP_FINAL |
| Unregisters all the pointers from current repository. | |
| virtual void | unregister (T_Ptr *&ptr) ELPP_FINAL |
| virtual void | registerNew (T_Ptr *ptr) ELPP_FINAL |
| template<typename T , typename T2 > | |
| T_Ptr * | get (const T &arg1, const T2 arg2) |
| Gets pointer from repository with speicifed arguments. Arguments are passed to predicate in order to validate pointer. | |
Protected Member Functions inherited from el::base::utils::AbstractRegistry< T_Ptr, std::vector< T_Ptr * > > | |
| virtual void | deepCopy (const AbstractRegistry< T_Ptr, std::vector< T_Ptr * > > &)=0 |
| void | reinitDeepCopy (const AbstractRegistry< T_Ptr, std::vector< T_Ptr * > > &sr) |
Friends | |
| base::type::ostream_t & | operator<< (base::type::ostream_t &os, const RegistryWithPred &sr) |
A pointer registry mechanism to manage memory and provide search functionalities. (predicate version)
NOTE: This is thread-unsafe implementation of AbstractRegistry<T_Ptr, Container>. Any implementation of this class should be made thread-safe explicitly
|
inline |
Assignment operator that unregisters all the existing registeries and deeply copies each of repo element.
1.8.6