2013-07-15 20:21:24 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
2015-11-21 18:24:00 +08:00
|
|
|
Bootstrap helps you to test pyFAI scripts without installing them
|
2014-11-28 01:42:28 +08:00
|
|
|
by patching your PYTHONPATH on the fly
|
2013-07-15 20:21:24 +08:00
|
|
|
|
|
|
|
example: ./bootstrap.py pyFAI-integrate test/testimages/Pilatus1M.edf
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
__authors__ = ["Frédéric-Emmanuel Picca", "Jérôme Kieffer"]
|
|
|
|
__contact__ = "jerome.kieffer@esrf.eu"
|
|
|
|
__license__ = "GPLv3+"
|
2016-04-05 22:07:48 +08:00
|
|
|
__date__ = "31/03/2016"
|
2014-11-28 01:42:28 +08:00
|
|
|
|
2013-07-15 20:21:24 +08:00
|
|
|
|
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
import distutils.util
|
|
|
|
import subprocess
|
2015-12-10 18:18:31 +08:00
|
|
|
import logging
|
2015-11-21 18:24:00 +08:00
|
|
|
|
|
|
|
|
2013-07-15 20:21:24 +08:00
|
|
|
def _copy(infile, outfile):
|
|
|
|
"link or copy file according to the OS. Nota those are HARD_LINKS"
|
|
|
|
if "link" in dir(os):
|
|
|
|
os.link(infile, outfile)
|
|
|
|
else:
|
|
|
|
shutil.copy(infile, outfile)
|
|
|
|
|
2014-11-27 20:56:37 +08:00
|
|
|
|
2013-07-15 20:21:24 +08:00
|
|
|
def _distutils_dir_name(dname="lib"):
|
|
|
|
"""
|
|
|
|
Returns the name of a distutils build directory
|
|
|
|
"""
|
|
|
|
platform = distutils.util.get_platform()
|
|
|
|
architecture = "%s.%s-%i.%i" % (dname, platform,
|
|
|
|
sys.version_info[0], sys.version_info[1])
|
|
|
|
return architecture
|
|
|
|
|
|
|
|
|
|
|
|
def _distutils_scripts_name():
|
|
|
|
"""Return the name of the distrutils scripts sirectory"""
|
|
|
|
f = "scripts-{version[0]}.{version[1]}"
|
|
|
|
return f.format(version=sys.version_info)
|
|
|
|
|
|
|
|
|
|
|
|
def _get_available_scripts(path):
|
|
|
|
res = []
|
|
|
|
try:
|
|
|
|
res = " ".join([s.rstrip('.py') for s in os.listdir(path)])
|
|
|
|
except OSError:
|
|
|
|
res = ["no script available, did you ran "
|
|
|
|
"'python setup.py build' before bootstrapping ?"]
|
|
|
|
return res
|
|
|
|
|
2014-11-27 20:56:37 +08:00
|
|
|
|
2013-07-15 20:21:24 +08:00
|
|
|
def _copy_files(source, dest, extn):
|
|
|
|
"""
|
2015-11-21 18:24:00 +08:00
|
|
|
copy all files with a given extension from source to destination
|
2013-07-15 20:21:24 +08:00
|
|
|
"""
|
2014-05-20 23:33:32 +08:00
|
|
|
if not os.path.isdir(dest):
|
|
|
|
os.makedirs(dest)
|
2013-07-15 20:21:24 +08:00
|
|
|
full_src = os.path.join(os.path.dirname(__file__), source)
|
|
|
|
for clf in os.listdir(full_src):
|
|
|
|
if clf.endswith(extn) and clf not in os.listdir(dest):
|
|
|
|
_copy(os.path.join(full_src, clf), os.path.join(dest, clf))
|
|
|
|
|
2016-03-22 16:41:41 +08:00
|
|
|
if sys.version_info[0] >= 3: # Python3
|
|
|
|
def execfile(fullpath):
|
|
|
|
"Python3 implementation for execfile"
|
|
|
|
with open(fullpath) as f:
|
|
|
|
code = compile(f.read(), fullpath, 'exec')
|
|
|
|
exec(code)
|
|
|
|
|
2015-01-23 22:07:12 +08:00
|
|
|
|
|
|
|
def runfile(fname):
|
|
|
|
try:
|
|
|
|
execfile(fname)
|
2016-06-09 23:35:12 +08:00
|
|
|
except (NameError, SyntaxError) as error:
|
2016-04-05 22:07:48 +08:00
|
|
|
print(error)
|
2015-01-23 22:07:12 +08:00
|
|
|
env = os.environ.copy()
|
|
|
|
env.update({"PYTHONPATH": LIBPATH + os.pathsep + os.environ.get("PYTHONPATH", ""),
|
|
|
|
"PATH": SCRIPTSPATH + os.pathsep + os.environ.get("PATH", "")})
|
|
|
|
run = subprocess.Popen(sys.argv, shell=False, env=env)
|
|
|
|
run.wait()
|
|
|
|
|
2016-06-15 22:08:41 +08:00
|
|
|
logger = logging.getLogger("bootstrap")
|
|
|
|
TARGET = os.path.basename(os.path.dirname(os.path.abspath(__file__))).split("-")[0]
|
|
|
|
|
2014-04-29 14:39:14 +08:00
|
|
|
home = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
SCRIPTSPATH = os.path.join(home,
|
2013-07-15 20:21:24 +08:00
|
|
|
'build', _distutils_scripts_name())
|
2014-04-29 14:39:14 +08:00
|
|
|
LIBPATH = (os.path.join(home,
|
|
|
|
'build', _distutils_dir_name('lib')))
|
2016-03-22 16:41:41 +08:00
|
|
|
cwd = os.getcwd()
|
|
|
|
os.chdir(home)
|
|
|
|
build = subprocess.Popen([sys.executable, "setup.py", "build"],
|
|
|
|
shell=False, cwd=os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
logger.info("Build process ended with rc= %s" % build.wait())
|
2015-11-21 18:24:00 +08:00
|
|
|
_copy_files("openCL", os.path.join(LIBPATH, TARGET, "openCL"), ".cl")
|
|
|
|
_copy_files("gui", os.path.join(LIBPATH, TARGET, "gui"), ".ui")
|
|
|
|
_copy_files("calibration", os.path.join(LIBPATH, TARGET, "calibration"), ".D")
|
2016-03-22 16:41:41 +08:00
|
|
|
os.chdir(cwd)
|
2013-07-15 20:21:24 +08:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
if len(sys.argv) < 2:
|
2015-12-10 18:18:31 +08:00
|
|
|
logging.warning("usage: ./bootstrap.py <script>\n")
|
|
|
|
logging.warning("Available scripts : %s\n" %
|
|
|
|
_get_available_scripts(SCRIPTSPATH))
|
|
|
|
script = None
|
|
|
|
else:
|
|
|
|
script = sys.argv[1]
|
|
|
|
|
|
|
|
if script:
|
|
|
|
logger.info("Executing %s from source checkout" % (script))
|
|
|
|
else:
|
|
|
|
logging.info("Running iPython by default")
|
2013-07-15 20:21:24 +08:00
|
|
|
sys.path.insert(0, LIBPATH)
|
2015-12-10 18:18:31 +08:00
|
|
|
logger.info("01. Patched sys.path with %s" % LIBPATH)
|
2013-07-15 20:21:24 +08:00
|
|
|
|
|
|
|
sys.path.insert(0, SCRIPTSPATH)
|
2015-12-10 18:18:31 +08:00
|
|
|
logger.info("02. Patched sys.path with %s" % SCRIPTSPATH)
|
|
|
|
|
|
|
|
if script:
|
|
|
|
sys.argv = sys.argv[1:]
|
|
|
|
logger.info("03. patch the sys.argv : ", sys.argv)
|
|
|
|
logger.info("04. Executing %s.main()" % (script,))
|
|
|
|
fullpath = os.path.join(SCRIPTSPATH, script)
|
|
|
|
if os.path.exists(fullpath):
|
2016-06-15 21:59:47 +08:00
|
|
|
exec_file = fullpath
|
2015-12-10 18:18:31 +08:00
|
|
|
else:
|
|
|
|
if os.path.exists(script):
|
2016-06-15 21:59:47 +08:00
|
|
|
exec_file = script
|
2015-12-10 18:18:31 +08:00
|
|
|
else:
|
|
|
|
for dirname in os.environ.get("PATH", "").split(os.pathsep):
|
|
|
|
fullpath = os.path.join(dirname, script)
|
|
|
|
if os.path.exists(fullpath):
|
2016-06-15 21:59:47 +08:00
|
|
|
exec_file = fullpath
|
2015-12-10 18:18:31 +08:00
|
|
|
break
|
2016-06-15 21:59:47 +08:00
|
|
|
else:
|
|
|
|
exec_file = None
|
|
|
|
if exec_file is not None:
|
|
|
|
runfile(exec_file)
|
|
|
|
else:
|
|
|
|
logger.error("Script not found")
|
2014-04-29 14:39:14 +08:00
|
|
|
else:
|
2015-12-10 18:18:31 +08:00
|
|
|
logger.info("03. patch the sys.argv : ", sys.argv)
|
|
|
|
sys.path.insert(2, "")
|
|
|
|
try:
|
|
|
|
from IPython import embed
|
|
|
|
except Exception as err:
|
|
|
|
logger.error("Unable to execute iPython, using normal Python")
|
|
|
|
logger.error(err)
|
|
|
|
import code
|
|
|
|
code.interact()
|
2014-04-29 14:39:14 +08:00
|
|
|
else:
|
2015-12-10 18:18:31 +08:00
|
|
|
embed()
|