-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathexecute.bash
executable file
·222 lines (205 loc) · 6.28 KB
/
execute.bash
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
#!/usr/bin/env bash
# This program and the accompanying materials are made available under the
# terms of the MIT license (X11 license) which accompanies this distribution.
# author: C. Bürger
set -e
set -o pipefail
shopt -s inherit_errexit
script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
configurations_array=()
################################################################################################################ Parse arguments:
arguments="$* --"
arguments="${arguments#*--}"
if [ $# -eq 0 ]
then
"$script_dir/execute.bash" -h
exit $?
fi
while getopts s:e:l:h opt
do
case $opt in
s)
if [[ ! -v "selected_system" ]]
then
"$script_dir/list-scheme-systems.bash" -s "$OPTARG"
selected_system="$OPTARG"
else
echo " !!! ERROR: Several Scheme systems for execution selected via -s parameter !!!" >&2
exit 64
fi
;;
e)
if [[ ! -v "to_execute" ]]
then
to_execute="$OPTARG"
to_execute_dir="$( dirname "$to_execute" )"
if [ "$( "$script_dir/list-libraries.bash" -c "$to_execute_dir" 2> /dev/null )" != "" ]
then
configurations_array+=( "$( "$script_dir/list-libraries.bash" -c "$to_execute_dir" )" )
fi
else
echo " !!! ERROR: Several programs to execute specified via -e parameter !!!" >&2
exit 64
fi
;;
l)
configurations_array+=( "$( "$script_dir/list-libraries.bash" -c "$OPTARG" )" )
;;
h|?)
echo "Usage: -s Scheme system (mandatory parameter). Permitted values:" >&2
"$script_dir/list-scheme-systems.bash" -i | sed 's/^/ /' >&2
echo " -e Scheme program to execute (mandatory parameter)." >&2
echo " -l Load a RACR library before execution (optional parameter)." >&2
echo " The given argument must be a RACR library directory." >&2
echo " Know RACR library directories are:" >&2
"$script_dir/list-libraries.bash" -i | sed 's/^/ /' >&2
echo " Implicitly set if the program to execute already is in a RACR library directory." >&2
echo " -- Command line arguments for the Scheme program to execute (optional parameter)." >&2
echo " All following arguments are forwarded to the executed program." >&2
exit 64
;;
esac
done
shift $(( OPTIND - 1 ))
if [ $# -ge 1 ] && [ " $* --" != "$arguments" ]
then
echo " !!! ERROR: Unknown [$*] command line arguments !!!" >&2
exit 64
fi
if [ "$to_execute" = "" ] || [ ! -f "$to_execute" ]
then
echo " !!! ERROR: Non-existent or no Scheme program to execute specified via -e parameter !!!" >&2
exit 64
fi
if [ "$selected_system" = "" ]
then
echo " !!! ERROR: No Scheme system for execution selected via -s parameter !!!" >&2
exit 64
fi
required_libraries=()
if (( ${#configurations_array[@]} > 1 ))
then
echo " !!! ERROR: Several libraries to use specified, either via -l parameter or implicitly" >&2
echo " because the program to execute is in a RACR library directory !!!" >&2
exit 64
elif (( ${#configurations_array[@]} == 1 ))
then
configuration_to_parse="${configurations_array[0]}"
. "$script_dir/configure.bash" # Sourced script sets configuration!
required_libraries+=( "$configuration_directory" )
if [[ ! -v "supported_systems[$selected_system]" ]]
then
echo " !!! ERROR: Scheme system [$selected_system] not supported by the program !!!" >&2
exit 64
fi
else
required_libraries+=( "$script_dir/../../racr" )
required_libraries+=( "$script_dir/../../racr-meta" )
fi
###################################### Lock binaries of all used libraries to prevent race-conditions with installations of such:
locks=()
my_exit(){
# Capture exit status (i.e., script success or failure):
exit_status=$?
# Release locks:
for mutex in "${locks[@]}"
do
if [ -f "$mutex" ]
then
"$mutex"
fi
done
# Return captured exit status (i.e., if the original script execution succeeded or not):
exit "$exit_status"
}
trap 'my_exit' 0 1 2 3 15
required_binary_locks=()
for l in "${required_libraries[@]}"
do
required_binary_locks+=( "$l/binaries/$selected_system/lock" )
done
mapfile -t locks < <(
"$script_dir/lock-files.bash" \
-k "$script_dir/execute.bash" \
-x " !!! ERROR: Can not execute [$to_execute]; installation of RACR libraries for $selected_system in progress !!!" \
-- "${required_binary_locks[@]}" \
|| kill -13 $$ )
################################################################################################################ Execute program:
case $selected_system in
racket)
libs=()
for l in "${required_libraries[@]}"
do
libs+=( ++path "$l/binaries/racket" )
done
plt-r6rs "${libs[@]}" "$to_execute" "$@"
;;
guile)
libs=()
for l in "${required_libraries[@]}"
do
libs+=( -L "$l/binaries/guile" )
libs+=( -C "$l/binaries/guile" )
done
guile --no-auto-compile "${libs[@]}" -s "$to_execute" "$@"
;;
larceny)
libs_string=""
libs=()
for l in "${required_libraries[@]}"
do
libs_string+=":$l/binaries/larceny"
done
if [ "$libs_string" != "" ]
then
libs+=( --path "${libs_string:1}" )
fi
larceny --utf8 --r6rs "${libs[@]}" --program "$to_execute" -- "$@"
;;
chez)
libs_string=""
libs=()
for l in "${required_libraries[@]}"
do
libs_string+=":$l/binaries/chez"
done
if [ "$libs_string" != "" ]
then
libs+=( --libdirs "${libs_string:1}" )
fi
chez "${libs[@]}" --program "$to_execute" "$@"
;;
sagittarius)
libs=()
for l in "${required_libraries[@]}"
do
libs+=( --loadpath="$l/binaries/sagittarius" )
done
sagittarius "${libs[@]}" "$to_execute" "$@"
;;
ypsilon)
libs_string="$( dirname "$( command -v ypsilon )")/sitelib"
for l in "${required_libraries[@]}"
do
libs_string+=":$l/binaries/ypsilon"
done
sitelib="--sitelib=$libs_string"
loadpath="--loadpath=$libs_string"
cache="$script_dir/../../racr/binaries/ypsilon"
mkdir -p "$cache"
# To reconstruct compiled-cache add --clean-acc flag.
# To add compilation warnings add --warning flag.
# To echo load and compile activities add --verbose flag.
# The heap limit is in MBytes.
ypsilon "$sitelib" "$loadpath" --acc="$cache" --quiet --r6rs --heap-limit=512 -- "$to_execute" "$@"
;;
ironscheme)
libs=()
for l in "${required_libraries[@]}"
do
libs+=( -I "$l/binaries/ironscheme" )
done
mono "$( command -v IronScheme.Console-v4.exe )" -nologo "${libs[@]}" "$to_execute" "$@"
;;
esac
exit 0 # triggers 'my_exit'