A pointer registry mechanism to manage memory and provide search functionalities. (predicate version) More...
#include <easylogging++.h>

Public Types | |
| typedef RegistryWithPred< T_Ptr, Pred >::const_iterator | const_iterator |
| typedef RegistryWithPred< T_Ptr, Pred >::iterator | iterator |
Public Types inherited from el::base::utils::AbstractRegistry< T_Ptr, std::vector< T_Ptr * > > | |
| typedef std::vector< T_Ptr * >::const_iterator | const_iterator |
| typedef std::vector< T_Ptr * >::iterator | iterator |
Public Member Functions | |
| RegistryWithPred & | operator= (const RegistryWithPred &sr) |
| Assignment operator that unregisters all the existing registeries and deeply copies each of repo element. More... | |
| RegistryWithPred (void) | |
| RegistryWithPred (const RegistryWithPred &sr) | |
| Copy constructor that is useful for base classes. Try to avoid this constructor, use move constructor. More... | |
| virtual | ~RegistryWithPred (void) |
Public Member Functions inherited from el::base::utils::AbstractRegistry< T_Ptr, std::vector< T_Ptr * > > | |
| AbstractRegistry (void) | |
| Default constructor. More... | |
| AbstractRegistry (AbstractRegistry &&sr) | |
| Move constructor that is useful for base classes. More... | |
| virtual iterator | begin (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 iterator | end (void) ELPP_FINAL |
| virtual std::vector< T_Ptr * > & | list (void) ELPP_FINAL |
| Returns underlying container by reference. More... | |
| virtual const std::vector< T_Ptr * > & | list (void) const ELPP_FINAL |
| Returns underlying container by constant reference. More... | |
| bool | operator!= (const AbstractRegistry< T_Ptr, std::vector< T_Ptr * > > &other) |
| AbstractRegistry & | operator= (AbstractRegistry &&sr) |
| Assignment move operator. More... | |
| bool | operator== (const AbstractRegistry< T_Ptr, std::vector< T_Ptr * > > &other) |
| virtual std::size_t | size (void) const ELPP_FINAL |
| virtual | ~AbstractRegistry (void) |
Public Member Functions inherited from el::base::threading::ThreadSafe | |
| virtual void | acquireLock (void) ELPP_FINAL |
| virtual base::threading::Mutex & | lock (void) ELPP_FINAL |
| virtual void | releaseLock (void) ELPP_FINAL |
Protected Member Functions | |
| 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. More... | |
| virtual void | registerNew (T_Ptr *ptr) ELPP_FINAL |
| virtual void | unregister (T_Ptr *&ptr) ELPP_FINAL |
| virtual void | unregisterAll (void) ELPP_FINAL |
| Unregisters all the pointers from current repository. More... | |
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) |
Protected Member Functions inherited from el::base::threading::ThreadSafe | |
| ThreadSafe (void) | |
| virtual | ~ThreadSafe (void) |
Private Member Functions | |
| virtual void | deepCopy (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
Definition at line 1439 of file easylogging++.h.
| typedef RegistryWithPred<T_Ptr, Pred>::const_iterator el::base::utils::RegistryWithPred< T_Ptr, Pred >::const_iterator |
Definition at line 1442 of file easylogging++.h.
| typedef RegistryWithPred<T_Ptr, Pred>::iterator el::base::utils::RegistryWithPred< T_Ptr, Pred >::iterator |
Definition at line 1441 of file easylogging++.h.
|
inline |
Definition at line 1444 of file easylogging++.h.
|
inlinevirtual |
Definition at line 1447 of file easylogging++.h.
|
inline |
Copy constructor that is useful for base classes. Try to avoid this constructor, use move constructor.
Definition at line 1452 of file easylogging++.h.
|
inlineprivatevirtual |
Definition at line 1518 of file easylogging++.h.
|
inlineprotected |
Gets pointer from repository with speicifed arguments. Arguments are passed to predicate in order to validate pointer.
Definition at line 1509 of file easylogging++.h.
|
inline |
Assignment operator that unregisters all the existing registeries and deeply copies each of repo element.
Definition at line 1462 of file easylogging++.h.
|
inlineprotectedvirtual |
Definition at line 1502 of file easylogging++.h.
|
inlineprotectedvirtual |
Definition at line 1487 of file easylogging++.h.
|
inlineprotectedvirtual |
Unregisters all the pointers from current repository.
Implements el::base::utils::AbstractRegistry< T_Ptr, std::vector< T_Ptr * > >.
Definition at line 1478 of file easylogging++.h.
|
friend |
Definition at line 1470 of file easylogging++.h.