blob: 3c2f36bf42037f28a688d9a9fdb344bfccc5061b [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.
"""Environment utility functions.
Usage:
env = api.environment.initialize(checkout_root, env_options)
with env():
...
"""
import contextlib
import pprint
from PB.recipe_modules.pigweed.environment.options import Options
import attr
from recipe_engine import recipe_api
@attr.s
class Environment(object):
_api = attr.ib()
prefixes = attr.ib(default=attr.Factory(dict))
suffixes = attr.ib(default=attr.Factory(dict))
env = attr.ib(default=attr.Factory(dict))
@contextlib.contextmanager
def __call__(self):
# Using reversed() because things that are added later in environment
# setup need to override things that came earlier.
with self._api.context(
env_prefixes={k: reversed(v) for k, v in self.prefixes.items()},
env_suffixes=self.suffixes,
env=self.env,
):
with self._api.macos_sdk():
yield self
def __getattr__(self, name):
if name not in self.env:
raise AttributeError(name)
return self.env.get(name)
class EnvironmentApi(recipe_api.RecipeApi):
"""Environment utility functions."""
def __init__(self, props, *args, **kwargs):
super(EnvironmentApi, self).__init__(*args, **kwargs)
# TODO(pwbug/600) Remove self._options.
self._options = Options()
self._options.root_variable_name = str(props.root_variable_name)
self._options.relative_pigweed_root = str(props.relative_pigweed_root)
self._options.config_file = str(props.config_file)
# TODO(pwbug/600) Remove self._env.
self._env = None
def _init_platform(self, env):
if self.m.platform.is_mac:
with self.m.step.nest('setup platform'):
with self.m.macos_sdk():
pass
def _init_misc_vars(self, env):
env.env['PW_ENVIRONMENT_NO_ERROR_ON_UNRECOGNIZED'] = '1'
env.env['PW_ENVSETUP_DISABLE_SPINNER'] = '1'
env.env['PW_PRESUBMIT_DISABLE_SUBPROCESS_CAPTURE'] = '1'
if self.m.led.launched_by_led:
# Not using self.m.buildbucket_util.id because having relatively
# consistent length is important to some downstream projects when
# pulling this into their builds.
env.env['BUILDBUCKET_ID'] = 'test:{}'.format(
self.m.swarming.task_id
)
env.env['BUILD_NUMBER'] = str(self.m.buildbucket.build.number)
else:
env.env['BUILDBUCKET_ID'] = str(self.m.buildbucket.build.id)
env.env['BUILD_NUMBER'] = str(self.m.buildbucket.build.number)
env.env['BUILDBUCKET_NAME'] = ':'.join(
(
self.m.buildbucket.build.builder.project,
self.m.buildbucket.build.builder.bucket,
self.m.buildbucket.build.builder.builder,
)
)
if env.env['BUILDBUCKET_NAME'] == '::':
env.env['BUILDBUCKET_NAME'] = 'project:bucket:builder'
env.env['GOCACHE'] = self.m.path['cache'].join('go')
env.env['PIP_CACHE_DIR'] = self.m.path['cache'].join('pip')
# Bazel cache dir.
env.env['TEST_TMPDIR'] = self.m.path['cache'].join('bazel')
def _init_pigweed(
self,
checkout_root,
top_presentation,
use_constraint_file,
pigweed_root,
config_file,
env,
):
"""Run pw_env_setup."""
def path(relative_path):
parts = [
x for x in relative_path.split('/') if x not in ('.', u'.')
]
if parts:
return checkout_root.join(*parts)
else:
return checkout_root # pragma: no cover
env_dir = self.m.path['start_dir'].join('environment')
json_file = env_dir.join('vars.json')
shell_file = env_dir.join('setup.sh')
venv_dir = env_dir.join('venv')
self.m.file.ensure_directory(
'mkdir {}'.format(self.m.path.basename(env_dir)), env_dir,
)
self.m.file.ensure_directory(
'mkdir {}'.format(self.m.path.basename(venv_dir)), venv_dir,
)
cmd = [
'python3',
pigweed_root.join(
'pw_env_setup', 'py', 'pw_env_setup', 'env_setup.py'
),
'--pw-root',
pigweed_root,
'--install-dir',
env_dir,
'--json-file',
json_file,
'--shell-file',
shell_file,
'--virtualenv-root',
venv_dir,
'--virtualenv-gn-out-dir',
self.m.build.dir,
'--use-existing-cipd',
'--strict',
]
if not use_constraint_file:
cmd.append('--unpin-pip-packages')
cmd.extend(('--config-file', path(config_file)))
top_presentation.logs['vars.json'] = pprint.pformat(
self.m.file.read_json('read config', path(config_file))
)
with self.m.step.defer_results():
with self.m.step.nest('run pw_env_setup'):
with env():
self.m.step('pw_env_setup', cmd)
cipd_dir = env_dir.join('cipd')
log_exts = ('.cfg', '.log', '.sh', '.bat', '.json', '.ensure')
for directory in (env_dir, cipd_dir, venv_dir):
if not self.m.path.isdir(directory):
continue
with self.m.step.nest(self.m.path.basename(directory)):
files = self.m.file.listdir(
'ls', directory
).get_result()
for entry in files:
ext = self.m.path.splitext(entry)[1]
if ext not in log_exts:
continue
self.m.file.read_text(
'read {}'.format(self.m.path.basename(entry)),
entry,
)
json_data = self.m.file.read_json(
'read json file',
json_file,
test_data={
'set': {'VIRTUAL_ENV': '/environment/virtualenv'},
'modify': {
'PATH': {'append': ['/environment/bin']},
'LD_LIBRARY_PATH': {'prepend': ['/environment/lib']},
},
},
)
top_presentation.logs['vars.json'] = pprint.pformat(json_data)
for var, value in json_data['set'].items():
env.env[var] = value
for var, actions in json_data['modify'].items():
for value in actions.get('prepend', ()):
env.prefixes.setdefault(var, [])
env.prefixes[var].append(value)
for value in actions.get('append', ()):
env.suffixes.setdefault(var, [])
env.suffixes[var].append(value)
def init(
self, checkout_root, options=None, use_constraint_file=True,
):
pigweed_root = checkout_root
env = Environment(api=self.m)
if not options:
options = self._options # pragma: no cover
if not options.config_file:
self._env = env
return env
if options.relative_pigweed_root not in (None, '', '.'):
pigweed_root = checkout_root.join(options.relative_pigweed_root)
if options.root_variable_name:
env.env[options.root_variable_name] = checkout_root
with self.m.step.nest('environment') as pres:
# Setting _initialized immediately because some setup steps need
# to use the context of previous steps, and invoking self() is
# the easiest way to do so.
env.env['PW_ROOT'] = pigweed_root
env.env['PW_PROJECT_ROOT'] = checkout_root
self._init_platform(env)
self._init_misc_vars(env)
self._init_pigweed(
checkout_root=checkout_root,
top_presentation=pres,
use_constraint_file=use_constraint_file,
pigweed_root=pigweed_root,
config_file=options.config_file,
env=env,
)
# TODO(pwbug/600) Remove self._env.
self._env = env
return env
@contextlib.contextmanager
def __call__(self):
# TODO(pwbug/600) Remove this method.
assert self._env
with self._env():
yield self
def __getattr__(self, name):
assert self._env
return getattr(self._env, name)