blob: 774962a7724ce142834ece78171f23a783f37cfd [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 re
import subprocess
import sys
import tempfile
class GnTarget(object): # pylint: disable=useless-object-inheritance
def __init__(self, val):
self.directory, self.target = val.split('#', 1)
@property
def name(self):
"""A reasonably stable and unique name for each pair."""
result = '{}-{}'.format(
os.path.basename(os.path.normpath(self.directory)),
hash(self.directory + self.target))
return re.sub(r'[:/#_]+', '_', result)
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, allow_nesting=False):
matches = []
for root in roots:
for dirpart, dirs, files in os.walk(root):
if name in files:
matches.append(os.path.join(dirpart, name))
# If this directory is a match don't recurse inside it looking
# for more matches.
if not allow_nesting:
dirs[:] = []
# 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(
project_root,
venv_path,
full_envsetup=True,
requirements=(),
gn_targets=(),
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
# 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')
# Delete activation scripts. Typically they're created read-only and venv
# will complain when trying to write over them fails.
if os.path.isdir(venv_bin):
for entry in os.listdir(venv_bin):
if entry.lower().startswith('activate'):
os.unlink(os.path.join(venv_bin, entry))
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', '--upgrade', venv_path)
_check_call(cmd, env=envcopy)
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))
def install_packages(gn_target):
build = os.path.join(venv_path, gn_target.name)
gn_log = 'gn-gen-{}.log'.format(gn_target.name)
with open(os.path.join(venv_path, gn_log), 'w') as outs:
subprocess.check_call(('gn', 'gen', build),
cwd=os.path.join(project_root,
gn_target.directory),
stdout=outs,
stderr=outs)
ninja_log = 'ninja-{}.log'.format(gn_target.name)
with open(os.path.join(venv_path, ninja_log), 'w') as outs:
ninja_cmd = ['ninja', '-C', build]
ninja_cmd.append(gn_target.target)
subprocess.check_call(ninja_cmd, stdout=outs, stderr=outs)
if gn_targets:
if env:
env.set('VIRTUAL_ENV', venv_path)
env.prepend('PATH', venv_bin)
env.clear('PYTHONHOME')
with env():
for gn_target in gn_targets:
install_packages(gn_target)
else:
for gn_target in gn_targets:
install_packages(gn_target)
return True