2 # Thomas Nagy, 2006-2010 (ita)
5 Add a pre-build hook to remove all build files
6 which do not have a corresponding target
8 This can be used for example to remove the targets
9 that have changed name without performing
12 Of course, it will only work if there are no dynamically generated
13 nodes/tasks, in which case the method will have to be modified
14 to exclude some folders for example.
17 from waflib
import Logs
, Build
, Options
, Utils
, Errors
19 from wafsamba
import samba_utils
20 from Runner
import Parallel
22 old_refill_task_list
= Parallel
.refill_task_list
23 def replace_refill_task_list(self
):
24 '''replacement for refill_task_list() that deletes stale files'''
26 iit
= old_refill_task_list(self
)
29 if not getattr(bld
, 'new_rules', False):
30 # we only need to check for stale files if the build rules changed
33 if Options
.options
.compile_targets
:
34 # not safe when --target is used
38 if getattr(self
, 'cleanup_done', False):
40 self
.cleanup_done
= True
43 tm
= self
.bld
.task_manager
44 return [x
for x
in tm
.groups_names
if id(tm
.groups_names
[x
]) == id(g
)][0]
46 bin_base
= bld
.bldnode
.abspath()
47 bin_base_len
= len(bin_base
)
50 if bin_base
[-4:] != '/bin':
51 raise Errors
.WafError("Invalid bin base: %s" % bin_base
)
53 # obtain the expected list of files
55 for i
in range(len(bld
.task_manager
.groups
)):
56 g
= bld
.task_manager
.groups
[i
]
60 if getattr(x
, 'target'):
61 tlist
= samba_utils
.TO_LIST(getattr(x
, 'target'))
62 ttype
= getattr(x
, 'samba_type', None)
63 task_list
= getattr(x
, 'compiled_tasks', [])
65 # this gets all of the .o files, including the task
66 # ids, so foo.c maps to foo_3.o for idx=3
68 for output
in tsk
.outputs
:
69 objpath
= os
.path
.normpath(output
.abspath(bld
.env
))
70 expected
.append(objpath
)
72 if ttype
in ['LIBRARY', 'PLUGIN', 'MODULE']:
73 t
= samba_utils
.apply_pattern(t
, bld
.env
.shlib_PATTERN
)
75 t
= samba_utils
.apply_pattern(t
, bld
.env
.pyext_PATTERN
)
76 p
= os
.path
.join(x
.path
.abspath(bld
.env
), t
)
77 p
= os
.path
.normpath(p
)
80 p
= n
.abspath(bld
.env
)
81 if p
[0:bin_base_len
] == bin_base
:
86 for root
, dirs
, files
in os
.walk(bin_base
):
91 if link
[0:bin_base_len
] == bin_base
:
95 (froot
, fext
) = os
.path
.splitext(f
)
96 if fext
not in [ '.c', '.h', '.so', '.o' ]:
98 if f
[-7:] == '.inst.h':
100 if p
.find("/.conf") != -1:
102 if not p
in expected
and os
.path
.exists(p
):
103 Logs
.warn("Removing stale file: %s" % p
)
108 def AUTOCLEANUP_STALE_FILES(bld
):
109 """automatically clean up any files in bin that shouldn't be there"""
110 global old_refill_task_list
111 old_refill_task_list
= Parallel
.refill_task_list
112 Parallel
.refill_task_list
= replace_refill_task_list
114 Build
.BuildContext
.AUTOCLEANUP_STALE_FILES
= AUTOCLEANUP_STALE_FILES