aea.registries.resources
This module contains the resources class.
Resources Objects
class Resources()
This class implements the object that holds the resources of an AEA.
__
init__
def __init__(agent_name: str = "standalone") -> None
Instantiate the resources.
Arguments:
agent_name
: the name of the agent
agent_
name
@property
def agent_name() -> str
Get the agent name.
component_
registry
@property
def component_registry() -> AgentComponentRegistry
Get the agent component registry.
behaviour_
registry
@property
def behaviour_registry() -> ComponentRegistry[Behaviour]
Get the behaviour registry.
handler_
registry
@property
def handler_registry() -> HandlerRegistry
Get the handler registry.
model_
registry
@property
def model_registry() -> ComponentRegistry[Model]
Get the model registry.
add_
component
def add_component(component: Component) -> None
Add a component to resources.
add_
protocol
def add_protocol(protocol: Protocol) -> None
Add a protocol to the set of resources.
Arguments:
protocol
: a protocol
get_
protocol
def get_protocol(protocol_id: PublicId) -> Optional[Protocol]
Get protocol for given protocol id.
Arguments:
protocol_id
: the protocol id
Returns:
a matching protocol, if present, else None
get_
protocol_
by_
specification_
id
def get_protocol_by_specification_id(
protocol_specification_id: PublicId) -> Optional[Protocol]
Get protocol for given protocol_specification_id.
Arguments:
protocol_specification_id
: the protocol id
Returns:
a matching protocol, if present, else None
get_
all_
protocols
def get_all_protocols() -> List[Protocol]
Get the list of all the protocols.
Returns:
the list of protocols.
remove_
protocol
def remove_protocol(protocol_id: PublicId) -> None
Remove a protocol from the set of resources.
Arguments:
protocol_id
: the protocol id for the protocol to be removed.
add_
contract
def add_contract(contract: Contract) -> None
Add a contract to the set of resources.
Arguments:
contract
: a contract
get_
contract
def get_contract(contract_id: PublicId) -> Optional[Contract]
Get contract for given contract id.
Arguments:
contract_id
: the contract id
Returns:
a matching contract, if present, else None
get_
all_
contracts
def get_all_contracts() -> List[Contract]
Get the list of all the contracts.
Returns:
the list of contracts.
remove_
contract
def remove_contract(contract_id: PublicId) -> None
Remove a contract from the set of resources.
Arguments:
contract_id
: the contract id for the contract to be removed.
add_
connection
def add_connection(connection: Connection) -> None
Add a connection to the set of resources.
Arguments:
connection
: a connection
get_
connection
def get_connection(connection_id: PublicId) -> Optional[Connection]
Get connection for given connection id.
Arguments:
connection_id
: the connection id
Returns:
a matching connection, if present, else None
get_
all_
connections
def get_all_connections() -> List[Connection]
Get the list of all the connections.
Returns:
the list of connections.
remove_
connection
def remove_connection(connection_id: PublicId) -> None
Remove a connection from the set of resources.
Arguments:
connection_id
: the connection id for the connection to be removed.
add_
skill
def add_skill(skill: Skill) -> None
Add a skill to the set of resources.
Arguments:
skill
: a skill
get_
skill
def get_skill(skill_id: PublicId) -> Optional[Skill]
Get the skill for a given skill id.
Arguments:
skill_id
: the skill id
Returns:
a matching skill, if present, else None
get_
all_
skills
def get_all_skills() -> List[Skill]
Get the list of all the skills.
Returns:
the list of skills.
remove_
skill
def remove_skill(skill_id: PublicId) -> None
Remove a skill from the set of resources.
Arguments:
skill_id
: the skill id for the skill to be removed.
get_
handler
def get_handler(protocol_id: PublicId,
skill_id: PublicId) -> Optional[Handler]
Get a specific handler.
Arguments:
protocol_id
: the protocol id the handler is handlingskill_id
: the skill id of the handler's skill
Returns:
the handler
get_
handlers
def get_handlers(protocol_id: PublicId) -> List[Handler]
Get all handlers for a given protocol.
Arguments:
protocol_id
: the protocol id the handler is handling
Returns:
the list of handlers matching the protocol
get_
all_
handlers
def get_all_handlers() -> List[Handler]
Get all handlers from all skills.
Returns:
the list of handlers
get_
behaviour
def get_behaviour(skill_id: PublicId,
behaviour_name: str) -> Optional[Behaviour]
Get a specific behaviours for a given skill.
Arguments:
skill_id
: the skill idbehaviour_name
: the behaviour name
Returns:
the behaviour, if it is present, else None
get_
behaviours
def get_behaviours(skill_id: PublicId) -> List[Behaviour]
Get all behaviours for a given skill.
Arguments:
skill_id
: the skill id
Returns:
the list of behaviours of the skill
get_
all_
behaviours
def get_all_behaviours() -> List[Behaviour]
Get all behaviours from all skills.
Returns:
the list of all behaviours
setup
def setup() -> None
Set up the resources.
Calls setup on all resources.
teardown
def teardown() -> None
Teardown the resources.
Calls teardown on all resources.