f0360688ba0e5b28d276d8c8c40ebb8f9aa1ab66
[obnox/samba/samba-obnox.git] / buildtools / wafsamba / samba_utils.py
1 # a waf tool to add autoconf-like macros to the configure section
2 # and for SAMBA_ macros for building libraries, binaries etc
3
4 import Build, os, sys, Options, Utils, Task, re, fnmatch, Logs
5 from TaskGen import feature, before
6 from Configure import conf
7 from Logs import debug
8 import shlex
9
10 # TODO: make this a --option
11 LIB_PATH="shared"
12
13
14 @conf
15 def SET_TARGET_TYPE(ctx, target, value):
16     '''set the target type of a target'''
17     cache = LOCAL_CACHE(ctx, 'TARGET_TYPE')
18     if target in cache and cache[target] != 'EMPTY':
19         Logs.error("ERROR: Target '%s' in directory %s re-defined as %s - was %s" % (target,
20                                                                                      ctx.curdir,
21                                                                                      value, cache[target]))
22         sys.exit(1)
23     LOCAL_CACHE_SET(ctx, 'TARGET_TYPE', target, value)
24     debug("task_gen: Target '%s' created of type '%s' in %s" % (target, value, ctx.curdir))
25     return True
26
27
28 def GET_TARGET_TYPE(ctx, target):
29     '''get target type from cache'''
30     cache = LOCAL_CACHE(ctx, 'TARGET_TYPE')
31     if not target in cache:
32         return None
33     return cache[target]
34
35
36 ######################################################
37 # this is used as a decorator to make functions only
38 # run once. Based on the idea from
39 # http://stackoverflow.com/questions/815110/is-there-a-decorator-to-simply-cache-function-return-values
40 runonce_ret = {}
41 def runonce(function):
42     def runonce_wrapper(*args):
43         if args in runonce_ret:
44             return runonce_ret[args]
45         else:
46             ret = function(*args)
47             runonce_ret[args] = ret
48             return ret
49     return runonce_wrapper
50
51
52 def ADD_LD_LIBRARY_PATH(path):
53     '''add something to LD_LIBRARY_PATH'''
54     if 'LD_LIBRARY_PATH' in os.environ:
55         oldpath = os.environ['LD_LIBRARY_PATH']
56     else:
57         oldpath = ''
58     newpath = oldpath.split(':')
59     if not path in newpath:
60         newpath.append(path)
61         os.environ['LD_LIBRARY_PATH'] = ':'.join(newpath)
62
63
64 def install_rpath(bld):
65     '''the rpath value for installation'''
66     bld.env['RPATH'] = []
67     if bld.env.RPATH_ON_INSTALL:
68         return ['%s/lib' % bld.env.PREFIX]
69     return []
70
71
72 def build_rpath(bld):
73     '''the rpath value for build'''
74     rpath = os.path.normpath('%s/%s' % (bld.env.BUILD_DIRECTORY, LIB_PATH))
75     bld.env['RPATH'] = []
76     if bld.env.RPATH_ON_BUILD:
77         return [rpath]
78     ADD_LD_LIBRARY_PATH(rpath)
79     return []
80
81
82 @conf
83 def LOCAL_CACHE(ctx, name):
84     '''return a named build cache dictionary, used to store
85        state inside other functions'''
86     if name in ctx.env:
87         return ctx.env[name]
88     ctx.env[name] = {}
89     return ctx.env[name]
90
91
92 @conf
93 def LOCAL_CACHE_SET(ctx, cachename, key, value):
94     '''set a value in a local cache'''
95     cache = LOCAL_CACHE(ctx, cachename)
96     cache[key] = value
97
98
99 @conf
100 def ASSERT(ctx, expression, msg):
101     '''a build assert call'''
102     if not expression:
103         Logs.error("ERROR: %s\n" % msg)
104         raise AssertionError
105 Build.BuildContext.ASSERT = ASSERT
106
107
108 def SUBDIR(bld, subdir, list):
109     '''create a list of files by pre-pending each with a subdir name'''
110     ret = ''
111     for l in TO_LIST(list):
112         ret = ret + os.path.normpath(os.path.join(subdir, l)) + ' '
113     return ret
114 Build.BuildContext.SUBDIR = SUBDIR
115
116
117 def dict_concat(d1, d2):
118     '''concatenate two dictionaries d1 += d2'''
119     for t in d2:
120         if t not in d1:
121             d1[t] = d2[t]
122
123
124 def exec_command(self, cmd, **kw):
125     '''this overrides the 'waf -v' debug output to be in a nice
126     unix like format instead of a python list.
127     Thanks to ita on #waf for this'''
128     import Utils, Logs
129     _cmd = cmd
130     if isinstance(cmd, list):
131         _cmd = ' '.join(cmd)
132     debug('runner: %s' % _cmd)
133     if self.log:
134         self.log.write('%s\n' % cmd)
135         kw['log'] = self.log
136     try:
137         if not kw.get('cwd', None):
138             kw['cwd'] = self.cwd
139     except AttributeError:
140         self.cwd = kw['cwd'] = self.bldnode.abspath()
141     return Utils.exec_command(cmd, **kw)
142 Build.BuildContext.exec_command = exec_command
143
144
145 def ADD_COMMAND(opt, name, function):
146     '''add a new top level command to waf'''
147     Utils.g_module.__dict__[name] = function
148     opt.name = function
149 Options.Handler.ADD_COMMAND = ADD_COMMAND
150
151
152 @feature('cc', 'cshlib', 'cprogram')
153 @before('apply_core','exec_rule')
154 def process_depends_on(self):
155     '''The new depends_on attribute for build rules
156        allow us to specify a dependency on output from
157        a source generation rule'''
158     if getattr(self , 'depends_on', None):
159         lst = self.to_list(self.depends_on)
160         for x in lst:
161             y = self.bld.name_to_obj(x, self.env)
162             self.bld.ASSERT(y is not None, "Failed to find dependency %s of %s" % (x, self.name))
163             y.post()
164             if getattr(y, 'more_includes', None):
165                   self.includes += " " + y.more_includes
166
167
168 os_path_relpath = getattr(os.path, 'relpath', None)
169 if os_path_relpath is None:
170     # Python < 2.6 does not have os.path.relpath, provide a replacement
171     # (imported from Python2.6.5~rc2)
172     def os_path_relpath(path, start):
173         """Return a relative version of a path"""
174         start_list = os.path.abspath(start).split("/")
175         path_list = os.path.abspath(path).split("/")
176
177         # Work out how much of the filepath is shared by start and path.
178         i = len(os.path.commonprefix([start_list, path_list]))
179
180         rel_list = ['..'] * (len(start_list)-i) + path_list[i:]
181         if not rel_list:
182             return start
183         return os.path.join(*rel_list)
184
185
186 def unique_list(seq):
187     '''return a uniquified list in the same order as the existing list'''
188     seen = {}
189     result = []
190     for item in seq:
191         if item in seen: continue
192         seen[item] = True
193         result.append(item)
194     return result
195
196
197 def TO_LIST(str):
198     '''Split a list, preserving quoted strings and existing lists'''
199     if str is None:
200         return []
201     if isinstance(str, list):
202         return str
203     lst = str.split()
204     # the string may have had quotes in it, now we
205     # check if we did have quotes, and use the slower shlex
206     # if we need to
207     for e in lst:
208         if e[0] == '"':
209             return shlex.split(str)
210     return lst
211
212
213 def subst_vars_error(string, env):
214     '''substitute vars, throw an error if a variable is not defined'''
215     lst = re.split('(\$\{\w+\})', string)
216     out = []
217     for v in lst:
218         if re.match('\$\{\w+\}', v):
219             vname = v[2:-1]
220             if not vname in env:
221                 Logs.error("Failed to find variable %s in %s" % (vname, string))
222                 sys.exit(1)
223             v = env[vname]
224         out.append(v)
225     return ''.join(out)
226
227
228 @conf
229 def SUBST_ENV_VAR(ctx, varname):
230     '''Substitute an environment variable for any embedded variables'''
231     return subst_vars_error(ctx.env[varname], ctx.env)
232 Build.BuildContext.SUBST_ENV_VAR = SUBST_ENV_VAR
233
234
235 def ENFORCE_GROUP_ORDERING(bld):
236     '''enforce group ordering for the project. This
237        makes the group ordering apply only when you specify
238        a target with --target'''
239     if Options.options.compile_targets:
240         @feature('*')
241         def force_previous_groups(self):
242             if getattr(self.bld, 'enforced_group_ordering', False) == True:
243                 return
244             self.bld.enforced_group_ordering = True
245
246             def group_name(g):
247                 tm = self.bld.task_manager
248                 return [x for x in tm.groups_names if id(tm.groups_names[x]) == id(g)][0]
249
250             my_id = id(self)
251             bld = self.bld
252             stop = None
253             for g in bld.task_manager.groups:
254                 for t in g.tasks_gen:
255                     if id(t) == my_id:
256                         stop = id(g)
257                         debug('group: Forcing up to group %s for target %s',
258                               group_name(g), self.name or self.target)
259                         break
260                 if stop != None:
261                     break
262             if stop is None:
263                 return
264
265             for g in bld.task_manager.groups:
266                 if id(g) == stop:
267                     break
268                 debug('group: Forcing group %s', group_name(g))
269                 for t in g.tasks_gen:
270                     if getattr(t, 'forced_groups', False) != True:
271                         debug('group: Posting %s', t.name or t.target)
272                         t.forced_groups = True
273                         t.post()
274 Build.BuildContext.ENFORCE_GROUP_ORDERING = ENFORCE_GROUP_ORDERING
275
276
277 def recursive_dirlist(dir, relbase, pattern=None):
278     '''recursive directory list'''
279     ret = []
280     for f in os.listdir(dir):
281         f2 = dir + '/' + f
282         if os.path.isdir(f2):
283             ret.extend(recursive_dirlist(f2, relbase))
284         else:
285             if pattern and not fnmatch.fnmatch(f, pattern):
286                 continue
287             ret.append(os_path_relpath(f2, relbase))
288     return ret
289
290
291 def mkdir_p(dir):
292     '''like mkdir -p'''
293     if os.path.isdir(dir):
294         return
295     mkdir_p(os.path.dirname(dir))
296     os.mkdir(dir)
297
298
299 def SUBST_VARS_RECURSIVE(string, env):
300     '''recursively expand variables'''
301     if string is None:
302         return string
303     limit=100
304     while (string.find('${') != -1 and limit > 0):
305         string = subst_vars_error(string, env)
306         limit -= 1
307     return string
308
309
310 @conf
311 def EXPAND_VARIABLES(ctx, varstr, vars=None):
312     '''expand variables from a user supplied dictionary
313
314     This is most useful when you pass vars=locals() to expand
315     all your local variables in strings
316     '''
317
318     if isinstance(varstr, list):
319         ret = []
320         for s in varstr:
321             ret.append(EXPAND_VARIABLES(ctx, s, vars=vars))
322         return ret
323
324     import Environment
325     env = Environment.Environment()
326     ret = varstr
327     # substitute on user supplied dict if avaiilable
328     if vars is not None:
329         for v in vars.keys():
330             env[v] = vars[v]
331         ret = SUBST_VARS_RECURSIVE(ret, env)
332
333     # if anything left, subst on the environment as well
334     if ret.find('${') != -1:
335         ret = SUBST_VARS_RECURSIVE(ret, ctx.env)
336     # make sure there is nothing left. Also check for the common
337     # typo of $( instead of ${
338     if ret.find('${') != -1 or ret.find('$(') != -1:
339         Logs.error('Failed to substitute all variables in varstr=%s' % ret)
340         sys.exit(1)
341     return ret
342 Build.BuildContext.EXPAND_VARIABLES = EXPAND_VARIABLES
343
344
345 def RUN_COMMAND(cmd,
346                 env=None,
347                 shell=False):
348     '''run a external command, return exit code or signal'''
349     if env:
350         cmd = SUBST_VARS_RECURSIVE(cmd, env)
351
352     status = os.system(cmd)
353     if os.WIFEXITED(status):
354         return os.WEXITSTATUS(status)
355     if os.WIFSIGNALED(status):
356         return - os.WTERMSIG(status)
357     Logs.error("Unknown exit reason %d for command: %s" (status, cmd))
358     return -1
359
360
361 # make sure we have md5. some systems don't have it
362 try:
363     from hashlib import md5
364 except:
365     try:
366         import md5
367     except:
368         import Constants
369         Constants.SIG_NIL = hash('abcd')
370         class replace_md5(object):
371             def __init__(self):
372                 self.val = None
373             def update(self, val):
374                 self.val = hash((self.val, val))
375             def digest(self):
376                 return str(self.val)
377             def hexdigest(self):
378                 return self.digest().encode('hex')
379         def replace_h_file(filename):
380             f = open(filename, 'rb')
381             m = replace_md5()
382             while (filename):
383                 filename = f.read(100000)
384                 m.update(filename)
385             f.close()
386             return m.digest()
387         Utils.md5 = replace_md5
388         Task.md5 = replace_md5
389         Utils.h_file = replace_h_file
390
391
392 def LOAD_ENVIRONMENT():
393     '''load the configuration environment, allowing access to env vars
394        from new commands'''
395     import Environment
396     env = Environment.Environment()
397     env.load('.lock-wscript')
398     env.load(env.blddir + '/c4che/default.cache.py')
399     return env
400
401
402 def IS_NEWER(bld, file1, file2):
403     '''return True if file1 is newer than file2'''
404     t1 = os.stat(os.path.join(bld.curdir, file1)).st_mtime
405     t2 = os.stat(os.path.join(bld.curdir, file2)).st_mtime
406     return t1 > t2
407 Build.BuildContext.IS_NEWER = IS_NEWER
408
409
410 @conf
411 def RECURSE(ctx, directory):
412     '''recurse into a directory, relative to the curdir or top level'''
413     try:
414         visited_dirs = ctx.visited_dirs
415     except:
416         visited_dirs = ctx.visited_dirs = set()
417     d = os.path.join(ctx.curdir, directory)
418     if os.path.exists(d):
419         abspath = os.path.abspath(d)
420     else:
421         abspath = os.path.abspath(os.path.join(Utils.g_module.srcdir, directory))
422     ctxclass = ctx.__class__.__name__
423     key = ctxclass + ':' + abspath
424     if key in visited_dirs:
425         # already done it
426         return
427     visited_dirs.add(key)
428     relpath = os_path_relpath(abspath, ctx.curdir)
429     if ctxclass == 'Handler':
430         return ctx.sub_options(relpath)
431     if ctxclass == 'ConfigurationContext':
432         return ctx.sub_config(relpath)
433     if ctxclass == 'BuildContext':
434         return ctx.add_subdirs(relpath)
435     Logs.error('Unknown RECURSE context class', ctxclass)
436     raise
437 Options.Handler.RECURSE = RECURSE
438 Build.BuildContext.RECURSE = RECURSE
439
440
441 def CHECK_MAKEFLAGS(bld):
442     '''check for MAKEFLAGS environment variable in case we are being
443     called from a Makefile try to honor a few make command line flags'''
444     if not 'WAF_MAKE' in os.environ:
445         return
446     makeflags = os.environ.get('MAKEFLAGS')
447     jobs_set = False
448     for opt in makeflags.split():
449         # options can come either as -x or as x
450         if opt[0:2] == 'V=':
451             Options.options.verbose = Logs.verbose = int(opt[2:])
452             if Logs.verbose > 0:
453                 Logs.zones = ['runner']
454             if Logs.verbose > 2:
455                 Logs.zones = ['*']
456         elif opt[0].isupper() and opt.find('=') != -1:
457             loc = opt.find('=')
458             setattr(Options.options, opt[0:loc], opt[loc+1:])
459         elif opt[0] != '-':
460             for v in opt:
461                 if v == 'j':
462                     jobs_set = True
463                 elif v == 'k':
464                     Options.options.keep = True                
465         elif opt == '-j':
466             jobs_set = True
467         elif opt == '-k':
468             Options.options.keep = True                
469     if not jobs_set:
470         # default to one job
471         Options.options.jobs = 1
472             
473 Build.BuildContext.CHECK_MAKEFLAGS = CHECK_MAKEFLAGS
474
475 option_groups = {}
476
477 def option_group(opt, name):
478     '''find or create an option group'''
479     global option_groups
480     if name in option_groups:
481         return option_groups[name]
482     gr = opt.add_option_group(name)
483     option_groups[name] = gr
484     return gr
485 Options.Handler.option_group = option_group
486
487
488 def save_file(filename, contents, create_dir=False):
489     '''save data to a file'''
490     if create_dir:
491         mkdir_p(os.path.dirname(filename))
492     try:
493         f = open(filename, 'w')
494         f.write(contents)
495         f.close()
496     except:
497         return False
498     return True
499
500
501 def load_file(filename):
502     '''return contents of a file'''
503     try:
504         f = open(filename, 'r')
505         r = f.read()
506         f.close()
507     except:
508         return None
509     return r
510
511
512 def reconfigure(ctx):
513     '''rerun configure if necessary'''
514     import Configure, samba_wildcard, Scripting
515     if not os.path.exists(".lock-wscript"):
516         raise Utils.WafError('configure has not been run')
517     bld = samba_wildcard.fake_build_environment()
518     Configure.autoconfig = True
519     Scripting.check_configured(bld)