-
Notifications
You must be signed in to change notification settings - Fork 0
/
foundry.sh
executable file
·183 lines (141 loc) · 3.25 KB
/
foundry.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
#!/bin/bash
# foundry.sh - Start/stop script for the Foundry build system
# Copyright (C) 2021-2023 Matthias Kruk
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
start_daemon() {
local daemon="$1"
local -n args="$2"
local arg
local escaped_args
escaped_args=("$daemon")
for arg in "${args[@]}"; do
escaped_args+=("\"$arg\"")
done
log_info "Starting daemon: ${escaped_args[*]}"
"$daemon" "${args[@]}"
return 0
}
start_group() {
local daemon="$1"
local -n members="$2"
local member
log_info "Starting group $daemon"
for member in "${!members[@]}"; do
if ! start_daemon "$daemon" "${members[$member]}"; then
return 1
fi
done
return 0
}
stop_group() {
local daemon="$1"
local -n members="$2"
local pid
local dontcare
local -i err
err=0
while read -r pid dontcare; do
if ! "$daemon" --stop "$pid"; then
err=1
fi
done < <("$daemon" --list)
return "$err"
}
do_error() {
log_error "Invalid combination of arguments"
return 2
}
do_start() {
local config="$1"
local group
if ! . "$config"; then
return 1
fi
for group in "${!foundry[@]}"; do
if ! start_group "$group" "${foundry[$group]}"; then
do_stop "$config"
return 1
fi
done
return 0
}
do_stop() {
local config="$1"
local group
local -i err
if ! . "$config"; then
return 1
fi
err=0
for group in "${!foundry[@]}"; do
if ! stop_group "$group" "${foundry[$group]}"; then
err=1
fi
done
return "$err"
}
do_restart() {
local config="$1"
if do_stop "$config" &&
do_start "$config"; then
return 0
fi
return 1
}
main() {
local args=("$@")
local -A foundry
local -ri ACTION_ERROR=0
local -ri ACTION_START=1
local -ri ACTION_STOP=2
local -ri ACTION_RESTART=3
local config
local -i start
local -i stop
local -i restart
local -A actions
local -i action
opt_add_arg "c" "config" "v" "/etc/foundry.conf" "Path to the foundry configuration"
opt_add_arg "s" "start" "" 0 "Start foundry"
opt_add_arg "t" "stop" "" 0 "Stop foundry"
opt_add_arg "r" "restart" "" 0 "Restart foundry"
if ! opt_parse "${args[@]}"; then
return 1
fi
config=$(opt_get "config")
start=$(opt_get "start")
stop=$(opt_get "stop")
restart=$(opt_get "restart")
action=$((
((start > 0) * ACTION_START ) +
((stop > 0) * ACTION_STOP ) +
((restart > 0) * ACTION_RESTART)
))
actions["$action"]=do_error
actions["$ACTION_ERROR"]=do_error
actions["$ACTION_START"]=do_start
actions["$ACTION_STOP"]=do_stop
actions["$ACTION_RESTART"]=do_restart
"${actions[$action]}" "$config"
return "$?"
}
{
if ! . toolbox.sh ||
! include "log" "opt"; then
exit 1
fi
main "$@"
exit "$?"
}