1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
|
#!/usr/bin/env python
from subprocess import check_output, check_call, CalledProcessError
import argparse
import json
import logging
import os
import re
import sys
def which(prog, paths=None, default=''):
"""Locate executable.
:param prog: program to find
:type prog: str
:param paths: if not None then we use this value instead of PATH to look
for the executable.
:type paths: str | None
:param default: default value to return if not found
:type default: str | None | T
:return: absolute path to the program on success, found by searching for an
executable in the directories listed in the environment variable PATH
or default value if not found
:rtype: str | None | T
"""
def is_exe(fpath):
return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
def possible_names(fpath):
names = [fpath]
if sys.platform == 'win32':
names.extend([fpath + ext for ext in
os.environ.get('PATHEXT', '').split(';')])
return names
fpath, fname = os.path.split(prog)
if fpath:
# Full path given, check if executable
for progname in possible_names(prog):
if is_exe(progname):
return progname
else:
# Check for all directories listed in $PATH
if paths is None:
paths = os.environ["PATH"]
for pathdir in paths.split(os.pathsep):
exe_file = os.path.join(pathdir, prog)
for progname in possible_names(exe_file):
if is_exe(progname):
return progname
# Not found.
return default
class Config(object):
def __init__(self, args=None):
self.object_dir = os.path.abspath(os.getcwd())
self.source_dir = os.path.abspath(os.path.dirname(sys.argv[0]))
self.json_cache = os.path.join(self.object_dir, 'setup.json')
if args is not None:
self.load_cache = args.load_cache
else:
self.load_cache = True
self.cache_loaded = False
self.init_data(args)
@classmethod
def add_arguments(cls, parser):
parser.add_argument('--jobs', '-j',
help='gprbuild parallelism', default='0')
parser.add_argument('--reconfigure',
help='ignore previous setup results',
dest='load_cache',
default=True,
action="store_false")
parser.add_argument('--target',
help='target',
default=None)
parser.add_argument('--prefix',
help='installation prefix',
default='auto')
parser.add_argument('--integrated',
help='installation in platform specific subdir',
default=False,
action="store_true")
def init_data(self, args):
if self.load_cache and os.path.isfile(self.json_cache):
with open(self.json_cache, 'rb') as fd:
try:
data = json.load(fd)
except Exception:
data = {}
# Check that the setup is not changed
if (data.get('source_dir', '') == self.source_dir and
data.get('object_dir', '') == self.object_dir):
self.data = data
self.cache_loaded = True
return
self.data = {}
self.data['source_dir'] = self.source_dir
self.data['object_dir'] = self.object_dir
if args is not None:
if args.target is None:
self.data['target'] = self.run('gcc', '-dumpmachine',
grab=True)
else:
self.data['target'] = args.target
self.data['jobs'] = args.jobs
self.data['integrated'] = args.integrated
self.data['canonical_target'] = self.run(
'gprconfig', '--config=ada',
'--target=%s' % self.data['target'],
'--mi-show-compilers',
grab=r' 1 normalized_target:(\S*)')
default_prefix = os.path.dirname(
os.path.dirname(
self.run('gprconfig', '--config=ada',
'--target=%s' % self.data['target'],
'--mi-show-compilers',
grab=r' 1 path:(.*)')))
if args.prefix == 'auto':
self.data['prefix'] = default_prefix
else:
self.data['prefix'] = args.prefix
def set_data(self, name, value, sub=None):
if sub is None:
self.data[name] = value
else:
if sub not in self.data:
self.data[sub] = {}
self.data[sub][name] = value
def save_data(self):
with open(self.json_cache, 'wb') as fd:
json.dump(self.data, fd)
def gprcmd(self, cmd, project, *args, **kwargs):
cmd = list(cmd) + list(args)
# Handle out of source dir builds
if self.source_dir != self.object_dir:
cmd.append('-P%s' % os.path.join(self.source_dir, project))
cmd.append('--relocate-build-tree')
else:
cmd.append('-P%s' % project)
# Always pass --target so that 'Target value is enforced.
cmd.append('--target=%s' % self.data['canonical_target'])
# Pass common variables values computed during configure
# step and stored in setup.json
if 'gprbuild' in self.data:
for name, value in self.data['gprbuild'].iteritems():
cmd.append('-X%s=%s' % (name, value))
# Additional scenario variables coming usually from variants
if 'gpr_vars' in kwargs:
for name, value in kwargs['gpr_vars'].iteritems():
cmd.append('-X%s=%s' % (name, value))
return self.run(*cmd, **kwargs)
@property
def prefix(self):
prefix = self.data['prefix']
# In integrated mode always install in a subdirectory which is
# target specific
if self.data['integrated']:
prefix = os.path.join(prefix, self.data['canonical_target'])
return prefix
def gprbuild(self, project, *args, **kwargs):
cmd = ['gprbuild', '-j%s' % self.data['jobs'], '-p']
return self.gprcmd(cmd, project, *args, **kwargs)
def gprclean(self, project, *args, **kwargs):
cmd = ['gprclean', '-q']
return self.gprcmd(cmd, project, *args, **kwargs)
def gprinstall(self, project, *args, **kwargs):
# Sources are shared between all variants and put in
# include/<project_name> where project_name is the base name of
# project file.
cmd = ['gprinstall', '-p', '-f',
'--prefix=%s' % self.prefix,
'--sources-subdir=include/%s' % project[:-4]]
return self.gprcmd(cmd, project, *args, **kwargs)
def gpruninstall(self, project, *args, **kwargs):
cmd = ['gprinstall', '-p', '-f', '--prefix=%s' % self.prefix]
cmd.append('--uninstall')
return self.gprcmd(cmd, project, *args, **kwargs)
def run(self, *args, **kwargs):
grab = kwargs.get('grab', False)
cmd = list(args)
cmd[0] = which(cmd[0])
assert cmd[0], "cannot find program: %s" % args[0]
if grab:
output = check_output(cmd).strip()
if not isinstance(grab, bool):
output = re.findall(grab, output)[0]
return output
else:
logging.info('Launch: %s' % " ".join(cmd))
return check_call(cmd)
class SetupApp(object):
def __init__(self):
pass
def variants(self, config, cmd):
return [([], {})]
def build(self, args, extra_args=[]):
config = Config(args)
if not config.cache_loaded:
self.update_config(config, args)
config.save_data()
for gpr_args, gpr_vars in self.variants(config, 'build'):
config.gprbuild(
self.project,
*(gpr_args + extra_args),
gpr_vars=gpr_vars)
return 0
def clean(self, args, extra_args=[]):
config = Config()
if not config.cache_loaded:
logging.info('nothing to clean')
return 0
for gpr_args, gpr_vars in self.variants(config, 'clean'):
config.gprclean(self.project,
*(gpr_args + extra_args),
gpr_vars=gpr_vars)
def install(self, args, extra_args=[]):
config = Config()
if not config.cache_loaded:
logging.info('nothing to install')
return 0
if args.prefix is not None:
config.set_data('prefix', args.prefix)
logging.info('%-26s %s',
'Installation directory', config.data['prefix'])
for gpr_args, gpr_vars in self.variants(config, 'install'):
config.gprinstall(self.project,
*(gpr_args + extra_args),
gpr_vars=gpr_vars)
def uninstall(self, args, extra_args=[]):
config = Config()
if not config.cache_loaded:
logging.info('nothing to uninstall')
return 0
if args.prefix is not None:
config.set_data('prefix', args.prefix)
config.gpruninstall(self.project, *extra_args)
def create(self):
self.main = argparse.ArgumentParser(description=self.description)
self.parser = self.main.add_subparsers(
title='commands',
description='available commands')
# Build command
self.build_cmd = self.parser.add_parser('build',
help='build %s' % self.name)
Config.add_arguments(self.build_cmd)
self.build_cmd.set_defaults(command=self.build)
# Clean command
self.clean_cmd = self.parser.add_parser(
'clean',
help='clean %s' % self.name)
self.clean_cmd.set_defaults(command=self.clean)
# Install command
self.install_cmd = self.parser.add_parser(
'install',
help='install %s' % self.name)
self.install_cmd.add_argument('--prefix',
help='installation prefix',
default=None)
self.install_cmd.set_defaults(command=self.install)
# Uninstall command
self.uninstall_cmd = self.parser.add_parser(
'uninstall',
help='uninstall %s' % self.name)
self.uninstall_cmd.add_argument('--prefix',
help='un-installation prefix',
default=None)
self.uninstall_cmd.set_defaults(command=self.uninstall)
logging.basicConfig(level=logging.DEBUG, format='%(message)s')
def run(self):
self.create()
args, extra_args = self.main.parse_known_args()
try:
return args.command(args, extra_args)
except CalledProcessError as e:
logging.error('process failed with status: %s', e.returncode)
return 1
except AssertionError as e:
logging.error('requirement missing: %s', e)
return 1
|