Source code for csle_common.dao.simulation_config.env_parameters_config

from typing import List, Dict, Any
from csle_common.dao.simulation_config.env_parameter import EnvParameter
from csle_base.json_serializable import JSONSerializable


[docs]class EnvParametersConfig(JSONSerializable): """ DTO representing the the configuration of custom environment parameters of a simulation """ def __init__(self, parameters: List[EnvParameter]): """ Initializes the DTO :param parameters: the list of parameters """ self.parameters = parameters
[docs] @staticmethod def from_dict(d: Dict[str, Any]) -> "EnvParametersConfig": """ Converts a dict representation to an instance :param d: the dict to convert :return: the created instance """ obj = EnvParametersConfig(parameters=list(map(lambda x: EnvParameter.from_dict(x), d["parameters"]))) return obj
[docs] def to_dict(self) -> Dict[str, Any]: """ :return: a dict representation of the DTO """ d = {} d["parameters"] = list(map(lambda x: x.to_dict(), self.parameters)) return d
def __str__(self) -> str: """ :return: a string representation of the DTO """ return f"parameters: {list(map(lambda x: str(x), self.parameters))}"
[docs] @staticmethod def from_json_file(json_file_path: str) -> "EnvParametersConfig": """ Reads a json file and converts it to a DTO :param json_file_path: the json file path :return: the converted DTO """ import io import json with io.open(json_file_path, 'r') as f: json_str = f.read() return EnvParametersConfig.from_dict(json.loads(json_str))