[7fb59b2] | 1 | # -*- coding: utf-8 -*- |
---|
[a3e5455] | 2 | #!/usr/bin/env python |
---|
[f36e01f] | 3 | |
---|
[a3e5455] | 4 | """ |
---|
| 5 | Run sasview in place. This allows sasview to use the python |
---|
| 6 | files in the source tree without having to call setup.py install |
---|
[3a39c2e] | 7 | first. A rebuild is still necessary when working on sas models |
---|
[a3e5455] | 8 | or c modules. |
---|
| 9 | |
---|
| 10 | Usage: |
---|
| 11 | |
---|
[6fe5100] | 12 | ./run.py [(module|script) args...] |
---|
| 13 | |
---|
| 14 | Without arguments run.py runs sasview. With arguments, run.py will run |
---|
| 15 | the given module or script. |
---|
[a3e5455] | 16 | """ |
---|
| 17 | |
---|
| 18 | import imp |
---|
[38beeab] | 19 | import os |
---|
| 20 | import sys |
---|
[bbd97e5] | 21 | from contextlib import contextmanager |
---|
[38beeab] | 22 | from os.path import join as joinpath |
---|
| 23 | from os.path import abspath, dirname |
---|
| 24 | |
---|
| 25 | |
---|
[a3e5455] | 26 | def 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) |
---|
[0719c8c] | 38 | |
---|
[f36e01f] | 39 | |
---|
[a3e5455] | 40 | @contextmanager |
---|
| 41 | def 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] | 51 | def import_package(modname, path): |
---|
| 52 | """Import a package into a particular point in the python namespace""" |
---|
[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] | 59 | def 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 | |
---|
[bbd97e5] | 69 | def prepare(): |
---|
| 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 | |
---|
[bbd97e5] | 105 | # select wx version |
---|
| 106 | #addpath(os.path.join(root, '..','wxPython-src-3.0.0.0','wxPython')) |
---|
| 107 | |
---|
| 108 | # Build project if the build directory does not already exist. |
---|
| 109 | if not os.path.exists(build_path): |
---|
| 110 | import subprocess |
---|
| 111 | with cd(root): |
---|
| 112 | subprocess.call((sys.executable, "setup.py", "build"), shell=False) |
---|
| 113 | |
---|
| 114 | # Put the source trees on the path |
---|
| 115 | addpath(joinpath(root, 'src')) |
---|
| 116 | |
---|
[0e4e554] | 117 | # sasmodels on the path |
---|
| 118 | addpath(joinpath(root, '../sasmodels/')) |
---|
| 119 | |
---|
[3a39c2e] | 120 | # Import the sasview package from root/sasview as sas.sasview. It would |
---|
| 121 | # be better to just store the package in src/sas/sasview. |
---|
| 122 | import sas |
---|
[f36e01f] | 123 | sas.sasview = import_package('sas.sasview', joinpath(root, 'sasview')) |
---|
[bbd97e5] | 124 | |
---|
[3a39c2e] | 125 | # The sas.models package Compiled Model files should be pulled in from the build directory even though |
---|
| 126 | # the source is stored in src/sas/models. |
---|
[bbd97e5] | 127 | |
---|
| 128 | # Compiled modules need to be pulled from the build directory. |
---|
| 129 | # Some packages are not where they are needed, so load them explicitly. |
---|
[b699768] | 130 | import sas.sascalc.pr |
---|
| 131 | sas.sascalc.pr.core = import_package('sas.sascalc.pr.core', |
---|
[f36e01f] | 132 | joinpath(build_path, 'sas', 'sascalc', 'pr', 'core')) |
---|
[bbd97e5] | 133 | |
---|
[9e531f2] | 134 | # Compiled modules need to be pulled from the build directory. |
---|
| 135 | # Some packages are not where they are needed, so load them explicitly. |
---|
[18e7309] | 136 | import sas.sascalc.file_converter |
---|
| 137 | sas.sascalc.file_converter.core = import_package('sas.sascalc.file_converter.core', |
---|
[f36e01f] | 138 | joinpath(build_path, 'sas', 'sascalc', 'file_converter', 'core')) |
---|
[18e7309] | 139 | |
---|
| 140 | # Compiled modules need to be pulled from the build directory. |
---|
| 141 | # Some packages are not where they are needed, so load them explicitly. |
---|
[9e531f2] | 142 | import sas.sascalc.calculator |
---|
| 143 | sas.sascalc.calculator.core = import_package('sas.sascalc.calculator.core', |
---|
[f36e01f] | 144 | joinpath(build_path, 'sas', 'sascalc', 'calculator', 'core')) |
---|
[bbd97e5] | 145 | |
---|
| 146 | sys.path.append(build_path) |
---|
| 147 | |
---|
[f36e01f] | 148 | # print "\n".join(sys.path) |
---|
| 149 | |
---|
[bbd97e5] | 150 | |
---|
| 151 | if __name__ == "__main__": |
---|
[f36e01f] | 152 | # Need to add absolute path before actual prepare call, |
---|
| 153 | # so logging can be done during initialization process too |
---|
[d9df833] | 154 | root = abspath(dirname(__file__)) |
---|
| 155 | addpath(joinpath(root, 'sasview')) |
---|
| 156 | from logger_config import SetupLogger |
---|
| 157 | logger = SetupLogger(__name__).config_development() |
---|
| 158 | |
---|
[38beeab] | 159 | logger.debug("Starting SASVIEW in debug mode.") |
---|
[bbd97e5] | 160 | prepare() |
---|
[3a39c2e] | 161 | from sas.sasview.sasview import run |
---|
[6fe5100] | 162 | run() |
---|
[38beeab] | 163 | logger.debug("Ending SASVIEW in debug mode.") |
---|