Skip to content

Commit 2ccba7e

Browse files
authored
Merge pull request #86 from Project-OMOTES/85-propagating-informational-error-messages-from-workers-to-frontend
add esdl messages
2 parents fd40ced + aef5e75 commit 2ccba7e

File tree

4 files changed

+54
-16
lines changed

4 files changed

+54
-16
lines changed

dev-requirements.txt

+3-5
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,7 @@ coolprop==6.6.0
8080
# -c requirements.txt
8181
# mesido
8282
coverage[toml]==7.4.1
83-
# via
84-
# coverage
85-
# pytest-cov
83+
# via pytest-cov
8684
exceptiongroup==1.2.0
8785
# via pytest
8886
flake8==6.1.0
@@ -152,11 +150,11 @@ numpy==1.22.4
152150
# pymoca
153151
# rtc-tools
154152
# scipy
155-
omotes-sdk-protocol==0.1.6
153+
omotes-sdk-protocol==0.1.13
156154
# via
157155
# -c requirements.txt
158156
# omotes-sdk-python
159-
omotes-sdk-python==3.2.4
157+
omotes-sdk-python==3.2.5
160158
# via
161159
# -c requirements.txt
162160
# omotes-grow-worker (pyproject.toml)

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ requires-python = ">=3.10"
2626
dependencies = [
2727
"python-dotenv ~= 1.0.0",
2828
"mesido ~= 0.1.8.2",
29-
"omotes-sdk-python ~= 3.2.4"
29+
"omotes-sdk-python ~= 3.2.5"
3030
]
3131

3232
[project.optional-dependencies]

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ numpy==1.22.4
6767
# pymoca
6868
# rtc-tools
6969
# scipy
70-
omotes-sdk-protocol==0.1.6
70+
omotes-sdk-protocol==0.1.13
7171
# via omotes-sdk-python
72-
omotes-sdk-python==3.2.4
72+
omotes-sdk-python==3.2.5
7373
# via omotes-grow-worker (pyproject.toml)
7474
ordered-set==4.1.0
7575
# via pyecore

src/grow_worker/worker.py

+48-8
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,13 @@
77
from multiprocessing.process import current_process
88
import os
99
from pathlib import Path
10-
from typing import cast
10+
from typing import cast, Dict, List, Tuple, Optional
1111

12+
from mesido.exceptions import MesidoAssetIssueError
13+
from omotes_sdk.internal.orchestrator_worker_events.esdl_messages import (
14+
EsdlMessage,
15+
MessageSeverity,
16+
)
1217
from omotes_sdk.internal.worker.worker import initialize_worker, UpdateProgressHandler
1318
from omotes_sdk.types import ProtobufDict
1419
from mesido.esdl.esdl_parser import ESDLStringParser
@@ -36,14 +41,14 @@ class EarlySystemExit(Exception):
3641
...
3742

3843

39-
def run_mesido(input_esdl: str) -> str:
44+
def run_mesido(input_esdl: str) -> Tuple[Optional[str], List[EsdlMessage]]:
4045
"""Run mesido using the specific workflow.
4146
4247
Note: This is run without a subprocess! Casadi does not yield the GIL and therefore
4348
causes starved thread issues.
4449
4550
:param input_esdl: The input ESDL XML string.
46-
:return: GROW optimized or simulated ESDL
51+
:return: GROW optimized or simulated ESDL and a list of ESDL feedback messages.
4752
"""
4853
mesido_func = get_problem_function(GROW_TASK_TYPE)
4954
mesido_workflow = get_problem_type(GROW_TASK_TYPE)
@@ -75,10 +80,45 @@ def run_mesido(input_esdl: str) -> str:
7580
update_progress_function=None,
7681
profile_reader=InfluxDBProfileReader,
7782
)
83+
esdl_str = cast(str, solution.optimized_esdl_string)
84+
# TODO get esdl_messages from solution after mesido update.
85+
esdl_messages = []
86+
except MesidoAssetIssueError as mesido_issues_error:
87+
esdl_str = None
88+
esdl_messages = parse_mesido_esdl_messages(
89+
mesido_issues_error.general_issue, mesido_issues_error.message_per_asset_id
90+
)
7891
except SystemExit as e:
7992
raise EarlySystemExit(e)
8093

81-
return cast(str, solution.optimized_esdl_string)
94+
return esdl_str, esdl_messages
95+
96+
97+
def parse_mesido_esdl_messages(
98+
general_message: str, object_messages: Dict[str, str]
99+
) -> List[EsdlMessage]:
100+
"""Convert mesido messages to a list of esdl messages in omotes format.
101+
102+
:param general_message: general message (not related to a specific ESDL object).
103+
:param object_messages: esdl object messages per object id.
104+
:return: list of EsdlMessage dataclass objects.
105+
"""
106+
# TODO get severity from esdl message and add list of general messages after mesido update.
107+
esdl_messages = []
108+
109+
if general_message:
110+
esdl_messages.append(
111+
EsdlMessage(technical_message=general_message, severity=MessageSeverity.ERROR)
112+
)
113+
for object_id, message in object_messages.items():
114+
esdl_messages.append(
115+
EsdlMessage(
116+
technical_message=message,
117+
severity=MessageSeverity.ERROR,
118+
esdl_object_id=object_id,
119+
)
120+
)
121+
return esdl_messages
82122

83123

84124
def kill_pool(pool: multiprocessing.pool.Pool) -> None:
@@ -114,7 +154,7 @@ def kill_pool(pool: multiprocessing.pool.Pool) -> None:
114154

115155
def grow_worker_task(
116156
input_esdl: str, workflow_config: ProtobufDict, update_progress_handler: UpdateProgressHandler
117-
) -> str:
157+
) -> Tuple[Optional[str], List[EsdlMessage]]:
118158
"""Run the grow worker task and run configured specific problem type for this worker instance.
119159
120160
Note: Be careful! This spawns within a subprocess and gains a copy of memory from parent
@@ -125,7 +165,7 @@ def grow_worker_task(
125165
:param input_esdl: The input ESDL XML string.
126166
:param workflow_config: Extra parameters to configure this run.
127167
:param update_progress_handler: Handler to notify of any progress changes.
128-
:return: GROW optimized or simulated ESDL
168+
:return: GROW optimized or simulated ESDL and a list of ESDL feedback messages.
129169
"""
130170
# TODO Very nasty hack. Celery unfortunately starts the worker subprocesses as 'daemons'
131171
# which prevents this process from creating any other subprocesses. Therefore, we
@@ -137,13 +177,13 @@ def grow_worker_task(
137177

138178
with multiprocessing.Pool(1) as pool:
139179
try:
140-
output_esdl = pool.map(run_mesido, [input_esdl])[0]
180+
output = pool.map(run_mesido, [input_esdl])[0]
141181
except SystemExit as e:
142182
logger.warning("During pool the worker was requested to quit: %s %s", type(e), e)
143183
kill_pool(pool)
144184
raise
145185

146-
return output_esdl
186+
return output
147187

148188

149189
if __name__ == "__main__":

0 commit comments

Comments
 (0)