Skip to content
Snippets Groups Projects
Commit e34b464f authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Use filesystem locks to prevent concurrent use of ~/.pypirc (fixes #11)

parent 79197d64
No related branches found
No related tags found
No related merge requests found
...@@ -3,4 +3,4 @@ ...@@ -3,4 +3,4 @@
source $(dirname ${0})/functions.sh source $(dirname ${0})/functions.sh
run_cmd rm -rf ${HOME}/.pypirc log_info "*** Not yet implemented ***"
...@@ -3,5 +3,4 @@ ...@@ -3,5 +3,4 @@
source $(dirname ${0})/functions.sh source $(dirname ${0})/functions.sh
run_cmd rm -f ${HOME}/.pypirc
run_cmd $(dirname ${0})/before_test.sh run_cmd $(dirname ${0})/before_test.sh
...@@ -3,18 +3,20 @@ ...@@ -3,18 +3,20 @@
source $(dirname ${0})/functions.sh source $(dirname ${0})/functions.sh
dot_pypirc lock_pypirc
setup register --repository staging setup_deploy register --repository staging
setup check sdist --formats zip upload --repository staging setup_deploy check sdist --formats zip upload --repository staging
# if that worked, uploads documentation to pythonhosted if any exists # if that worked, uploads documentation to pythonhosted if any exists
if [ -d sphinx ]; then if [ -d sphinx ]; then
log_info "Uploading documentation to ${PYPISERVER} on behalf of ${PYPIUSER}..." log_info "Uploading documentation to ${PYPISERVER} on behalf of ${PYPIUSER}..."
setup upload_docs --upload-dir sphinx --repository production setup_deploy upload_docs --upload-dir sphinx --repository production
fi fi
# if that worked, uploads source package to the production index # if that worked, uploads source package to the production index
log_info "Uploading package to ${PYPISERVER} on behalf of ${PYPIUSER}..." log_info "Uploading package to ${PYPISERVER} on behalf of ${PYPIUSER}..."
setup register --repository production setup_deploy register --repository production
setup check sdist --formats zip upload --repository production setup_deploy check sdist --formats zip upload --repository production
unlock_pypirc
...@@ -16,12 +16,12 @@ log_info() { ...@@ -16,12 +16,12 @@ log_info() {
log_warn() { log_warn() {
echo -e "(`date +%T`) \033[1;35mWarning: ${@}\033[0m" echo -e "(`date +%T`) \033[1;35mWarning: ${@}\033[0m" >&2
} }
log_error() { log_error() {
echo -e "(`date +%T`) \033[1;31mError: ${@}\033[0m" echo -e "(`date +%T`) \033[1;31mError: ${@}\033[0m" >&2
} }
...@@ -71,20 +71,29 @@ run_cmd() { ...@@ -71,20 +71,29 @@ run_cmd() {
} }
# Runs setup.py
setup() {
run_cmd ${PREFIX}/bin/python setup.py ${@}
}
# Prepares ~/.pypirc # Prepares ~/.pypirc
dot_pypirc() { lock_pypirc() {
local lockfile=/var/tmp/pypirc_lock
local rc=${HOME}/.pypirc local rc=${HOME}/.pypirc
log_info "Creating ${rc}..." local maxtries=10
if [ -e ${rc} ]; then local try=0
run_cmd rm -f ${rc} local sleeptime=30 #seconds
fi
cat <<EOT >> ${rc} while true; do
if [[ ${try} -lt ${maxtries} ]]; then
((try++))
if ( set -o noclobber; echo "$$" > "${lockfile}") 2> /dev/null; then
log_info "Successfully acquired ${lockfile}"
echo $$ > ${lockfile}
log_info "trapping on ${lockfile}..."
trap 'rm -f "${lockfile}"; exit $?' INT TERM EXIT
# start: protected code
log_info "Creating ${rc}..."
if [ -e ${rc} ]; then
run_cmd rm -f ${rc}
fi
cat <<EOT >> ${rc}
[distutils] [distutils]
index-servers = index-servers =
production production
...@@ -100,7 +109,49 @@ repository: ${TESTSERVER} ...@@ -100,7 +109,49 @@ repository: ${TESTSERVER}
username: ${PYPIUSER} username: ${PYPIUSER}
password: ${PYPIPASS} password: ${PYPIPASS}
EOT EOT
run_cmd chmod 600 ${rc} run_cmd chmod 600 ${rc}
# end: protected code
break
else
log_warn "${lockfile} exists, owned by process $(cat $lockfile)"
log_info "Will retry after a ${sleeptime} seconds sleep (${try}/${maxtries})"
run_cmd sleep ${sleeptime}
fi
else
log_error "I already retried deploying ${try} times. Aborting..."
log_error "You can retry this step when less packages are building."
exit 1
fi
done
}
# Cleans ~/.pypirc, if the lock file belongs to us
unlock_pypirc() {
local lockfile=/var/tmp/pypirc_lock
local rc=${HOME}/.pypirc
# untrap if lock belongs to the running process
if [[ $(cat ${lockfile}) == $$ ]]; then
run_cmd rm -r ${lockfile}
run_cmd rm -rf ${rc}
log_info "$ trap - INT TERM EXIT"
trap - INT TERM EXIT
fi
}
# Runs setup.py in a deployment context. If fails, tries to unlock
# the ${HOME}/.pypirc file lock
setup_deploy() {
log_info "$ ${@}"
${PREFIX}/bin/python setup.py ${@}
local status=$?
if [ ${status} != 0 ]; then
log_error "Command Failed \"${@}\""
unlock_pypirc #just tries
exit ${status}
fi
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment