-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathview_command.py
98 lines (87 loc) · 3.67 KB
/
view_command.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
89
90
91
92
93
94
95
96
97
98
# -----------------------------------------------------------------------------
#
# Copyright (C) 2021 CERN & University of Surrey for the benefit of the
# BioDynaMo collaboration. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
#
# See the LICENSE file distributed with this work for details.
# See the NOTICE file distributed with this work for additional new_steprmation
# regarding copyright ownership.
#
# -----------------------------------------------------------------------------
import os, sys, shutil
import subprocess as sp
from print_command import Print
from build_command import BuildCommand
## The BioDynaMo CLI command to execute the unit-tests created by default with
## the simulation template. Note that we ignore the configuration in bdm.json.
def ViewCommand(file_id=None):
Print.success("<bdm view> Opening previous simulation results ...")
# 1. Check if paraview is installed and if not, return
bdmsys = os.environ.get("BDMSYS")
if bdmsys is None:
Print.error("<bdm view> BDMSYS is not set.")
sys.exit(1)
paraview_executable = os.path.join(
bdmsys, "third_party/paraview/bin/paraview"
)
pv_found = sp.run("{} --version".format(paraview_executable), shell=True)
if pv_found.returncode != 0:
Print.error("<bdm view> ParaView not found.")
sys.exit(1)
# 2. attempt to change into project director if we are in build
cwd = os.getcwd()
if cwd.split("/")[-1] == "build":
os.chdir("..")
# 3. Find all pvsm files in output and build/output
pvsm_files = []
if os.path.isdir("output"):
for root, dirs, files in os.walk("output"):
for file in files:
if file.endswith(".pvsm"):
pvsm_files.append(os.path.join(root, file))
if os.path.isdir("build/output"):
for root, dirs, files in os.walk("build/output"):
for file in files:
if file.endswith(".pvsm"):
pvsm_files.append(os.path.join(root, file))
# 5. Verify if there are any pvsm files; and that file_id is valid
if len(pvsm_files) == 0:
Print.error("<bdm view> No pvsm files found.")
sys.exit(1)
# 6. Convert all pvsm files to absolute paths
pvsm_files = [os.path.abspath(file) for file in pvsm_files]
Print.new_step("<bdm view> Available PVSM files:")
for i, file in enumerate(pvsm_files):
print("<bdm view> File " + str(i + 1) + " : " + file)
# 7. Choose the pvsm file
Print.new_step("<bdm view> Selecting pvsm file.")
if file_id is not None and file_id > len(pvsm_files):
Print.error("<bdm view> Invalid file id ({}).".format(file_id))
sys.exit(1)
if file_id is None:
print("<bdm view> By default, the latest pvsm file is opened.")
print("<bdm view> Use 'bdm view <id>' to open another pvsm file.")
pvsm_file = max(pvsm_files, key=os.path.getctime)
else:
pvsm_file = pvsm_files[file_id - 1]
# 8. If the latest pvsm file is in the build folder,
# change to the build folder
Print.new_step("<bdm view> Opening :" + pvsm_file)
if "build" in pvsm_file:
os.chdir("build")
# 9. Open the latest pvsm file
visualize = sp.run(
"{} --state={}".format(paraview_executable, pvsm_file), shell=True
)
if visualize.returncode != 0:
Print.warning(
"<bdm view> Visualization terminated with return code {}.".format(
visualize.returncode
)
)
# 10. go back to initial folder.
os.chdir(cwd)
Print.success("<bdm view> Finished successfully.")