core.py 8.67 KB
Newer Older
1 2 3
"""distutils.core

The only module that needs to be imported to use the Distutils; provides
4 5
the 'setup' function (which is to be called from the setup script).  Also
indirectly provides the Distribution and Command classes, although they are
6 7
really defined in distutils.dist and distutils.cmd.
"""
8

9 10
import os
import sys
11

12
from distutils.debug import DEBUG
13
from distutils.errors import *
14 15

# Mainly import these so setup scripts can "from distutils.core import" them.
16 17
from distutils.dist import Distribution
from distutils.cmd import Command
18
from distutils.config import PyPIRCCommand
19 20
from distutils.extension import Extension

21 22 23 24
# This is a barebones help message generated displayed when the user
# runs the setup script with no arguments at all.  More useful help
# is generated with various --help options: global help, list commands,
# and per-command help.
25 26 27 28 29 30
USAGE = """\
usage: %(script)s [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
   or: %(script)s --help [cmd1 cmd2 ...]
   or: %(script)s --help-commands
   or: %(script)s cmd --help
"""
31

32
def gen_usage (script_name):
33
    script = os.path.basename(script_name)
34
    return USAGE % vars()
35

36

37 38 39 40
# Some mild magic to control the behaviour of 'setup()' from 'run_setup()'.
_setup_stop_after = None
_setup_distribution = None

41 42 43 44 45
# Legal keyword arguments for the setup() function
setup_keywords = ('distclass', 'script_name', 'script_args', 'options',
                  'name', 'version', 'author', 'author_email',
                  'maintainer', 'maintainer_email', 'url', 'license',
                  'description', 'long_description', 'keywords',
46 47 48
                  'platforms', 'classifiers', 'download_url',
                  'requires', 'provides', 'obsoletes',
                  )
49 50 51 52 53 54

# Legal keyword arguments for the Extension constructor
extension_keywords = ('name', 'sources', 'include_dirs',
                      'define_macros', 'undef_macros',
                      'library_dirs', 'libraries', 'runtime_library_dirs',
                      'extra_objects', 'extra_compile_args', 'extra_link_args',
55
                      'swig_opts', 'export_symbols', 'depends', 'language')
56

57
def setup (**attrs):
58 59 60
    """The gateway to the Distutils: do everything your setup script needs
    to do, in a highly flexible and user-driven way.  Briefly: create a
    Distribution instance; find and parse config files; parse the command
61 62 63
    line; run each Distutils command found there, customized by the options
    supplied to 'setup()' (as keyword arguments), in config files, and on
    the command line.
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

    The Distribution instance might be an instance of a class supplied via
    the 'distclass' keyword argument to 'setup'; if no such class is
    supplied, then the Distribution class (in dist.py) is instantiated.
    All other arguments to 'setup' (except for 'cmdclass') are used to set
    attributes of the Distribution instance.

    The 'cmdclass' argument, if supplied, is a dictionary mapping command
    names to command classes.  Each command encountered on the command line
    will be turned into a command class, which is in turn instantiated; any
    class found in 'cmdclass' is used in place of the default, which is
    (for command 'foo_bar') class 'foo_bar' in module
    'distutils.command.foo_bar'.  The command class must provide a
    'user_options' attribute which is a list of option specifiers for
    'distutils.fancy_getopt'.  Any command-line options between the current
    and the next command are used to set attributes of the current command
    object.

    When the entire command-line has been successfully parsed, calls the
    'run()' method on each command object in turn.  This method will be
    driven entirely by the Distribution object (which each command object
    has a reference to, thanks to its constructor), and the
    command-specific options that became attributes of each command
    object.
    """
89

90 91
    global _setup_stop_after, _setup_distribution

92 93
    # Determine the distribution class -- either caller-supplied or
    # our Distribution (see below).
94
    klass = attrs.get('distclass')
95 96 97 98 99
    if klass:
        del attrs['distclass']
    else:
        klass = Distribution

100
    if 'script_name' not in attrs:
101
        attrs['script_name'] = os.path.basename(sys.argv[0])
102
    if 'script_args'  not in attrs:
103 104
        attrs['script_args'] = sys.argv[1:]

105 106
    # Create the Distribution instance, using the remaining arguments
    # (ie. everything except distclass) to initialize it
107
    try:
108
        _setup_distribution = dist = klass(attrs)
109
    except DistutilsSetupError as msg:
110
        if 'name' not in attrs:
111
            raise SystemExit("error in setup command: %s" % msg)
112
        else:
113 114
            raise SystemExit("error in %s setup command: %s" % \
                  (attrs['name'], msg))
115

116 117 118
    if _setup_stop_after == "init":
        return dist

119 120 121
    # Find and parse the config file(s): they will override options from
    # the setup script, but be overridden by the command line.
    dist.parse_config_files()
Fred Drake's avatar
Fred Drake committed
122

123
    if DEBUG:
124
        print("options (after parsing config files):")
125
        dist.dump_option_dicts()
126

127 128 129
    if _setup_stop_after == "config":
        return dist

130 131 132
    # Parse the command line and override config files; any
    # command-line errors are the end user's fault, so turn them into
    # SystemExit to suppress tracebacks.
133
    try:
134
        ok = dist.parse_command_line()
135
    except DistutilsArgError as msg:
136
        raise SystemExit(gen_usage(dist.script_name) + "\nerror: %s" % msg)
137

138
    if DEBUG:
139
        print("options (after parsing command line):")
140
        dist.dump_option_dicts()
141

142 143 144
    if _setup_stop_after == "commandline":
        return dist

145
    # And finally, run all the commands found on the command line.
146 147
    if ok:
        try:
148
            dist.run_commands()
149
        except KeyboardInterrupt:
150
            raise SystemExit("interrupted")
151
        except OSError as exc:
152
            if DEBUG:
153
                sys.stderr.write("error: %s\n" % (exc,))
154 155
                raise
            else:
156
                raise SystemExit("error: %s" % (exc,))
Fred Drake's avatar
Fred Drake committed
157

158
        except (DistutilsError,
159
                CCompilerError) as msg:
160 161 162
            if DEBUG:
                raise
            else:
163
                raise SystemExit("error: " + str(msg))
164

165 166
    return dist

167
# setup ()
168

169 170

def run_setup (script_name, script_args=None, stop_after="run"):
171 172 173 174 175 176
    """Run a setup script in a somewhat controlled environment, and
    return the Distribution instance that drives things.  This is useful
    if you need to find out the distribution meta-data (passed as
    keyword args from 'script' to 'setup()', or the contents of the
    config files or command-line.

177
    'script_name' is a file that will be read and run with 'exec()';
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
    'sys.argv[0]' will be replaced with 'script' for the duration of the
    call.  'script_args' is a list of strings; if supplied,
    'sys.argv[1:]' will be replaced by 'script_args' for the duration of
    the call.

    'stop_after' tells 'setup()' when to stop processing; possible
    values:
      init
        stop after the Distribution instance has been created and
        populated with the keyword arguments to 'setup()'
      config
        stop after config files have been parsed (and their data
        stored in the Distribution instance)
      commandline
        stop after the command-line ('sys.argv[1:]' or 'script_args')
        have been parsed (and the data stored in the Distribution)
      run [default]
        stop after all commands have been run (the same as if 'setup()'
        had been called in the usual way

    Returns the Distribution instance, which provides all information
    used to drive the Distutils.
    """
    if stop_after not in ('init', 'config', 'commandline', 'run'):
202
        raise ValueError("invalid value for 'stop_after': %r" % (stop_after,))
203 204 205 206

    global _setup_stop_after, _setup_distribution
    _setup_stop_after = stop_after

207
    save_argv = sys.argv.copy()
Neal Norwitz's avatar
Neal Norwitz committed
208
    g = {'__file__': script_name}
209 210 211 212 213
    try:
        try:
            sys.argv[0] = script_name
            if script_args is not None:
                sys.argv[1:] = script_args
214
            with open(script_name, 'rb') as f:
215
                exec(f.read(), g)
216 217 218 219 220 221 222 223 224
        finally:
            sys.argv = save_argv
            _setup_stop_after = None
    except SystemExit:
        # Hmm, should we do something if exiting with a non-zero code
        # (ie. error)?
        pass

    if _setup_distribution is None:
225
        raise RuntimeError(("'distutils.core.setup()' was never called -- "
226
               "perhaps '%s' is not a Distutils setup script?") % \
227
              script_name)
228 229 230

    # I wonder if the setup script's namespace -- g and l -- would be of
    # any interest to callers?
231
    #print "_setup_distribution:", _setup_distribution
232
    return _setup_distribution
233 234

# run_setup ()