-
Notifications
You must be signed in to change notification settings - Fork 0
/
puma
336 lines (281 loc) · 10.2 KB
/
puma
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
#!/bin/sh
# PROVIDE: puma
# REQUIRE: LOGIN mysql postgresql redis
# KEYWORD: shutdown
. /etc/rc.subr
name="puma"
rcvar="${name}_enable"
procname="ruby"
extra_commands="reload upgrade show reopenlogs"
start_cmd="puma_start_command"
upgrade_cmd="puma_upgrade_command"
reload_cmd="puma_reload_command"
show_cmd="puma_show_command"
reopenlogs_cmd="puma_reopenlogs_command"
load_rc_config "${name}"
: ${puma_enable:="NO"}
: ${puma_flags:=""}
: ${puma_env:="production"}
: ${puma_init_config:=""}
: ${puma_bundle_gemfile:=""}
: ${puma_profiles:=""}
: ${puma_upgrade_timeout:="60"}
: ${puma_rc_script:="/usr/local/etc/rc.d/puma"}
#
# Convenience function to read a profile's environment variable, or fall back to a default
#
# e.x. _read_profile_var my_app pidfile '/u/my_app/shard/pids/puma.pid'
#
_read_profile_var()
{
profile=$1
var=$2
default=$3
default2=$4
eval value="\${puma_${profile}_${var}:-${default}}"
eval value="\${value:-${default2}}"
echo "${value}"
}
#
# Takes a directory and sets up some default environement variables based on a capistrano layout
#
_setup_directory()
{
local directory
directory=$1
directory_command="${directory}/current/bin/puma"
directory_pidfile="${directory}/shared/tmp/pids/puma.pid"
directory_old_pidfile="${directory_pidfile}.oldbin"
directory_config="${directory}/current/config/puma.rb"
directory_log="${directory}/current/log/puma.log"
directory_rackup="${directory}/current/config.ru"
directory_init_config="${directory}/current/.env"
directory_bundle_gemfile="${directory}/current/Gemfile"
directory_chdir="${directory}/current"
# only use the directory_init_config if it exists
if [ ! -f "${directory_init_config}" ]; then
unset directory_init_config
fi
# only use the bundle_gemfile if it exists
if [ ! -f "${directory_bundle_gemfile}" ]; then
unset directory_bundle_gemfile
fi
if [ -f "${directory_config}" ]; then
directory_user=`stat -f "%Su" "${directory_config}"` # default to the owner of the config file
fi
}
#
# If we have a profile, set up the environment for that profile
#
if [ -n "$2" ]; then
profile="$2"
# set the rcvar for this specific profile
rcvar="${name}_${profile}_enable"
rcvar="${rcvar}"
# if the user provides a directory, we can infer some default configuration
directory=`_read_profile_var "${profile}" "directory"`
if [ -n "${directory}" ]; then
_setup_directory "${directory}"
fi
puma_rackup=` _read_profile_var "${profile}" "rackup" "${directory_rackup}"`
puma_old_pidfile=` _read_profile_var "${profile}" "old_pidfile" "${directory_old_pidfile}"`
puma_config=` _read_profile_var "${profile}" "config" "${directory_config}"`
puma_log=` _read_profile_var "${profile}" "log" "${directory_log}"`
puma_init_config=` _read_profile_var "${profile}" "init_config" "${directory_init_config}"`
puma_bundle_gemfile=`_read_profile_var "${profile}" "bundle_gemfile" "${directory_bundle_gemfile}"`
puma_chdir=` _read_profile_var "${profile}" "chdir" "${directory_chdir}"`
puma_listen=` _read_profile_var "${profile}" "listen" "${puma_listen}"`
puma_user=` _read_profile_var "${profile}" "user" "${puma_user}" "${directory_user}"`
puma_nice=` _read_profile_var "${profile}" "nice" "${puma_nice}"`
puma_env=` _read_profile_var "${profile}" "env" "${puma_env}"`
puma_flags=` _read_profile_var "${profile}" "flags" "${puma_flags}"`
command=`_read_profile_var "${profile}" "command" "${puma_command}" "${directory_command}"`
command_args=`_read_profile_var "${profile}" "command_args" "${puma_command_args}" "${directory_command_args}"`
pidfile=`_read_profile_var "${profile}" "pidfile" "${directory_pidfile}"`
else
if [ "x${puma_profiles}" != "x" -a "x$1" != "x" ]; then
# If we weren't started with a profile, run the command on all available profiles
for profile in ${puma_profiles}; do
# By default set the profile rcvar to no to suppress warnings by checkyesno
profile_rcvar="${name}_${profile}_enable"
eval "${profile_rcvar}=\${${profile_rcvar}:-'NO'}"
if checkyesno ${profile_rcvar}; then
echo "Running ${1} on ${profile}"
${puma_rc_script} $1 $profile
else
echo "Skipping ${profile}"
# Unset the variable and then checkyesno again to print the warning
eval "unset ${profile_rcvar}"
checkyesno ${profile_rcvar}
fi
echo
done
exit 0
else
# look for a profile-less configuration
# if the user provides a directory, we can infer some default configuration
directory=${puma_directory:-}
if [ -n "${directory}" ]; then
_setup_directory "${directory}"
fi
puma_rackup=${puma_rackup:-$directory_rackup}
puma_old_pidfile=${puma_old_pidfile:-$directory_old_pidfile}
puma_chdir=${puma_chdir:-$directory_chdir}
puma_rackup=${puma_rackup:-$directory_rackup}
puma_user=${puma_user:-$directory_user}
puma_config=${puma_config:-$directory_config}
puma_log=${puma_log:-$directory_log}
puma_init_config=${puma_init_config:-$directory_init_config}
puma_bundle_gemfile=${puma_bundle_gemfile:-$directory_bundle_gemfile}
command=${puma_command:-$directory_command}
command_args=${puma_command_args:-$directory_command_args}
pidfile=${puma_pidfile:-$directory_pidfile}
fi
fi
# add the directory as a required directory, if it's specified
required_dirs="${directory:-}"
# if we have a config file or rackup file specified, make sure it exists
required_files="${puma_config:-}"
#
# Build up the flags based on the environment variables
#
[ -n "${puma_listen}" ] && puma_flags="-b ${puma_listen} ${puma_flags}"
[ -n "${puma_config}" ] && puma_flags="-C ${puma_config} ${puma_flags}"
# [ -n "${puma_log}" ] && puma_flags="-L ${puma_log} ${puma_flags}"
[ -n "${puma_env}" ] && puma_flags="-e ${puma_env} ${puma_flags}"
# Add our rackup file to the puma command_args
[ -n "${puma_rackup:-}" ] && command_args="${puma_rackup:-} ${command_args:-}"
# This function builds the command to start puma. This is split out so we can
# print it from the "show" command
_puma_start_command()
{
local shell_command
local daemon_command
daemon_command="/usr/sbin/daemon -f -p ${pidfile} -o ${puma_log} "
shell_command="${puma_bundle_gemfile:+export BUNDLE_GEMFILE=$puma_bundle_gemfile && }"\
"${puma_init_config:+. $puma_init_config && }"\
"${puma_chdir:+cd $puma_chdir && }"\
"${puma_nice:+nice -n $puma_nice }"\
"${daemon_command}"\
"${command} ${rc_flags} ${command_args}"
if [ -n "${puma_user}" ]; then
echo "su -l ${puma_user} -c \"${shell_command}\""
else
echo "sh -c \"${shell_command}\""
fi
}
#
# The start command
#
puma_start_command()
{
# ensure puma isn't already running
if [ -z "$rc_fast" -a -n "$rc_pid" ]; then
echo 1>&2 "${name} already running? (pid=$rc_pid)."
return 1
fi
# ensure that the command exists and is executable
if [ ! -x "${_chroot}${_chroot:+/}${command}" ]; then
warn "run_rc_command: cannot run $command"
return 1
fi
check_startmsgs && echo "Starting ${name}: ${profile}."
eval "$(_puma_start_command)"
_return=$?
if [ $_return -ne 0 ] && [ -z "${rc_force}" ]; then
return 1
fi
return 0
}
puma_reload_command()
{
if [ -n "${rc_pid}" ]; then
# Tell the master to spawn a new version of itself
if kill -USR2 "${rc_pid}"; then
# jsust send the signal
# everything worked, return success
return 0
fi
fi
# If there isn't a pid in rc_pid, just run the start command
echo >&2 "Couldn't reload, running `start` instead"
$0 start "${2}"
}
puma_upgrade_command()
{
if [ -n "${rc_pid}" ]; then
# Tell the master to spawn a new version of itself
if kill -USR2 "${rc_pid}"; then
n=$puma_upgrade_timeout
# Wait until the puma_old_pidfile and pidfile both exist and are non-empty
echo -n >&2 "Waiting for the new master to spawn"
while [ \( ! -s "${puma_old_pidfile}" -o ! -s "${pidfile}" \) -a $n -ge 0 ]; do
printf >&2 '.' && sleep 1 && n=$(( $n-1 ))
done
echo
# if the pidfile or puma_old_pidfile still don't exist, quit
if [ ! -s "${pidfile}" -o ! -s "${puma_old_pidfile}" ]; then
[ ! -s "${pidfile}" ] && echo >&2 "${pidfile} doesn't exist after ${puma_upgrade_timeout} seconds"
[ ! -s "${ppuma_old_pidfile}" ] && echo >&2 "${puma_old_pidfile} doesn't exist after ${puma_upgrade_timeout} seconds"
return 1
fi
# make sure the new master can receive signals, and then QUIT the old one
echo >&2 "Killing the old master"
kill -0 `check_pidfile "${pidfile}" "${procname}"` && kill -QUIT `check_pidfile "${puma_old_pidfile}" "${procname}"`
# Wait for the old master to die
echo -n >&2 "Waiting for the old master to cleanup"
while [ -s "${puma_old_pidfile}" -a $n -ge 0 ]; do
printf >&2 '.' && sleep 1 && n=$(( $n-1 ))
done
echo
# If the old master is still around, print that fact and exit with an error
if [ -s "${puma_old_pidfile}" -a $n -lt 0 ]; then
echo >&2 "${puma_old_pidfile} still exists after ${puma_upgrade_timeout} seconds"
return 1
fi
# everything worked, return success
return 0
fi
# If there isn't a pid in rc_pid, just run the start command
echo >&2 "Couldn't upgrade, running `start` instead"
$0 start "${2}"
fi
}
#
# Prints the configuration for the given profile
#
puma_show_command()
{
if [ -n "${profile}" ]; then
banner="puma Configuration for ${profile}"
else
banner="puma Configuration"
fi
echo "
#
# ${banner}
#
command: ${command}
command_args: ${command_args}
rackup: ${puma_rackup}
pidfile: ${pidfile}
old_pidfile: ${puma_old_pidfile}
listen: ${puma_listen}
config: ${puma_config}
log: ${puma_log}
init_config: ${puma_init_config}
bundle_gemfile: ${puma_bundle_gemfile}
chdir: ${puma_chdir}
user: ${puma_user}
nice: ${puma_nice}
env: ${puma_env}
flags: ${puma_flags}
start_command:
$(_puma_start_command)
"
}
puma_reopenlogs_command()
{
[ -n "${rc_pid}" ] && kill -USR1 $rc_pid
}
run_rc_command "${1}"