registry
RewardRegistry
A registry management system for reward modules that maps module names to their corresponding implementation classes.
This class provides a centralized repository for registering and retrieving reward modules by string identifiers. Modules can be registered using decorators and later accessed by their string identifiers.
Attributes:
Name | Type | Description |
---|---|---|
_registry |
Dict[str, Type[BaseReward]]
|
Internal dictionary storing the mapping between reward module names and their classes. |
Source code in rm_gallery/core/reward/registry.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
|
get(name)
classmethod
Retrieve a registered reward module class by its identifier.
Provides safe access to registered modules without raising errors for missing entries.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
String identifier of the reward module to retrieve |
required |
Returns:
Type | Description |
---|---|
Type[BaseReward] | None
|
The corresponding BaseReward subclass if found, None otherwise |
Source code in rm_gallery/core/reward/registry.py
50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
|
list()
classmethod
Returns:
Type | Description |
---|---|
str
|
A list of all registered reward modules |
Source code in rm_gallery/core/reward/registry.py
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
|
register(name)
classmethod
Create a decorator to register a reward module class with a specified identifier.
The decorator pattern allows classes to be registered while maintaining their original identity.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
Unique string identifier for the reward module |
required |
module
|
The BaseReward subclass to be registered |
required |
Returns:
Type | Description |
---|---|
A decorator function that registers the module when applied to a class |
Source code in rm_gallery/core/reward/registry.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
|