2016-05-02 17:52:19 +08:00
|
|
|
# create a lock using `flock(2)`. A name is required as first argument.
|
|
|
|
# the lock will be automatically unlocked when the shell process quits.
|
|
|
|
# Noted due to the fixed FD, a shell process can only create one lock.
|
|
|
|
lock() {
|
|
|
|
local name="$1"
|
2016-09-16 13:51:21 +01:00
|
|
|
local lock_dir="$HOMEBREW_PREFIX/var/homebrew/locks"
|
2016-06-08 17:29:03 +08:00
|
|
|
local lock_file="$lock_dir/$name"
|
|
|
|
[[ -d "$lock_dir" ]] || mkdir -p "$lock_dir"
|
2016-11-11 22:52:21 +00:00
|
|
|
if ! [[ -w "$lock_dir" ]]
|
|
|
|
then
|
|
|
|
odie <<EOS
|
|
|
|
Can't create $name lock in $lock_dir!
|
|
|
|
Fix permissions by running:
|
|
|
|
sudo chown -R \$(whoami) $HOMEBREW_PREFIX/var/homebrew
|
|
|
|
EOS
|
|
|
|
fi
|
2016-05-02 17:52:19 +08:00
|
|
|
# 200 is the file descriptor used in the lock.
|
|
|
|
# This FD should be used exclusively for lock purpose.
|
|
|
|
# Any value except 0(stdin), 1(stdout) and 2(stderr) can do the job.
|
|
|
|
# Noted, FD is unique per process but it will be shared to subprocess.
|
|
|
|
# It is recommended to choose a large number to avoid conflicting with
|
|
|
|
# other FD opened by the script.
|
|
|
|
#
|
|
|
|
# close FD first, this is required if parent process holds a different lock.
|
|
|
|
exec 200>&-
|
|
|
|
# open the lock file to FD, so the shell process can hold the lock.
|
|
|
|
exec 200>"$lock_file"
|
2016-11-11 22:52:21 +00:00
|
|
|
if ! _create_lock 200 "$name"
|
2016-05-02 17:52:19 +08:00
|
|
|
then
|
|
|
|
odie <<EOS
|
2016-11-11 22:52:21 +00:00
|
|
|
Another active Homebrew $name process is already in progress.
|
2016-05-02 17:52:19 +08:00
|
|
|
Please wait for it to finish or terminate it to continue.
|
|
|
|
EOS
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
_create_lock() {
|
|
|
|
local lock_fd="$1"
|
2016-11-11 22:52:21 +00:00
|
|
|
local name="$2"
|
2016-05-23 14:36:25 +01:00
|
|
|
local ruby="/usr/bin/ruby"
|
2017-05-11 12:06:55 -07:00
|
|
|
local python="/usr/bin/python"
|
2016-06-29 22:38:42 +02:00
|
|
|
[[ -x "$ruby" ]] || ruby="$(which ruby 2>/dev/null)"
|
2017-05-11 12:06:55 -07:00
|
|
|
[[ -x "$python" ]] || python="$(which python 2>/dev/null)"
|
2016-05-23 14:36:25 +01:00
|
|
|
|
2017-05-11 12:06:55 -07:00
|
|
|
if [[ -n "$ruby" && $("$ruby" -e "puts RUBY_VERSION >= '1.8.7' ? 0 : 1") = 0 ]]
|
2016-05-02 17:52:19 +08:00
|
|
|
then
|
2016-05-23 14:36:25 +01:00
|
|
|
"$ruby" -e "File.new($lock_fd).flock(File::LOCK_EX | File::LOCK_NB) || exit(1)"
|
2016-05-02 17:52:19 +08:00
|
|
|
elif [[ -n "$(which flock)" ]]
|
|
|
|
then
|
|
|
|
flock -n "$lock_fd"
|
2017-05-11 12:06:55 -07:00
|
|
|
elif [[ -n "$python" ]]
|
|
|
|
then
|
|
|
|
"$python" -c "import fcntl; fcntl.flock($lock_fd, fcntl.LOCK_EX | fcntl.LOCK_NB)"
|
2016-05-02 17:52:19 +08:00
|
|
|
else
|
2016-11-11 22:52:21 +00:00
|
|
|
onoe "Cannot create $name lock, please avoid running Homebrew in parallel."
|
2016-05-02 17:52:19 +08:00
|
|
|
fi
|
|
|
|
}
|