blob: 5c46a29c90798812b6d2d03d79a7925e50762885 [file] [log] [blame]
Rob Mohr709472a2020-04-17 11:50:47 -07001:<<"::WINDOWS_ONLY"
Alexei Frolovd0e69542020-01-21 14:22:24 -08002@echo off
3:: Copyright 2020 The Pigweed Authors
4::
5:: Licensed under the Apache License, Version 2.0 (the "License"); you may not
6:: use this file except in compliance with the License. You may obtain a copy of
7:: the License at
8::
9:: https://www.apache.org/licenses/LICENSE-2.0
10::
11:: Unless required by applicable law or agreed to in writing, software
12:: distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13:: WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14:: License for the specific language governing permissions and limitations under
15:: the License.
Rob Mohr709472a2020-04-17 11:50:47 -070016::WINDOWS_ONLY
17:; echo "ERROR: Attempting to run Windows .bat from a Unix/POSIX shell!"
18:; echo "Instead, run the following command."
19:; echo ""
20:; echo " source ./bootstrap.sh"
21:; echo ""
22:<<"::WINDOWS_ONLY"
Alexei Frolovd0e69542020-01-21 14:22:24 -080023
24:: Pigweed Windows environment setup.
25
Armando Montanezd28de162020-11-05 18:28:08 -080026:: WARNING: Multi-line "if" statements can be dangerous!
27::
28:: Example:
29:: call do_foo
30:: if [expression] (
31:: call cmd_a
32:: set my_var = %ERRORLEVEL%
33:: call final_script --flag %my_var%
34:: )
35:: Batch evaluates these expressions in a way that will produce unexpected
36:: behavior. It appears that when each line is executed, it does not affect
37:: local context until the entire expression is complete. In this example,
38:: ERRORLEVEL does not reflect `call cmd_a`, but whatever residual state was
39:: present from `do_foo`. Similarly, in the call to `final_script`, `my_var`
40:: will NOT be valid as the variable `set` doesn't apply until the entire `if`
41:: expression completes.
42:: This script only uses multi-line if statements to `goto` after an operation.
43
Rob Mohr3700b7a2020-02-21 14:26:18 -080044:: If PW_CHECKOUT_ROOT is set, use it. Users should not set this variable.
45:: It's used because when one batch script invokes another the Powershell magic
46:: below doesn't work. To reinforce that users should not be using
47:: PW_CHECKOUT_ROOT, it is cleared here after it is used, and other pw tools
48:: will complain if they see that variable set.
49:: TODO(mohrr) find out a way to do this without PW_CHECKOUT_ROOT.
Alexei Frolovd0e69542020-01-21 14:22:24 -080050
Armando Montanezd28de162020-11-05 18:28:08 -080051:: ~dp0 is the batchism for the directory in which a .bat file resides.
52if "%PW_CHECKOUT_ROOT%"=="" ^
Armando Montaneze8728652020-11-06 12:28:26 -080053set "PW_ROOT=%~dp0." &^
Armando Montanezd28de162020-11-05 18:28:08 -080054goto select_python
55
56:: Since PW_CHECKOUT_ROOT is set, use it.
57set "PW_ROOT=%PW_CHECKOUT_ROOT%"
58set "PW_CHECKOUT_ROOT="
59
60:select_python
Alexei Frolov4dcf99d2020-03-10 16:48:26 -070061:: Allow forcing a specific Python version through the environment variable
Alexei Frolovba4de1c2020-03-09 16:43:40 -070062:: PW_BOOTSTRAP_PYTHON. Otherwise, use the system Python if one exists.
63if not "%PW_BOOTSTRAP_PYTHON%" == "" (
Wyatt Hepler61682e82020-03-19 11:36:48 -070064 set "python=%PW_BOOTSTRAP_PYTHON%"
Armando Montanezd28de162020-11-05 18:28:08 -080065 goto find_environment_root
Alexei Frolovba4de1c2020-03-09 16:43:40 -070066)
67
Armando Montanezd28de162020-11-05 18:28:08 -080068:: Detect python installation.
69where python >NUL 2>&1
70if %ERRORLEVEL% EQU 0 (
71 set "python=python"
72 goto find_environment_root
Rob Mohrce87bc02020-07-15 11:16:17 -070073)
Armando Montanezd28de162020-11-05 18:28:08 -080074
75echo.
76echo Error: no system Python present
77echo.
78echo Pigweed's bootstrap process requires a local system Python.
79echo Please install Python on your system, add it to your PATH
80echo and re-try running bootstrap.
81goto finish
82
83
84:find_environment_root
85:: PW_ENVIRONMENT_ROOT allows developers to specify where the environment should
86:: be installed. _PW_ACTUAL_ENVIRONMENT_ROOT is where Pigweed keeps that
87:: information. This separation allows Pigweed to assume PW_ENVIRONMENT_ROOT
88:: came from the developer and not from a previous bootstrap possibly from
89:: another workspace.
90
91:: Not prefixing environment with "." since that doesn't hide it anyway.
92if "%PW_ENVIRONMENT_ROOT%"=="" (
93 set "_PW_ACTUAL_ENVIRONMENT_ROOT=%PW_ROOT%\environment"
94) else (
95 set "_PW_ACTUAL_ENVIRONMENT_ROOT=%PW_ENVIRONMENT_ROOT%"
96)
97
Rob Mohre34001c2020-07-29 09:05:55 -070098set "shell_file=%_PW_ACTUAL_ENVIRONMENT_ROOT%\activate.bat"
Rob Mohrce87bc02020-07-15 11:16:17 -070099
Wyatt Hepler61682e82020-03-19 11:36:48 -0700100set "_pw_start_script=%PW_ROOT%\pw_env_setup\py\pw_env_setup\windows_env_start.py"
Alexei Frolovb8aadc32020-01-23 10:46:14 -0800101
Armando Montanezd28de162020-11-05 18:28:08 -0800102if "%PW_PROJECT_ROOT%"=="" set "PW_PROJECT_ROOT=%PW_ROOT%"
Rob Mohrfcf60372020-11-04 11:41:36 -0800103
Alexei Frolov4dcf99d2020-03-10 16:48:26 -0700104:: If PW_SKIP_BOOTSTRAP is set, only run the activation stage instead of the
105:: complete env_setup.
Armando Montanezd28de162020-11-05 18:28:08 -0800106if not "%PW_SKIP_BOOTSTRAP%" == "" goto skip_bootstrap
107
108:: Without the trailing slash in %PW_ROOT%/, batch combines that token with
109:: the --shell-file argument.
110call "%python%" "%PW_ROOT%\pw_env_setup\py\pw_env_setup\env_setup.py" ^
Armando Montaneze8728652020-11-06 12:28:26 -0800111 --pw-root "%PW_ROOT%" ^
Armando Montanezd28de162020-11-05 18:28:08 -0800112 --shell-file "%shell_file%" ^
113 --install-dir "%_PW_ACTUAL_ENVIRONMENT_ROOT%" ^
Rob Mohrcccd63c2021-02-26 12:03:07 -0800114 --config-file "%PW_ROOT%/pw_env_setup/config.json" ^
Armando Montaneze8728652020-11-06 12:28:26 -0800115 --project-root "%PW_PROJECT_ROOT%"
Armando Montanezd28de162020-11-05 18:28:08 -0800116goto activate_shell
117
118:skip_bootstrap
119if exist "%shell_file%" (
120 call "%python%" "%_pw_start_script%"
Alexei Frolov4dcf99d2020-03-10 16:48:26 -0700121) else (
Armando Montanezd28de162020-11-05 18:28:08 -0800122 call "%python%" "%_pw_start_script%" --no-shell-file
123 goto finish
Alexei Frolovb8aadc32020-01-23 10:46:14 -0800124)
125
Armando Montanezd28de162020-11-05 18:28:08 -0800126:activate_shell
Wyatt Hepler61682e82020-03-19 11:36:48 -0700127call "%shell_file%"
Alexei Frolovba4de1c2020-03-09 16:43:40 -0700128
129:finish
Rob Mohr709472a2020-04-17 11:50:47 -0700130::WINDOWS_ONLY