forked from stfc/aiida-mlip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
base_parser.py
88 lines (70 loc) · 2.35 KB
/
base_parser.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
"""
Parsers provided by aiida_mlip.
"""
from aiida.engine import ExitCode
from aiida.orm import SinglefileData
from aiida.orm.nodes.process.process import ProcessNode
from aiida.parsers.parser import Parser
class BaseParser(Parser):
"""
Parser class for parsing output of calculation.
Parameters
----------
node : aiida.orm.nodes.process.process.ProcessNode
ProcessNode of calculation.
Methods
-------
__init__(node: aiida.orm.nodes.process.process.ProcessNode)
Initialize the BaseParser instance.
parse(**kwargs: Any) -> int:
Parse outputs, store results in the database.
Returns
-------
int
An exit code.
Raises
------
exceptions.ParsingError
If the ProcessNode being passed was not produced by a `Base` Calcjob.
"""
def __init__(self, node: ProcessNode):
"""
Check that the ProcessNode being passed was produced by a `Base` Calcjob.
Parameters
----------
node : aiida.orm.nodes.process.process.ProcessNode
ProcessNode of calculation.
"""
super().__init__(node)
def parse(self, **kwargs) -> int:
"""
Parse outputs, store results in the database.
Parameters
----------
**kwargs : Any
Any keyword arguments.
Returns
-------
int
An exit code.
"""
output_filename = self.node.get_option("output_filename")
log_output = (self.node.inputs.log_filename).value
# Check that folder content is as expected
files_retrieved = self.retrieved.list_object_names()
files_expected = {output_filename, log_output}
if not files_expected.issubset(files_retrieved):
self.logger.error(
f"Found files '{files_retrieved}', expected to find '{files_expected}'"
)
return self.exit_codes.ERROR_MISSING_OUTPUT_FILES
# Add output file to the outputs
with (
self.retrieved.open(log_output, "rb") as log,
self.retrieved.open(output_filename, "rb") as output,
):
self.out("log_output", SinglefileData(file=log, filename=log_output))
self.out(
"std_output", SinglefileData(file=output, filename=output_filename)
)
return ExitCode(0)