1 # a waf tool to add autoconf-like macros to the configure section
2 # and for SAMBA_ macros for building libraries, binaries etc
4 import Build
, os
, sys
, Options
, Utils
, Task
, re
, fnmatch
, Logs
5 from TaskGen
import feature
, before
6 from Configure
import conf
, ConfigurationContext
10 # TODO: make this a --option
14 # sigh, python octal constants are a mess
15 MODE_644
= int('644', 8)
16 MODE_755
= int('755', 8)
19 def SET_TARGET_TYPE(ctx
, target
, value
):
20 '''set the target type of a target'''
21 cache
= LOCAL_CACHE(ctx
, 'TARGET_TYPE')
22 if target
in cache
and cache
[target
] != 'EMPTY':
23 Logs
.error("ERROR: Target '%s' in directory %s re-defined as %s - was %s" % (target
, ctx
.curdir
, value
, cache
[target
]))
25 LOCAL_CACHE_SET(ctx
, 'TARGET_TYPE', target
, value
)
26 debug("task_gen: Target '%s' created of type '%s' in %s" % (target
, value
, ctx
.curdir
))
30 def GET_TARGET_TYPE(ctx
, target
):
31 '''get target type from cache'''
32 cache
= LOCAL_CACHE(ctx
, 'TARGET_TYPE')
33 if not target
in cache
:
38 ######################################################
39 # this is used as a decorator to make functions only
40 # run once. Based on the idea from
41 # http://stackoverflow.com/questions/815110/is-there-a-decorator-to-simply-cache-function-return-values
43 def runonce(function
):
44 def runonce_wrapper(*args
):
45 if args
in runonce_ret
:
46 return runonce_ret
[args
]
49 runonce_ret
[args
] = ret
51 return runonce_wrapper
54 def ADD_LD_LIBRARY_PATH(path
):
55 '''add something to LD_LIBRARY_PATH'''
56 if 'LD_LIBRARY_PATH' in os
.environ
:
57 oldpath
= os
.environ
['LD_LIBRARY_PATH']
60 newpath
= oldpath
.split(':')
61 if not path
in newpath
:
63 os
.environ
['LD_LIBRARY_PATH'] = ':'.join(newpath
)
66 def needs_private_lib(bld
, target
):
67 '''return True if a target links to a private library'''
68 for lib
in getattr(target
, "final_libs", []):
69 t
= bld
.name_to_obj(lib
, bld
.env
)
70 if t
and getattr(t
, 'private_library', False):
75 def install_rpath(target
):
76 '''the rpath value for installation'''
80 if bld
.env
.RPATH_ON_INSTALL
:
81 ret
.add(bld
.EXPAND_VARIABLES(bld
.env
.LIBDIR
))
82 if bld
.env
.RPATH_ON_INSTALL_PRIVATE
and needs_private_lib(bld
, target
):
83 ret
.add(bld
.EXPAND_VARIABLES(bld
.env
.PRIVATELIBDIR
))
88 '''the rpath value for build'''
89 rpaths
= [os
.path
.normpath('%s/%s' % (bld
.env
.BUILD_DIRECTORY
, d
)) for d
in ("shared", "shared/private")]
91 if bld
.env
.RPATH_ON_BUILD
:
94 ADD_LD_LIBRARY_PATH(rpath
)
99 def LOCAL_CACHE(ctx
, name
):
100 '''return a named build cache dictionary, used to store
101 state inside other functions'''
109 def LOCAL_CACHE_SET(ctx
, cachename
, key
, value
):
110 '''set a value in a local cache'''
111 cache
= LOCAL_CACHE(ctx
, cachename
)
116 def ASSERT(ctx
, expression
, msg
):
117 '''a build assert call'''
119 raise Utils
.WafError("ERROR: %s\n" % msg
)
120 Build
.BuildContext
.ASSERT
= ASSERT
123 def SUBDIR(bld
, subdir
, list):
124 '''create a list of files by pre-pending each with a subdir name'''
126 for l
in TO_LIST(list):
127 ret
= ret
+ os
.path
.normpath(os
.path
.join(subdir
, l
)) + ' '
129 Build
.BuildContext
.SUBDIR
= SUBDIR
132 def dict_concat(d1
, d2
):
133 '''concatenate two dictionaries d1 += d2'''
139 def exec_command(self
, cmd
, **kw
):
140 '''this overrides the 'waf -v' debug output to be in a nice
141 unix like format instead of a python list.
142 Thanks to ita on #waf for this'''
145 if isinstance(cmd
, list):
147 debug('runner: %s' % _cmd
)
149 self
.log
.write('%s\n' % cmd
)
152 if not kw
.get('cwd', None):
154 except AttributeError:
155 self
.cwd
= kw
['cwd'] = self
.bldnode
.abspath()
156 return Utils
.exec_command(cmd
, **kw
)
157 Build
.BuildContext
.exec_command
= exec_command
160 def ADD_COMMAND(opt
, name
, function
):
161 '''add a new top level command to waf'''
162 Utils
.g_module
.__dict
__[name
] = function
164 Options
.Handler
.ADD_COMMAND
= ADD_COMMAND
167 @feature('cc', 'cshlib', 'cprogram')
168 @before('apply_core','exec_rule')
169 def process_depends_on(self
):
170 '''The new depends_on attribute for build rules
171 allow us to specify a dependency on output from
172 a source generation rule'''
173 if getattr(self
, 'depends_on', None):
174 lst
= self
.to_list(self
.depends_on
)
176 y
= self
.bld
.name_to_obj(x
, self
.env
)
177 self
.bld
.ASSERT(y
is not None, "Failed to find dependency %s of %s" % (x
, self
.name
))
179 if getattr(y
, 'more_includes', None):
180 self
.includes
+= " " + y
.more_includes
183 os_path_relpath
= getattr(os
.path
, 'relpath', None)
184 if os_path_relpath
is None:
185 # Python < 2.6 does not have os.path.relpath, provide a replacement
186 # (imported from Python2.6.5~rc2)
187 def os_path_relpath(path
, start
):
188 """Return a relative version of a path"""
189 start_list
= os
.path
.abspath(start
).split("/")
190 path_list
= os
.path
.abspath(path
).split("/")
192 # Work out how much of the filepath is shared by start and path.
193 i
= len(os
.path
.commonprefix([start_list
, path_list
]))
195 rel_list
= ['..'] * (len(start_list
)-i
) + path_list
[i
:]
198 return os
.path
.join(*rel_list
)
201 def unique_list(seq
):
202 '''return a uniquified list in the same order as the existing list'''
206 if item
in seen
: continue
212 def TO_LIST(str, delimiter
=None):
213 '''Split a list, preserving quoted strings and existing lists'''
216 if isinstance(str, list):
220 lst
= str.split(delimiter
)
221 # the string may have had quotes in it, now we
222 # check if we did have quotes, and use the slower shlex
226 return shlex
.split(str)
230 def subst_vars_error(string
, env
):
231 '''substitute vars, throw an error if a variable is not defined'''
232 lst
= re
.split('(\$\{\w+\})', string
)
235 if re
.match('\$\{\w+\}', v
):
238 raise KeyError("Failed to find variable %s in %s" % (vname
, string
))
245 def SUBST_ENV_VAR(ctx
, varname
):
246 '''Substitute an environment variable for any embedded variables'''
247 return subst_vars_error(ctx
.env
[varname
], ctx
.env
)
248 Build
.BuildContext
.SUBST_ENV_VAR
= SUBST_ENV_VAR
251 def ENFORCE_GROUP_ORDERING(bld
):
252 '''enforce group ordering for the project. This
253 makes the group ordering apply only when you specify
254 a target with --target'''
255 if Options
.options
.compile_targets
:
257 @before('exec_rule', 'apply_core', 'collect')
258 def force_previous_groups(self
):
259 if getattr(self
.bld
, 'enforced_group_ordering', False) == True:
261 self
.bld
.enforced_group_ordering
= True
264 tm
= self
.bld
.task_manager
265 return [x
for x
in tm
.groups_names
if id(tm
.groups_names
[x
]) == id(g
)][0]
270 for g
in bld
.task_manager
.groups
:
271 for t
in g
.tasks_gen
:
274 debug('group: Forcing up to group %s for target %s',
275 group_name(g
), self
.name
or self
.target
)
282 for i
in xrange(len(bld
.task_manager
.groups
)):
283 g
= bld
.task_manager
.groups
[i
]
284 bld
.task_manager
.current_group
= i
287 debug('group: Forcing group %s', group_name(g
))
288 for t
in g
.tasks_gen
:
289 if not getattr(t
, 'forced_groups', False):
290 debug('group: Posting %s', t
.name
or t
.target
)
291 t
.forced_groups
= True
293 Build
.BuildContext
.ENFORCE_GROUP_ORDERING
= ENFORCE_GROUP_ORDERING
296 def recursive_dirlist(dir, relbase
, pattern
=None):
297 '''recursive directory list'''
299 for f
in os
.listdir(dir):
301 if os
.path
.isdir(f2
):
302 ret
.extend(recursive_dirlist(f2
, relbase
))
304 if pattern
and not fnmatch
.fnmatch(f
, pattern
):
306 ret
.append(os_path_relpath(f2
, relbase
))
314 if dir.endswith("/"):
317 if os
.path
.isdir(dir):
319 mkdir_p(os
.path
.dirname(dir))
323 def SUBST_VARS_RECURSIVE(string
, env
):
324 '''recursively expand variables'''
328 while (string
.find('${') != -1 and limit
> 0):
329 string
= subst_vars_error(string
, env
)
335 def EXPAND_VARIABLES(ctx
, varstr
, vars=None):
336 '''expand variables from a user supplied dictionary
338 This is most useful when you pass vars=locals() to expand
339 all your local variables in strings
342 if isinstance(varstr
, list):
345 ret
.append(EXPAND_VARIABLES(ctx
, s
, vars=vars))
348 if not isinstance(varstr
, str):
352 env
= Environment
.Environment()
354 # substitute on user supplied dict if avaiilable
356 for v
in vars.keys():
358 ret
= SUBST_VARS_RECURSIVE(ret
, env
)
360 # if anything left, subst on the environment as well
361 if ret
.find('${') != -1:
362 ret
= SUBST_VARS_RECURSIVE(ret
, ctx
.env
)
363 # make sure there is nothing left. Also check for the common
364 # typo of $( instead of ${
365 if ret
.find('${') != -1 or ret
.find('$(') != -1:
366 Logs
.error('Failed to substitute all variables in varstr=%s' % ret
)
369 Build
.BuildContext
.EXPAND_VARIABLES
= EXPAND_VARIABLES
375 '''run a external command, return exit code or signal'''
377 cmd
= SUBST_VARS_RECURSIVE(cmd
, env
)
379 status
= os
.system(cmd
)
380 if os
.WIFEXITED(status
):
381 return os
.WEXITSTATUS(status
)
382 if os
.WIFSIGNALED(status
):
383 return - os
.WTERMSIG(status
)
384 Logs
.error("Unknown exit reason %d for command: %s" (status
, cmd
))
388 # make sure we have md5. some systems don't have it
390 from hashlib
import md5
396 Constants
.SIG_NIL
= hash('abcd')
397 class replace_md5(object):
400 def update(self
, val
):
401 self
.val
= hash((self
.val
, val
))
405 return self
.digest().encode('hex')
406 def replace_h_file(filename
):
407 f
= open(filename
, 'rb')
410 filename
= f
.read(100000)
414 Utils
.md5
= replace_md5
415 Task
.md5
= replace_md5
416 Utils
.h_file
= replace_h_file
419 def LOAD_ENVIRONMENT():
420 '''load the configuration environment, allowing access to env vars
423 env
= Environment
.Environment()
425 env
.load('.lock-wscript')
426 env
.load(env
.blddir
+ '/c4che/default.cache.py')
432 def IS_NEWER(bld
, file1
, file2
):
433 '''return True if file1 is newer than file2'''
434 t1
= os
.stat(os
.path
.join(bld
.curdir
, file1
)).st_mtime
435 t2
= os
.stat(os
.path
.join(bld
.curdir
, file2
)).st_mtime
437 Build
.BuildContext
.IS_NEWER
= IS_NEWER
441 def RECURSE(ctx
, directory
):
442 '''recurse into a directory, relative to the curdir or top level'''
444 visited_dirs
= ctx
.visited_dirs
446 visited_dirs
= ctx
.visited_dirs
= set()
447 d
= os
.path
.join(ctx
.curdir
, directory
)
448 if os
.path
.exists(d
):
449 abspath
= os
.path
.abspath(d
)
451 abspath
= os
.path
.abspath(os
.path
.join(Utils
.g_module
.srcdir
, directory
))
452 ctxclass
= ctx
.__class
__.__name
__
453 key
= ctxclass
+ ':' + abspath
454 if key
in visited_dirs
:
457 visited_dirs
.add(key
)
458 relpath
= os_path_relpath(abspath
, ctx
.curdir
)
459 if ctxclass
== 'Handler':
460 return ctx
.sub_options(relpath
)
461 if ctxclass
== 'ConfigurationContext':
462 return ctx
.sub_config(relpath
)
463 if ctxclass
== 'BuildContext':
464 return ctx
.add_subdirs(relpath
)
465 Logs
.error('Unknown RECURSE context class', ctxclass
)
467 Options
.Handler
.RECURSE
= RECURSE
468 Build
.BuildContext
.RECURSE
= RECURSE
471 def CHECK_MAKEFLAGS(bld
):
472 '''check for MAKEFLAGS environment variable in case we are being
473 called from a Makefile try to honor a few make command line flags'''
474 if not 'WAF_MAKE' in os
.environ
:
476 makeflags
= os
.environ
.get('MAKEFLAGS')
477 if makeflags
is None:
480 # we need to use shlex.split to cope with the escaping of spaces
482 for opt
in shlex
.split(makeflags
):
483 # options can come either as -x or as x
485 Options
.options
.verbose
= Logs
.verbose
= int(opt
[2:])
487 Logs
.zones
= ['runner']
490 elif opt
[0].isupper() and opt
.find('=') != -1:
491 # this allows us to set waf options on the make command line
492 # for example, if you do "make FOO=blah", then we set the
493 # option 'FOO' in Options.options, to blah. If you look in wafsamba/wscript
494 # you will see that the command line accessible options have their dest=
495 # set to uppercase, to allow for passing of options from make in this way
496 # this is also how "make test TESTS=testpattern" works, and
497 # "make VERBOSE=1" as well as things like "make SYMBOLCHECK=1"
499 setattr(Options
.options
, opt
[0:loc
], opt
[loc
+1:])
505 Options
.options
.keep
= True
509 Options
.options
.keep
= True
512 Options
.options
.jobs
= 1
514 Build
.BuildContext
.CHECK_MAKEFLAGS
= CHECK_MAKEFLAGS
518 def option_group(opt
, name
):
519 '''find or create an option group'''
521 if name
in option_groups
:
522 return option_groups
[name
]
523 gr
= opt
.add_option_group(name
)
524 option_groups
[name
] = gr
526 Options
.Handler
.option_group
= option_group
529 def save_file(filename
, contents
, create_dir
=False):
530 '''save data to a file'''
532 mkdir_p(os
.path
.dirname(filename
))
534 f
= open(filename
, 'w')
542 def load_file(filename
):
543 '''return contents of a file'''
545 f
= open(filename
, 'r')
553 def reconfigure(ctx
):
554 '''rerun configure if necessary'''
555 import Configure
, samba_wildcard
, Scripting
556 if not os
.path
.exists(".lock-wscript"):
557 raise Utils
.WafError('configure has not been run')
558 bld
= samba_wildcard
.fake_build_environment()
559 Configure
.autoconfig
= True
560 Scripting
.check_configured(bld
)
563 def map_shlib_extension(ctx
, name
, python
=False):
564 '''map a filename with a shared library extension of .so to the real shlib name'''
567 if name
[-1:].isdigit():
568 # some libraries have specified versions in the wscript rule
570 (root1
, ext1
) = os
.path
.splitext(name
)
572 (root2
, ext2
) = os
.path
.splitext(ctx
.env
.pyext_PATTERN
)
574 (root2
, ext2
) = os
.path
.splitext(ctx
.env
.shlib_PATTERN
)
576 Build
.BuildContext
.map_shlib_extension
= map_shlib_extension
578 def apply_pattern(filename
, pattern
):
579 '''apply a filename pattern to a filename that may have a directory component'''
580 dirname
= os
.path
.dirname(filename
)
582 return pattern
% filename
583 basename
= os
.path
.basename(filename
)
584 return os
.path
.join(dirname
, pattern
% basename
)
586 def make_libname(ctx
, name
, nolibprefix
=False, version
=None, python
=False):
587 """make a library filename
589 nolibprefix: don't include the lib prefix
590 version : add a version number
591 python : if we should use python module name conventions"""
594 libname
= apply_pattern(name
, ctx
.env
.pyext_PATTERN
)
596 libname
= apply_pattern(name
, ctx
.env
.shlib_PATTERN
)
597 if nolibprefix
and libname
[0:3] == 'lib':
598 libname
= libname
[3:]
600 if version
[0] == '.':
601 version
= version
[1:]
602 (root
, ext
) = os
.path
.splitext(libname
)
604 # special case - version goes before the prefix
605 libname
= "%s.%s%s" % (root
, version
, ext
)
607 libname
= "%s%s.%s" % (root
, ext
, version
)
609 Build
.BuildContext
.make_libname
= make_libname
612 def get_tgt_list(bld
):
613 '''return a list of build objects for samba'''
615 targets
= LOCAL_CACHE(bld
, 'TARGET_TYPE')
617 # build a list of task generators we are interested in
621 if not type in ['SUBSYSTEM', 'MODULE', 'BINARY', 'LIBRARY', 'ASN1', 'PYTHON']:
623 t
= bld
.name_to_obj(tgt
, bld
.env
)
625 Logs
.error("Target %s of type %s has no task generator" % (tgt
, type))
630 from Constants
import WSCRIPT_FILE
631 def PROCESS_SEPARATE_RULE(self
, rule
):
632 ''' cause waf to process additional script based on `rule'.
633 You should have file named wscript_<stage>_rule in the current directory
634 where stage is either 'configure' or 'build'
636 ctxclass
= self
.__class
__.__name
__
638 if ctxclass
== 'ConfigurationContext':
640 elif ctxclass
== 'BuildContext':
642 file_path
= os
.path
.join(self
.curdir
, WSCRIPT_FILE
+'_'+stage
+'_'+rule
)
643 txt
= load_file(file_path
)
646 if getattr(self
.__class
__, 'pre_recurse', None):
647 dc
= self
.pre_recurse(txt
, file_path
, self
.curdir
)
648 exec(compile(txt
, file_path
, 'exec'), dc
)
649 if getattr(self
.__class
__, 'post_recurse', None):
650 dc
= self
.post_recurse(txt
, file_path
, self
.curdir
)
652 Build
.BuildContext
.PROCESS_SEPARATE_RULE
= PROCESS_SEPARATE_RULE
653 ConfigurationContext
.PROCESS_SEPARATE_RULE
= PROCESS_SEPARATE_RULE
655 def AD_DC_BUILD_IS_ENABLED(self
):
656 if self
.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'):
660 Build
.BuildContext
.AD_DC_BUILD_IS_ENABLED
= AD_DC_BUILD_IS_ENABLED