AAS HTTP Client Documentation
Loading...
Searching...
No Matches
model_builder.py
Go to the documentation of this file.
1"""Model builder module.
2
3Provides some helper methods for easier work with basyx sdk data model
4"""
5
6import json
7import logging
8import uuid
9from pathlib import Path
10from typing import Any
11
12from basyx.aas import model
13
14from aas_http_client.utilities import sdk_tools
15
16_logger = logging.getLogger(__name__)
17
18
19def create_unique_short_id(id_short: str) -> str:
20 """Generate a unique identifier string by appending a UUID to the provided ID short.
21
22 :param id_short: provided ID short
23 :return: unique identifier
24 """
25 return f"{id_short}_{str(uuid.uuid4()).replace('-', '_')}"
26
28def create_submodel_from_file(json_file: str = "") -> model.Submodel:
29 """Creates a submodel from a JSON file file.
30
31 :param id: ID of the submodel. If empty, the template's ID is used
32
33 """
34 # Define the path to the submodel template file
35 sm_template_file = Path(json_file).resolve()
37 # Check if the template file exists
38 if not sm_template_file.exists():
39 raise FileNotFoundError(f"Submodel template file not found: {sm_template_file}")
40
41 submodel_data = {}
42 try:
43 # Load the template JSON file
44 with Path.open(sm_template_file, "r", encoding="utf-8") as f:
45 submodel_data = json.load(f)
46
47 # Load the template JSON into a Submodel object
48 submodel = sdk_tools.convert_to_object(submodel_data)
49
50 # Ensure the loaded template is indeed a Submodel
51 if not isinstance(submodel, model.Submodel):
52 raise TypeError("Loaded template JSON structure is not a Submodel.")
53
54 except Exception as e:
55 _logger.error(f"Error loading submodel template: {e}")
56 raise e
57
58 return submodel
59
60
62 id_short: str | None, type: model.datatypes, value: Any, display_name: str = "", description: str = ""
63) -> model.Property:
64 """Create a basic SubmodelElement of type Property."""
65 sme = model.Property(id_short=id_short, value_type=type, value=value)
66
67 if description:
68 description_text = {"en": f"{description}"}
69 sme.description = model.MultiLanguageTextType(description_text)
70
71 if display_name:
72 display_name_text = {"en": f"{display_name}"}
73 sme.display_name = model.MultiLanguageNameType(display_name_text)
74
75 return sme
76
77
79 id_short: str, value: list[model.SubmodelElement], display_name: str = "", description: str = ""
80) -> model.SubmodelElementCollection:
81 """Create a basic SubmodelElement of type SubmodelElementCollection."""
82 sme = model.SubmodelElementCollection(id_short=id_short, value=value)
83
84 if description:
85 description_text = {"en": f"{description}"}
86 sme.description = model.MultiLanguageTextType(description_text)
87
88 if display_name:
89 display_name_text = {"en": f"{display_name}"}
90 sme.display_name = model.MultiLanguageNameType(display_name_text)
91
92 return sme
93
94
95def create_base_submodel(identifier: str, id_short: str, display_name: str = "", description: str = "") -> model.Submodel:
96 """Create a basic Submodel.
97
98 :param identifier: identifier of the Submodel
99 :param id_short: ID short of the Submodel
100 :param display_name: display name of the Submodel, defaults to ""
101 :param description: description of the Submodel, defaults to ""
102 :return: Submodel instance
103 """
104 sm = model.Submodel(identifier)
105 sm.id_short = id_short
107 if description:
108 description_text = {"en": f"{description}"}
109 sm.description = model.MultiLanguageTextType(description_text)
110
111 if display_name:
112 display_name_text = {"en": f"{display_name}"}
113 sm.display_name = model.MultiLanguageNameType(display_name_text)
114
115 return sm
116
117
119 identifier: str, id_short: str, global_asset_identifier: str, display_name: str = "", description: str = ""
120) -> model.AssetAdministrationShell:
121 """Create a basic AAS.
122
123 :param identifier: identifier of the AAS
124 :param id_short: ID short of the AAS
125 :param global_asset_identifier: identifier of the global Asset
126 :param display_name: display name of the AAS, defaults to ""
127 :param description: description of the AAS, defaults to ""
128 :return: AssetAdministrationShell instance
129 """
130 if not global_asset_identifier:
131 global_asset_identifier = identifier
132
133 asset_info = create_base_asset_information(global_asset_identifier)
134
135 aas = model.AssetAdministrationShell(id_=identifier, asset_information=asset_info)
136 aas.id_short = id_short
137
138 if description:
139 description_text = {"en": f"{description}"}
140 aas.description = model.MultiLanguageTextType(description_text)
141
142 if display_name:
143 display_name_text = {"en": f"{display_name}"}
144 aas.display_name = model.MultiLanguageNameType(display_name_text)
145
146 return aas
147
148
149def create_base_asset_information(identifier: str) -> model.AssetInformation:
150 """Return a basic AssetInformation instance.
151
152 :param id_short: short ID of the AssetInformation
153 :param namespace: namespace of the AssetInformation, defaults to "basyx_python_aas_server"
154 :return: AssetInformation instance
155 """
156 return model.AssetInformation(model.AssetKind.INSTANCE, identifier)
157
159def create_reference(id: str) -> model.ModelReference:
160 """Create a ModelReference.
161
162 :param id: ID of the Submodel to reference
163 :return: ModelReference instance
164 """
165 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.AssetAdministrationShell create_base_aas(str identifier, str id_short, str global_asset_identifier, str display_name="", str description="")
Create a basic AAS.
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.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.