2016-07-26 18:52:17 +00:00
|
|
|
#!/usr/bin/env python
|
2016-11-14 17:18:34 +00:00
|
|
|
|
2016-07-26 18:52:17 +00:00
|
|
|
# Copyright 2016 The LUCI Authors. All rights reserved.
|
|
|
|
# Use of this source code is governed under the Apache License, Version 2.0
|
|
|
|
# that can be found in the LICENSE file.
|
2016-11-14 17:18:34 +00:00
|
|
|
|
2016-07-26 18:52:17 +00:00
|
|
|
"""Bootstrap script to clone and forward to the recipe engine tool.
|
2016-11-14 17:18:34 +00:00
|
|
|
|
2016-07-26 18:52:17 +00:00
|
|
|
***********************************************************************
|
|
|
|
** DO NOT MODIFY EXCEPT IN THE PER-REPO CONFIGURATION SECTION BELOW. **
|
|
|
|
***********************************************************************
|
2016-11-14 17:18:34 +00:00
|
|
|
|
2016-07-26 18:52:17 +00:00
|
|
|
This is a copy of https://github.com/luci/recipes-py/blob/master/doc/recipes.py.
|
|
|
|
To fix bugs, fix in the github repo then copy it back to here and fix the
|
|
|
|
PER-REPO CONFIGURATION section to look like this one.
|
|
|
|
"""
|
2016-11-14 17:18:34 +00:00
|
|
|
|
2016-07-26 18:52:17 +00:00
|
|
|
import os
|
|
|
|
|
2017-03-25 00:45:40 +00:00
|
|
|
# IMPORTANT: Do not alter the header or footer line for the
|
|
|
|
# "PER-REPO CONFIGURATION" section below, or the autoroller will not be able
|
|
|
|
# to automatically update this file! All lines between the header and footer
|
|
|
|
# lines will be retained verbatim by the autoroller.
|
|
|
|
|
2016-11-14 17:18:34 +00:00
|
|
|
#### PER-REPO CONFIGURATION (editable) ####
|
2016-07-26 18:52:17 +00:00
|
|
|
# The root of the repository relative to the directory of this file.
|
|
|
|
REPO_ROOT = os.path.join(os.pardir, os.pardir)
|
|
|
|
# The path of the recipes.cfg file relative to the root of the repository.
|
|
|
|
RECIPES_CFG = os.path.join('infra', 'config', 'recipes.cfg')
|
|
|
|
#### END PER-REPO CONFIGURATION ####
|
2016-11-14 17:18:34 +00:00
|
|
|
|
2016-07-26 18:52:17 +00:00
|
|
|
BOOTSTRAP_VERSION = 1
|
2016-11-14 17:18:34 +00:00
|
|
|
|
2017-03-15 08:24:56 +00:00
|
|
|
import argparse
|
2017-03-16 01:04:05 +00:00
|
|
|
import json
|
2016-07-26 18:52:17 +00:00
|
|
|
import logging
|
|
|
|
import random
|
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
import time
|
2017-03-25 00:45:40 +00:00
|
|
|
import urlparse
|
2016-11-14 17:18:34 +00:00
|
|
|
|
2017-03-16 01:04:05 +00:00
|
|
|
from cStringIO import StringIO
|
2016-11-14 17:18:34 +00:00
|
|
|
|
2017-03-16 01:04:05 +00:00
|
|
|
|
|
|
|
def parse(repo_root, recipes_cfg_path):
|
|
|
|
"""Parse is transitional code which parses a recipes.cfg file as either jsonpb
|
|
|
|
or as textpb.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
repo_root (str) - native path to the root of the repo we're trying to run
|
|
|
|
recipes for.
|
|
|
|
recipes_cfg_path (str) - native path to the recipes.cfg file to process.
|
|
|
|
|
|
|
|
Returns (as tuple):
|
|
|
|
engine_url (str) - the url to the engine repo we want to use.
|
|
|
|
engine_revision (str) - the git revision for the engine to get.
|
|
|
|
engine_subpath (str) - the subdirectory in the engine repo we should use to
|
|
|
|
find it's recipes.py entrypoint. This is here for completeness, but will
|
|
|
|
essentially always be empty. It would be used if the recipes-py repo was
|
|
|
|
merged as a subdirectory of some other repo and you depended on that
|
|
|
|
subdirectory.
|
|
|
|
recipes_path (str) - native path to where the recipes live inside of the
|
|
|
|
current repo (i.e. the folder containing `recipes/` and/or
|
|
|
|
`recipe_modules`)
|
|
|
|
"""
|
|
|
|
with open(recipes_cfg_path, 'rU') as fh:
|
2017-03-28 03:52:15 +00:00
|
|
|
pb = json.load(fh)
|
|
|
|
|
|
|
|
engine = next(
|
|
|
|
(d for d in pb['deps'] if d['project_id'] == 'recipe_engine'), None)
|
|
|
|
if engine is None:
|
|
|
|
raise ValueError('could not find recipe_engine dep in %r'
|
|
|
|
% recipes_cfg_path)
|
|
|
|
engine_url = engine['url']
|
|
|
|
engine_revision = engine.get('revision', '')
|
|
|
|
engine_subpath = engine.get('path_override', '')
|
|
|
|
recipes_path = pb.get('recipes_path', '')
|
2017-03-16 01:04:05 +00:00
|
|
|
|
|
|
|
recipes_path = os.path.join(repo_root, recipes_path.replace('/', os.path.sep))
|
|
|
|
return engine_url, engine_revision, engine_subpath, recipes_path
|
|
|
|
|
|
|
|
|
2016-07-26 18:52:17 +00:00
|
|
|
def _subprocess_call(argv, **kwargs):
|
|
|
|
logging.info('Running %r', argv)
|
|
|
|
return subprocess.call(argv, **kwargs)
|
2016-11-14 17:18:34 +00:00
|
|
|
|
2017-03-15 08:24:56 +00:00
|
|
|
|
2016-07-26 18:52:17 +00:00
|
|
|
def _subprocess_check_call(argv, **kwargs):
|
|
|
|
logging.info('Running %r', argv)
|
|
|
|
subprocess.check_call(argv, **kwargs)
|
2016-11-14 17:18:34 +00:00
|
|
|
|
|
|
|
|
2017-03-15 08:24:56 +00:00
|
|
|
def find_engine_override(argv):
|
|
|
|
"""Since the bootstrap process attempts to defer all logic to the recipes-py
|
|
|
|
repo, we need to be aware if the user is overriding the recipe_engine
|
|
|
|
dependency. This looks for and returns the overridden recipe_engine path, if
|
|
|
|
any, or None if the user didn't override it."""
|
|
|
|
PREFIX = 'recipe_engine='
|
|
|
|
|
|
|
|
p = argparse.ArgumentParser()
|
|
|
|
p.add_argument('-O', '--project-override', action='append')
|
|
|
|
args, _ = p.parse_known_args(argv)
|
|
|
|
for override in args.project_override or ():
|
|
|
|
if override.startswith(PREFIX):
|
|
|
|
return override[len(PREFIX):]
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2016-07-26 18:52:17 +00:00
|
|
|
def main():
|
|
|
|
if '--verbose' in sys.argv:
|
|
|
|
logging.getLogger().setLevel(logging.INFO)
|
2016-11-14 17:18:34 +00:00
|
|
|
|
2017-03-15 08:24:56 +00:00
|
|
|
if REPO_ROOT is None or RECIPES_CFG is None:
|
|
|
|
logging.error(
|
|
|
|
'In order to use this script, please copy it to your repo and '
|
|
|
|
'replace the REPO_ROOT and RECIPES_CFG values with approprite paths.')
|
|
|
|
sys.exit(1)
|
|
|
|
|
2016-07-26 18:52:17 +00:00
|
|
|
if sys.platform.startswith(('win', 'cygwin')):
|
|
|
|
git = 'git.bat'
|
|
|
|
else:
|
|
|
|
git = 'git'
|
2016-11-14 17:18:34 +00:00
|
|
|
|
2016-07-26 18:52:17 +00:00
|
|
|
# Find the repository and config file to operate on.
|
|
|
|
repo_root = os.path.abspath(
|
|
|
|
os.path.join(os.path.dirname(__file__), REPO_ROOT))
|
|
|
|
recipes_cfg_path = os.path.join(repo_root, RECIPES_CFG)
|
2016-11-14 17:18:34 +00:00
|
|
|
|
2017-03-16 01:04:05 +00:00
|
|
|
engine_url, engine_revision, engine_subpath, recipes_path = parse(
|
|
|
|
repo_root, recipes_cfg_path)
|
|
|
|
|
2017-03-15 08:24:56 +00:00
|
|
|
engine_path = find_engine_override(sys.argv[1:])
|
2017-03-25 00:45:40 +00:00
|
|
|
if not engine_path and engine_url.startswith('file://'):
|
|
|
|
engine_path = urlparse.urlparse(engine_url).path
|
|
|
|
|
2017-03-15 08:24:56 +00:00
|
|
|
if not engine_path:
|
2017-03-25 00:45:40 +00:00
|
|
|
deps_path = os.path.join(recipes_path, '.recipe_deps')
|
2017-03-15 08:24:56 +00:00
|
|
|
# Ensure that we have the recipe engine cloned.
|
2017-03-16 01:04:05 +00:00
|
|
|
engine_root_path = os.path.join(deps_path, 'recipe_engine')
|
|
|
|
engine_path = os.path.join(engine_root_path, engine_subpath)
|
2017-03-15 08:24:56 +00:00
|
|
|
def ensure_engine():
|
|
|
|
if not os.path.exists(deps_path):
|
|
|
|
os.makedirs(deps_path)
|
2017-03-16 01:04:05 +00:00
|
|
|
if not os.path.exists(engine_root_path):
|
|
|
|
_subprocess_check_call([git, 'clone', engine_url, engine_root_path])
|
2017-03-15 08:24:56 +00:00
|
|
|
|
|
|
|
needs_fetch = _subprocess_call(
|
|
|
|
[git, 'rev-parse', '--verify', '%s^{commit}' % engine_revision],
|
2017-03-16 01:04:05 +00:00
|
|
|
cwd=engine_root_path, stdout=open(os.devnull, 'w'))
|
2017-03-15 08:24:56 +00:00
|
|
|
if needs_fetch:
|
2017-03-16 01:04:05 +00:00
|
|
|
_subprocess_check_call([git, 'fetch'], cwd=engine_root_path)
|
2017-03-15 08:24:56 +00:00
|
|
|
_subprocess_check_call(
|
2017-03-16 01:04:05 +00:00
|
|
|
[git, 'checkout', '--quiet', engine_revision], cwd=engine_root_path)
|
2017-03-15 08:24:56 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
ensure_engine()
|
|
|
|
except subprocess.CalledProcessError:
|
|
|
|
logging.exception('ensure_engine failed')
|
|
|
|
|
|
|
|
# Retry errors.
|
|
|
|
time.sleep(random.uniform(2,5))
|
|
|
|
ensure_engine()
|
2016-11-14 17:18:34 +00:00
|
|
|
|
|
|
|
args = ['--package', recipes_cfg_path] + sys.argv[1:]
|
2016-07-26 18:52:17 +00:00
|
|
|
return _subprocess_call([
|
|
|
|
sys.executable, '-u',
|
2017-03-16 01:04:05 +00:00
|
|
|
os.path.join(engine_path, 'recipes.py')] + args)
|
2016-11-14 17:18:34 +00:00
|
|
|
|
2016-07-26 18:52:17 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
sys.exit(main())
|