-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_tutorial.sh
executable file
·345 lines (309 loc) · 11.9 KB
/
run_tutorial.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
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
#!/bin/bash
#
# This script calls docker commands to create an image, volumes, start a container from
# the image, execute commands in that container, then copy outputs to the local
# filesystem.
#
# Note: this script uses a provided config file to
# 1. create the volumes `data` and `output` (if they do not exist)
# 2. build the image `tutor` (if it does not exist)
# 3. start a container with volumes attached and
# 4. run the chosen command with chosen configuration file
# 5. compute output files in the `output` volume
# 6. copy output files to the host machine
# -----------------------------------------------------------
usage ()
{
# Commands that are substrings of other commands will match the superstring and
# possibly print the wrong Usage string.
config_required=(
"build_grid" "calculate_pam_stats" "encode_layers" "split_occurrence_data"
"rasterize_point_heatmap" "convert_lmm_to_raster" "convert_lmm_to_shapefile"
"wrangle_species_list" "wrangle_occurrences" "wrangle_tree"
)
echo ""
echo "Usage: $0 <cmd> "
echo " or: $0 <cmd> <parameters_file>"
echo ""
echo "This script creates an environment for a biotaphy command to be run with "
echo "user-configured arguments in a docker container."
echo "the <cmd> argument can be one of:"
for i in "${!COMMANDS[@]}"; do
if [[ " ${config_required[*]} " =~ ${COMMANDS[$i]} ]] ; then
echo " ${COMMANDS[$i]} <parameters_file>"
else
echo " ${COMMANDS[$i]}"
fi
done
echo "and the <parameters_file> argument must be the full path to a JSON file"
echo "containing command-specific arguments"
echo ""
exit 0
}
# -----------------------------------------------------------
set_defaults() {
IMAGE_NAME="tutor"
CONTAINER_NAME="tutor_container"
VOLUME_MOUNT="/volumes"
IN_VOLUME="data"
ENV_VOLUME="env"
OUT_VOLUME="output"
VOLUME_SAVE_LABEL="saveme"
VOLUME_DISCARD_LABEL="discard"
# Relative host config directory mapped to container config directory
VOLUME_MOUNT="/volumes"
if [ ! -z "$HOST_CONFIG_FILE" ] ; then
if [ ! -f "$HOST_CONFIG_FILE" ] ; then
echo "File $HOST_CONFIG_FILE does not exist"
exit 0
else
host_dir="$IN_VOLUME/config"
container_dir="$VOLUME_MOUNT/$host_dir"
CONTAINER_CONFIG_FILE=$(echo $HOST_CONFIG_FILE | sed "s:^$host_dir:$container_dir:g")
echo "$CONTAINER_CONFIG_FILE"
fi
fi
LOG=/tmp/$CMD.log
if [ -f "$LOG" ] ; then
/usr/bin/rm "$LOG"
fi
touch "$LOG"
}
# -----------------------------------------------------------
build_image_fill_data() {
# Build and name an image from Dockerfile in this directory
# This build also populates the data and env volumes
image_count=$(docker image ls | grep $IMAGE_NAME | wc -l )
if [ $image_count -eq 0 ]; then
docker build . -t $IMAGE_NAME
else
echo " - Image $IMAGE_NAME is already built" | tee -a "$LOG"
fi
}
# -----------------------------------------------------------
create_volumes() {
# Create named RO input volumes for use by any container
# Small input data, part of repository
input_vol_exists=$(docker volume ls | grep $IN_VOLUME | wc -l )
if [ "$input_vol_exists" == "0" ]; then
echo " - Create volume $IN_VOLUME" | tee -a "$LOG"
docker volume create --label=$VOLUME_DISCARD_LABEL $IN_VOLUME
else
echo " - Volume $IN_VOLUME is already created" | tee -a "$LOG"
fi
# Large environmental data, external to repository
env_vol_exists=$(docker volume ls | grep $ENV_VOLUME | wc -l )
if [ "$env_vol_exists" == "0" ]; then
echo " - Create volume $ENV_VOLUME" | tee -a "$LOG"
docker volume create --label=$VOLUME_SAVE_LABEL $ENV_VOLUME
else
echo " - Volume $ENV_VOLUME is already created" | tee -a "$LOG"
fi
# Create named RW output volume for use by any container
rw_vol_exists=$(docker volume ls | grep $OUT_VOLUME | wc -l )
if [ "$rw_vol_exists" == "0" ]; then
echo " - Create volume $OUT_VOLUME" | tee -a "$LOG"
docker volume create --label=$VOLUME_DISCARD_LABEL $OUT_VOLUME
else
echo " - Volume $OUT_VOLUME is already created" | tee -a "$LOG"
fi
}
# -----------------------------------------------------------
#docker run -td --name tutor_container -v data:/volumes/data:ro -v env:/volumes/env: -v output:/volumes/output tutor bash
start_container() {
# Find running container
container_count=$(docker ps | grep $CONTAINER_NAME | wc -l )
if [ "$container_count" -ne 1 ]; then
build_image_fill_data
# Option string for volumes
# TODO: after debugging, add read-only back to data volume
vol_opts="--volume ${IN_VOLUME}:${VOLUME_MOUNT}/${IN_VOLUME} \
--volume ${ENV_VOLUME}:${VOLUME_MOUNT}/${ENV_VOLUME} \
--volume ${OUT_VOLUME}:${VOLUME_MOUNT}/${OUT_VOLUME}"
# Start the container, leaving it up
echo " - Start container $CONTAINER_NAME from $IMAGE_NAME" | tee -a "$LOG"
docker run -td --name ${CONTAINER_NAME} ${vol_opts} ${IMAGE_NAME} bash
else
echo " - Container $CONTAINER_NAME is running" | tee -a "$LOG"
fi
}
# -----------------------------------------------------------
execute_process() {
start_container
# Command to execute in container; tools installed as executables in /usr/local/bin
command="${CMD} --config_file=${CONTAINER_CONFIG_FILE}"
# # or run python command from downloaded repo
# command="python3 ${command_path}/${CMD}.py --config_file=${CONTAINER_CONFIG_FILE}"
echo " - Execute '${command}' on container $CONTAINER_NAME" | tee -a "$LOG"
# Run the command in the container
docker exec -it ${CONTAINER_NAME} ${command}
}
# -----------------------------------------------------------
save_outputs() {
# TODO: determine if bind-mount is more efficient than this named-volume
start_container
# Copy container output directory to host (no wildcards)
# If directory does not exist, create, then add contents
echo " - Copy outputs from $OUT_VOLUME to $IN_VOLUME" | tee -a "$LOG"
docker cp ${CONTAINER_NAME}:${VOLUME_MOUNT}/${OUT_VOLUME} ./${IN_VOLUME}/
}
# -----------------------------------------------------------
remove_container() {
# Find container, running or stopped
container_count=$(docker ps -a | grep $CONTAINER_NAME | wc -l )
if [ $container_count -eq 1 ]; then
echo " - Stop container $CONTAINER_NAME" | tee -a "$LOG"
docker stop $CONTAINER_NAME
echo " - Remove container $CONTAINER_NAME" | tee -a "$LOG"
docker container rm $CONTAINER_NAME
else
echo " - Container $CONTAINER_NAME is not running" | tee -a "$LOG"
fi
}
# -----------------------------------------------------------
remove_image() {
remove_container
# Delete image and volumes
image_count=$(docker image ls | grep $IMAGE_NAME | wc -l )
if [ $image_count -eq 1 ]; then
echo " - Remove image $IMAGE_NAME" | tee -a "$LOG"
docker image rm $IMAGE_NAME
else
echo " - Image $IMAGE_NAME does not exist" | tee -a "$LOG"
fi
}
# -----------------------------------------------------------
remove_volumes() {
remove_container
echo " - Remove volumes $IN_VOLUME, $OUT_VOLUME, $ENV_VOLUME" | tee -a "$LOG"
input_vol_exists=$(docker volume ls | grep $IN_VOLUME | wc -l )
if [ "$input_vol_exists" != "0" ]; then
docker volume rm $IN_VOLUME
fi
output_vol_exists=$(docker volume ls | grep $OUT_VOLUME | wc -l )
if [ "$output_vol_exists" != "0" ]; then
docker volume rm $OUT_VOLUME
fi
env_vol_exists=$(docker volume ls | grep $ENV_VOLUME | wc -l )
if [ "$env_vol_exists" != "0" ]; then
docker volume rm $ENV_VOLUME
fi
}
# -----------------------------------------------------------
list_output_volume_contents() {
# Find an image, start it with output volume, check contents
start_container
echo " - List output volume contents $CONTAINER_NAME" | tee -a "$LOG"
docker exec -it $CONTAINER_NAME ls -lahtr ${VOLUME_MOUNT}/${OUT_VOLUME}
}
# -----------------------------------------------------------
list_all_volume_contents() {
# Find an image, start it with output volume, check contents
start_container
echo " - List volume contents $CONTAINER_NAME" | tee -a "$LOG"
docker exec -it $CONTAINER_NAME ls -lahtr ${VOLUME_MOUNT}
echo " - Volume $ENV_VOLUME" | tee -a "$LOG"
docker exec -it $CONTAINER_NAME ls -lahtr ${VOLUME_MOUNT}/${ENV_VOLUME}
echo " - Volume $IN_VOLUME" | tee -a "$LOG"
docker exec -it $CONTAINER_NAME ls -lahtr ${VOLUME_MOUNT}/${IN_VOLUME}
echo " - Volume $OUT_VOLUME" | tee -a "$LOG"
docker exec -it $CONTAINER_NAME ls -lahtr ${VOLUME_MOUNT}/${OUT_VOLUME}
}
# -----------------------------------------------------------
open_container_shell() {
# Find an image, start it with output volume, check contents
start_container
echo " - Connect to $CONTAINER_NAME" | tee -a "$LOG"
docker exec -it $CONTAINER_NAME bash
}
# -----------------------------------------------------------
list_output_host_contents() {
# Find an image, start it with output volume, check contents
echo " - List host output directory contents " | tee -a "$LOG"
ls -lahtr ${IN_VOLUME}/${OUT_VOLUME}
}
# -----------------------------------------------------------
time_stamp () {
echo "$1" $(/bin/date) | tee -a "$LOG"
}
# -----------------------------------------------------------
####### Main #######
COMMANDS=(
# No command-line parameters
"build_all" "cleanup" "cleanup_all"
"list_commands" "list_outputs" "list_volumes"
# Need configuration file parameter
"build_grid" "calculate_pam_stats"
"convert_lmm_to_csv" "convert_lmm_to_geojson" "convert_lmm_to_shapefile"
"convert_lmm_to_raster"
"create_sdm" "encode_layers"
"randomize_pam"
"rasterize_point_heatmap"
"split_occurrence_data"
"wrangle_matrix" "wrangle_occurrences" "wrangle_species_list" "wrangle_tree"
)
CMD=$1
HOST_CONFIG_FILE=$2
arg_count=$#
command_path=/git/lmpy/lmpy/tools
set_defaults
time_stamp "# Start"
echo ""
# Arguments: none
if [ $arg_count -eq 0 ]; then
usage
# Arguments: command
elif [ $arg_count -eq 1 ]; then
if [ "$CMD" == "cleanup" ] ; then
remove_container
remove_image
docker volume prune --filter "label=discard"
elif [ "$CMD" == "cleanup_all" ] ; then
remove_container
remove_image
remove_volumes
elif [ "$CMD" == "open" ] ; then
open_container_shell
elif [ "$CMD" == "list_commands" ] ; then
usage
elif [ "$CMD" == "list_outputs" ] ; then
list_output_volume_contents
elif [ "$CMD" == "list_volumes" ] ; then
list_all_volume_contents
elif [ "$CMD" == "build_all" ] ; then
remove_container
remove_image
remove_volumes
echo "System build will take approximately 5 minutes ..." | tee -a "$LOG"
create_volumes
build_image_fill_data
elif [ "$CMD" == "test" ]; then
list_output_volume_contents
remove_container
open_container_shell
remove_container
else
usage
fi
# Arguments: command, config file
else
echo "*** arg_count > 1; command $CMD ***" | tee -a "$LOG"
if [[ " ${COMMANDS[*]} " =~ ${CMD} ]]; then
create_volumes
echo "*** create_volumes ***" | tee -a "$LOG"
build_image_fill_data
echo "*** build_image_fill_data ***" | tee -a "$LOG"
start_container
echo "*** start_container ***" | tee -a "$LOG"
execute_process
echo "*** execute_process ***" | tee -a "$LOG"
save_outputs
echo "*** save_outputs ***" | tee -a "$LOG"
remove_container
echo "*** remove_container ***" | tee -a "$LOG"
else
echo "Unrecognized command: $CMD"
usage
fi
fi
time_stamp "# End"