source: sasview/run.py @ 3388337

ticket-1094-headless
Last change on this file since 3388337 was 3388337, checked in by Paul Kienzle <pkienzle@…>, 6 years ago

allow optional build from in-place executable run.py

  • Property mode set to 100755
File size: 6.2 KB
RevLine 
[a3e5455]1#!/usr/bin/env python
[0225a3f]2# -*- coding: utf-8 -*-
[a3e5455]3"""
4Run sasview in place.  This allows sasview to use the python
5files in the source tree without having to call setup.py install
[3a39c2e]6first.  A rebuild is still necessary when working on sas models
[a3e5455]7or c modules.
8
9Usage:
10
[6fe5100]11./run.py [(module|script) args...]
12
13Without arguments run.py runs sasview.  With arguments, run.py will run
14the given module or script.
[a3e5455]15"""
[c6bdb3b]16from __future__ import print_function
[a3e5455]17
18import imp
19import os
20import sys
[bbd97e5]21from contextlib import contextmanager
[38beeab]22from os.path import join as joinpath
23from os.path import abspath, dirname
[a3e5455]24
25def addpath(path):
26    """
27    Add a directory to the python path environment, and to the PYTHONPATH
28    environment variable for subprocesses.
29    """
[bbd97e5]30    path = abspath(path)
[a3e5455]31    if 'PYTHONPATH' in os.environ:
32        PYTHONPATH = path + os.pathsep + os.environ['PYTHONPATH']
33    else:
34        PYTHONPATH = path
35    os.environ['PYTHONPATH'] = PYTHONPATH
36    sys.path.insert(0, path)
37
[f36e01f]38
[a3e5455]39@contextmanager
40def cd(path):
41    """
42    Change directory for duration of "with" context.
43    """
44    old_dir = os.getcwd()
45    os.chdir(path)
46    yield
47    os.chdir(old_dir)
48
[f36e01f]49
[a3e5455]50def import_package(modname, path):
51    """Import a package into a particular point in the python namespace"""
[f94a935]52    #logger.debug("Dynamicly importing: %s", path)
[f36e01f]53    mod = imp.load_source(modname, abspath(joinpath(path, '__init__.py')))
[a3e5455]54    sys.modules[modname] = mod
[bbd97e5]55    mod.__path__ = [abspath(path)]
[a3e5455]56    return mod
57
[f36e01f]58
[499639c]59def import_dll(modname, build_path):
[a3e5455]60    """Import a DLL from the build directory"""
[499639c]61    import sysconfig
62    ext = sysconfig.get_config_var('SO')
[a3e5455]63    # build_path comes from context
[f36e01f]64    path = joinpath(build_path, *modname.split('.')) + ext
65    # print "importing", modname, "from", path
[a3e5455]66    return imp.load_dynamic(modname, path)
67
[f36e01f]68
[3388337]69def prepare(rebuild=True):
[bbd97e5]70    # Don't create *.pyc files
71    sys.dont_write_bytecode = True
72
73    # Debug numpy warnings
74    #import numpy; numpy.seterr(all='raise')
75
76    # find the directories for the source and build
77    from distutils.util import get_platform
78    root = abspath(dirname(__file__))
[f36e01f]79    platform = '%s-%s' % (get_platform(), sys.version[:3])
80    build_path = joinpath(root, 'build', 'lib.' + platform)
[18e7309]81
82    # Notify the help menu that the Sphinx documentation is in a different
[70a9d1c]83    # place than it otherwise would be.
[c3437260]84    os.environ['SASVIEW_DOC_PATH'] = joinpath(build_path, "doc")
85
[bbd97e5]86    # Make sure that we have a private version of mplconfig
[278e86f]87    #mplconfig = joinpath(abspath(dirname(__file__)), '.mplconfig')
88    #os.environ['MPLCONFIGDIR'] = mplconfig
89    #if not os.path.exists(mplconfig): os.mkdir(mplconfig)
[bbd97e5]90    #import matplotlib
[f36e01f]91    # matplotlib.use('Agg')
92    # print matplotlib.__file__
[bbd97e5]93    #import pylab; pylab.hold(False)
94    # add periodictable to the path
[f36e01f]95    try:
96        import periodictable
97    except:
98        addpath(joinpath(root, '..', 'periodictable'))
[bbd97e5]99
[f36e01f]100    try:
101        import bumps
102    except:
103        addpath(joinpath(root, '..', 'bumps'))
[95d58d3]104
[2ecb0a5]105    try:
106        import tinycc
107    except:
108        addpath(joinpath(root, '../tinycc/build/lib'))
109
[bbd97e5]110    # select wx version
111    #addpath(os.path.join(root, '..','wxPython-src-3.0.0.0','wxPython'))
112
113    # Build project if the build directory does not already exist.
[237f35e]114    # PAK: with "update" we can always build since it is fast
[3388337]115    if rebuild or not os.path.exists(build_path):
[bbd97e5]116        import subprocess
[bc8b8a1]117        build_cmd = [sys.executable, "setup.py", "build", "update"]
118        if os.name == 'nt':
119            build_cmd.append('--compiler=tinycc')
120        # need shell=True on windows to keep console box from popping up
121        shell = (os.name == 'nt')
[bbd97e5]122        with cd(root):
[bc8b8a1]123            subprocess.call(build_cmd, shell=shell)
[bbd97e5]124
125    # Put the source trees on the path
126    addpath(joinpath(root, 'src'))
127
[0e4e554]128    # sasmodels on the path
129    addpath(joinpath(root, '../sasmodels/'))
130
[3a39c2e]131    # The sas.models package Compiled Model files should be pulled in from the build directory even though
132    # the source is stored in src/sas/models.
[bbd97e5]133
134    # Compiled modules need to be pulled from the build directory.
135    # Some packages are not where they are needed, so load them explicitly.
[b699768]136    import sas.sascalc.pr
137    sas.sascalc.pr.core = import_package('sas.sascalc.pr.core',
[f36e01f]138                                         joinpath(build_path, 'sas', 'sascalc', 'pr', 'core'))
[bbd97e5]139
[9e531f2]140    # Compiled modules need to be pulled from the build directory.
141    # Some packages are not where they are needed, so load them explicitly.
[18e7309]142    import sas.sascalc.file_converter
143    sas.sascalc.file_converter.core = import_package('sas.sascalc.file_converter.core',
[f36e01f]144                                                     joinpath(build_path, 'sas', 'sascalc', 'file_converter', 'core'))
[bbd97e5]145
[9e531f2]146    import sas.sascalc.calculator
147    sas.sascalc.calculator.core = import_package('sas.sascalc.calculator.core',
[f36e01f]148                                                 joinpath(build_path, 'sas', 'sascalc', 'calculator', 'core'))
[bbd97e5]149
150    sys.path.append(build_path)
151
[7c105e8]152    set_git_tag()
[f36e01f]153    # print "\n".join(sys.path)
154
[7c105e8]155def set_git_tag():
156    try:
157        import subprocess
158        import os
159        import platform
160        FNULL = open(os.devnull, 'w')
161        if platform.system() == "Windows":
162            args = ['git', 'describe', '--tags']
163        else:
164            args = ['git describe --tags']
165        git_revision = subprocess.check_output(args, stderr=FNULL, shell=True)
166        import sas.sasview
167        sas.sasview.__build__ = str(git_revision).strip()
168    except subprocess.CalledProcessError as cpe:
[e61f668]169        get_logger().warning("Error while determining build number\n  Using command:\n %s \n Output:\n %s"% (cpe.cmd,cpe.output))
[7c105e8]170
[e61f668]171_logger = None
172def get_logger():
173    global _logger
[7c64911]174    if _logger is None:
[e61f668]175        from sas.logger_config import SetupLogger
176        _logger = SetupLogger(__name__).config_development()
177    return _logger
[bbd97e5]178
179if __name__ == "__main__":
[f36e01f]180    # Need to add absolute path before actual prepare call,
181    # so logging can be done during initialization process too
[d9df833]182    root = abspath(dirname(__file__))
[ed03b99]183    addpath(joinpath(root, 'src'))
[d9df833]184
[e61f668]185    get_logger().debug("Starting SASVIEW in debug mode.")
[bbd97e5]186    prepare()
[2ecb0a5]187    from sas.sasview.sasview import run_cli, run_gui
188    if len(sys.argv) == 1:
189        run_gui()
190    else:
191        run_cli()
[e61f668]192    get_logger().debug("Ending SASVIEW in debug mode.")
Note: See TracBrowser for help on using the repository browser.