source: sasview/run.py @ 1cdbcd8

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalcmagnetic_scattrelease-4.2.2ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 1cdbcd8 was 34d7b35, checked in by Paul Kienzle <pkienzle@…>, 7 years ago

use 'run.py -i' to start ipython with the sasview environment set up

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