Source code for smia.behaviours.init_aas_archive_behaviour

import logging
from spade.behaviour import OneShotBehaviour

from smia.utilities import smia_archive_utils

_logger = logging.getLogger(__name__)


[docs] class InitAASarchiveBehaviour(OneShotBehaviour): """ This class implements the behaviour responsible for initialize the AAS Archive, performing the necessary actions to let the AAS Archive in the initial conditions to start the main program. """ def __init__(self, agent_object): """ The constructor method is rewritten to add the object of the agent Args: agent_object (spade.Agent): the SPADE agent object of the SMIA agent. """ # The constructor of the inherited class is executed. super().__init__() # The SPADE agent object is stored as a variable of the behaviour class self.myagent = agent_object
[docs] async def run(self): """ This method implements the logic of the behaviour. """ # Create the status file smia_archive_utils.create_status_file() # Create the interaction files # AAS_Archive_utils.create_interaction_files() # Create log file smia_archive_utils.create_log_files() _logger.info("AAS Archive initialized.")