Medical Imaging Interaction Toolkit  2023.12.99-7272c57d
Medical Imaging Interaction Toolkit
us::Module Class Reference

#include <usModule.h>

Public Member Functions

 ~Module ()
 
bool IsLoaded () const
 
ModuleContextGetModuleContext () const
 
long GetModuleId () const
 
std::string GetLocation () const
 
std::string GetName () const
 
ModuleVersion GetVersion () const
 
Any GetProperty (const std::string &key) const
 
std::vector< std::string > GetPropertyKeys () const
 
std::vector< ServiceReferenceUGetRegisteredServices () const
 
std::vector< ServiceReferenceUGetServicesInUse () const
 
ModuleResource GetResource (const std::string &path) const
 
std::vector< ModuleResourceFindResources (const std::string &path, const std::string &filePattern, bool recurse) const
 

Static Public Member Functions

static const std::string & PROP_ID ()
 
static const std::string & PROP_NAME ()
 
static const std::string & PROP_LOCATION ()
 
static const std::string & PROP_VERSION ()
 
static const std::string & PROP_VENDOR ()
 
static const std::string & PROP_DESCRIPTION ()
 
static const std::string & PROP_AUTOLOAD_DIR ()
 
static const std::string & PROP_AUTOLOADED_MODULES ()
 

Detailed Description

Represents a CppMicroServices module.

A Module object is the access point to a CppMicroServices module. Each CppMicroServices module has an associated Module object.

A module has unique identity, a long, chosen by the framework. This identity does not change during the lifecycle of a module.

A module can be in one of two states:

  • LOADED
  • UNLOADED

You can determine the current state by using IsLoaded().

A module can only execute code when its state is LOADED. An UNLOADED module is a zombie and can only be reached because it was loaded before. However, unloaded modules can be loaded again.

The framework is the only entity that is allowed to create Module objects.

Remarks
This class is thread safe.

Definition at line 78 of file usModule.h.

Constructor & Destructor Documentation

◆ ~Module()

us::Module::~Module ( )

Member Function Documentation

◆ FindResources()

std::vector<ModuleResource> us::Module::FindResources ( const std::string &  path,
const std::string &  filePattern,
bool  recurse 
) const

Returns resources in this module.

This method is intended to be used to obtain configuration, setup, localization and other information from this module.

This method can either return only resources in the specified path or recurse into subdirectories returning resources in the directory tree beginning at the specified path.

Examples:

ModuleContext* moduleContext = GetModuleContext();
Module* module = moduleContext->GetModule();
// List all XML files in the config directory
std::vector<ModuleResource> xmlFiles = module->FindResources("config", "*.xml", false);
// Find the resource named vertex_shader.txt starting at the root directory
std::vector<ModuleResource> shaders = module->FindResources("", "vertex_shader.txt", true);
Parameters
pathThe path name in which to look. The path is always relative to the root of this module and may begin with '/'. A path value of "/" indicates the root of this module.
filePatternThe resource name pattern for selecting entries in the specified path. The pattern is only matched against the last element of the resource path. Substring matching is supported using the wildcard charachter ('*'). If filePattern is empty, this is equivalent to "*" and matches all resources.
recurseIf true, recurse into subdirectories. Otherwise only return resources from the specified path.
Returns
A vector of ModuleResource objects for each matching entry.

◆ GetLocation()

std::string us::Module::GetLocation ( ) const

Returns this module's location.

The location is the full path to the module's shared library. This method continues to return this module's location while this module is in the UNLOADED state.

Returns
The string representation of this module's location.

◆ GetModuleContext()

ModuleContext* us::Module::GetModuleContext ( ) const

Returns this module's ModuleContext. The returned ModuleContext can be used by the caller to act on behalf of this module.

If this module is not in the LOADED state, then this module has no valid ModuleContext. This method will return 0 if this module has no valid ModuleContext.

Returns
A ModuleContext for this module or 0 if this module has no valid ModuleContext.

Referenced by us::GetModuleContext().

◆ GetModuleId()

long us::Module::GetModuleId ( ) const

Returns this module's unique identifier. This module is assigned a unique identifier by the framework when it was loaded.

A module's unique identifier has the following attributes:

  • Is unique.
  • Is a long.
  • Its value is not reused for another module, even after a module is unloaded.
  • Does not change while a module remains loaded.
  • Does not change when a module is reloaded.

This method continues to return this module's unique identifier while this module is in the UNLOADED state.

Returns
The unique identifier of this module.

◆ GetName()

std::string us::Module::GetName ( ) const

Returns the name of this module as specified by the US_CREATE_MODULE CMake macro. The module name together with a version must identify a unique module.

This method continues to return this module's name while this module is in the UNLOADED state.

Returns
The name of this module.

◆ GetProperty()

Any us::Module::GetProperty ( const std::string &  key) const

Returns the value of the specified property for this module. The method returns an empty Any if the property is not found.

Parameters
keyThe name of the requested property.
Returns
The value of the requested property, or an empty string if the property is undefined.
See also
GetPropertyKeys()
Module Properties

◆ GetPropertyKeys()

std::vector<std::string> us::Module::GetPropertyKeys ( ) const

Returns a list of top-level property keys for this module.

Returns
A list of available property keys.
See also
Module Properties

◆ GetRegisteredServices()

std::vector<ServiceReferenceU> us::Module::GetRegisteredServices ( ) const

Returns this module's ServiceReference list for all services it has registered or an empty list if this module has no registered services.

The list is valid at the time of the call to this method, however, as the framework is a very dynamic environment, services can be modified or unregistered at anytime.

Returns
A list of ServiceReference objects for services this module has registered.

◆ GetResource()

ModuleResource us::Module::GetResource ( const std::string &  path) const

Returns the resource at the specified path in this module. The specified path is always relative to the root of this module and may begin with '/'. A path value of "/" indicates the root of this module.

Parameters
pathThe path name of the resource.
Returns
A ModuleResource object for the given path. If the path cannot be found in this module or the module's state is UNLOADED, an invalid ModuleResource object is returned.

◆ GetServicesInUse()

std::vector<ServiceReferenceU> us::Module::GetServicesInUse ( ) const

Returns this module's ServiceReference list for all services it is using or returns an empty list if this module is not using any services. A module is considered to be using a service if its use count for that service is greater than zero.

The list is valid at the time of the call to this method, however, as the framework is a very dynamic environment, services can be modified or unregistered at anytime.

Returns
A list of ServiceReference objects for all services this module is using.

◆ GetVersion()

ModuleVersion us::Module::GetVersion ( ) const

Returns the version of this module as specified by the US_INITIALIZE_MODULE CMake macro. If this module does not have a specified version then ModuleVersion::EmptyVersion is returned.

This method continues to return this module's version while this module is in the UNLOADED state.

Returns
The version of this module.

◆ IsLoaded()

bool us::Module::IsLoaded ( ) const

Returns this module's current state.

A module can be in only one state at any time.

Returns
true if the module is LOADED false if it is UNLOADED

◆ PROP_AUTOLOAD_DIR()

static const std::string& us::Module::PROP_AUTOLOAD_DIR ( )
static

Returns the property key with a value of module.autoload_dir for looking up this module's auto-load directory. The property value is of type std::string.

Returns
The auto-load directory property key.

◆ PROP_AUTOLOADED_MODULES()

static const std::string& us::Module::PROP_AUTOLOADED_MODULES ( )
static

Returns the property key with a value of module.autoloaded_modules for looking up this module's auto-load modules. The property value is of type std::vector<std::string> and contains the file system locations for the auto-loaded modules triggered by this module.

Returns
The auto-loaded modules property key.

◆ PROP_DESCRIPTION()

static const std::string& us::Module::PROP_DESCRIPTION ( )
static

Returns the property key with a value of module.description for looking up this module's description. The property value is of type std::string.

Returns
The description property key.

◆ PROP_ID()

static const std::string& us::Module::PROP_ID ( )
static

Returns the property key for looking up this module's id. The property value is of type long.

Returns
The id property key.

◆ PROP_LOCATION()

static const std::string& us::Module::PROP_LOCATION ( )
static

Returns the property key for looking up this module's location in the file system. The property value is of type std::string.

Returns
The location property key.

◆ PROP_NAME()

static const std::string& us::Module::PROP_NAME ( )
static

Returns the property key for looking up this module's name. The property value is of type std::string.

Returns
The name property key.

◆ PROP_VENDOR()

static const std::string& us::Module::PROP_VENDOR ( )
static

Returns the property key with a value of module.vendor for looking up this module's vendor information. The property value is of type std::string.

Returns
The vendor property key.

◆ PROP_VERSION()

static const std::string& us::Module::PROP_VERSION ( )
static

Returns the property key with a value of module.version for looking up this module's version identifier. The property value is of type std::string.

Returns
The version property key.

The documentation for this class was generated from the following file:
ModuleContext
Definition: usModuleContext.h:91
ModuleContext::GetModule
Module * GetModule() const
us::Module::GetModuleContext
ModuleContext * GetModuleContext() const