2 # This Source Code Form is subject to the terms of the Mozilla Public
3 # License, v. 2.0. If a copy of the MPL was not distributed with this
4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 # The beginning of this script is both valid POSIX shell and valid Python,
7 # such that the script starts with the shell and is reexecuted with
10 # Embeds a shell script inside a Python triple quote. This pattern is valid
11 # shell because `''':'`, `':'` and `:` are all equivalent, and `:` is a no-op.
13 # Commands that are to be run with Python 2.
31 telemetry-tests-client
34 web-platform-tests-update
45 # Commands that are to be run with the system Python 3 instead of the
49 create-mach-environment
54 # Try to run a specific Python interpreter.
57 if command -v "$py_executable" > /dev
/null
59 exec "$py_executable" "$0" "$@"
61 echo "This mach command requires $py_executable, which wasn't found on the system!"
62 case "$py_executable" in
65 echo "Consider running 'mach bootstrap' or 'mach create-mach-environment' to create the mach virtualenvs, or set MACH_USE_SYSTEM_PYTHON to use the system Python installation over a virtualenv."
73 # Parse the name of the mach command out of the arguments. This is necessary
74 # in the presence of global mach arguments that come before the name of the
75 # command, e.g. `mach -v build`. We dispatch to the correct Python
76 # interpreter depending on the command.
89 --log-interval) shift;;
90 --log-no-times) shift;;
92 --debug-command) shift;;
102 # When running `./mach help <command>`, the correct Python for <command>
104 help) echo $2; break;;
105 # When running `./mach mach-completion /path/to/mach <command>`, the
106 # correct Python for <command> needs to be used.
107 mach-completion
) echo $3; break;;
114 state_dir
=${MOZBUILD_STATE_PATH:-~/.mozbuild}
115 command=$
(get_command
"$@")
117 # If MACH_USE_SYSTEM_PYTHON or MOZ_AUTOMATION are set, always use the
118 # python{2.7,3} executables and not the virtualenv locations.
119 if [ -z ${MACH_USE_SYSTEM_PYTHON} ] && [ -z ${MOZ_AUTOMATION} ]
122 cygwin|msys|win32
) bin_path
=Scripts
;;
125 py2executable
=$state_dir/_virtualenvs
/mach_py
2/$bin_path/python
126 py3executable
=$state_dir/_virtualenvs
/mach
/$bin_path/python
128 py2executable
=python2.7
129 py3executable
=python3
132 # Check whether we need to run with the native Python 3 interpreter.
133 case " $(echo $nativecmds) " in
139 # Check for the mach subcommand in the Python 2 commands list and run it
140 # with the correct interpreter.
141 case " $(echo $py2commands) " in
143 run_py
"$py2executable" "$@"
146 if [ -z ${MACH_PY2} ]
148 run_py
"$py3executable" "$@"
150 if [ $command != "python-test" ]
152 echo "MACH_PY2 is only valid for mach python-test; please unset MACH_PY2 to continue."
155 run_py
"$py2executable" "$@"
160 # Run Python 3 for everything else.
161 run_py
"$py3executable" "$@"
164 from __future__ import absolute_import, print_function, unicode_literals
172 (path, child) = os.path.split(path)
176 def load_mach(dir_path, mach_path):
177 if sys.version_info < (3, 5):
179 mach_bootstrap = imp.load_source('mach_bootstrap
', mach_path)
181 import importlib.util
182 spec = importlib.util.spec_from_file_location('mach_bootstrap
', mach_path)
183 mach_bootstrap = importlib.util.module_from_spec(spec)
184 spec.loader.exec_module(mach_bootstrap)
186 return mach_bootstrap.bootstrap(dir_path)
189 def check_and_get_mach(dir_path):
191 'build
/mach_bootstrap.py
',
192 # test package bootstrap
193 'tools
/mach_bootstrap.py
',
195 for bootstrap_path in bootstrap_paths:
196 mach_path = os.path.join(dir_path, bootstrap_path)
197 if os.path.isfile(mach_path):
198 return load_mach(dir_path, mach_path)
202 def setdefaultenv(key, value):
203 """Compatibility shim to ensure the proper string type is used with
204 os.environ for the version of Python being used.
206 encoding = "mbcs" if sys.platform == "win32" else "utf-8"
208 if sys.version_info[0] == 2:
209 if isinstance(key, unicode):
210 key = key.encode(encoding)
211 if isinstance(value, unicode):
212 value = value.encode(encoding)
214 if isinstance(key, bytes):
215 key = key.decode(encoding)
216 if isinstance(value, bytes):
217 value = value.decode(encoding)
219 os.environ.setdefault(key, value)
223 # Check whether the current directory is within a mach src or obj dir.
224 for dir_path in ancestors(os.getcwd()):
225 # If we find a "config.status" and "mozinfo.json" file, we are in the objdir.
226 config_status_path = os.path.join(dir_path, 'config.status
')
227 mozinfo_path = os.path.join(dir_path, 'mozinfo.json
')
228 if os.path.isfile(config_status_path) and os.path.isfile(mozinfo_path):
230 info = json.load(open(mozinfo_path))
231 if 'mozconfig
' in info:
232 # If the MOZCONFIG environment variable is not already set, set it
233 # to the value from mozinfo.json. This will tell the build system
234 # to look for a config file at the path in $MOZCONFIG rather than
235 # its default locations.
236 setdefaultenv('MOZCONFIG
', info['mozconfig
'])
238 if 'topsrcdir
' in info:
239 # Continue searching for mach_bootstrap in the source directory.
240 dir_path = info['topsrcdir
']
242 mach = check_and_get_mach(dir_path)
246 # If we didn't
find a
source path by scanning
for a mozinfo.json
, check
247 # whether the directory containing this script is a source directory. We
248 # follow symlinks so mach can be run even if cwd is outside the srcdir.
249 return check_and_get_mach
(os.path.
dirname(os.path.realpath
(__file__
)))
254 print
('Could not run mach: No mach source directory found.')
256 sys.
exit(mach.run
(args
))
259 if __name__
== '__main__':