Fawkes API
Fawkes Development Version
|
Initializer/finalizer for the AspectProviderAspect. More...
#include <>>
Public Member Functions | |
AspectProviderAspectIniFin (AspectManager *manager) | |
Constructor. | |
virtual void | init (Thread *thread) |
Initialize thread. | |
virtual void | finalize (Thread *thread) |
Finalize thread. | |
virtual bool | prepare_finalize (Thread *thread) |
Default finalize preparation. |
Initializer/finalizer for the AspectProviderAspect.
This initializer/finalizer will register the AspectIniFin instance with the main aspect manager on init, and unregister it on finalization. it will deny unloading if there are still threads using the provided aspect.
fawkes::AspectProviderAspectIniFin::AspectProviderAspectIniFin | ( | AspectManager * | manager | ) |
Constructor.
manager | aspect manager to register new aspects to |
Definition at line 44 of file aspect_provider.cpp.
void fawkes::AspectProviderAspectIniFin::finalize | ( | Thread * | thread | ) | [virtual] |
Finalize thread.
The aspect for the given thread must be initialized. Use dynamic_cast to cast the thread into the expected aspect class. An exception must be thrown if this fails. If anything fails during initialization of the aspect an Exception must be thrown. This will not prevent the thread from being removed. Use prepare_finalize() to report problems that should prevent the thread from being unloaded.
thread | thread to finalize |
Implements fawkes::AspectIniFin.
Definition at line 80 of file aspect_provider.cpp.
References fawkes::Thread::name(), fawkes::AspectManager::unregister_inifin(), and fawkes::AspectProviderAspect::aspect_provider_inifin().
void fawkes::AspectProviderAspectIniFin::init | ( | Thread * | thread | ) | [virtual] |
Initialize thread.
The aspect for the given thread must be initialized. Use dynamic_cast to cast the thread into the expected aspect class. An exception must be thrown if this fails. If anything fails during initialization of the aspect an Exception must be thrown.
thread | thread to initialize |
Implements fawkes::AspectIniFin.
Definition at line 52 of file aspect_provider.cpp.
References fawkes::Thread::name(), fawkes::AspectManager::register_inifin(), and fawkes::AspectProviderAspect::aspect_provider_inifin().
bool fawkes::AspectProviderAspectIniFin::prepare_finalize | ( | Thread * | thread | ) | [virtual] |
Default finalize preparation.
This is a default implementation that assumes that finalization is always safe. Override it if you need to make more fine-grained decisions.
thread | thread to prepare for finalization |
Reimplemented from fawkes::AspectIniFin.
Definition at line 68 of file aspect_provider.cpp.
References fawkes::AspectManager::has_threads_for_aspect(), and fawkes::AspectProviderAspect::aspect_provider_name().