-
Notifications
You must be signed in to change notification settings - Fork 18
/
jm_ipython.sh
executable file
·105 lines (94 loc) · 3.06 KB
/
jm_ipython.sh
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
99
100
101
102
103
104
105
#!/bin/bash
#################################################
# Shell script that simulates JModelica using
# a docker image of JModelica.
#
# The main purpose of this script is to export
# MODELICAPATH and PYTHONPATH with their values
# updated for the docker, and to mount the
# required directories.
#################################################
set -e
IMG_NAME=ubuntu-1804_jmodelica_trunk
DOCKER_REPONAME=lbnlblum
# Function declarations
function create_mount_command()
{
local pat="$1"
# Each entry in pat will be a mounted read-only volume
local mnt_cmd=""
for ele in ${pat//:/ }; do
mnt_cmd="${mnt_cmd} -v ${ele}:/mnt${ele}:ro"
done
# On Darwin, the exported temporary folder needs to be /private/var/folders, not /var/folders
# see https://askubuntu.com/questions/600018/how-to-display-the-paths-in-path-separately
if [ `uname` == "Darwin" ]; then
mnt_cmd=`echo ${mnt_cmd} | sed -e 's| /var/folders/| /private/var/folders/|g'`
fi
echo "${mnt_cmd}"
}
function update_path_variable()
{
# Prepend /mnt/ in front of each entry of a PATH variable in which the arguments are
# separated by a colon ":"
# This allows for example to create the new MODELICAPATH
local pat="$1"
local new_pat=`(set -f; IFS=:; printf "/mnt%s:" ${pat})`
# Cut the trailing ':'
new_pat=${new_pat%?}
echo "${new_pat}"
}
# Export the MODELICAPATH
if [ -z ${MODELICAPATH+x} ]; then
MODELICAPATH=`pwd`
else
# Add the current directory to the front of the Modelica path.
# This will export the directory to the docker, and also set
# it in the MODELICAPATH so that JModelica finds it.
MODELICAPATH=`pwd`:${MODELICAPATH}
fi
# Create the command to mount all directories in read-only mode
# a) for MODELICAPATH
MOD_MOUNT=`create_mount_command ${MODELICAPATH}`
# b) for PYTHONPATH
PYT_MOUNT=`create_mount_command ${PYTHONPATH}`
# Prepend /mnt/ in front of each entry, which will then be used as the MODELICAPATH
DOCKER_MODELICAPATH=`update_path_variable ${MODELICAPATH}`
DOCKER_PYTHONPATH=`update_path_variable ${PYTHONPATH}`
# If the current directory is part of the argument list,
# replace it with . as the docker may have a different file structure
cur_dir=`pwd`
bas_nam=`basename ${cur_dir}`
arg_lis=`echo $@ | sed -e "s|${cur_dir}|.|g"`
# Set variable for shared directory
sha_dir=`dirname ${cur_dir}`
# Check if the python script should be run interactively (if -i is specified)
while [ $# -ne 0 ]
do
arg="$1"
case "$arg" in
-i)
interactive=true
DOCKER_INTERACTIVE=-t
;;
esac
shift
done
# --user=${UID} \
docker run \
--user=${UID} \
-i \
$DOCKER_INTERACTIVE \
--detach=false \
${MOD_MOUNT} \
${PYT_MOUNT} \
-v ${sha_dir}:/mnt/shared \
-e DISPLAY=${DISPLAY} \
-v /tmp/.X11-unix:/tmp/.X11-unix \
--rm \
${DOCKER_REPONAME}/${IMG_NAME} /bin/bash -c \
"export MODELICAPATH=${DOCKER_MODELICAPATH}:/usr/local/JModelica/ThirdParty/MSL && \
export PYTHONPATH=${DOCKER_PYTHONPATH} && \
cd /mnt/shared/${bas_nam} && \
/usr/local/JModelica/bin/jm_ipython.sh ${arg_lis}"
exit $?