mirror of https://gitlab.com/ita1024/waf.git
1180 lines
33 KiB
Python
1180 lines
33 KiB
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
# Thomas Nagy, 2005-2010 (ita)
|
|
|
|
"""
|
|
Tasks represent atomic operations such as processes.
|
|
"""
|
|
|
|
import os, re, sys, tempfile
|
|
from waflib import Utils, Logs, Errors
|
|
|
|
# task states
|
|
NOT_RUN = 0
|
|
"""The task was not executed yet"""
|
|
|
|
MISSING = 1
|
|
"""The task has been executed but the files have not been created"""
|
|
|
|
CRASHED = 2
|
|
"""The task execution returned a non-zero exit status"""
|
|
|
|
EXCEPTION = 3
|
|
"""An exception occured in the task execution"""
|
|
|
|
SKIPPED = 8
|
|
"""The task did not have to be executed"""
|
|
|
|
SUCCESS = 9
|
|
"""The task was successfully executed"""
|
|
|
|
ASK_LATER = -1
|
|
"""The task is not ready to be executed"""
|
|
|
|
SKIP_ME = -2
|
|
"""The task does not need to be executed"""
|
|
|
|
RUN_ME = -3
|
|
"""The task must be executed"""
|
|
|
|
COMPILE_TEMPLATE_SHELL = '''
|
|
def f(tsk):
|
|
env = tsk.env
|
|
gen = tsk.generator
|
|
bld = gen.bld
|
|
cwdx = tsk.get_cwd()
|
|
p = env.get_flat
|
|
tsk.last_cmd = cmd = \'\'\' %s \'\'\' % s
|
|
return tsk.exec_command(cmd, cwd=cwdx, env=env.env or None)
|
|
'''
|
|
|
|
COMPILE_TEMPLATE_NOSHELL = '''
|
|
def f(tsk):
|
|
env = tsk.env
|
|
gen = tsk.generator
|
|
bld = gen.bld
|
|
cwdx = tsk.get_cwd()
|
|
def to_list(xx):
|
|
if isinstance(xx, str): return [xx]
|
|
return xx
|
|
def merge(lst1, lst2):
|
|
if lst1 and lst2:
|
|
return lst1[:-1] + [lst1[-1] + lst2[0]] + lst2[1:]
|
|
return lst1 + lst2
|
|
lst = []
|
|
%s
|
|
if '' in lst:
|
|
lst = [x for x in lst if x]
|
|
tsk.last_cmd = lst
|
|
return tsk.exec_command(lst, cwd=cwdx, env=env.env or None)
|
|
'''
|
|
|
|
classes = {}
|
|
"Class tasks created by user scripts or Waf tools (maps names to class objects). Task classes defined in Waf tools are registered here through the metaclass :py:class:`waflib.Task.store_task_type`."
|
|
|
|
class store_task_type(type):
|
|
"""
|
|
Metaclass: store the task classes into :py:const:`waflib.Task.classes`, or to the dict pointed
|
|
by the class attribute 'register'.
|
|
The attribute 'run_str' will be processed to compute a method 'run' on the task class
|
|
The decorator :py:func:`waflib.Task.cache_outputs` is also applied to the class
|
|
"""
|
|
def __init__(cls, name, bases, dict):
|
|
super(store_task_type, cls).__init__(name, bases, dict)
|
|
name = cls.__name__
|
|
|
|
if name != 'evil' and name != 'TaskBase':
|
|
global classes
|
|
if getattr(cls, 'run_str', None):
|
|
# if a string is provided, convert it to a method
|
|
(f, dvars) = compile_fun(cls.run_str, cls.shell)
|
|
cls.hcode = Utils.h_cmd(cls.run_str)
|
|
cls.orig_run_str = cls.run_str
|
|
# change the name of run_str or it is impossible to subclass with a function
|
|
cls.run_str = None
|
|
cls.run = f
|
|
cls.vars = list(set(cls.vars + dvars))
|
|
cls.vars.sort()
|
|
elif getattr(cls, 'run', None) and not 'hcode' in cls.__dict__:
|
|
# getattr(cls, 'hcode') would look in the upper classes
|
|
cls.hcode = Utils.h_cmd(cls.run)
|
|
|
|
# be creative
|
|
getattr(cls, 'register', classes)[name] = cls
|
|
|
|
evil = store_task_type('evil', (object,), {})
|
|
"Base class provided to avoid writing a metaclass, so the code can run in python 2.6 and 3.x unmodified"
|
|
|
|
class TaskBase(evil):
|
|
"""
|
|
Base class for all Waf tasks, which should be seen as an interface.
|
|
For illustration purposes, instances of this class will execute the attribute
|
|
'fun' in :py:meth:`waflib.Task.TaskBase.run`. When in doubt, create
|
|
subclasses of :py:class:`waflib.Task.Task` instead.
|
|
|
|
Subclasses should override these methods:
|
|
|
|
#. __str__: string to display to the user
|
|
#. runnable_status: ask the task if it should be run, skipped, or if we have to ask later
|
|
#. run: let threads execute the task
|
|
#. post_run: let threads update the data regarding the task (cache)
|
|
|
|
.. warning:: For backward compatibility reasons, the suffix "_task" is truncated in derived class names. This limitation will be removed in Waf 1.9.
|
|
"""
|
|
|
|
color = 'GREEN'
|
|
"""Color for the console display, see :py:const:`waflib.Logs.colors_lst`"""
|
|
|
|
ext_in = []
|
|
"""File extensions that objects of this task class might use"""
|
|
|
|
ext_out = []
|
|
"""File extensions that objects of this task class might create"""
|
|
|
|
before = []
|
|
"""List of task class names to execute before instances of this class"""
|
|
|
|
after = []
|
|
"""List of task class names to execute after instances of this class"""
|
|
|
|
hcode = ''
|
|
"""String representing an additional hash for the class representation"""
|
|
|
|
__slots__ = ('hasrun', 'generator')
|
|
|
|
def __init__(self, *k, **kw):
|
|
"""
|
|
The base task class requires a task generator, which will be itself if missing
|
|
"""
|
|
self.hasrun = NOT_RUN
|
|
try:
|
|
self.generator = kw['generator']
|
|
except KeyError:
|
|
self.generator = self
|
|
|
|
def __repr__(self):
|
|
"for debugging purposes"
|
|
return '\n\t{task %r: %s %s}' % (self.__class__.__name__, id(self), str(getattr(self, 'fun', '')))
|
|
|
|
def __str__(self):
|
|
"string to display to the user"
|
|
if hasattr(self, 'fun'):
|
|
return self.fun.__name__
|
|
return self.__class__.__name__
|
|
|
|
def keyword(self):
|
|
if hasattr(self, 'fun'):
|
|
return 'Function'
|
|
return 'Processing'
|
|
|
|
def get_cwd(self):
|
|
bld = self.generator.bld
|
|
ret = getattr(self, 'cwd', None) or getattr(self.generator.bld, 'cwd', bld.bldnode)
|
|
if isinstance(ret, str):
|
|
self.generator.bld.fatal('Working folders given to tasks must be Node objects')
|
|
return ret
|
|
|
|
def quote_flag(self, x):
|
|
old = x
|
|
if '\\' in x:
|
|
x = x.replace('\\', '\\\\')
|
|
if '"' in x:
|
|
x = x.replace('"', '\\"')
|
|
if old != x or ' ' in x or '\t' in x or "'" in x:
|
|
x = '"%s"' % x
|
|
return x
|
|
|
|
def split_argfile(self, cmd):
|
|
return ([cmd[0]], [self.quote_flag(x) for x in cmd[1:]])
|
|
|
|
def exec_command(self, cmd, **kw):
|
|
"""
|
|
Wrapper for :py:meth:`waflib.Context.Context.exec_command` which sets a current working directory to ``build.variant_dir``
|
|
|
|
:return: the return code
|
|
:rtype: int
|
|
"""
|
|
if not 'cwd' in kw:
|
|
kw['cwd'] = self.get_cwd()
|
|
|
|
if self.env.PATH:
|
|
env = kw['env'] = dict(kw.get('env') or self.env.env or os.environ)
|
|
env['PATH'] = self.env.PATH if isinstance(self.env.PATH, str) else os.pathsep.join(self.env.PATH)
|
|
|
|
# workaround for command line length limit:
|
|
# http://support.microsoft.com/kb/830473
|
|
if not isinstance(cmd, str) and (len(repr(cmd)) >= 8192 if Utils.is_win32 else len(cmd) > 200000):
|
|
cmd, args = self.split_argfile(cmd)
|
|
try:
|
|
(fd, tmp) = tempfile.mkstemp()
|
|
os.write(fd, '\r\n'.join(args).encode())
|
|
os.close(fd)
|
|
return self.generator.bld.exec_command(cmd + ['@' + tmp], **kw)
|
|
finally:
|
|
try:
|
|
os.remove(tmp)
|
|
except OSError:
|
|
# anti-virus and indexers can keep files open -_-
|
|
pass
|
|
else:
|
|
return self.generator.bld.exec_command(cmd, **kw)
|
|
|
|
def runnable_status(self):
|
|
"""
|
|
State of the task
|
|
|
|
:return: a task state in :py:const:`waflib.Task.RUN_ME`, :py:const:`waflib.Task.SKIP_ME` or :py:const:`waflib.Task.ASK_LATER`.
|
|
:rtype: int
|
|
"""
|
|
return RUN_ME
|
|
|
|
def uid(self):
|
|
return Utils.SIG_NIL
|
|
|
|
def process(self):
|
|
"""
|
|
Assume that the task has had a ``master`` which is an instance of :py:class:`waflib.Runner.Parallel`.
|
|
Execute the task and then put it back in the queue :py:attr:`waflib.Runner.Parallel.out` (may be replaced by subclassing).
|
|
"""
|
|
# remove the task signature immediately before it is executed
|
|
# in case of failure the task will be executed again
|
|
m = self.generator.bld.producer
|
|
try:
|
|
# TODO another place for this?
|
|
del self.generator.bld.task_sigs[self.uid()]
|
|
except KeyError:
|
|
pass
|
|
|
|
try:
|
|
ret = self.run()
|
|
except Exception:
|
|
self.err_msg = Utils.ex_stack()
|
|
self.hasrun = EXCEPTION
|
|
|
|
# TODO cleanup
|
|
m.error_handler(self)
|
|
return
|
|
|
|
if ret:
|
|
self.err_code = ret
|
|
self.hasrun = CRASHED
|
|
else:
|
|
try:
|
|
self.post_run()
|
|
except Errors.WafError:
|
|
pass
|
|
except Exception:
|
|
self.err_msg = Utils.ex_stack()
|
|
self.hasrun = EXCEPTION
|
|
else:
|
|
self.hasrun = SUCCESS
|
|
if self.hasrun != SUCCESS:
|
|
m.error_handler(self)
|
|
|
|
def run(self):
|
|
"""
|
|
Called by threads to execute the tasks. The default is empty and meant to be overridden in subclasses.
|
|
It is a bad idea to create nodes in this method (so, no node.ant_glob)
|
|
|
|
:rtype: int
|
|
"""
|
|
if hasattr(self, 'fun'):
|
|
return self.fun(self)
|
|
return 0
|
|
|
|
def post_run(self):
|
|
"Update the cache files (executed by threads). Override in subclasses."
|
|
pass
|
|
|
|
def log_display(self, bld):
|
|
"Write the execution status on the context logger"
|
|
if self.generator.bld.progress_bar == 3:
|
|
return
|
|
|
|
s = self.display()
|
|
if s:
|
|
if bld.logger:
|
|
logger = bld.logger
|
|
else:
|
|
logger = Logs
|
|
|
|
if self.generator.bld.progress_bar == 1:
|
|
c1 = Logs.colors.cursor_off
|
|
c2 = Logs.colors.cursor_on
|
|
logger.info(s, extra={'stream': sys.stderr, 'terminator':'', 'c1': c1, 'c2' : c2})
|
|
else:
|
|
logger.info(s, extra={'terminator':'', 'c1': '', 'c2' : ''})
|
|
|
|
def display(self):
|
|
"""
|
|
Return an execution status for the console, the progress bar, or the IDE output.
|
|
|
|
:rtype: string
|
|
"""
|
|
col1 = Logs.colors(self.color)
|
|
col2 = Logs.colors.NORMAL
|
|
master = self.generator.bld.producer
|
|
|
|
def cur():
|
|
# the current task position, computed as late as possible
|
|
tmp = -1
|
|
if hasattr(master, 'ready'):
|
|
tmp -= master.ready.qsize()
|
|
return master.processed + tmp
|
|
|
|
if self.generator.bld.progress_bar == 1:
|
|
return self.generator.bld.progress_line(cur(), master.total, col1, col2)
|
|
|
|
if self.generator.bld.progress_bar == 2:
|
|
ela = str(self.generator.bld.timer)
|
|
try:
|
|
ins = ','.join([n.name for n in self.inputs])
|
|
except AttributeError:
|
|
ins = ''
|
|
try:
|
|
outs = ','.join([n.name for n in self.outputs])
|
|
except AttributeError:
|
|
outs = ''
|
|
return '|Total %s|Current %s|Inputs %s|Outputs %s|Time %s|\n' % (master.total, cur(), ins, outs, ela)
|
|
|
|
s = str(self)
|
|
if not s:
|
|
return None
|
|
|
|
total = master.total
|
|
n = len(str(total))
|
|
fs = '[%%%dd/%%%dd] %%s%%s%%s%%s\n' % (n, n)
|
|
kw = self.keyword()
|
|
if kw:
|
|
kw += ' '
|
|
return fs % (cur(), total, kw, col1, s, col2)
|
|
|
|
def hash_constraints(self):
|
|
"""
|
|
Identify a task type for all the constraints relevant for the scheduler: precedence, file production
|
|
|
|
:return: a hash value
|
|
:rtype: string
|
|
"""
|
|
cls = self.__class__
|
|
tup = (str(cls.before), str(cls.after), str(cls.ext_in), str(cls.ext_out), cls.__name__, cls.hcode)
|
|
h = hash(tup)
|
|
return h
|
|
|
|
def format_error(self):
|
|
"""
|
|
Error message to display to the user when a build fails
|
|
|
|
:rtype: string
|
|
"""
|
|
msg = getattr(self, 'last_cmd', '')
|
|
name = getattr(self.generator, 'name', '')
|
|
if getattr(self, "err_msg", None):
|
|
return self.err_msg
|
|
elif not self.hasrun:
|
|
return 'task in %r was not executed for some reason: %r' % (name, self)
|
|
elif self.hasrun == CRASHED:
|
|
try:
|
|
return ' -> task in %r failed (exit status %r): %r\n%r' % (name, self.err_code, self, msg)
|
|
except AttributeError:
|
|
return ' -> task in %r failed: %r\n%r' % (name, self, msg)
|
|
elif self.hasrun == MISSING:
|
|
return ' -> missing files in %r: %r\n%r' % (name, self, msg)
|
|
else:
|
|
return 'invalid status for task in %r: %r' % (name, self.hasrun)
|
|
|
|
def colon(self, var1, var2):
|
|
"""
|
|
Support code for scriptlet expressions such as ${FOO_ST:FOO}
|
|
If the first variable (FOO_ST) is empty, then an empty list is returned
|
|
|
|
The results will be slightly different if FOO_ST is a list, for example::
|
|
|
|
env.FOO_ST = ['-a', '-b']
|
|
env.FOO_ST = '-I%s'
|
|
# ${FOO_ST:FOO} returns
|
|
['-Ip1', '-Ip2']
|
|
|
|
env.FOO = ['p1', 'p2']
|
|
# ${FOO_ST:FOO} returns
|
|
['-a', '-b', 'p1', '-a', '-b', 'p2']
|
|
"""
|
|
tmp = self.env[var1]
|
|
if not tmp:
|
|
return []
|
|
|
|
if isinstance(var2, str):
|
|
it = self.env[var2]
|
|
else:
|
|
it = var2
|
|
if isinstance(tmp, str):
|
|
return [tmp % x for x in it]
|
|
else:
|
|
lst = []
|
|
for y in it:
|
|
lst.extend(tmp)
|
|
lst.append(y)
|
|
return lst
|
|
|
|
class Task(TaskBase):
|
|
"""
|
|
This class deals with the filesystem (:py:class:`waflib.Node.Node`). The method :py:class:`waflib.Task.Task.runnable_status`
|
|
uses a hash value (from :py:class:`waflib.Task.Task.signature`) which is persistent from build to build. When the value changes,
|
|
the task has to be executed. The method :py:class:`waflib.Task.Task.post_run` will assign the task signature to the output
|
|
nodes (if present).
|
|
"""
|
|
vars = []
|
|
"""Variables to depend on (class attribute used for :py:meth:`waflib.Task.Task.sig_vars`)"""
|
|
|
|
always_run = False
|
|
"""Specify whether task instances must always be executed or not"""
|
|
|
|
shell = False
|
|
"""Execute the command with the shell (class attribute)"""
|
|
|
|
def __init__(self, *k, **kw):
|
|
TaskBase.__init__(self, *k, **kw)
|
|
|
|
self.env = kw['env']
|
|
"""ConfigSet object (make sure to provide one)"""
|
|
|
|
self.inputs = []
|
|
"""List of input nodes, which represent the files used by the task instance"""
|
|
|
|
self.outputs = []
|
|
"""List of output nodes, which represent the files created by the task instance"""
|
|
|
|
self.dep_nodes = []
|
|
"""List of additional nodes to depend on"""
|
|
|
|
self.run_after = set([])
|
|
"""Set of tasks that must be executed before this one"""
|
|
|
|
def __str__(self):
|
|
"string to display to the user"
|
|
name = self.__class__.__name__
|
|
if self.outputs:
|
|
if name.endswith(('lib', 'program')) or not self.inputs:
|
|
node = self.outputs[0]
|
|
return node.path_from(node.ctx.launch_node())
|
|
if not (self.inputs or self.outputs):
|
|
return self.__class__.__name__
|
|
if len(self.inputs) == 1:
|
|
node = self.inputs[0]
|
|
return node.path_from(node.ctx.launch_node())
|
|
|
|
src_str = ' '.join([a.path_from(a.ctx.launch_node()) for a in self.inputs])
|
|
tgt_str = ' '.join([a.path_from(a.ctx.launch_node()) for a in self.outputs])
|
|
if self.outputs: sep = ' -> '
|
|
else: sep = ''
|
|
return '%s: %s%s%s' % (self.__class__.__name__, src_str, sep, tgt_str)
|
|
|
|
def keyword(self):
|
|
name = self.__class__.__name__
|
|
if name.endswith(('lib', 'program')):
|
|
return 'Linking'
|
|
if len(self.inputs) == 1 and len(self.outputs) == 1:
|
|
return 'Compiling'
|
|
if not self.inputs:
|
|
if self.outputs:
|
|
return 'Creating'
|
|
else:
|
|
return 'Running'
|
|
return 'Processing'
|
|
|
|
def __repr__(self):
|
|
"for debugging purposes"
|
|
try:
|
|
ins = ",".join([x.name for x in self.inputs])
|
|
outs = ",".join([x.name for x in self.outputs])
|
|
except AttributeError:
|
|
ins = ",".join([str(x) for x in self.inputs])
|
|
outs = ",".join([str(x) for x in self.outputs])
|
|
return "".join(['\n\t{task %r: ' % id(self), self.__class__.__name__, " ", ins, " -> ", outs, '}'])
|
|
|
|
def uid(self):
|
|
"""
|
|
Return an identifier used to determine if tasks are up-to-date. Since the
|
|
identifier will be stored between executions, it must be:
|
|
|
|
- unique: no two tasks return the same value (for a given build context)
|
|
- the same for a given task instance
|
|
|
|
By default, the node paths, the class name, and the function are used
|
|
as inputs to compute a hash.
|
|
|
|
The pointer to the object (python built-in 'id') will change between build executions,
|
|
and must be avoided in such hashes.
|
|
|
|
:return: hash value
|
|
:rtype: string
|
|
"""
|
|
try:
|
|
return self.uid_
|
|
except AttributeError:
|
|
m = Utils.md5(self.__class__.__name__)
|
|
up = m.update
|
|
for x in self.inputs + self.outputs:
|
|
up(x.abspath())
|
|
self.uid_ = m.digest()
|
|
return self.uid_
|
|
|
|
def set_inputs(self, inp):
|
|
"""
|
|
Append the nodes to the *inputs*
|
|
|
|
:param inp: input nodes
|
|
:type inp: node or list of nodes
|
|
"""
|
|
if isinstance(inp, list): self.inputs += inp
|
|
else: self.inputs.append(inp)
|
|
|
|
def set_outputs(self, out):
|
|
"""
|
|
Append the nodes to the *outputs*
|
|
|
|
:param out: output nodes
|
|
:type out: node or list of nodes
|
|
"""
|
|
if isinstance(out, list): self.outputs += out
|
|
else: self.outputs.append(out)
|
|
|
|
def set_run_after(self, task):
|
|
"""
|
|
Run this task only after *task*. Affect :py:meth:`waflib.Task.runnable_status`
|
|
You probably want to use tsk.run_after.add(task) directly
|
|
|
|
:param task: task
|
|
:type task: :py:class:`waflib.Task.Task`
|
|
"""
|
|
assert isinstance(task, TaskBase)
|
|
self.run_after.add(task)
|
|
|
|
def signature(self):
|
|
"""
|
|
Task signatures are stored between build executions, they are use to track the changes
|
|
made to the input nodes (not to the outputs!). The signature hashes data from various sources:
|
|
|
|
* explicit dependencies: files listed in the inputs (list of node objects) :py:meth:`waflib.Task.Task.sig_explicit_deps`
|
|
* implicit dependencies: list of nodes returned by scanner methods (when present) :py:meth:`waflib.Task.Task.sig_implicit_deps`
|
|
* hashed data: variables/values read from task.__class__.vars/task.env :py:meth:`waflib.Task.Task.sig_vars`
|
|
|
|
If the signature is expected to give a different result, clear the cache kept in ``self.cache_sig``::
|
|
|
|
from waflib import Task
|
|
class cls(Task.Task):
|
|
def signature(self):
|
|
sig = super(Task.Task, self).signature()
|
|
delattr(self, 'cache_sig')
|
|
return super(Task.Task, self).signature()
|
|
"""
|
|
try: return self.cache_sig
|
|
except AttributeError: pass
|
|
|
|
self.m = Utils.md5(self.hcode)
|
|
|
|
# explicit deps
|
|
self.sig_explicit_deps()
|
|
|
|
# env vars
|
|
self.sig_vars()
|
|
|
|
# implicit deps / scanner results
|
|
if self.scan:
|
|
try:
|
|
self.sig_implicit_deps()
|
|
except Errors.TaskRescan:
|
|
return self.signature()
|
|
|
|
ret = self.cache_sig = self.m.digest()
|
|
return ret
|
|
|
|
def runnable_status(self):
|
|
"""
|
|
Override :py:meth:`waflib.Task.TaskBase.runnable_status` to determine if the task is ready
|
|
to be run (:py:attr:`waflib.Task.Task.run_after`)
|
|
"""
|
|
#return 0 # benchmarking
|
|
|
|
for t in self.run_after:
|
|
if not t.hasrun:
|
|
return ASK_LATER
|
|
|
|
# first compute the signature
|
|
try:
|
|
new_sig = self.signature()
|
|
except Errors.TaskNotReady:
|
|
return ASK_LATER
|
|
|
|
# compare the signature to a signature computed previously
|
|
bld = self.generator.bld
|
|
key = self.uid()
|
|
try:
|
|
prev_sig = bld.task_sigs[key]
|
|
except KeyError:
|
|
Logs.debug('task: task %r must run: it was never run before or the task code changed', self)
|
|
return RUN_ME
|
|
|
|
if new_sig != prev_sig:
|
|
Logs.debug('task: task %r must run: the task signature changed', self)
|
|
return RUN_ME
|
|
|
|
# compare the signatures of the outputs
|
|
for node in self.outputs:
|
|
sig = bld.node_sigs.get(node)
|
|
if not sig:
|
|
Logs.debug('task: task %r must run: an output node has no signature', self)
|
|
return RUN_ME
|
|
if sig != key:
|
|
Logs.debug('task: task %r must run: an output node was produced by another task', self)
|
|
return RUN_ME
|
|
if not node.exists():
|
|
Logs.debug('task: task %r must run: an output node does not exist', self)
|
|
return RUN_ME
|
|
|
|
return (self.always_run and RUN_ME) or SKIP_ME
|
|
|
|
def post_run(self):
|
|
"""
|
|
Called after successful execution to update the cache data :py:class:`waflib.Node.Node` sigs
|
|
and :py:attr:`waflib.Build.BuildContext.task_sigs`.
|
|
|
|
The node signature is obtained from the task signature, but the output nodes may also get the signature
|
|
of their contents. See the class decorator :py:func:`waflib.Task.update_outputs` if you need this behaviour.
|
|
"""
|
|
bld = self.generator.bld
|
|
for node in self.outputs:
|
|
if not node.exists():
|
|
self.hasrun = MISSING
|
|
self.err_msg = '-> missing file: %r' % node.abspath()
|
|
raise Errors.WafError(self.err_msg)
|
|
bld.node_sigs[node] = self.uid() # make sure this task produced the files in question
|
|
bld.task_sigs[self.uid()] = self.signature()
|
|
try:
|
|
del self.last_cmd
|
|
except AttributeError:
|
|
pass
|
|
|
|
def sig_explicit_deps(self):
|
|
"""
|
|
Used by :py:meth:`waflib.Task.Task.signature`, hash :py:attr:`waflib.Task.Task.inputs`
|
|
and :py:attr:`waflib.Task.Task.dep_nodes` signatures.
|
|
"""
|
|
bld = self.generator.bld
|
|
upd = self.m.update
|
|
|
|
# the inputs
|
|
for x in self.inputs + self.dep_nodes:
|
|
upd(x.get_bld_sig())
|
|
|
|
# manual dependencies, they can slow down the builds
|
|
if bld.deps_man:
|
|
additional_deps = bld.deps_man
|
|
for x in self.inputs + self.outputs:
|
|
try:
|
|
d = additional_deps[x]
|
|
except KeyError:
|
|
continue
|
|
|
|
for v in d:
|
|
if isinstance(v, bld.root.__class__):
|
|
v = v.get_bld_sig()
|
|
elif hasattr(v, '__call__'):
|
|
v = v() # dependency is a function, call it
|
|
upd(v)
|
|
|
|
def sig_vars(self):
|
|
"""
|
|
Used by :py:meth:`waflib.Task.Task.signature`, hash :py:attr:`waflib.Task.Task.env` variables/values
|
|
"""
|
|
sig = self.generator.bld.hash_env_vars(self.env, self.__class__.vars)
|
|
self.m.update(sig)
|
|
|
|
scan = None
|
|
"""
|
|
This method, when provided, returns a tuple containing:
|
|
|
|
* a list of nodes corresponding to real files
|
|
* a list of names for files not found in path_lst
|
|
|
|
For example::
|
|
|
|
from waflib.Task import Task
|
|
class mytask(Task):
|
|
def scan(self, node):
|
|
return ((), ())
|
|
|
|
The first and second lists are stored in :py:attr:`waflib.Build.BuildContext.node_deps` and
|
|
:py:attr:`waflib.Build.BuildContext.raw_deps` respectively.
|
|
"""
|
|
|
|
def sig_implicit_deps(self):
|
|
"""
|
|
Used by :py:meth:`waflib.Task.Task.signature` hashes node signatures obtained by scanning for dependencies (:py:meth:`waflib.Task.Task.scan`).
|
|
|
|
The exception :py:class:`waflib.Errors.TaskRescan` is thrown
|
|
when a file has changed. When this occurs, :py:meth:`waflib.Task.Task.signature` is called
|
|
once again, and this method will be executed once again, this time calling :py:meth:`waflib.Task.Task.scan`
|
|
for searching the dependencies.
|
|
|
|
:rtype: hash value
|
|
"""
|
|
|
|
bld = self.generator.bld
|
|
|
|
# get the task signatures from previous runs
|
|
key = self.uid()
|
|
prev = bld.imp_sigs.get(key, [])
|
|
|
|
# for issue #379
|
|
if prev:
|
|
try:
|
|
if prev == self.compute_sig_implicit_deps():
|
|
return prev
|
|
except Errors.TaskNotReady:
|
|
raise
|
|
except EnvironmentError:
|
|
# when a file was renamed, remove the stale nodes (headers in folders without source files)
|
|
# this will break the order calculation for headers created during the build in the source directory (should be uncommon)
|
|
# the behaviour will differ when top != out
|
|
for x in bld.node_deps.get(self.uid(), []):
|
|
if not x.is_bld() and not x.exists():
|
|
try:
|
|
del x.parent.children[x.name]
|
|
except KeyError:
|
|
pass
|
|
del bld.imp_sigs[key]
|
|
raise Errors.TaskRescan('rescan')
|
|
|
|
# no previous run or the signature of the dependencies has changed, rescan the dependencies
|
|
(bld.node_deps[key], bld.raw_deps[key]) = self.scan()
|
|
if Logs.verbose:
|
|
Logs.debug('deps: scanner for %s: %r; unresolved: %r', self, bld.node_deps[key], bld.raw_deps[key])
|
|
|
|
# recompute the signature and return it
|
|
try:
|
|
bld.imp_sigs[key] = self.compute_sig_implicit_deps()
|
|
except EnvironmentError:
|
|
for k in bld.node_deps.get(self.uid(), []):
|
|
if not k.exists():
|
|
Logs.warn('Dependency %r for %r is missing: check the task declaration and the build order!', k, self)
|
|
raise
|
|
|
|
def compute_sig_implicit_deps(self):
|
|
"""
|
|
Used by :py:meth:`waflib.Task.Task.sig_implicit_deps` for computing the actual hash of the
|
|
:py:class:`waflib.Node.Node` returned by the scanner.
|
|
"""
|
|
upd = self.m.update
|
|
self.are_implicit_nodes_ready()
|
|
|
|
# scanner returns a node that does not have a signature
|
|
# just *ignore* the error and let them figure out from the compiler output
|
|
# waf -k behaviour
|
|
for k in self.generator.bld.node_deps.get(self.uid(), []):
|
|
upd(k.get_bld_sig())
|
|
return self.m.digest()
|
|
|
|
def are_implicit_nodes_ready(self):
|
|
"""
|
|
For each node returned by the scanner, see if there is a task behind it, and force the build order
|
|
|
|
Low performance impact on null builds (1.86s->1.66s) thanks to caching (28s->1.86s)
|
|
"""
|
|
bld = self.generator.bld
|
|
try:
|
|
cache = bld.dct_implicit_nodes
|
|
except AttributeError:
|
|
bld.dct_implicit_nodes = cache = {}
|
|
|
|
# one cache per build group
|
|
try:
|
|
dct = cache[bld.cur]
|
|
except KeyError:
|
|
dct = cache[bld.cur] = {}
|
|
for tsk in bld.cur_tasks:
|
|
for x in tsk.outputs:
|
|
dct[x] = tsk
|
|
|
|
modified = False
|
|
for x in bld.node_deps.get(self.uid(), []):
|
|
if x in dct:
|
|
self.run_after.add(dct[x])
|
|
modified = True
|
|
|
|
if modified:
|
|
for tsk in self.run_after:
|
|
if not tsk.hasrun:
|
|
#print "task is not ready..."
|
|
raise Errors.TaskNotReady('not ready')
|
|
if sys.hexversion > 0x3000000:
|
|
def uid(self):
|
|
try:
|
|
return self.uid_
|
|
except AttributeError:
|
|
m = Utils.md5(self.__class__.__name__.encode('iso8859-1', 'xmlcharrefreplace'))
|
|
up = m.update
|
|
for x in self.inputs + self.outputs:
|
|
up(x.abspath().encode('iso8859-1', 'xmlcharrefreplace'))
|
|
self.uid_ = m.digest()
|
|
return self.uid_
|
|
uid.__doc__ = Task.uid.__doc__
|
|
Task.uid = uid
|
|
|
|
def is_before(t1, t2):
|
|
"""
|
|
Return a non-zero value if task t1 is to be executed before task t2::
|
|
|
|
t1.ext_out = '.h'
|
|
t2.ext_in = '.h'
|
|
t2.after = ['t1']
|
|
t1.before = ['t2']
|
|
waflib.Task.is_before(t1, t2) # True
|
|
|
|
:param t1: task
|
|
:type t1: :py:class:`waflib.Task.TaskBase`
|
|
:param t2: task
|
|
:type t2: :py:class:`waflib.Task.TaskBase`
|
|
"""
|
|
to_list = Utils.to_list
|
|
for k in to_list(t2.ext_in):
|
|
if k in to_list(t1.ext_out):
|
|
return 1
|
|
|
|
if t1.__class__.__name__ in to_list(t2.after):
|
|
return 1
|
|
|
|
if t2.__class__.__name__ in to_list(t1.before):
|
|
return 1
|
|
|
|
return 0
|
|
|
|
def set_file_constraints(tasks):
|
|
"""
|
|
Adds tasks to the task 'run_after' attribute based on the task inputs and outputs
|
|
|
|
:param tasks: tasks
|
|
:type tasks: list of :py:class:`waflib.Task.TaskBase`
|
|
"""
|
|
ins = Utils.defaultdict(set)
|
|
outs = Utils.defaultdict(set)
|
|
for x in tasks:
|
|
for a in getattr(x, 'inputs', []) + getattr(x, 'dep_nodes', []):
|
|
ins[id(a)].add(x)
|
|
for a in getattr(x, 'outputs', []):
|
|
outs[id(a)].add(x)
|
|
|
|
links = set(ins.keys()).intersection(outs.keys())
|
|
for k in links:
|
|
for a in ins[k]:
|
|
a.run_after.update(outs[k])
|
|
|
|
def set_precedence_constraints(tasks):
|
|
"""
|
|
Add tasks to the task 'run_after' attribute based on the after/before/ext_out/ext_in attributes
|
|
|
|
:param tasks: tasks
|
|
:type tasks: list of :py:class:`waflib.Task.TaskBase`
|
|
"""
|
|
cstr_groups = Utils.defaultdict(list)
|
|
for x in tasks:
|
|
h = x.hash_constraints()
|
|
cstr_groups[h].append(x)
|
|
|
|
keys = list(cstr_groups.keys())
|
|
maxi = len(keys)
|
|
|
|
# this list should be short
|
|
for i in range(maxi):
|
|
t1 = cstr_groups[keys[i]][0]
|
|
for j in range(i + 1, maxi):
|
|
t2 = cstr_groups[keys[j]][0]
|
|
|
|
# add the constraints based on the comparisons
|
|
if is_before(t1, t2):
|
|
a = i
|
|
b = j
|
|
elif is_before(t2, t1):
|
|
a = j
|
|
b = i
|
|
else:
|
|
continue
|
|
|
|
aval = set(cstr_groups[keys[a]])
|
|
for x in cstr_groups[keys[b]]:
|
|
x.run_after.update(aval)
|
|
|
|
def funex(c):
|
|
"""
|
|
Compile a function by 'exec'
|
|
|
|
:param c: function to compile
|
|
:type c: string
|
|
:return: the function 'f' declared in the input string
|
|
:rtype: function
|
|
"""
|
|
dc = {}
|
|
exec(c, dc)
|
|
return dc['f']
|
|
|
|
re_cond = re.compile('(?P<var>\w+)|(?P<or>\|)|(?P<and>&)')
|
|
re_novar = re.compile(r'^(SRC|TGT)\W+.*?$')
|
|
reg_act = re.compile(r'(?P<backslash>\\)|(?P<dollar>\$\$)|(?P<subst>\$\{(?P<var>\w+)(?P<code>.*?)\})', re.M)
|
|
def compile_fun_shell(line):
|
|
"""
|
|
Create a compiled function to execute a process with the shell
|
|
WARNING: this method may disappear anytime, so use compile_fun instead
|
|
"""
|
|
|
|
extr = []
|
|
def repl(match):
|
|
g = match.group
|
|
if g('dollar'): return "$"
|
|
elif g('backslash'): return '\\\\'
|
|
elif g('subst'): extr.append((g('var'), g('code'))); return "%s"
|
|
return None
|
|
line = reg_act.sub(repl, line) or line
|
|
|
|
def replc(m):
|
|
# performs substitutions and populates dvars
|
|
if m.group('and'):
|
|
return ' and '
|
|
elif m.group('or'):
|
|
return ' or '
|
|
else:
|
|
x = m.group('var')
|
|
if x not in dvars:
|
|
dvars.append(x)
|
|
return 'env[%r]' % x
|
|
|
|
parm = []
|
|
dvars = []
|
|
app = parm.append
|
|
for (var, meth) in extr:
|
|
if var == 'SRC':
|
|
if meth: app('tsk.inputs%s' % meth)
|
|
else: app('" ".join([a.path_from(cwdx) for a in tsk.inputs])')
|
|
elif var == 'TGT':
|
|
if meth: app('tsk.outputs%s' % meth)
|
|
else: app('" ".join([a.path_from(cwdx) for a in tsk.outputs])')
|
|
elif meth:
|
|
if meth.startswith(':'):
|
|
if var not in dvars:
|
|
dvars.append(var)
|
|
m = meth[1:]
|
|
if m == 'SRC':
|
|
m = '[a.path_from(cwdx) for a in tsk.inputs]'
|
|
elif m == 'TGT':
|
|
m = '[a.path_from(cwdx) for a in tsk.outputs]'
|
|
elif re_novar.match(m):
|
|
m = '[tsk.inputs%s]' % m[3:]
|
|
elif re_novar.match(m):
|
|
m = '[tsk.outputs%s]' % m[3:]
|
|
elif m[:3] not in ('tsk', 'gen', 'bld'):
|
|
dvars.append(meth[1:])
|
|
m = '%r' % m
|
|
app('" ".join(tsk.colon(%r, %s))' % (var, m))
|
|
elif meth.startswith('?'):
|
|
# In A?B|C output env.A if one of env.B or env.C is non-empty
|
|
expr = re_cond.sub(replc, meth[1:])
|
|
app('p(%r) if (%s) else ""' % (var, expr))
|
|
else:
|
|
app('%s%s' % (var, meth))
|
|
else:
|
|
if var not in dvars:
|
|
dvars.append(var)
|
|
app("p('%s')" % var)
|
|
if parm: parm = "%% (%s) " % (',\n\t\t'.join(parm))
|
|
else: parm = ''
|
|
|
|
c = COMPILE_TEMPLATE_SHELL % (line, parm)
|
|
Logs.debug('action: %s', c.strip().splitlines())
|
|
return (funex(c), dvars)
|
|
|
|
reg_act_noshell = re.compile(r"(?P<space>\s+)|(?P<subst>\$\{(?P<var>\w+)(?P<code>.*?)\})|(?P<text>\S+)", re.M)
|
|
def compile_fun_noshell(line):
|
|
"""
|
|
Create a compiled function to execute a process without the shell
|
|
WARNING: this method may disappear anytime, so use compile_fun instead
|
|
"""
|
|
buf = []
|
|
dvars = []
|
|
merge = False
|
|
app = buf.append
|
|
|
|
def replc(m):
|
|
# performs substitutions and populates dvars
|
|
if m.group('and'):
|
|
return ' and '
|
|
elif m.group('or'):
|
|
return ' or '
|
|
else:
|
|
x = m.group('var')
|
|
if x not in dvars:
|
|
dvars.append(x)
|
|
return 'env[%r]' % x
|
|
|
|
for m in reg_act_noshell.finditer(line):
|
|
if m.group('space'):
|
|
merge = False
|
|
continue
|
|
elif m.group('text'):
|
|
app('[%r]' % m.group('text'))
|
|
elif m.group('subst'):
|
|
var = m.group('var')
|
|
code = m.group('code')
|
|
if var == 'SRC':
|
|
if code:
|
|
app('[tsk.inputs%s]' % code)
|
|
else:
|
|
app('[a.path_from(cwdx) for a in tsk.inputs]')
|
|
elif var == 'TGT':
|
|
if code:
|
|
app('[tsk.outputs%s]' % code)
|
|
else:
|
|
app('[a.path_from(cwdx) for a in tsk.outputs]')
|
|
elif code:
|
|
if code.startswith(':'):
|
|
# a composed variable ${FOO:OUT}
|
|
if not var in dvars:
|
|
dvars.append(var)
|
|
m = code[1:]
|
|
if m == 'SRC':
|
|
m = '[a.path_from(cwdx) for a in tsk.inputs]'
|
|
elif m == 'TGT':
|
|
m = '[a.path_from(cwdx) for a in tsk.outputs]'
|
|
elif re_novar.match(m):
|
|
m = '[tsk.inputs%s]' % m[3:]
|
|
elif re_novar.match(m):
|
|
m = '[tsk.outputs%s]' % m[3:]
|
|
elif m[:3] not in ('tsk', 'gen', 'bld'):
|
|
dvars.append(m)
|
|
m = '%r' % m
|
|
app('tsk.colon(%r, %s)' % (var, m))
|
|
elif code.startswith('?'):
|
|
# In A?B|C output env.A if one of env.B or env.C is non-empty
|
|
expr = re_cond.sub(replc, code[1:])
|
|
app('to_list(env[%r] if (%s) else [])' % (var, expr))
|
|
else:
|
|
# plain code such as ${tsk.inputs[0].abspath()}
|
|
app('gen.to_list(%s%s)' % (var, code))
|
|
else:
|
|
# a plain variable such as # a plain variable like ${AR}
|
|
app('to_list(env[%r])' % var)
|
|
if not var in dvars:
|
|
dvars.append(var)
|
|
if merge:
|
|
tmp = 'merge(%s, %s)' % (buf[-2], buf[-1])
|
|
del buf[-1]
|
|
buf[-1] = tmp
|
|
merge = True # next turn
|
|
|
|
buf = ['lst.extend(%s)' % x for x in buf]
|
|
fun = COMPILE_TEMPLATE_NOSHELL % "\n\t".join(buf)
|
|
Logs.debug('action: %s', fun.strip().splitlines())
|
|
return (funex(fun), dvars)
|
|
|
|
def compile_fun(line, shell=False):
|
|
"""
|
|
Parse a string expression such as "${CC} ${SRC} -o ${TGT}" and return a pair containing:
|
|
|
|
* the function created (compiled) for use as :py:meth:`waflib.Task.TaskBase.run`
|
|
* the list of variables that imply a dependency from self.env
|
|
|
|
for example::
|
|
|
|
from waflib.Task import compile_fun
|
|
compile_fun('cxx', '${CXX} -o ${TGT[0]} ${SRC} -I ${SRC[0].parent.bldpath()}')
|
|
|
|
def build(bld):
|
|
bld(source='wscript', rule='echo "foo\\${SRC[0].name}\\bar"')
|
|
|
|
The env variables (CXX, ..) on the task must not hold dicts (order)
|
|
The reserved keywords *TGT* and *SRC* represent the task input and output nodes
|
|
|
|
"""
|
|
if isinstance(line, str):
|
|
if line.find('<') > 0 or line.find('>') > 0 or line.find('&&') > 0:
|
|
shell = True
|
|
else:
|
|
dvars_lst = []
|
|
funs_lst = []
|
|
for x in line:
|
|
if isinstance(x, str):
|
|
fun, dvars = compile_fun(x, shell)
|
|
dvars_lst += dvars
|
|
funs_lst.append(fun)
|
|
else:
|
|
# assume a function to let through
|
|
funs_lst.append(x)
|
|
def composed_fun(task):
|
|
for x in funs_lst:
|
|
ret = x(task)
|
|
if ret:
|
|
return ret
|
|
return None
|
|
return composed_fun, dvars
|
|
if shell:
|
|
return compile_fun_shell(line)
|
|
else:
|
|
return compile_fun_noshell(line)
|
|
|
|
def task_factory(name, func=None, vars=None, color='GREEN', ext_in=[], ext_out=[], before=[], after=[], shell=False, scan=None):
|
|
"""
|
|
Returns a new task subclass with the function ``run`` compiled from the line given.
|
|
|
|
:param func: method run
|
|
:type func: string or function
|
|
:param vars: list of variables to hash
|
|
:type vars: list of string
|
|
:param color: color to use
|
|
:type color: string
|
|
:param shell: when *func* is a string, enable/disable the use of the shell
|
|
:type shell: bool
|
|
:param scan: method scan
|
|
:type scan: function
|
|
:rtype: :py:class:`waflib.Task.Task`
|
|
"""
|
|
|
|
params = {
|
|
'vars': vars or [], # function arguments are static, and this one may be modified by the class
|
|
'color': color,
|
|
'name': name,
|
|
'ext_in': Utils.to_list(ext_in),
|
|
'ext_out': Utils.to_list(ext_out),
|
|
'before': Utils.to_list(before),
|
|
'after': Utils.to_list(after),
|
|
'shell': shell,
|
|
'scan': scan,
|
|
}
|
|
|
|
if isinstance(func, str) or isinstance(func, tuple):
|
|
params['run_str'] = func
|
|
else:
|
|
params['run'] = func
|
|
|
|
cls = type(Task)(name, (Task,), params)
|
|
global classes
|
|
classes[name] = cls
|
|
return cls
|
|
|
|
|
|
def always_run(cls):
|
|
"""
|
|
Task class decorator, to be removed in waf 2.0
|
|
|
|
Set all task instances of this class to be executed whenever a build is started
|
|
The task signature is calculated, but the result of the comparison between
|
|
task signatures is bypassed
|
|
"""
|
|
Logs.warn('This decorator is deprecated, set always_run on the task class instead!')
|
|
cls.always_run = True
|
|
return cls
|
|
|
|
def update_outputs(cls):
|
|
"""
|
|
Obsolete, to be removed in waf 2.0
|
|
"""
|
|
return cls
|
|
|