blob: 4cb947f7b53f0747cc9de66a23bc1e99c2d1b238 [file] [log] [blame]
# Copyright 2020 The Pigweed Authors
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
"""Sets up a Python 3 virtualenv for Pigweed."""
from __future__ import print_function
import glob
import os
import subprocess
import sys
import tempfile
def git_stdout(*args, **kwargs):
"""Run git, passing args as git params and kwargs to subprocess."""
return subprocess.check_output(['git'] + list(args), **kwargs).strip()
def git_repo_root(path='./'):
"""Find git repository root."""
try:
return git_stdout('-C', path, 'rev-parse', '--show-toplevel')
except subprocess.CalledProcessError:
return None
class GitRepoNotFound(Exception):
"""Git repository not found."""
def _installed_packages(venv_python):
cmd = (venv_python, '-m', 'pip', 'list', '--disable-pip-version-check')
output = subprocess.check_output(cmd).splitlines()
return set(x.split()[0].lower() for x in output[2:])
def _required_packages(requirements):
packages = set()
for req in requirements:
with open(req, 'r') as ins:
for line in ins:
line = line.strip()
if not line or line.startswith('#'):
continue
packages.add(line.split('=')[0])
return packages
# TODO(pwbug/135) Move to common utility module.
def _check_call(args, **kwargs):
stdout = kwargs.get('stdout', sys.stdout)
with tempfile.TemporaryFile(mode='w+') as temp:
try:
kwargs['stdout'] = temp
kwargs['stderr'] = subprocess.STDOUT
print(args, kwargs, file=temp)
subprocess.check_call(args, **kwargs)
except subprocess.CalledProcessError:
temp.seek(0)
stdout.write(temp.read())
raise
def _find_files_by_name(roots, name):
matches = []
for root in roots:
for dirpart, dirs, files in os.walk(root):
if name in files:
matches.append(os.path.join(dirpart, name))
# Filter directories starting with . to avoid searching unnecessary
# paths and finding files that should be hidden.
dirs[:] = [d for d in dirs if not d.startswith('.')]
return matches
def install(
venv_path,
full_envsetup=True,
requirements=(),
python=sys.executable,
setup_py_roots=(),
env=None,
):
"""Creates a venv and installs all packages in this Git repo."""
version = subprocess.check_output(
(python, '--version'), stderr=subprocess.STDOUT).strip().decode()
# We expect Python 3.8, but if it came from CIPD let it pass anyway.
if '3.8' not in version and 'chromium' not in version:
print('=' * 60, file=sys.stderr)
print('Unexpected Python version:', version, file=sys.stderr)
print('=' * 60, file=sys.stderr)
return False
pyvenv_cfg = os.path.join(venv_path, 'pyvenv.cfg')
if full_envsetup or not os.path.exists(pyvenv_cfg):
# On Mac sometimes the CIPD Python has __PYVENV_LAUNCHER__ set to
# point to the system Python, which causes CIPD Python to create
# virtualenvs that reference the system Python instead of the CIPD
# Python. Clearing __PYVENV_LAUNCHER__ fixes that. See also pwbug/59.
envcopy = os.environ.copy()
if '__PYVENV_LAUNCHER__' in envcopy:
del envcopy['__PYVENV_LAUNCHER__']
cmd = (python, '-m', 'venv', '--clear', venv_path)
_check_call(cmd, env=envcopy)
# The bin/ directory is called Scripts/ on Windows. Don't ask.
venv_bin = os.path.join(venv_path, 'Scripts' if os.name == 'nt' else 'bin')
venv_python = os.path.join(venv_bin, 'python')
pw_root = os.environ.get('PW_ROOT')
if not pw_root:
pw_root = git_repo_root()
if not pw_root:
raise GitRepoNotFound()
setup_py_files = _find_files_by_name(setup_py_roots, 'setup.py')
# Sometimes we get an error saying "Egg-link ... does not match
# installed location". This gets around that. The egg-link files
# all come from 'pw'-prefixed packages we installed with --editable.
# Source: https://stackoverflow.com/a/48972085
for egg_link in glob.glob(
os.path.join(venv_path, 'lib/python*/site-packages/*.egg-link')):
os.unlink(egg_link)
def pip_install(*args):
cmd = [venv_python, '-m', 'pip', 'install'] + list(args)
return _check_call(cmd)
pip_install('--upgrade', 'pip')
def package(pkg_path):
if isinstance(pkg_path, bytes) and bytes != str:
pkg_path = pkg_path.decode()
return os.path.join(pw_root, os.path.dirname(pkg_path))
if requirements:
requirement_args = tuple('--requirement={}'.format(req)
for req in requirements)
pip_install('--log', os.path.join(venv_path, 'pip-requirements.log'),
*requirement_args)
if setup_py_files:
# Run through sorted so pw_cli (on which other packages depend) comes
# early in the list.
# TODO(mohrr) come up with a way better than just using sorted().
find_args = tuple('--find-links={}'.format(package(x))
for x in setup_py_files)
package_args = tuple('--editable={}'.format(package(path))
for path in sorted(setup_py_files))
pip_install('--log', os.path.join(venv_path, 'pip-packages.log'),
*(find_args + package_args))
if env:
env.set('VIRTUAL_ENV', venv_path)
env.prepend('PATH', venv_bin)
env.clear('PYTHONHOME')
return True