-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathplugin-launch.sh
executable file
·133 lines (119 loc) · 3.45 KB
/
plugin-launch.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
#!/bin/bash
# Copyright (c) 2024 Carnegie Mellon University
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
start=`date +%s.%N`
trap ctrl_c INT QUIT TERM
terminating=0
launched=0
function ctrl_c() {
red "catch the signal"
user=$1
terminating=1
cd $scriptdir
if [[ ! -z $dccom ]]; then
while [[ $launched -lt 5 ]]; do
snore 1
launched=$((launched+1))
done
red "$dccom down"
if [ $verbose -eq 1 ]; then
$dccom down
else
$dccom down > /dev/null 2>&1
fi
fi
exit $user
}
function err {
>&2 red "[ERROR] "$@
}
function red {
echo -en "\033[31m" ## red
echo $@
echo -en "\033[0m" ## reset color
}
function blue {
echo -en "\033[36m" ## blue
echo $@
echo -en "\033[0m" ## reset color
}
function snore()
{
local IFS
[[ -n "${_snore_fd:-}" ]] || exec {_snore_fd}<> <(:)
read ${1:+-t "$1"} -u $_snore_fd || :
}
pwd=`pwd`
scriptdir=`dirname $0`
project=$(basename $(realpath $scriptdir))
cd $scriptdir
scriptdir=`pwd`
verbose=0
while getopts "hv" arg; do
case $arg in
h)
echo "Usage:"
echo " $0 [-v]"
echo ""
echo " -h show this help"
echo " -v verbose mode"
exit
;;
v)
verbose=1
;;
esac
done
log_name=cabot_plugins_`date +%Y-%m-%d-%H-%M-%S`
log_dir=$scriptdir/log
mkdir -p $log_dir
log_file=$log_dir/$log_name
dcfile="docker-compose-plugins.yaml"
dccom="docker compose -f $dcfile -p ${project}-plugins"
# clean up all exited plugin containers to check Exit status while running
$dccom rm -f
if [ $verbose -eq 0 ]; then
com2="bash -c \"setsid $dccom --ansi never up --no-build\" > $log_file 2>&1 &"
else
com2="bash -c \"setsid $dccom up --no-build\" | tee $log_file 2>&1 &"
fi
if [ $verbose -eq 1 ]; then
blue "$com2"
fi
if [[ $terminating -eq 1 ]]; then
exit
fi
eval $com2
dcpid=($!)
while [[ $launched -lt 5 ]]; do
snore 1
launched=$((launched+1))
done
while [ 1 -eq 1 ];
do
# check if any of container got Exit status
if [[ $terminating -eq 0 ]] && [[ `$dccom ps --status exited | grep -v "Exited (0)" | grep "Exited" | wc -l` -gt 0 ]]; then
red "docker compose may have some issues. Check errors in the log or run with '-v' option. or check $log_file"
$dccom ps --status exited | grep -v "Exited (0)"
ctrl_c 1
exit
fi
snore 1
done