1 # Samba automatic dependency handling and project rules
3 import Build
, os
, sys
, re
, Environment
, Logs
, time
4 from samba_utils
import *
5 from samba_autoconf
import *
6 from samba_bundled
import BUILTIN_LIBRARY
9 def ADD_GLOBAL_DEPENDENCY(ctx
, dep
):
10 '''add a dependency for all binaries and libraries'''
11 if not 'GLOBAL_DEPENDENCIES' in ctx
.env
:
12 ctx
.env
.GLOBAL_DEPENDENCIES
= []
13 ctx
.env
.GLOBAL_DEPENDENCIES
.append(dep
)
17 def BREAK_CIRCULAR_LIBRARY_DEPENDENCIES(ctx
):
18 '''indicate that circular dependencies between libraries should be broken.'''
19 ctx
.env
.ALLOW_CIRCULAR_LIB_DEPENDENCIES
= True
23 def SET_SYSLIB_DEPS(conf
, target
, deps
):
24 '''setup some implied dependencies for a SYSLIB'''
25 cache
= LOCAL_CACHE(conf
, 'SYSLIB_DEPS')
29 def expand_subsystem_deps(bld
):
30 '''expand the reverse dependencies resulting from subsystem
31 attributes of modules. This is walking over the complete list
32 of declared subsystems, and expands the samba_deps_extended list for any
33 module<->subsystem dependencies'''
35 subsystem_list
= LOCAL_CACHE(bld
, 'INIT_FUNCTIONS')
36 targets
= LOCAL_CACHE(bld
, 'TARGET_TYPE')
38 for subsystem_name
in subsystem_list
:
39 bld
.ASSERT(subsystem_name
in targets
, "Subsystem target %s not declared" % subsystem_name
)
40 type = targets
[subsystem_name
]
41 if type == 'DISABLED' or type == 'EMPTY':
45 # subsystem_name = dcerpc_server (a subsystem)
46 # subsystem = dcerpc_server (a subsystem object)
47 # module_name = rpc_epmapper (a module within the dcerpc_server subsystem)
48 # module = rpc_epmapper (a module object within the dcerpc_server subsystem)
50 subsystem
= bld
.name_to_obj(subsystem_name
, bld
.env
)
51 bld
.ASSERT(subsystem
is not None, "Unable to find subsystem %s" % subsystem_name
)
52 for d
in subsystem_list
[subsystem_name
]:
53 module_name
= d
['TARGET']
54 module_type
= targets
[module_name
]
55 if module_type
in ['DISABLED', 'EMPTY']:
57 bld
.ASSERT(subsystem
is not None,
58 "Subsystem target %s for %s (%s) not found" % (subsystem_name
, module_name
, module_type
))
59 if module_type
in ['SUBSYSTEM']:
60 # if a module is a plain object type (not a library) then the
61 # subsystem it is part of needs to have it as a dependency, so targets
62 # that depend on this subsystem get the modules of that subsystem
63 subsystem
.samba_deps_extended
.append(module_name
)
64 subsystem
.samba_deps_extended
= unique_list(subsystem
.samba_deps_extended
)
68 def build_dependencies(self
):
69 '''This builds the dependency list for a target. It runs after all the targets are declared
71 The reason this is not just done in the SAMBA_*() rules is that we have no way of knowing
72 the full dependency list for a target until we have all of the targets declared.
75 if self
.samba_type
in ['LIBRARY', 'BINARY', 'PYTHON']:
76 self
.uselib
= list(self
.final_syslibs
)
77 self
.uselib_local
= list(self
.final_libs
)
78 self
.add_objects
= list(self
.final_objects
)
80 # extra link flags from pkg_config
81 libs
= self
.final_syslibs
.copy()
83 (ccflags
, ldflags
, cpppath
) = library_flags(self
, list(libs
))
84 new_ldflags
= getattr(self
, 'samba_ldflags', [])[:]
85 new_ldflags
.extend(ldflags
)
86 self
.ldflags
= new_ldflags
88 if getattr(self
, 'allow_undefined_symbols', False) and self
.env
.undefined_ldflags
:
89 for f
in self
.env
.undefined_ldflags
:
90 self
.ldflags
.remove(f
)
92 if getattr(self
, 'allow_undefined_symbols', False) and self
.env
.undefined_ignore_ldflags
:
93 for f
in self
.env
.undefined_ignore_ldflags
:
94 self
.ldflags
.append(f
)
96 debug('deps: computed dependencies for target %s: uselib=%s uselib_local=%s add_objects=%s',
97 self
.sname
, self
.uselib
, self
.uselib_local
, self
.add_objects
)
99 if self
.samba_type
in ['SUBSYSTEM']:
100 # this is needed for the ccflags of libs that come from pkg_config
101 self
.uselib
= list(self
.final_syslibs
)
102 self
.uselib
.extend(list(self
.direct_syslibs
))
103 for lib
in self
.final_libs
:
104 t
= self
.bld
.name_to_obj(lib
, self
.bld
.env
)
105 self
.uselib
.extend(list(t
.final_syslibs
))
106 self
.uselib
= unique_list(self
.uselib
)
108 if getattr(self
, 'uselib', None):
110 for l
in self
.uselib
:
111 up_list
.append(l
.upper())
112 self
.uselib
= up_list
115 def build_includes(self
):
116 '''This builds the right set of includes for a target.
118 One tricky part of this is that the includes= attribute for a
119 target needs to use paths which are relative to that targets
120 declaration directory (which we can get at via t.path).
122 The way this works is the includes list gets added as
123 samba_includes in the main build task declaration. Then this
124 function runs after all of the tasks are declared, and it
125 processes the samba_includes attribute to produce a includes=
129 if getattr(self
, 'samba_includes', None) is None:
134 inc_deps
= includes_objects(bld
, self
, set(), {})
138 # maybe add local includes
139 if getattr(self
, 'local_include', True) and getattr(self
, 'local_include_first', True):
142 includes
.extend(self
.samba_includes_extended
)
144 if 'EXTRA_INCLUDES' in bld
.env
and getattr(self
, 'global_include', True):
145 includes
.extend(bld
.env
['EXTRA_INCLUDES'])
153 t
= bld
.name_to_obj(d
, bld
.env
)
154 bld
.ASSERT(t
is not None, "Unable to find dependency %s for %s" % (d
, self
.sname
))
155 inclist
= getattr(t
, 'samba_includes_extended', [])[:]
156 if getattr(t
, 'local_include', True):
160 tpath
= t
.samba_abspath
162 npath
= tpath
+ '/' + inc
163 if not npath
in inc_set
:
164 inc_abs
.append(npath
)
167 mypath
= self
.path
.abspath(bld
.env
)
169 relpath
= os_path_relpath(inc
, mypath
)
170 includes
.append(relpath
)
172 if getattr(self
, 'local_include', True) and not getattr(self
, 'local_include_first', True):
175 # now transform the includes list to be relative to the top directory
176 # which is represented by '#' in waf. This allows waf to cache the
177 # includes lists more efficiently
181 # some are already top based
182 includes_top
.append(i
)
184 absinc
= os
.path
.join(self
.path
.abspath(), i
)
185 relinc
= os_path_relpath(absinc
, self
.bld
.srcnode
.abspath())
186 includes_top
.append('#' + relinc
)
188 self
.includes
= unique_list(includes_top
)
189 debug('deps: includes for target %s: includes=%s',
190 self
.sname
, self
.includes
)
193 def add_init_functions(self
):
194 '''This builds the right set of init functions'''
198 subsystems
= LOCAL_CACHE(bld
, 'INIT_FUNCTIONS')
200 # cope with the separated object lists from BINARY and LIBRARY targets
202 if sname
.endswith('.objlist'):
206 if sname
in subsystems
:
207 modules
.append(sname
)
209 m
= getattr(self
, 'samba_modules', None)
211 modules
.extend(TO_LIST(m
))
213 m
= getattr(self
, 'samba_subsystem', None)
217 sentinel
= getattr(self
, 'init_function_sentinel', 'NULL')
219 targets
= LOCAL_CACHE(bld
, 'TARGET_TYPE')
220 cflags
= getattr(self
, 'samba_cflags', [])[:]
223 sname
= sname
.replace('-','_')
224 sname
= sname
.replace('/','_')
225 cflags
.append('-DSTATIC_%s_MODULES=%s' % (sname
, sentinel
))
226 if sentinel
== 'NULL':
227 proto
= "extern void __%s_dummy_module_proto(void)" % (sname
)
228 cflags
.append('-DSTATIC_%s_MODULES_PROTO=%s' % (sname
, proto
))
229 self
.ccflags
= cflags
233 bld
.ASSERT(m
in subsystems
,
234 "No init_function defined for module '%s' in target '%s'" % (m
, self
.sname
))
236 for d
in subsystems
[m
]:
237 if targets
[d
['TARGET']] != 'DISABLED':
238 init_fn_list
.append(d
['INIT_FUNCTION'])
239 if init_fn_list
== []:
240 cflags
.append('-DSTATIC_%s_MODULES=%s' % (m
, sentinel
))
241 if sentinel
== 'NULL':
242 proto
= "extern void __%s_dummy_module_proto(void)" % (m
)
243 cflags
.append('-DSTATIC_%s_MODULES_PROTO=%s' % (m
, proto
))
245 cflags
.append('-DSTATIC_%s_MODULES=%s' % (m
, ','.join(init_fn_list
) + ',' + sentinel
))
247 for f
in init_fn_list
:
248 proto
+= '_MODULE_PROTO(%s)' % f
249 proto
+= "extern void __%s_dummy_module_proto(void)" % (m
)
250 cflags
.append('-DSTATIC_%s_MODULES_PROTO=%s' % (m
, proto
))
251 self
.ccflags
= cflags
254 def check_duplicate_sources(bld
, tgt_list
):
255 '''see if we are compiling the same source file more than once
256 without an allow_duplicates attribute'''
258 debug('deps: checking for duplicate sources')
260 targets
= LOCAL_CACHE(bld
, 'TARGET_TYPE')
266 source_list
= TO_LIST(getattr(t
, 'source', ''))
267 tpath
= os
.path
.normpath(os_path_relpath(t
.path
.abspath(bld
.env
), t
.env
.BUILD_DIRECTORY
+ '/default'))
269 for s
in source_list
:
270 p
= os
.path
.normpath(os
.path
.join(tpath
, s
))
272 Logs
.error("ERROR: source %s appears twice in target '%s'" % (p
, t
.sname
))
275 t
.samba_source_set
= obj_sources
279 # build a list of targets that each source file is part of
282 if not targets
[t
.sname
] in [ 'LIBRARY', 'BINARY', 'PYTHON' ]:
284 for obj
in t
.add_objects
:
285 t2
= t
.bld
.name_to_obj(obj
, bld
.env
)
286 source_set
= getattr(t2
, 'samba_source_set', set())
288 if not s
in subsystems
:
290 if not t
.sname
in subsystems
[s
]:
291 subsystems
[s
][t
.sname
] = []
292 subsystems
[s
][t
.sname
].append(t2
.sname
)
295 if len(subsystems
[s
]) > 1 and Options
.options
.SHOW_DUPLICATES
:
296 Logs
.warn("WARNING: source %s is in more than one target: %s" % (s
, subsystems
[s
].keys()))
297 for tname
in subsystems
[s
]:
298 if len(subsystems
[s
][tname
]) > 1:
299 raise Utils
.WafError("ERROR: source %s is in more than one subsystem of target '%s': %s" % (s
, tname
, subsystems
[s
][tname
]))
304 def check_orphaned_targets(bld
, tgt_list
):
305 '''check if any build targets are orphaned'''
307 target_dict
= LOCAL_CACHE(bld
, 'TARGET_TYPE')
309 debug('deps: checking for orphaned targets')
312 if getattr(t
, 'samba_used', False):
314 type = target_dict
[t
.sname
]
315 if not type in ['BINARY', 'LIBRARY', 'MODULE', 'ET', 'PYTHON']:
316 if re
.search('^PIDL_', t
.sname
) is None:
317 Logs
.warn("Target %s of type %s is unused by any other target" % (t
.sname
, type))
320 def check_group_ordering(bld
, tgt_list
):
321 '''see if we have any dependencies that violate the group ordering
323 It is an error for a target to depend on a target from a later
328 tm
= bld
.task_manager
329 return [x
for x
in tm
.groups_names
if id(tm
.groups_names
[x
]) == id(g
)][0]
331 for g
in bld
.task_manager
.groups
:
332 gname
= group_name(g
)
333 for t
in g
.tasks_gen
:
334 t
.samba_group
= gname
338 for g
in bld
.task_manager
.groups
:
343 targets
= LOCAL_CACHE(bld
, 'TARGET_TYPE')
347 tdeps
= getattr(t
, 'add_objects', []) + getattr(t
, 'uselib_local', [])
349 t2
= bld
.name_to_obj(d
, bld
.env
)
352 map1
= grp_map
[t
.samba_group
]
353 map2
= grp_map
[t2
.samba_group
]
356 Logs
.error("Target %r in build group %r depends on target %r from later build group %r" % (
357 t
.sname
, t
.samba_group
, t2
.sname
, t2
.samba_group
))
363 def show_final_deps(bld
, tgt_list
):
364 '''show the final dependencies for all targets'''
366 targets
= LOCAL_CACHE(bld
, 'TARGET_TYPE')
369 if not targets
[t
.sname
] in ['LIBRARY', 'BINARY', 'PYTHON', 'SUBSYSTEM']:
371 debug('deps: final dependencies for target %s: uselib=%s uselib_local=%s add_objects=%s',
372 t
.sname
, t
.uselib
, getattr(t
, 'uselib_local', []), getattr(t
, 'add_objects', []))
375 def add_samba_attributes(bld
, tgt_list
):
376 '''ensure a target has a the required samba attributes'''
378 targets
= LOCAL_CACHE(bld
, 'TARGET_TYPE')
385 t
.samba_type
= targets
[t
.sname
]
386 t
.samba_abspath
= t
.path
.abspath(bld
.env
)
387 t
.samba_deps_extended
= t
.samba_deps
[:]
388 t
.samba_includes_extended
= TO_LIST(t
.samba_includes
)[:]
389 t
.ccflags
= getattr(t
, 'samba_cflags', '')
391 def replace_grouping_libraries(bld
, tgt_list
):
392 '''replace dependencies based on grouping libraries
394 If a library is marked as a grouping library, then any target that
395 depends on a subsystem that is part of that grouping library gets
396 that dependency replaced with a dependency on the grouping library
399 targets
= LOCAL_CACHE(bld
, 'TARGET_TYPE')
403 # find our list of grouping libraries, mapped from the subsystems they depend on
405 if not getattr(t
, 'grouping_library', False):
407 for dep
in t
.samba_deps_extended
:
408 bld
.ASSERT(dep
in targets
, "grouping library target %s not declared in %s" % (dep
, t
.sname
))
409 if targets
[dep
] == 'SUBSYSTEM':
410 grouping
[dep
] = t
.sname
412 # now replace any dependencies on elements of grouping libraries
414 for i
in range(len(t
.samba_deps_extended
)):
415 dep
= t
.samba_deps_extended
[i
]
417 if t
.sname
!= grouping
[dep
]:
418 debug("deps: target %s: replacing dependency %s with grouping library %s" % (t
.sname
, dep
, grouping
[dep
]))
419 t
.samba_deps_extended
[i
] = grouping
[dep
]
423 def build_direct_deps(bld
, tgt_list
):
424 '''build the direct_objects and direct_libs sets for each target'''
426 targets
= LOCAL_CACHE(bld
, 'TARGET_TYPE')
427 syslib_deps
= LOCAL_CACHE(bld
, 'SYSLIB_DEPS')
429 global_deps
= bld
.env
.GLOBAL_DEPENDENCIES
430 global_deps_exclude
= set()
431 for dep
in global_deps
:
432 t
= bld
.name_to_obj(dep
, bld
.env
)
433 for d
in t
.samba_deps
:
434 # prevent loops from the global dependencies list
435 global_deps_exclude
.add(d
)
436 global_deps_exclude
.add(d
+ '.objlist')
439 t
.direct_objects
= set()
440 t
.direct_libs
= set()
441 t
.direct_syslibs
= set()
442 deps
= t
.samba_deps_extended
[:]
443 if getattr(t
, 'samba_use_global_deps', False) and not t
.sname
in global_deps_exclude
:
444 deps
.extend(global_deps
)
446 if d
== t
.sname
: continue
448 Logs
.error("Unknown dependency '%s' in '%s'" % (d
, t
.sname
))
450 if targets
[d
] in [ 'EMPTY', 'DISABLED' ]:
452 if targets
[d
] == 'PYTHON' and targets
[t
.sname
] != 'PYTHON' and t
.sname
.find('.objlist') == -1:
453 # this check should be more restrictive, but for now we have pidl-generated python
454 # code that directly depends on other python modules
455 Logs
.error('ERROR: Target %s has dependency on python module %s' % (t
.sname
, d
))
457 if targets
[d
] == 'SYSLIB':
458 t
.direct_syslibs
.add(d
)
460 for implied
in TO_LIST(syslib_deps
[d
]):
461 if BUILTIN_LIBRARY(bld
, implied
):
462 t
.direct_objects
.add(implied
)
463 elif targets
[implied
] == 'SYSLIB':
464 t
.direct_syslibs
.add(implied
)
465 elif targets
[implied
] in ['LIBRARY', 'MODULE']:
466 t
.direct_libs
.add(implied
)
468 Logs
.error('Implied dependency %s in %s is of type %s' % (
469 implied
, t
.sname
, targets
[implied
]))
472 t2
= bld
.name_to_obj(d
, bld
.env
)
474 Logs
.error("no task %s of type %s in %s" % (d
, targets
[d
], t
.sname
))
476 if t2
.samba_type
in [ 'LIBRARY', 'MODULE' ]:
478 elif t2
.samba_type
in [ 'SUBSYSTEM', 'ASN1', 'PYTHON' ]:
479 t
.direct_objects
.add(d
)
480 debug('deps: built direct dependencies')
483 def dependency_loop(loops
, t
, target
):
484 '''add a dependency loop to the loops dictionary'''
485 if t
.sname
== target
:
487 if not target
in loops
:
488 loops
[target
] = set()
489 if not t
.sname
in loops
[target
]:
490 loops
[target
].add(t
.sname
)
493 def indirect_libs(bld
, t
, chain
, loops
):
494 '''recursively calculate the indirect library dependencies for a target
496 An indirect library is a library that results from a dependency on
500 ret
= getattr(t
, 'indirect_libs', None)
505 for obj
in t
.direct_objects
:
507 dependency_loop(loops
, t
, obj
)
510 t2
= bld
.name_to_obj(obj
, bld
.env
)
511 r2
= indirect_libs(bld
, t2
, chain
, loops
)
513 ret
= ret
.union(t2
.direct_libs
)
516 for obj
in indirect_objects(bld
, t
, set(), loops
):
518 dependency_loop(loops
, t
, obj
)
521 t2
= bld
.name_to_obj(obj
, bld
.env
)
522 r2
= indirect_libs(bld
, t2
, chain
, loops
)
524 ret
= ret
.union(t2
.direct_libs
)
527 t
.indirect_libs
= ret
532 def indirect_objects(bld
, t
, chain
, loops
):
533 '''recursively calculate the indirect object dependencies for a target
535 indirect objects are the set of objects from expanding the
536 subsystem dependencies
539 ret
= getattr(t
, 'indirect_objects', None)
540 if ret
is not None: return ret
543 for lib
in t
.direct_objects
:
545 dependency_loop(loops
, t
, lib
)
548 t2
= bld
.name_to_obj(lib
, bld
.env
)
549 r2
= indirect_objects(bld
, t2
, chain
, loops
)
551 ret
= ret
.union(t2
.direct_objects
)
554 t
.indirect_objects
= ret
558 def extended_objects(bld
, t
, chain
):
559 '''recursively calculate the extended object dependencies for a target
561 extended objects are the union of:
564 - direct and indirect objects of all direct and indirect libraries
567 ret
= getattr(t
, 'extended_objects', None)
568 if ret
is not None: return ret
571 ret
= ret
.union(t
.final_objects
)
573 for lib
in t
.final_libs
:
576 t2
= bld
.name_to_obj(lib
, bld
.env
)
578 r2
= extended_objects(bld
, t2
, chain
)
580 ret
= ret
.union(t2
.final_objects
)
583 t
.extended_objects
= ret
587 def includes_objects(bld
, t
, chain
, inc_loops
):
588 '''recursively calculate the includes object dependencies for a target
590 includes dependencies come from either library or object dependencies
592 ret
= getattr(t
, 'includes_objects', None)
596 ret
= t
.direct_objects
.copy()
597 ret
= ret
.union(t
.direct_libs
)
599 for obj
in t
.direct_objects
:
601 dependency_loop(inc_loops
, t
, obj
)
604 t2
= bld
.name_to_obj(obj
, bld
.env
)
605 r2
= includes_objects(bld
, t2
, chain
, inc_loops
)
607 ret
= ret
.union(t2
.direct_objects
)
610 for lib
in t
.direct_libs
:
612 dependency_loop(inc_loops
, t
, lib
)
615 t2
= bld
.name_to_obj(lib
, bld
.env
)
617 targets
= LOCAL_CACHE(bld
, 'TARGET_TYPE')
618 Logs
.error('Target %s of type %s not found in direct_libs for %s' % (
619 lib
, targets
[lib
], t
.sname
))
621 r2
= includes_objects(bld
, t2
, chain
, inc_loops
)
623 ret
= ret
.union(t2
.direct_objects
)
626 t
.includes_objects
= ret
630 def break_dependency_loops(bld
, tgt_list
):
631 '''find and break dependency loops'''
635 # build up the list of loops
637 indirect_objects(bld
, t
, set(), loops
)
638 indirect_libs(bld
, t
, set(), loops
)
639 includes_objects(bld
, t
, set(), inc_loops
)
644 for attr
in ['direct_objects', 'indirect_objects', 'direct_libs', 'indirect_libs']:
645 objs
= getattr(t
, attr
, set())
646 setattr(t
, attr
, objs
.difference(loops
[t
.sname
]))
649 debug('deps: Found dependency loops for target %s : %s', loop
, loops
[loop
])
651 for loop
in inc_loops
:
652 debug('deps: Found include loops for target %s : %s', loop
, inc_loops
[loop
])
654 # expand the loops mapping by one level
655 for loop
in loops
.copy():
656 for tgt
in loops
[loop
]:
658 loops
[loop
] = loops
[loop
].union(loops
[tgt
])
660 for loop
in inc_loops
.copy():
661 for tgt
in inc_loops
[loop
]:
663 inc_loops
[loop
] = inc_loops
[loop
].union(inc_loops
[tgt
])
666 # expand indirect subsystem and library loops
667 for loop
in loops
.copy():
668 t
= bld
.name_to_obj(loop
, bld
.env
)
669 if t
.samba_type
in ['SUBSYSTEM']:
670 loops
[loop
] = loops
[loop
].union(t
.indirect_objects
)
671 loops
[loop
] = loops
[loop
].union(t
.direct_objects
)
672 if t
.samba_type
in ['LIBRARY','PYTHON']:
673 loops
[loop
] = loops
[loop
].union(t
.indirect_libs
)
674 loops
[loop
] = loops
[loop
].union(t
.direct_libs
)
675 if loop
in loops
[loop
]:
676 loops
[loop
].remove(loop
)
678 # expand indirect includes loops
679 for loop
in inc_loops
.copy():
680 t
= bld
.name_to_obj(loop
, bld
.env
)
681 inc_loops
[loop
] = inc_loops
[loop
].union(t
.includes_objects
)
682 if loop
in inc_loops
[loop
]:
683 inc_loops
[loop
].remove(loop
)
685 # add in the replacement dependencies
688 for attr
in ['indirect_objects', 'indirect_libs']:
689 objs
= getattr(t
, attr
, set())
691 diff
= loops
[loop
].difference(objs
)
695 debug('deps: Expanded target %s of type %s from loop %s by %s', t
.sname
, t
.samba_type
, loop
, diff
)
696 objs
= objs
.union(diff
)
697 setattr(t
, attr
, objs
)
699 for loop
in inc_loops
:
700 objs
= getattr(t
, 'includes_objects', set())
702 diff
= inc_loops
[loop
].difference(objs
)
706 debug('deps: Expanded target %s includes of type %s from loop %s by %s', t
.sname
, t
.samba_type
, loop
, diff
)
707 objs
= objs
.union(diff
)
708 setattr(t
, 'includes_objects', objs
)
711 def reduce_objects(bld
, tgt_list
):
712 '''reduce objects by looking for indirect object dependencies'''
716 t
.extended_objects
= None
720 for type in ['BINARY', 'PYTHON', 'LIBRARY']:
722 if t
.samba_type
!= type: continue
723 # if we will indirectly link to a target then we don't need it
724 new
= t
.final_objects
.copy()
725 for l
in t
.final_libs
:
726 t2
= bld
.name_to_obj(l
, bld
.env
)
727 t2_obj
= extended_objects(bld
, t2
, set())
728 dup
= new
.intersection(t2_obj
)
729 if t
.sname
in rely_on
:
730 dup
= dup
.difference(rely_on
[t
.sname
])
732 debug('deps: removing dups from %s of type %s: %s also in %s %s',
733 t
.sname
, t
.samba_type
, dup
, t2
.samba_type
, l
)
734 new
= new
.difference(dup
)
738 rely_on
[l
] = rely_on
[l
].union(dup
)
739 t
.final_objects
= new
744 # add back in any objects that were relied upon by the reduction rules
746 t
= bld
.name_to_obj(r
, bld
.env
)
747 t
.final_objects
= t
.final_objects
.union(rely_on
[r
])
752 def show_library_loop(bld
, lib1
, lib2
, path
, seen
):
753 '''show the detailed path of a library loop between lib1 and lib2'''
755 t
= bld
.name_to_obj(lib1
, bld
.env
)
756 if not lib2
in getattr(t
, 'final_libs', set()):
759 for d
in t
.samba_deps_extended
:
763 path2
= path
+ '=>' + d
765 Logs
.warn('library loop path: ' + path2
)
767 show_library_loop(bld
, d
, lib2
, path2
, seen
)
771 def calculate_final_deps(bld
, tgt_list
, loops
):
772 '''calculate the final library and object dependencies'''
774 # start with the maximum possible list
775 t
.final_libs
= t
.direct_libs
.union(indirect_libs(bld
, t
, set(), loops
))
776 t
.final_objects
= t
.direct_objects
.union(indirect_objects(bld
, t
, set(), loops
))
779 # don't depend on ourselves
780 if t
.sname
in t
.final_libs
:
781 t
.final_libs
.remove(t
.sname
)
782 if t
.sname
in t
.final_objects
:
783 t
.final_objects
.remove(t
.sname
)
785 # handle any non-shared binaries
787 if t
.samba_type
== 'BINARY' and bld
.NONSHARED_BINARY(t
.sname
):
788 subsystem_list
= LOCAL_CACHE(bld
, 'INIT_FUNCTIONS')
789 targets
= LOCAL_CACHE(bld
, 'TARGET_TYPE')
791 # replace lib deps with objlist deps
792 for l
in t
.final_libs
:
793 objname
= l
+ '.objlist'
794 t2
= bld
.name_to_obj(objname
, bld
.env
)
796 Logs
.error('ERROR: subsystem %s not found' % objname
)
798 t
.final_objects
.add(objname
)
799 t
.final_objects
= t
.final_objects
.union(extended_objects(bld
, t2
, set()))
800 if l
in subsystem_list
:
801 # its a subsystem - we also need the contents of any modules
802 for d
in subsystem_list
[l
]:
803 module_name
= d
['TARGET']
804 if targets
[module_name
] == 'LIBRARY':
805 objname
= module_name
+ '.objlist'
806 elif targets
[module_name
] == 'SUBSYSTEM':
807 objname
= module_name
810 t2
= bld
.name_to_obj(objname
, bld
.env
)
812 Logs
.error('ERROR: subsystem %s not found' % objname
)
814 t
.final_objects
.add(objname
)
815 t
.final_objects
= t
.final_objects
.union(extended_objects(bld
, t2
, set()))
818 # find any library loops
820 if t
.samba_type
in ['LIBRARY', 'PYTHON']:
821 for l
in t
.final_libs
.copy():
822 t2
= bld
.name_to_obj(l
, bld
.env
)
823 if t
.sname
in t2
.final_libs
:
824 if getattr(bld
.env
, "ALLOW_CIRCULAR_LIB_DEPENDENCIES", False):
825 # we could break this in either direction. If one of the libraries
826 # has a version number, and will this be distributed publicly, then
827 # we should make it the lower level library in the DAG
828 Logs
.warn('deps: removing library loop %s from %s' % (t
.sname
, t2
.sname
))
829 dependency_loop(loops
, t
, t2
.sname
)
830 t2
.final_libs
.remove(t
.sname
)
832 Logs
.error('ERROR: circular library dependency between %s and %s'
833 % (t
.sname
, t2
.sname
))
834 show_library_loop(bld
, t
.sname
, t2
.sname
, t
.sname
, set())
835 show_library_loop(bld
, t2
.sname
, t
.sname
, t2
.sname
, set())
839 debug('deps: Found dependency loops for target %s : %s', loop
, loops
[loop
])
841 # we now need to make corrections for any library loops we broke up
842 # any target that depended on the target of the loop and doesn't
843 # depend on the source of the loop needs to get the loop source added
844 for type in ['BINARY','PYTHON','LIBRARY','BINARY']:
846 if t
.samba_type
!= type: continue
848 if loop
in t
.final_libs
:
849 diff
= loops
[loop
].difference(t
.final_libs
)
854 # make sure we don't recreate the loop again!
855 for d
in diff
.copy():
856 t2
= bld
.name_to_obj(d
, bld
.env
)
857 if t2
.samba_type
== 'LIBRARY':
858 if t
.sname
in t2
.final_libs
:
859 debug('deps: removing expansion %s from %s', d
, t
.sname
)
862 debug('deps: Expanded target %s by loop %s libraries (loop %s) %s', t
.sname
, loop
,
864 t
.final_libs
= t
.final_libs
.union(diff
)
866 # remove objects that are also available in linked libs
868 while reduce_objects(bld
, tgt_list
):
871 Logs
.warn("WARNING: Unable to remove all inter-target object duplicates")
873 debug('deps: Object reduction took %u iterations', count
)
875 # add in any syslib dependencies
877 if not t
.samba_type
in ['BINARY','PYTHON','LIBRARY','SUBSYSTEM']:
880 for d
in t
.final_objects
:
881 t2
= bld
.name_to_obj(d
, bld
.env
)
882 syslibs
= syslibs
.union(t2
.direct_syslibs
)
883 # this adds the indirect syslibs as well, which may not be needed
884 # depending on the linker flags
885 for d
in t
.final_libs
:
886 t2
= bld
.name_to_obj(d
, bld
.env
)
887 syslibs
= syslibs
.union(t2
.direct_syslibs
)
888 t
.final_syslibs
= syslibs
891 # find any unresolved library loops
892 lib_loop_error
= False
894 if t
.samba_type
in ['LIBRARY', 'PYTHON']:
895 for l
in t
.final_libs
.copy():
896 t2
= bld
.name_to_obj(l
, bld
.env
)
897 if t
.sname
in t2
.final_libs
:
898 Logs
.error('ERROR: Unresolved library loop %s from %s' % (t
.sname
, t2
.sname
))
899 lib_loop_error
= True
903 debug('deps: removed duplicate dependencies')
906 def show_dependencies(bld
, target
, seen
):
907 '''recursively show the dependencies of target'''
912 t
= bld
.name_to_obj(target
, bld
.env
)
914 Logs
.error("ERROR: Unable to find target '%s'" % target
)
917 Logs
.info('%s(OBJECTS): %s' % (target
, t
.direct_objects
))
918 Logs
.info('%s(LIBS): %s' % (target
, t
.direct_libs
))
919 Logs
.info('%s(SYSLIBS): %s' % (target
, t
.direct_syslibs
))
923 for t2
in t
.direct_objects
:
924 show_dependencies(bld
, t2
, seen
)
927 def show_object_duplicates(bld
, tgt_list
):
928 '''show a list of object files that are included in more than
929 one library or binary'''
931 targets
= LOCAL_CACHE(bld
, 'TARGET_TYPE')
935 Logs
.info("showing duplicate objects")
938 if not targets
[t
.sname
] in [ 'LIBRARY', 'PYTHON' ]:
940 for n
in getattr(t
, 'final_objects', set()):
941 t2
= bld
.name_to_obj(n
, bld
.env
)
944 used_by
[n
].add(t
.sname
)
947 if len(used_by
[n
]) > 1:
948 Logs
.info("target '%s' is used by %s" % (n
, used_by
[n
]))
950 Logs
.info("showing indirect dependency counts (sorted by count)")
952 def indirect_count(t1
, t2
):
953 return len(t2
.indirect_objects
) - len(t1
.indirect_objects
)
955 sorted_list
= sorted(tgt_list
, cmp=indirect_count
)
956 for t
in sorted_list
:
957 if len(t
.indirect_objects
) > 1:
958 Logs
.info("%s depends on %u indirect objects" % (t
.sname
, len(t
.indirect_objects
)))
961 ######################################################################
962 # this provides a way to save our dependency calculations between runs
964 savedeps_inputs
= ['samba_deps', 'samba_includes', 'local_include', 'local_include_first', 'samba_cflags',
965 'source', 'grouping_library', 'samba_ldflags', 'allow_undefined_symbols',
966 'use_global_deps', 'global_include' ]
967 savedeps_outputs
= ['uselib', 'uselib_local', 'add_objects', 'includes', 'ccflags', 'ldflags', 'samba_deps_extended']
968 savedeps_outenv
= ['INC_PATHS']
969 savedeps_envvars
= ['NONSHARED_BINARIES', 'GLOBAL_DEPENDENCIES', 'EXTRA_CFLAGS', 'EXTRA_LDFLAGS', 'EXTRA_INCLUDES' ]
970 savedeps_caches
= ['GLOBAL_DEPENDENCIES', 'TARGET_TYPE', 'INIT_FUNCTIONS', 'SYSLIB_DEPS']
971 savedeps_files
= ['buildtools/wafsamba/samba_deps.py']
973 def save_samba_deps(bld
, tgt_list
):
974 '''save the dependency calculations between builds, to make
975 further builds faster'''
976 denv
= Environment
.Environment()
978 denv
.version
= savedeps_version
979 denv
.savedeps_inputs
= savedeps_inputs
980 denv
.savedeps_outputs
= savedeps_outputs
988 for f
in savedeps_files
:
989 denv
.files
[f
] = os
.stat(os
.path
.join(bld
.srcnode
.abspath(), f
)).st_mtime
991 for c
in savedeps_caches
:
992 denv
.caches
[c
] = LOCAL_CACHE(bld
, c
)
994 for e
in savedeps_envvars
:
995 denv
.envvar
[e
] = bld
.env
[e
]
998 # save all the input attributes for each target
1000 for attr
in savedeps_inputs
:
1001 v
= getattr(t
, attr
, None)
1005 denv
.input[t
.sname
] = tdeps
1007 # save all the output attributes for each target
1009 for attr
in savedeps_outputs
:
1010 v
= getattr(t
, attr
, None)
1014 denv
.output
[t
.sname
] = tdeps
1017 for attr
in savedeps_outenv
:
1019 tdeps
[attr
] = t
.env
[attr
]
1021 denv
.outenv
[t
.sname
] = tdeps
1023 depsfile
= os
.path
.join(bld
.bdir
, "sambadeps")
1024 denv
.store(depsfile
)
1028 def load_samba_deps(bld
, tgt_list
):
1029 '''load a previous set of build dependencies if possible'''
1030 depsfile
= os
.path
.join(bld
.bdir
, "sambadeps")
1031 denv
= Environment
.Environment()
1033 debug('deps: checking saved dependencies')
1035 if (denv
.version
!= savedeps_version
or
1036 denv
.savedeps_inputs
!= savedeps_inputs
or
1037 denv
.savedeps_outputs
!= savedeps_outputs
):
1042 # check if critical files have changed
1043 for f
in savedeps_files
:
1044 if f
not in denv
.files
:
1046 if denv
.files
[f
] != os
.stat(os
.path
.join(bld
.srcnode
.abspath(), f
)).st_mtime
:
1049 # check if caches are the same
1050 for c
in savedeps_caches
:
1051 if c
not in denv
.caches
or denv
.caches
[c
] != LOCAL_CACHE(bld
, c
):
1054 # check if caches are the same
1055 for e
in savedeps_envvars
:
1056 if e
not in denv
.envvar
or denv
.envvar
[e
] != bld
.env
[e
]:
1059 # check inputs are the same
1062 for attr
in savedeps_inputs
:
1063 v
= getattr(t
, attr
, None)
1066 if t
.sname
in denv
.input:
1067 olddeps
= denv
.input[t
.sname
]
1070 if tdeps
!= olddeps
:
1071 #print '%s: \ntdeps=%s \nodeps=%s' % (t.sname, tdeps, olddeps)
1074 # put outputs in place
1076 if not t
.sname
in denv
.output
: continue
1077 tdeps
= denv
.output
[t
.sname
]
1079 setattr(t
, a
, tdeps
[a
])
1081 # put output env vars in place
1083 if not t
.sname
in denv
.outenv
: continue
1084 tdeps
= denv
.outenv
[t
.sname
]
1088 debug('deps: loaded saved dependencies')
1093 def check_project_rules(bld
):
1094 '''check the project rules - ensuring the targets are sane'''
1099 tgt_list
= get_tgt_list(bld
)
1101 add_samba_attributes(bld
, tgt_list
)
1103 force_project_rules
= (Options
.options
.SHOWDEPS
or
1104 Options
.options
.SHOW_DUPLICATES
)
1106 if not force_project_rules
and load_samba_deps(bld
, tgt_list
):
1110 tstart
= time
.clock()
1112 bld
.new_rules
= True
1113 Logs
.info("Checking project rules ...")
1115 debug('deps: project rules checking started')
1117 expand_subsystem_deps(bld
)
1119 debug("deps: expand_subsystem_deps: %f" % (time
.clock() - tstart
))
1121 replace_grouping_libraries(bld
, tgt_list
)
1123 debug("deps: replace_grouping_libraries: %f" % (time
.clock() - tstart
))
1125 build_direct_deps(bld
, tgt_list
)
1127 debug("deps: build_direct_deps: %f" % (time
.clock() - tstart
))
1129 break_dependency_loops(bld
, tgt_list
)
1131 debug("deps: break_dependency_loops: %f" % (time
.clock() - tstart
))
1133 if Options
.options
.SHOWDEPS
:
1134 show_dependencies(bld
, Options
.options
.SHOWDEPS
, set())
1136 calculate_final_deps(bld
, tgt_list
, loops
)
1138 debug("deps: calculate_final_deps: %f" % (time
.clock() - tstart
))
1140 if Options
.options
.SHOW_DUPLICATES
:
1141 show_object_duplicates(bld
, tgt_list
)
1143 # run the various attribute generators
1144 for f
in [ build_dependencies
, build_includes
, add_init_functions
]:
1145 debug('deps: project rules checking %s', f
)
1146 for t
in tgt_list
: f(t
)
1147 debug("deps: %s: %f" % (f
, time
.clock() - tstart
))
1149 debug('deps: project rules stage1 completed')
1151 #check_orphaned_targets(bld, tgt_list)
1153 if not check_duplicate_sources(bld
, tgt_list
):
1154 Logs
.error("Duplicate sources present - aborting")
1157 debug("deps: check_duplicate_sources: %f" % (time
.clock() - tstart
))
1159 if not check_group_ordering(bld
, tgt_list
):
1160 Logs
.error("Bad group ordering - aborting")
1163 debug("deps: check_group_ordering: %f" % (time
.clock() - tstart
))
1165 show_final_deps(bld
, tgt_list
)
1167 debug("deps: show_final_deps: %f" % (time
.clock() - tstart
))
1169 debug('deps: project rules checking completed - %u targets checked',
1172 if not bld
.is_install
:
1173 save_samba_deps(bld
, tgt_list
)
1175 debug("deps: save_samba_deps: %f" % (time
.clock() - tstart
))
1177 Logs
.info("Project rules pass")
1180 def CHECK_PROJECT_RULES(bld
):
1181 '''enable checking of project targets for sanity'''
1182 if bld
.env
.added_project_rules
:
1184 bld
.env
.added_project_rules
= True
1185 bld
.add_pre_fun(check_project_rules
)
1186 Build
.BuildContext
.CHECK_PROJECT_RULES
= CHECK_PROJECT_RULES