blob: e455958098772605ac01d4f9e011a7ee78039c31 [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
Wyatt Hepler77bd6d22020-03-19 10:13:30 -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
Wyatt Hepler77bd6d22020-03-19 10:13:30 -070058 PW_SETUP_SCRIPT_PATH="$(_pw_abspath "$BASH_SOURCE")"
Rob Mohrcacb8772019-11-22 13:14:01 -080059# Shell: zsh.
60elif test -n "$ZSH_NAME"; then
Wyatt Hepler77bd6d22020-03-19 10:13:30 -070061 PW_SETUP_SCRIPT_PATH="$(_pw_abspath "${(%):-%N}")"
Rob Mohrcacb8772019-11-22 13:14:01 -080062# Shell: dash.
63elif test ${0##*/} = dash; then
Wyatt Hepler77bd6d22020-03-19 10:13:30 -070064 PW_SETUP_SCRIPT_PATH="$(_pw_abspath \
65 "$(lsof -p $$ -Fn0 | tail -1 | sed 's#^[^/]*##;')")"
Rob Mohrcacb8772019-11-22 13:14:01 -080066# If everything else fails, try $0. It could work.
67else
Wyatt Hepler77bd6d22020-03-19 10:13:30 -070068 PW_SETUP_SCRIPT_PATH="$(_pw_abspath "$0")"
Rob Mohrcacb8772019-11-22 13:14:01 -080069fi
70
Wyatt Hepler77bd6d22020-03-19 10:13:30 -070071PW_ROOT="$(dirname "$PW_SETUP_SCRIPT_PATH")"
72
73if [[ "$PW_ROOT" = *" "* ]]; then
74 _pw_bold_red "Error: The Pigweed path contains spaces\n"
75 _pw_red " The path '$PW_ROOT' contains spaces. "
76 _pw_red " Pigweed's Python environment currently requires Pigweed to be "
77 _pw_red " at a path without spaces. Please checkout Pigweed in a directory "
78 _pw_red " without spaces and retry running bootstrap."
79 return
80fi
81
Rob Mohrcacb8772019-11-22 13:14:01 -080082export PW_ROOT
83
Rob Mohr3352ccf2020-03-11 14:01:18 -070084SETUP_SH="$PW_ROOT/pw_env_setup/.env_setup.sh"
Rob Mohr93825562020-01-02 15:20:50 -080085
Rob Mohr34466c42020-03-10 12:04:14 -070086if [ -z "$PW_ENVSETUP_QUIET" ]; then
87 _pw_green "\n WELCOME TO...\n"
88 _pw_bright_magenta "$_PIGWEED_BANNER\n"
89fi
Rob Mohrde7c77a2020-01-16 13:51:44 -080090
Rob Mohr5898a9d2020-01-22 13:54:43 -080091# Run full bootstrap when invoked as bootstrap, or env file is missing/empty.
Wyatt Hepler77bd6d22020-03-19 10:13:30 -070092[ "$(basename "$PW_SETUP_SCRIPT_PATH")" = "bootstrap.sh" ] || \
93 [ ! -f "$SETUP_SH" ] || \
94 [ ! -s "$SETUP_SH" ]
95_PW_IS_BOOTSTRAP="$?"
Alexei Frolova137f972020-03-06 11:14:13 -080096
Wyatt Hepler77bd6d22020-03-19 10:13:30 -070097if [ "$_PW_IS_BOOTSTRAP" -eq 0 ]; then
Rob Mohrd679bde2020-03-18 09:27:17 -070098 _PW_NAME="bootstrap"
99
Rob Mohr34466c42020-03-10 12:04:14 -0700100 if [ -z "$PW_ENVSETUP_QUIET" ]; then
101 _pw_green " BOOTSTRAP! Bootstrap may take a few minutes; please be patient.\n"
102 fi
Alexei Frolova137f972020-03-06 11:14:13 -0800103
Alexei Frolov426b9b82020-03-09 14:30:22 -0700104 # Allow forcing a specific version of Python for testing pursposes.
105 if [ -n "$PW_BOOTSTRAP_PYTHON" ]; then
106 PYTHON="$PW_BOOTSTRAP_PYTHON"
Alexei Frolova137f972020-03-06 11:14:13 -0800107 elif which python &> /dev/null; then
108 PYTHON=python
109 else
110 _pw_bold_red "Error: No system Python present\n"
111 _pw_red " Pigweed's bootstrap process requires a local system Python."
112 _pw_red " Please install Python on your system, add it to your PATH"
113 _pw_red " and re-try running bootstrap."
114 return
115 fi
116
Wyatt Hepler77bd6d22020-03-19 10:13:30 -0700117 "$PYTHON" "$PW_ROOT/pw_env_setup/py/pw_env_setup/env_setup.py" --shell-file "$SETUP_SH"
Alexei Frolova137f972020-03-06 11:14:13 -0800118else
Rob Mohrd679bde2020-03-18 09:27:17 -0700119 _PW_NAME="activate"
120
Rob Mohr34466c42020-03-10 12:04:14 -0700121 if [ -z "$PW_ENVSETUP_QUIET" ]; then
122 _pw_green " ACTIVATOR! This sets your shell environment variables.\n"
123 fi
Rob Mohr93825562020-01-02 15:20:50 -0800124fi
Rob Mohrdc70d1c2019-12-04 10:05:28 -0800125
Wyatt Hepler77bd6d22020-03-19 10:13:30 -0700126if [ -f "$SETUP_SH" ]; then
127 . "$SETUP_SH"
Alexei Frolova137f972020-03-06 11:14:13 -0800128
Wyatt Hepler77bd6d22020-03-19 10:13:30 -0700129 if [ "$?" -eq 0 ]; then
130 if [ "$_PW_IS_BOOTSTRAP" -eq 0 ] && [ -z "$PW_ENVSETUP_QUIET" ]; then
Rob Mohrd679bde2020-03-18 09:27:17 -0700131 echo "To activate this environment in the future, run this in your "
132 echo "terminal:"
133 echo
134 _pw_green " . ./activate.sh\n"
135 fi
136 else
137 _pw_red "Error during $_PW_NAME--see messages above."
Rob Mohr47bd9232020-03-13 12:07:26 -0700138 fi
139else
Rob Mohrd679bde2020-03-18 09:27:17 -0700140 _pw_red "Error during $_PW_NAME--see messages above."
Alexei Frolova137f972020-03-06 11:14:13 -0800141fi
142
143unset _PW_IS_BOOTSTRAP
Rob Mohrd679bde2020-03-18 09:27:17 -0700144unset _PW_NAME
Alexei Frolova137f972020-03-06 11:14:13 -0800145unset _PIGWEED_BANNER
146unset _pw_abspath
147unset _pw_red
148unset _pw_bold_red
149unset _pw_green
150unset _pw_bright_magenta