summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Action.py
blob: 6a90c7696ebf818e1224316a53a58aac38864d29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
"""SCons.Action

This encapsulates information about executing any sort of action that
can build one or more target Nodes (typically files) from one or more
source Nodes (also typically files) given a specific Environment.

The base class here is ActionBase.  The base class supplies just a few
OO utility methods and some generic methods for displaying information
about an Action in response to the various commands that control printing.

The heavy lifting is handled by subclasses for the different types of
actions we might execute:

    CommandAction
    CommandGeneratorAction
    FunctionAction
    ListAction

The subclasses supply the following public interface methods used by
other modules:

    __call__()
        THE public interface, "calling" an Action object executes the
        command or Python function.  This also takes care of printing
        a pre-substitution command for debugging purposes.

    get_contents()
        Fetches the "contents" of an Action for signature calculation.
        This is what the Sig/*.py subsystem uses to decide if a target
        needs to be rebuilt because its action changed.

    genstring()
        Returns a string representation of the Action *without* command
        substitution, but allows a CommandGeneratorAction to generate
        the right action based on the specified target, source and env.
        This is used by the Signature subsystem (through the Executor)
        to compare the actions used to build a target last time and
        this time.

Subclasses also supply the following methods for internal use within
this module:

    __str__()
        Returns a string representation of the Action *without* command
        substitution.  This is used by the __call__() methods to display
        the pre-substitution command whenever the --debug=presub option
        is used.

    strfunction()
        Returns a substituted string representation of the Action.
        This is used by the ActionBase.show() command to display the
        command/function that will be executed to generate the target(s).

    execute()
        The internal method that really, truly, actually handles the
        execution of a command or Python function.  This is used so
        that the __call__() methods can take care of displaying any
        pre-substitution representations, and *then* execute an action
        without worrying about the specific Actions involved.

There is a related independent ActionCaller class that looks like a
regular Action, and which serves as a wrapper for arbitrary functions
that we want to let the user specify the arguments to now, but actually
execute later (when an out-of-date check determines that it's needed to
be executed, for example).  Objects of this class are returned by an
ActionFactory class that provides a __call__() method as a convenient
way for wrapping up the functions.

"""

#
# __COPYRIGHT__
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#

__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"

import os
import os.path
import re
import string
import sys

from SCons.Debug import logInstanceCreation
import SCons.Errors
import SCons.Util

class _Null:
    pass

_null = _Null

print_actions = 1
execute_actions = 1
print_actions_presub = 0

default_ENV = None

def rfile(n):
    try:
        return n.rfile()
    except AttributeError:
        return n

def _actionAppend(act1, act2):
    # This function knows how to slap two actions together.
    # Mainly, it handles ListActions by concatenating into
    # a single ListAction.
    a1 = Action(act1)
    a2 = Action(act2)
    if a1 is None or a2 is None:
        raise TypeError, "Cannot append %s to %s" % (type(act1), type(act2))
    if isinstance(a1, ListAction):
        if isinstance(a2, ListAction):
            return ListAction(a1.list + a2.list)
        else:
            return ListAction(a1.list + [ a2 ])
    else:
        if isinstance(a2, ListAction):
            return ListAction([ a1 ] + a2.list)
        else:
            return ListAction([ a1, a2 ])

class CommandGenerator:
    """
    Wraps a command generator function so the Action() factory
    function can tell a generator function from a function action.
    """
    def __init__(self, generator):
        self.generator = generator

    def __add__(self, other):
        return _actionAppend(self, other)

    def __radd__(self, other):
        return _actionAppend(other, self)

def _do_create_action(act, *args, **kw):
    """This is the actual "implementation" for the
    Action factory method, below.  This handles the
    fact that passing lists to Action() itself has
    different semantics than passing lists as elements
    of lists.

    The former will create a ListAction, the latter
    will create a CommandAction by converting the inner
    list elements to strings."""

    if isinstance(act, ActionBase):
        return act
    if SCons.Util.is_List(act):
        return apply(CommandAction, (act,)+args, kw)
    if isinstance(act, CommandGenerator):
        return apply(CommandGeneratorAction, (act.generator,)+args, kw)
    if callable(act):
        return apply(FunctionAction, (act,)+args, kw)
    if SCons.Util.is_String(act):
        var=SCons.Util.get_environment_var(act)
        if var:
            # This looks like a string that is purely an Environment
            # variable reference, like "$FOO" or "${FOO}".  We do
            # something special here...we lazily evaluate the contents
            # of that Environment variable, so a user could put something
            # like a function or a CommandGenerator in that variable
            # instead of a string.
            lcg = LazyCmdGenerator(var)
            return apply(CommandGeneratorAction, (lcg,)+args, kw)
        commands = string.split(str(act), '\n')
        if len(commands) == 1:
            return apply(CommandAction, (commands[0],)+args, kw)
        else:
            listCmdActions = map(lambda x: CommandAction(x), commands)
            return apply(ListAction, (listCmdActions,)+args, kw)
    return None

def Action(act, strfunction=_null, varlist=[], presub=_null):
    """A factory for action objects."""
    if SCons.Util.is_List(act):
        acts = map(lambda x, s=strfunction, v=varlist, ps=presub:
                          _do_create_action(x, strfunction=s, varlist=v, presub=ps),
                   act)
        acts = filter(lambda x: not x is None, acts)
        if len(acts) == 1:
            return acts[0]
        else:
            return ListAction(acts, strfunction=strfunction, varlist=varlist, presub=presub)
    else:
        return _do_create_action(act, strfunction=strfunction, varlist=varlist, presub=presub)

class ActionBase:
    """Base class for actions that create output objects."""
    def __init__(self, strfunction=_null, presub=_null, **kw):
        if not strfunction is _null:
            self.strfunction = strfunction
        if presub is _null:
            self.presub = print_actions_presub
        else:
            self.presub = presub

    def __cmp__(self, other):
        return cmp(self.__dict__, other.__dict__)

    def __call__(self, target, source, env,
                               errfunc=None,
                               presub=_null,
                               show=_null,
                               execute=_null):
        if not SCons.Util.is_List(target):
            target = [target]
        if not SCons.Util.is_List(source):
            source = [source]
        if presub is _null:  presub = self.presub
        if show is _null:  show = print_actions
        if execute is _null:  execute = execute_actions
        if presub:
            t = string.join(map(str, target), 'and')
            l = string.join(self.presub_lines(env), '\n  ')
            out = "Building %s with action(s):\n  %s\n" % (t, l)
            sys.stdout.write(out)
        if show and self.strfunction:
            s = self.strfunction(target, source, env)
            if s:
                sys.stdout.write(s + '\n')
        if execute:
            stat = self.execute(target, source, env)
            if stat and errfunc:
                errfunc(stat)
            return stat
        else:
            return 0

    def presub_lines(self, env):
        # CommandGeneratorAction needs a real environment
        # in order to return the proper string here, since
        # it may call LazyCmdGenerator, which looks up a key
        # in that env.  So we temporarily remember the env here,
        # and CommandGeneratorAction will use this env
        # when it calls its __generate method.
        self.presub_env = env
        lines = string.split(str(self), '\n')
        self.presub_env = None      # don't need this any more
        return lines

    def genstring(self, target, source, env):
        return str(self)

    def get_actions(self):
        return [self]

    def __add__(self, other):
        return _actionAppend(self, other)

    def __radd__(self, other):
        return _actionAppend(other, self)

def _string_from_cmd_list(cmd_list):
    """Takes a list of command line arguments and returns a pretty
    representation for printing."""
    cl = []
    for arg in map(str, cmd_list):
        if ' ' in arg or '\t' in arg:
            arg = '"' + arg + '"'
        cl.append(arg)
    return string.join(cl)

class CommandAction(ActionBase):
    """Class for command-execution actions."""
    def __init__(self, cmd, **kw):
        # Cmd list can actually be a list or a single item...basically
        # anything that we could pass in as the first arg to
        # Environment.subst_list().
        if __debug__: logInstanceCreation(self)
        apply(ActionBase.__init__, (self,), kw)
        self.cmd_list = cmd

    def __str__(self):
        return str(self.cmd_list)

    def strfunction(self, target, source, env):
        cmd_list = env.subst_list(self.cmd_list, 0, target, source)
        return string.join(map(_string_from_cmd_list, cmd_list), "\n")

    def execute(self, target, source, env):
        """Execute a command action.

        This will handle lists of commands as well as individual commands,
        because construction variable substitution may turn a single
        "command" into a list.  This means that this class can actually
        handle lists of commands, even though that's not how we use it
        externally.
        """
        import SCons.Util

        escape = env.get('ESCAPE', lambda x: x)

        if env.has_key('SHELL'):
            shell = env['SHELL']
        else:
            raise SCons.Errors.UserError('Missing SHELL construction variable.')

        # for SConf support (by now): check, if we want to pipe the command
        # output to somewhere else
        if env.has_key('PIPE_BUILD'):
            pipe_build = 1
            if env.has_key('PSPAWN'):
                pspawn = env['PSPAWN']
            else:
                raise SCons.Errors.UserError('Missing PSPAWN construction variable.')
            if env.has_key('PSTDOUT'):
                pstdout = env['PSTDOUT']
            else:
                raise SCons.Errors.UserError('Missing PSTDOUT construction variable.')
            if env.has_key('PSTDERR'):
                pstderr = env['PSTDERR']
            else:
                raise SCons.Errors.UserError('Missing PSTDOUT construction variable.')
        else:
            pipe_build = 0
            if env.has_key('SPAWN'):
                spawn = env['SPAWN']
            else:
                raise SCons.Errors.UserError('Missing SPAWN construction variable.')

        cmd_list = env.subst_list(self.cmd_list, 0, target, source)
        for cmd_line in cmd_list:
            if len(cmd_line):
                try:
                    ENV = env['ENV']
                except KeyError:
                    global default_ENV
                    if not default_ENV:
                        import SCons.Environment
                        default_ENV = SCons.Environment.Environment()['ENV']
                    ENV = default_ENV

                # ensure that the ENV values are all strings:
                for key, value in ENV.items():
                    if SCons.Util.is_List(value):
                        # If the value is a list, then we assume
                        # it is a path list, because that's a pretty
                        # common list like value to stick in an environment
                        # variable:
                        ENV[key] = string.join(map(str, value), os.pathsep)
                    elif not SCons.Util.is_String(value):
                        # If it isn't a string or a list, then
                        # we just coerce it to a string, which
                        # is proper way to handle Dir and File instances
                        # and will produce something reasonable for
                        # just about everything else:
                        ENV[key] = str(value)

                # Escape the command line for the command
                # interpreter we are using
                cmd_line = SCons.Util.escape_list(cmd_line, escape)
                if pipe_build:
                    ret = pspawn( shell, escape, cmd_line[0], cmd_line,
                                  ENV, pstdout, pstderr )
                else:
                    ret = spawn(shell, escape, cmd_line[0], cmd_line, ENV)
                if ret:
                    return ret
        return 0

    def get_contents(self, target, source, env, dict=None):
        """Return the signature contents of this action's command line.

        This strips $(-$) and everything in between the string,
        since those parts don't affect signatures.
        """
        cmd = self.cmd_list
        if SCons.Util.is_List(cmd):
            cmd = string.join(map(str, cmd))
        else:
            cmd = str(cmd)
        return env.subst_target_source(cmd, SCons.Util.SUBST_SIG, target, source, dict)

class CommandGeneratorAction(ActionBase):
    """Class for command-generator actions."""
    def __init__(self, generator, **kw):
        if __debug__: logInstanceCreation(self)
        apply(ActionBase.__init__, (self,), kw)
        self.generator = generator

    def __generate(self, target, source, env, for_signature):
        # ensure that target is a list, to make it easier to write
        # generator functions:
        if not SCons.Util.is_List(target):
            target = [target]

        ret = self.generator(target=target, source=source, env=env, for_signature=for_signature)
        gen_cmd = Action(ret)
        if not gen_cmd:
            raise SCons.Errors.UserError("Object returned from command generator: %s cannot be used to create an Action." % repr(ret))
        return gen_cmd

    def strfunction(self, target, source, env):
        if not SCons.Util.is_List(source):
            source = [source]
        rsources = map(rfile, source)
        act = self.__generate(target, source, env, 0)
        if act.strfunction:
            return act.strfunction(target, rsources, env)
        else:
            return None

    def __str__(self):
        try:
            env = self.presub_env or {}
        except AttributeError:
            env = {}
        act = self.__generate([], [], env, 0)
        return str(act)

    def genstring(self, target, source, env):
        return str(self.__generate(target, source, env, 0))

    def execute(self, target, source, env):
        rsources = map(rfile, source)
        act = self.__generate(target, source, env, 0)
        return act.execute(target, source, env)

    def get_contents(self, target, source, env, dict=None):
        """Return the signature contents of this action's command line.

        This strips $(-$) and everything in between the string,
        since those parts don't affect signatures.
        """
        return self.__generate(target, source, env, 1).get_contents(target, source, env, dict=None)

class LazyCmdGenerator:
    """This is not really an Action, although it kind of looks like one.
    This is really a simple callable class that acts as a command
    generator.  It holds on to a key into an Environment dictionary,
    then waits until execution time to see what type it is, then tries
    to create an Action out of it."""
    def __init__(self, var):
        if __debug__: logInstanceCreation(self)
        self.var = SCons.Util.to_String(var)

    def strfunction(self, target, source, env):
        try:
            return env[self.var]
        except KeyError:
            # The variable reference substitutes to nothing.
            return ''

    def __str__(self):
        return 'LazyCmdGenerator: %s'%str(self.var)

    def __call__(self, target, source, env, for_signature):
        try:
            return env[self.var]
        except KeyError:
            # The variable reference substitutes to nothing.
            return ''

    def __cmp__(self, other):
        return cmp(self.__dict__, other.__dict__)

class FunctionAction(ActionBase):
    """Class for Python function actions."""

    def __init__(self, execfunction, **kw):
        if __debug__: logInstanceCreation(self)
        self.execfunction = execfunction
        apply(ActionBase.__init__, (self,), kw)
        self.varlist = kw.get('varlist', [])

    def function_name(self):
        try:
            return self.execfunction.__name__
        except AttributeError:
            try:
                return self.execfunction.__class__.__name__
            except AttributeError:
                return "unknown_python_function"

    def strfunction(self, target, source, env):
        def quote(s):
            return '"' + str(s) + '"'
        def array(a, q=quote):
            return '[' + string.join(map(lambda x, q=q: q(x), a), ", ") + ']'
        name = self.function_name()
        tstr = len(target) == 1 and quote(target[0]) or array(target)
        sstr = len(source) == 1 and quote(source[0]) or array(source)
        return "%s(%s, %s)" % (name, tstr, sstr)

    def __str__(self):
        return "%s(env, target, source)" % self.function_name()

    def execute(self, target, source, env):
        rsources = map(rfile, source)
        return self.execfunction(target=target, source=rsources, env=env)

    def get_contents(self, target, source, env, dict=None):
        """Return the signature contents of this callable action.

        By providing direct access to the code object of the
        function, Python makes this extremely easy.  Hooray!
        """
        try:
            # "self.execfunction" is a function.
            contents = str(self.execfunction.func_code.co_code)
        except AttributeError:
            # "self.execfunction" is a callable object.
            try:
                contents = str(self.execfunction.__call__.im_func.func_code.co_code)
            except AttributeError:
                try:
                    # See if execfunction will do the heavy lifting for us.
                    gc = self.execfunction.get_contents
                except AttributeError:
                    # This is weird, just do the best we can.
                    contents = str(self.execfunction)
                else:
                    contents = gc(target, source, env, dict)
        return contents + env.subst(string.join(map(lambda v: '${'+v+'}',
                                                     self.varlist)))

class ListAction(ActionBase):
    """Class for lists of other actions."""
    def __init__(self, list, **kw):
        if __debug__: logInstanceCreation(self)
        apply(ActionBase.__init__, (self,), kw)
        self.list = map(lambda x: Action(x), list)

    def get_actions(self):
        return self.list

    def __str__(self):
        s = []
        for l in self.list:
            s.append(str(l))
        return string.join(s, "\n")

    def strfunction(self, target, source, env):
        s = []
        for l in self.list:
            if l.strfunction:
                x = l.strfunction(target, source, env)
                if not SCons.Util.is_List(x):
                    x = [x]
                s.extend(x)
        return string.join(s, "\n")

    def execute(self, target, source, env):
        for l in self.list:
            r = l.execute(target, source, env)
            if r:
                return r
        return 0

    def get_contents(self, target, source, env, dict=None):
        """Return the signature contents of this action list.

        Simple concatenation of the signatures of the elements.
        """
        dict = SCons.Util.subst_dict(target, source)
        return string.join(map(lambda x, t=target, s=source, e=env, d=dict:
                                      x.get_contents(t, s, e, d),
                               self.list),
                           "")

class ActionCaller:
    """A class for delaying calling an Action function with specific
    (positional and keyword) arguments until the Action is actually
    executed.

    This class looks to the rest of the world like a normal Action object,
    but what it's really doing is hanging on to the arguments until we
    have a target, source and env to use for the expansion.
    """
    def __init__(self, parent, args, kw):
        self.parent = parent
        self.args = args
        self.kw = kw
    def get_contents(self, target, source, env, dict=None):
        actfunc = self.parent.actfunc
        try:
            # "self.actfunc" is a function.
            contents = str(actfunc.func_code.co_code)
        except AttributeError:
            # "self.actfunc" is a callable object.
            try:
                contents = str(actfunc.__call__.im_func.func_code.co_code)
            except AttributeError:
                # No __call__() method, so it might be a builtin
                # or something like that.  Do the best we can.
                contents = str(actfunc)
        return contents
    def subst_args(self, target, source, env):
        return map(lambda x, e=env, t=target, s=source:
                          e.subst(x, 0, t, s),
                   self.args)
    def subst_kw(self, target, source, env):
        kw = {}
        for key in self.kw.keys():
            kw[key] = env.subst(self.kw[key], 0, target, source)
        return kw
    def __call__(self, target, source, env):
        args = self.subst_args(target, source, env)
        kw = self.subst_kw(target, source, env)
        return apply(self.parent.actfunc, args, kw)
    def strfunction(self, target, source, env):
        args = self.subst_args(target, source, env)
        kw = self.subst_kw(target, source, env)
        return apply(self.parent.strfunc, args, kw)

class ActionFactory:
    """A factory class that will wrap up an arbitrary function
    as an SCons-executable Action object.

    The real heavy lifting here is done by the ActionCaller class.
    We just collect the (positional and keyword) arguments that we're
    called with and give them to the ActionCaller object we create,
    so it can hang onto them until it needs them.
    """
    def __init__(self, actfunc, strfunc):
        self.actfunc = actfunc
        self.strfunc = strfunc
    def __call__(self, *args, **kw):
        ac = ActionCaller(self, args, kw)
        return Action(ac, strfunction=ac.strfunction)