blob: dfc13acad579ddcc7adea10b3e53dec5eb4d169e [file] [log] [blame]
Rob Mohr2cc32ec2020-02-05 10:55:12 -08001# Copyright 2020 The Pigweed Authors
Rob Mohrcacb8772019-11-22 13:14:01 -08002#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may not
4# use this file except in compliance with the License. You may obtain a copy of
5# the License at
6#
7# https://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations under
13# the License.
14
15# This script must be tested on bash, zsh, and dash.
16
Alexei Frolova137f972020-03-06 11:14:13 -080017_pw_abspath () {
Rob Mohr93825562020-01-02 15:20:50 -080018 python -c "import os.path; print(os.path.abspath('$@'))"
Rob Mohrdc70d1c2019-12-04 10:05:28 -080019}
20
Alexei Frolova137f972020-03-06 11:14:13 -080021_pw_red() {
Alexei Frolov02461482020-03-09 10:19:49 -070022 echo -e "\033[0;31m$*\033[0m"
Alexei Frolova137f972020-03-06 11:14:13 -080023}
24
25_pw_bold_red() {
Alexei Frolov02461482020-03-09 10:19:49 -070026 echo -e "\033[1;31m$*\033[0m"
Alexei Frolova137f972020-03-06 11:14:13 -080027}
28
29_pw_green() {
Alexei Frolov02461482020-03-09 10:19:49 -070030 echo -e "\033[0;32m$*\033[0m"
Alexei Frolova137f972020-03-06 11:14:13 -080031}
32
33_pw_bright_magenta() {
Alexei Frolov02461482020-03-09 10:19:49 -070034 echo -e "\033[0;35m$*\033[0m"
Alexei Frolova137f972020-03-06 11:14:13 -080035}
36
37_PIGWEED_BANNER=$(cat <<EOF
38 ▒█████▄ █▓ ▄███▒ ▒█ ▒█ ░▓████▒ ░▓████▒ ▒▓████▄
39 ▒█░ █░ ░█▒ ██▒ ▀█▒ ▒█░ ▒█ ▒█ ▒█ ▒█ ▀█▌
40 ▒█▄▄▄█░ ░█▒ █▓░ ▄▄░ ▒█░ ▒█ ▒███ ▒███ ░█ █▌
41 ▒█▀ ░█░ ▓█ █▓ ░█░ ▒█ ▒█ ▒█ ░█ ▄█▌
42 ▒█ ░█░ ░▓███▀ ▒█▓▀▓█░ ░▓████▒ ░▓████▒ ▒▓████▀
43EOF
44)
45
Rob Mohr323f7c42020-02-06 14:38:37 -080046# Users are not expected to set PW_CHECKOUT_ROOT, it's only used because it
47# seems to be impossible to reliably determine the path to a sourced file in
48# dash when sourced from a dash script instead of a dash interactive prompt.
49# To reinforce that users should not be using PW_CHECKOUT_ROOT, it is cleared
50# here after it is used, and other pw tools will complain if they see that
51# variable set.
52# TODO(mohrr) find out a way to do this without PW_CHECKOUT_ROOT.
53if test -n "$PW_CHECKOUT_ROOT"; then
Rob Mohr33181e62020-03-11 10:00:32 -070054 PW_SETUP_SCRIPT_PATH=$(_pw_abspath "$PW_CHECKOUT_ROOT/bootstrap.sh")
Rob Mohr323f7c42020-02-06 14:38:37 -080055 unset PW_CHECKOUT_ROOT
Rob Mohrcacb8772019-11-22 13:14:01 -080056# Shell: bash.
Rob Mohr323f7c42020-02-06 14:38:37 -080057elif test -n "$BASH"; then
Alexei Frolova137f972020-03-06 11:14:13 -080058 PW_SETUP_SCRIPT_PATH=$(_pw_abspath $BASH_SOURCE)
Rob Mohrcacb8772019-11-22 13:14:01 -080059# Shell: zsh.
60elif test -n "$ZSH_NAME"; then
Alexei Frolova137f972020-03-06 11:14:13 -080061 PW_SETUP_SCRIPT_PATH=$(_pw_abspath ${(%):-%N})
Rob Mohrcacb8772019-11-22 13:14:01 -080062# Shell: dash.
63elif test ${0##*/} = dash; then
Alexei Frolova137f972020-03-06 11:14:13 -080064 PW_SETUP_SCRIPT_PATH=$(_pw_abspath \
Rob Mohrcacb8772019-11-22 13:14:01 -080065 $(lsof -p $$ -Fn0 | tail -1 | sed 's#^[^/]*##;'))
66# If everything else fails, try $0. It could work.
67else
Alexei Frolova137f972020-03-06 11:14:13 -080068 PW_SETUP_SCRIPT_PATH=$(_pw_abspath $0)
Rob Mohrcacb8772019-11-22 13:14:01 -080069fi
70
Rob Mohr08124662020-03-10 11:30:33 -070071PW_ROOT=$(dirname $PW_SETUP_SCRIPT_PATH)
Rob Mohrcacb8772019-11-22 13:14:01 -080072export PW_ROOT
73
Rob Mohr3352ccf2020-03-11 14:01:18 -070074SETUP_SH="$PW_ROOT/pw_env_setup/.env_setup.sh"
Rob Mohr93825562020-01-02 15:20:50 -080075
Rob Mohr34466c42020-03-10 12:04:14 -070076if [ -z "$PW_ENVSETUP_QUIET" ]; then
77 _pw_green "\n WELCOME TO...\n"
78 _pw_bright_magenta "$_PIGWEED_BANNER\n"
79fi
Rob Mohrde7c77a2020-01-16 13:51:44 -080080
Rob Mohr5898a9d2020-01-22 13:54:43 -080081# Run full bootstrap when invoked as bootstrap, or env file is missing/empty.
Alexei Frolova137f972020-03-06 11:14:13 -080082[ $(basename $PW_SETUP_SCRIPT_PATH) = "bootstrap.sh" ] || \
Rob Mohr5898a9d2020-01-22 13:54:43 -080083 [ ! -f $SETUP_SH ] || \
Alexei Frolova137f972020-03-06 11:14:13 -080084 [ ! -s $SETUP_SH ]
85_PW_IS_BOOTSTRAP=$?
86
87if [ $_PW_IS_BOOTSTRAP -eq 0 ]; then
Rob Mohrd679bde2020-03-18 09:27:17 -070088 _PW_NAME="bootstrap"
89
Rob Mohr34466c42020-03-10 12:04:14 -070090 if [ -z "$PW_ENVSETUP_QUIET" ]; then
91 _pw_green " BOOTSTRAP! Bootstrap may take a few minutes; please be patient.\n"
92 fi
Alexei Frolova137f972020-03-06 11:14:13 -080093
Alexei Frolov426b9b82020-03-09 14:30:22 -070094 # Allow forcing a specific version of Python for testing pursposes.
95 if [ -n "$PW_BOOTSTRAP_PYTHON" ]; then
96 PYTHON="$PW_BOOTSTRAP_PYTHON"
Alexei Frolova137f972020-03-06 11:14:13 -080097 elif which python &> /dev/null; then
98 PYTHON=python
99 else
100 _pw_bold_red "Error: No system Python present\n"
101 _pw_red " Pigweed's bootstrap process requires a local system Python."
102 _pw_red " Please install Python on your system, add it to your PATH"
103 _pw_red " and re-try running bootstrap."
104 return
105 fi
106
Rob Mohr2cc32ec2020-02-05 10:55:12 -0800107 $PYTHON $PW_ROOT/pw_env_setup/py/pw_env_setup/env_setup.py --shell-file $SETUP_SH
Alexei Frolova137f972020-03-06 11:14:13 -0800108else
Rob Mohrd679bde2020-03-18 09:27:17 -0700109 _PW_NAME="activate"
110
Rob Mohr34466c42020-03-10 12:04:14 -0700111 if [ -z "$PW_ENVSETUP_QUIET" ]; then
112 _pw_green " ACTIVATOR! This sets your shell environment variables.\n"
113 fi
Rob Mohr93825562020-01-02 15:20:50 -0800114fi
Rob Mohrdc70d1c2019-12-04 10:05:28 -0800115
Rob Mohr47bd9232020-03-13 12:07:26 -0700116if [ -f $SETUP_SH ]; then
117 . $SETUP_SH
Alexei Frolova137f972020-03-06 11:14:13 -0800118
Keir Mierlea1f08ac2020-03-18 16:07:09 -0700119 if [ $? -eq 0 ]; then
Rob Mohrd679bde2020-03-18 09:27:17 -0700120 if [ $_PW_IS_BOOTSTRAP -eq 0 ] && [ -z "$PW_ENVSETUP_QUIET" ]; then
121 echo "To activate this environment in the future, run this in your "
122 echo "terminal:"
123 echo
124 _pw_green " . ./activate.sh\n"
125 fi
126 else
127 _pw_red "Error during $_PW_NAME--see messages above."
Rob Mohr47bd9232020-03-13 12:07:26 -0700128 fi
129else
Rob Mohrd679bde2020-03-18 09:27:17 -0700130 _pw_red "Error during $_PW_NAME--see messages above."
Alexei Frolova137f972020-03-06 11:14:13 -0800131fi
132
133unset _PW_IS_BOOTSTRAP
Rob Mohrd679bde2020-03-18 09:27:17 -0700134unset _PW_NAME
Alexei Frolova137f972020-03-06 11:14:13 -0800135unset _PIGWEED_BANNER
136unset _pw_abspath
137unset _pw_red
138unset _pw_bold_red
139unset _pw_green
140unset _pw_bright_magenta