#include <Framework_Component.h>
Collaboration diagram for ACE_Framework_Repository:
Public Types | |
enum | { DEFAULT_SIZE = ACE_DEFAULT_FRAMEWORK_REPOSITORY_SIZE } |
Public Methods | |
~ACE_Framework_Repository (void) | |
int | open (int size=DEFAULT_SIZE) |
Initialize the repository. | |
int | close (void) |
int | register_component (ACE_Framework_Component *fc) |
int | remove_component (const ACE_TCHAR *name) |
int | remove_dll_components (const ACE_TCHAR *dll_name) |
Remove all components associated with a particular dll. | |
int | current_size (void) const |
Return the current size of the repository. | |
int | total_size (void) const |
Return the total size of the repository. | |
void | dump (void) const |
Dump the state of an object. | |
Static Public Methods | |
ACE_Framework_Repository * | instance (int size=ACE_Framework_Repository::DEFAULT_SIZE) |
Get pointer to a process-wide <ACE_Framework_Repository>. | |
void | close_singleton (void) |
Delete the dynamically allocated Singleton. | |
Public Attributes | |
ACE_ALLOC_HOOK_DECLARE | |
Declare the dynamic allocation hooks. | |
Private Methods | |
ACE_Framework_Repository (int size=ACE_Framework_Repository::DEFAULT_SIZE) | |
Initialize the repository. | |
int | remove_dll_components_i (const ACE_TCHAR *dll_name) |
Actually removes the dll components, must be called with locks held. | |
void | compact (void) |
ACE_Framework_Repository (const ACE_Framework_Repository &) | |
Don't allow these to be called. | |
ACE_Framework_Repository & | operator= (const ACE_Framework_Repository &) |
Private Attributes | |
ACE_Framework_Component ** | component_vector_ |
Contains all the framework components. | |
int | current_size_ |
Current number of components. | |
int | total_size_ |
Maximum number of components. | |
Static Private Attributes | |
ACE_Framework_Repository * | repository_ = 0 |
Pointer to a process-wide ACE_Framework_Repository. | |
sig_atomic_t | shutting_down_ = 0 |
Friends | |
class | ACE_Framework_Component |
This class contains a vector of ACE_Framework_Component *'s. On destruction, framework components are destroyed in the reverse order that they were added originally.
|
|
|
Close down the repository and free up dynamically allocated resources. |
|
Initialize the repository.
|
|
Don't allow these to be called.
|
|
Close down the repository and free up dynamically allocated resources, also called by dtor. |
|
Delete the dynamically allocated Singleton.
|
|
Compact component_vector_ after components have been removed__maintains order. |
|
Return the current size of the repository.
|
|
Dump the state of an object.
|
|
Get pointer to a process-wide <ACE_Framework_Repository>.
|
|
Initialize the repository.
|
|
|
|
Insert a new component. Returns -1 when the repository is full and 0 on success. |
|
Remove a component. Returns -1 on error or if component not found and 0 on success. |
|
Remove all components associated with a particular dll.
|
|
Actually removes the dll components, must be called with locks held.
|
|
Return the total size of the repository.
|
|
|
|
Declare the dynamic allocation hooks.
|
|
Contains all the framework components.
|
|
Current number of components.
|
|
Pointer to a process-wide ACE_Framework_Repository.
|
|
Flag set when repository is the process of shutting down. This is necessary to keep from self-deadlocking since some of the components might make calls back to the repository to unload their components, e.g., ACE_DLL_Manager. |
|
Maximum number of components.
|