1"""Model builder module.
3Provides some helper methods for easier work with basyx sdk data model
9from pathlib
import Path
12from basyx.aas
import model
16_logger = logging.getLogger(__name__)
20 """Generate a unique identifier string by appending a UUID to the provided ID short.
22 :param id_short: provided ID short
23 :return: unique identifier
25 return f
"{id_short}_{str(uuid.uuid4()).replace('-', '_')}"
29 """Creates a submodel from a JSON file file.
31 :param id: ID of the submodel. If empty, the template's ID is used
35 sm_template_file = Path(json_file).resolve()
38 if not sm_template_file.exists():
39 raise FileNotFoundError(f
"Submodel template file not found: {sm_template_file}")
44 with Path.open(sm_template_file,
"r", encoding=
"utf-8")
as f:
45 submodel_data = json.load(f)
48 submodel = sdk_tools.convert_to_object(submodel_data)
51 if not isinstance(submodel, model.Submodel):
52 raise TypeError(
"Loaded template JSON structure is not a Submodel.")
54 except Exception
as e:
55 _logger.error(f
"Error loading submodel template: {e}")
62 id_short: str |
None, type: model.datatypes, value: Any, display_name: str =
"", description: str =
""
64 """Create a basic SubmodelElement of type Property."""
65 sme = model.Property(id_short=id_short, value_type=type, value=value)
68 description = f
"This is the submodel element with ID short '{id_short}'"
70 description_text = {
"en": f
"{description}"}
71 sme.description = model.MultiLanguageTextType(description_text)
74 display_name =
"POC Submodel Element"
76 display_name_text = {
"en": f
"{display_name}"}
77 sme.display_name = model.MultiLanguageNameType(display_name_text)
83 id_short: str, value: list[model.SubmodelElement], display_name: str =
"", description: str =
""
84) -> model.SubmodelElementCollection:
85 """Create a basic SubmodelElement of type SubmodelElementCollection."""
86 sme = model.SubmodelElementCollection(id_short=id_short, value=value)
89 description = f
"This is the submodel element with ID short '{id_short}'"
91 description_text = {
"en": f
"{description}"}
92 sme.description = model.MultiLanguageTextType(description_text)
95 display_name =
"POC Submodel Element"
97 display_name_text = {
"en": f
"{display_name}"}
98 sme.display_name = model.MultiLanguageNameType(display_name_text)
103def create_base_submodel(identifier: str, id_short: str, display_name: str =
"", description: str =
"") -> model.Submodel:
104 """Create a basic Submodel.
106 :param identifier: identifier of the Submodel
107 :param id_short: ID short of the Submodel
108 :param display_name: display name of the Submodel, defaults to ""
109 :param description: description of the Submodel, defaults to ""
110 :return: Submodel instance
112 sm = model.Submodel(identifier)
113 sm.id_short = id_short
116 description = f
"This is the submodel with ID short '{id_short}'"
118 description_text = {
"en": f
"{description}"}
119 sm.description = model.MultiLanguageTextType(description_text)
122 display_name =
"POC AAS"
124 display_name_text = {
"en": f
"{display_name}"}
125 sm.display_name = model.MultiLanguageNameType(display_name_text)
131 identifier: str, id_short: str, global_asset_identifier: str =
"", display_name: str =
"", description: str =
""
132) -> model.AssetAdministrationShell:
133 """Create a basic AAS.
135 :param identifier: identifier of the AAS
136 :param id_short: ID short of the AAS
137 :param global_asset_identifier: identifier of the global Asset
138 :param display_name: display name of the AAS, defaults to ""
139 :param description: description of the AAS, defaults to ""
140 :return: AssetAdministrationShell instance
142 if not global_asset_identifier:
143 global_asset_identifier = identifier
147 aas = model.AssetAdministrationShell(id_=identifier, asset_information=asset_info)
148 aas.id_short = id_short
151 description = f
"This is the asset administration shell with ID short '{id_short}'"
153 description_text = {
"en": f
"{description}"}
154 aas.description = model.MultiLanguageTextType(description_text)
157 display_name =
"POC AAS"
159 display_name_text = {
"en": f
"{display_name}"}
160 aas.display_name = model.MultiLanguageNameType(display_name_text)
166 """Return a basic AssetInformation instance.
168 :param id_short: short ID of the AssetInformation
169 :param namespace: namespace of the AssetInformation, defaults to "basyx_python_aas_server"
170 :return: AssetInformation instance
172 return model.AssetInformation(model.AssetKind.INSTANCE, identifier)
176 """Create a ModelReference.
178 :param id: ID of the Submodel to reference
179 :return: ModelReference instance
181 return model.ModelReference.from_referable(model.Submodel(id))
model.Submodel create_submodel_from_file(str json_file="")
Creates a submodel from a JSON file file.
model.Property create_base_submodel_element_property(str|None id_short, model.datatypes type, Any value, str display_name="", str description="")
Create a basic SubmodelElement of type Property.
model.AssetInformation create_base_asset_information(str identifier)
Return a basic AssetInformation instance.
model.SubmodelElementCollection create_base_submodel_element_collection(str id_short, list[model.SubmodelElement] value, str display_name="", str description="")
Create a basic SubmodelElement of type SubmodelElementCollection.
str create_unique_short_id(str id_short)
Generate a unique identifier string by appending a UUID to the provided ID short.
model.AssetAdministrationShell create_base_aas(str identifier, str id_short, str global_asset_identifier="", str display_name="", str description="")
Create a basic AAS.
model.Submodel create_base_submodel(str identifier, str id_short, str display_name="", str description="")
Create a basic Submodel.
model.ModelReference create_reference(str id)
Create a ModelReference.