#!/bin/bash
-base_dir=$( dirname $0 )
-cd ${base_dir}
-base_dir=$( readlink -f . )
-
-declare -a VALID_PY_VERSIONS=("3.8" "3.7" "3.6" "3.5")
-
-echo "Preparing virtual environment ..."
-echo
-if [[ ! -f venv/bin/activate ]] ; then
- found="n"
- for py_version in "${VALID_PY_VERSIONS[@]}" ; do
- PYTHON="python${py_version}"
- if type -t ${PYTHON} >/dev/null ; then
- found="y"
- echo
- echo "Found ${PYTHON}."
- echo
- virtualenv --python=${PYTHON} venv
+set -e
+set -u
+
+VERBOSE="n"
+DEBUG="n"
+QUIET='n'
+
+VERSION="2.2"
+
+# console colors:
+RED=""
+YELLOW=""
+GREEN=""
+# BLUE=""
+CYAN=""
+NORMAL=""
+
+BASENAME=$(basename "${0}" )
+BASE_DIR=$( dirname "$( dirname "$0" )" )
+cd "${BASE_DIR}"
+BASE_DIR=$( readlink -f . )
+
+PIP_OPTIONS=
+export VIRTUAL_ENV_DISABLE_PROMPT=y
+
+#-------------------------------------------------------------------
+detect_color() {
+
+ local safe_term="${TERM//[^[:alnum:]]/?}"
+ local match_lhs=""
+ local use_color="false"
+ local term=
+
+ if [[ -f ~/.dir_colors ]] ; then
+ match_lhs="${match_lhs}$( grep '^TERM ' ~/.dir_colors | sed -e 's/^TERM *//' -e 's/ .*//')"
+ fi
+ if [[ -f /etc/DIR_COLORS ]] ; then
+ match_lhs="${match_lhs}$( grep '^TERM ' /etc/DIR_COLORS | sed -e 's/^TERM *//' -e 's/ .*//')"
+ fi
+ if [[ -z ${match_lhs} ]] ; then
+ type -P dircolors >/dev/null && \
+ match_lhs=$(dircolors --print-database | grep '^TERM ' | sed -e 's/^TERM *//' -e 's/ .*//')
+ fi
+ for term in ${match_lhs} ; do
+ # shellcheck disable=SC2053
+ if [[ "${safe_term}" == ${term} || "${TERM}" == ${term} ]] ; then
+ use_color="true"
break
fi
done
- if [[ "${found}" == "n" ]] ; then
- echo >&2
- echo "Did not found a usable Python version." >&2
- echo "Usable Python versions are: ${VALID_PY_VERSIONS[*]}" >&2
- echo >&2
- exit 5
- fi
-fi
-
-# echo
-# echo "---------------------------------------------------"
-# echo "Updating Git submodule python_fb_tools ..."
-# echo "git init ..."
-# echo
-# git submodule init
-# echo
-# echo "--------------"
-# echo "git update ..."
-# echo
-# git submodule update --init --recursive python_fb_tools
-
-. venv/bin/activate || exit 5
-
-echo "---------------------------------------------------"
-echo "Installing and/or upgrading necessary modules ..."
-echo
-echo "From python_fb_tools ..."
-echo
-pip install --upgrade --upgrade-strategy eager --requirement python_fb_tools/requirements.txt
-echo
-echo "From own ..."
-echo
-pip install --upgrade --upgrade-strategy eager --requirement requirements.txt
-echo
-echo "---------------------------------------------------"
-echo "Installed modules:"
-echo
-pip list --format columns
-
-if [[ -x compile-xlate-msgs.sh ]]; then
- echo
- echo "--------------"
- echo "Updating i18n files in ${base_dir} ..."
+
+ # console colors:
+ if [ "${use_color}" = "true" ] ; then
+ RED="\033[38;5;196m"
+ YELLOW="\033[38;5;226m"
+ GREEN="\033[38;5;46m"
+ # BLUE="\033[38;5;27m"
+ CYAN="\033[38;5;36m"
+ NORMAL="\033[39m"
+ else
+ RED=""
+ YELLOW=""
+ GREEN=""
+ # BLUE=""
+ CYAN=""
+ NORMAL=""
+ fi
+
+ local my_tty
+ my_tty=$( tty )
+ if [[ "${my_tty}" =~ 'not a tty' ]] ; then
+ my_tty='-'
+ fi
+
+}
+detect_color
+
+my_date() {
+ date +'%F %T.%N %:::z'
+}
+
+#------------------------------------------------------------------------------
+debug() {
+ if [[ "${VERBOSE}" != "y" ]] ; then
+ return 0
+ fi
+ echo -e " * [$(my_date)] [${BASENAME}:${CYAN}DEBUG${NORMAL}]: $*" >&2
+}
+
+#------------------------------------------------------------------------------
+info() {
+ if [[ "${QUIET}" == "y" ]] ; then
+ return 0
+ fi
+ if [[ "${VERBOSE}" == "y" ]] ; then
+ echo -e " ${GREEN}*${NORMAL} [$(my_date)] [${BASENAME}:${GREEN}INFO${NORMAL}] : $*"
+ else
+ echo -e " ${GREEN}*${NORMAL} $*"
+ fi
+}
+
+#------------------------------------------------------------------------------
+warn() {
+ if [[ "${VERBOSE}" == "y" ]] ; then
+ echo -e " ${YELLOW}*${NORMAL} [$(my_date)] [${BASENAME}:${YELLOW}WARN${NORMAL}] : $*" >&2
+ else
+ echo -e " ${YELLOW}*${NORMAL} [${BASENAME}:${YELLOW}WARN${NORMAL}] : $*" >&2
+ fi
+}
+
+#------------------------------------------------------------------------------
+error() {
+ if [[ "${VERBOSE}" == "y" ]] ; then
+ echo -e " ${RED}*${NORMAL} [$(my_date)] [${BASENAME}:${RED}ERROR${NORMAL}]: $*" >&2
+ else
+ echo -e " ${RED}*${NORMAL} [${BASENAME}:${RED}ERROR${NORMAL}]: $*" >&2
+ fi
+}
+
+#------------------------------------------------------------------------------
+description() {
+ cat <<-EOF
+ Updates the Python virtual environment.
+
+ EOF
+
+}
+
+#------------------------------------------------------------------------------
+line() {
+ if [[ "${QUIET}" == "y" ]] ; then
+ return 0
+ fi
+ echo "---------------------------------------------------"
+}
+
+#------------------------------------------------------------------------------
+empty_line() {
+ if [[ "${QUIET}" == "y" ]] ; then
+ return 0
+ fi
echo
- ./compile-xlate-msgs.sh
-fi
-
-#cd python_fb_tools
-#if [[ -x compile-xlate-msgs.sh ]]; then
-# echo
-# echo "--------------"
-# echo "Updating i18n files in python_fb_tools ..."
-# echo
-# ./compile-xlate-msgs.sh
-#fi
-#cd ..
-
-echo
-echo "-------"
-echo "Fertig."
-echo
-
-# vim: ts=4
+}
+
+#------------------------------------------------------------------------------
+usage() {
+
+ cat <<-EOF
+ Usage: ${BASENAME} [-d|--debug] [[-v|--verbose] | [-q|--quiet]] [--nocolor]
+ ${BASENAME} [-h|--help]
+ ${BASENAME} [-V|--version]
+
+ Options:
+ -d|--debug Debug output (bash -x).
+ -v|--verbose Set verbosity on.
+ -q|--quiet Quiet execution. Mutually exclusive to --verbose.
+ --nocolor Don't use colors on display.
+ -h|--help Show this output and exit.
+ -V|--version Prints out version number of the script and exit.
+
+ EOF
+
+}
+
+#------------------------------------------------------------------------------
+get_options() {
+
+ local tmp=
+ local short_options="dvqhV"
+ local long_options="debug,verbose,quiet,help,version"
+
+ set +e
+ tmp=$( getopt -o "${short_options}" --long "${long_options}" -n "${BASENAME}" -- "$@" )
+ ret="$?"
+ if [[ "${ret}" != 0 ]] ; then
+ echo "" >&2
+ usage >&2
+ exit 1
+ fi
+ set -e
+
+ # Note the quotes around `$TEMP': they are essential!
+ eval set -- "${tmp}"
+
+ while true ; do
+ case "$1" in
+ -d|--debug)
+ DEBUG="y"
+ shift
+ ;;
+ -v|--verbose)
+ VERBOSE="y"
+ shift
+ ;;
+ -q|--quiet)
+ QUIET="y"
+ RED=""
+ YELLOW=""
+ GREEN=""
+ # BLUE=""
+ CYAN=""
+ NORMAL=""
+ shift
+ ;;
+ --nocolor)
+ RED=""
+ YELLOW=""
+ GREEN=""
+ # BLUE=""
+ CYAN=""
+ NORMAL=""
+ shift
+ ;;
+ -h|--help)
+ description
+ echo
+ usage
+ exit 0
+ ;;
+ -V|--version)
+ echo "${BASENAME} version: ${VERSION}"
+ exit 0
+ ;;
+ --) shift
+ break
+ ;;
+ *) echo "Internal error!"
+ exit 1
+ ;;
+ esac
+ done
+
+ if [[ "${DEBUG}" = "y" ]] ; then
+ set -x
+ fi
+
+ if [[ "${VERBOSE}" == "y" && "${QUIET}" == "y" ]] ; then
+ error "Options '${RED}--verbose${NORMAL}' and '${RED}--quiet${NORMAL}' are mutually exclusive."
+ echo >&2
+ usage >&2
+ exit 1
+ fi
+
+ if type -t virtualenv >/dev/null ; then
+ :
+ else
+ error "Command '${RED}virtualenv${NORMAL}' not found, please install package '${YELLOW}python-virtualenv${NORMAL}' or appropriate."
+ exit 6
+ fi
+
+ if type -t msgfmt >/dev/null ; then
+ :
+ else
+ echo "Command '${RED}msgfmt${NORMAL}' not found, please install package '${YELLOW}gettext${NORMAL}' or appropriate." >&2
+ exit 6
+ fi
+
+ if [[ "${VERBOSE}" == "y" ]] ; then
+ PIP_OPTIONS="--verbose"
+ elif [[ "${QUIET}" == "y" ]] ; then
+ PIP_OPTIONS="--quiet"
+ fi
+
+}
+
+#------------------------------------------------------------------------------
+init_venv() {
+
+ local -a valid_py_versions=("3.8" "3.7" "3.6" "3.5")
+ local py_version=
+ local python=
+ local found="n"
+
+ empty_line
+ line
+ info "Preparing virtual environment …"
+ empty_line
+
+
+ if [[ ! -f venv/bin/activate ]] ; then
+ found="n"
+ for py_version in "${valid_py_versions[@]}" ; do
+ python="python${py_version}"
+ debug "Testing Python binary '${CYAN}${python}${NORMAL}' …"
+ if type -t "${python}" >/dev/null ; then
+ found="y"
+ empty_line
+ info "Found '${GREEN}${python}${NORMAL}'."
+ empty_line
+ virtualenv --python="${python}" venv
+ break
+ fi
+ done
+ if [[ "${found}" == "n" ]] ; then
+ empty_line >&2
+ error "Did not found a usable Python version." >&2
+ error "Usable Python versions are: ${YELLOW}${valid_py_versions[*]}${NORMAL}." >&2
+ empty_line >&2
+ exit 5
+ fi
+ fi
+
+ # shellcheck disable=SC1091
+ . venv/bin/activate || exit 5
+
+}
+
+#------------------------------------------------------------------------------
+upgrade_pip() {
+ line
+ info "Upgrading PIP …"
+ empty_line
+ pip install ${PIP_OPTIONS} --upgrade --upgrade-strategy eager pip
+ empty_line
+}
+
+#------------------------------------------------------------------------------
+upgrade_setuptools() {
+ line
+ info "Upgrading setuptools + wheel + six …"
+ empty_line
+ pip install ${PIP_OPTIONS} --upgrade --upgrade-strategy eager setuptools wheel six
+ empty_line
+}
+
+#------------------------------------------------------------------------------
+upgrade_modules() {
+ line
+ info "Installing and/or upgrading necessary modules …"
+ empty_line
+ pip install ${PIP_OPTIONS} --upgrade --upgrade-strategy eager --requirement requirements.txt
+ empty_line
+}
+
+#------------------------------------------------------------------------------
+list_modules() {
+ if [[ "${QUIET}" == "y" ]] ; then
+ return 0
+ fi
+ line
+ info "Installed modules:"
+ empty_line
+ pip list --format columns
+ empty_line
+}
+
+#------------------------------------------------------------------------------
+compile_i18n() {
+
+ if [[ -x bin/compile-xlate-msgs.sh ]]; then
+ line
+ info "Updating i18n files in ${BASE_DIR} …"
+ empty_line
+ bin/compile-xlate-msgs.sh
+ empty_line
+ fi
+}
+
+################################################################################
+##
+## Main
+##
+################################################################################
+
+#------------------------------------------------------------------------------
+main() {
+
+ get_options "$@"
+ init_venv
+ upgrade_pip
+ upgrade_setuptools
+ upgrade_modules
+ list_modules
+ compile_i18n
+
+ line
+ info "Fertig."
+ empty_line
+
+}
+
+main "$@"
+
+exit 0
+
+# vim: ts=4 list