build: make use on_results=True for some build rules
[samba.git] / buildtools / wafsamba / samba_pidl.py
1 # waf build tool for building IDL files with pidl
2
3 from TaskGen import before
4 import Build, os
5 from samba_utils import *
6
7 def SAMBA_PIDL(bld, pname, source,
8                options='',
9                output_dir='.',
10                symlink=False):
11     '''Build a IDL file using pidl.
12        This will produce up to 13 output files depending on the options used'''
13
14     bname = source[0:-4]; # strip off the .idl suffix
15     name = "%s_%s" % (pname, bname.upper())
16
17     if not SET_TARGET_TYPE(bld, name, 'PIDL'):
18         return
19
20     bld.SET_BUILD_GROUP('build_source')
21
22     # the output files depend on the options used. Use this dictionary
23     # to map between the options and the resulting file names
24     options_map = { '--header'            : '%s.h',
25                     '--ndr-parser'        : 'ndr_%s.c ndr_%s.h',
26                     '--samba3-ndr-server' : 'srv_%s.c srv_%s.h',
27                     '--samba3-ndr-client' : 'cli_%s.c cli_%s.h',
28                     '--server'            : 'ndr_%s_s.c',
29                     '--client'            : 'ndr_%s_c.c ndr_%s_c.h',
30                     '--python'            : 'py_%s.c',
31                     '--tdr-parser'        : 'tdr_%s.c tdr_%s.h',
32                     '--dcom-proxy'        : '%s_p.c',
33                     '--com-header'        : 'com_%s.h'
34                     }
35
36     table_header_idx = None
37     out_files = []
38     options_list = TO_LIST(options)
39
40     for o in options_list:
41         if o in options_map:
42             ofiles = TO_LIST(options_map[o])
43             for f in ofiles:
44                 out_files.append(os.path.join(output_dir, f % bname))
45                 if f == 'ndr_%s.h':
46                     # remember this one for the tables generation
47                     table_header_idx = len(out_files) - 1
48
49     # depend on the full pidl sources
50     source = TO_LIST(source)
51     try:
52         pidl_src_nodes = bld.pidl_files_cache
53     except AttributeError:
54         pidl_src_nodes = bld.pidl_files_cache = bld.srcnode.ant_glob('pidl/**/*', flat=False)
55
56     # the cd .. is needed because pidl currently is sensitive to the directory it is run in
57     t = bld(rule='cd .. && ${PIDL} ${OPTIONS} --outputdir ${OUTPUTDIR} -- ${SRC[0].abspath(env)}',
58             ext_out    = '.c',
59             before     = 'cc',
60             on_results = True,
61             shell      = True,
62             source     = source,
63             target     = out_files,
64             name       = name,
65             samba_type = 'PIDL')
66
67     # prime the list of nodes we are dependent on with the cached pidl sources
68     t.allnodes = pidl_src_nodes
69
70     t.env.PIDL = "../pidl/pidl"
71     t.env.OPTIONS = TO_LIST(options)
72
73     # this rather convoluted set of path calculations is to cope with the possibility
74     # that gen_ndr is a symlink into the source tree. By doing this for the source3
75     # gen_ndr directory we end up generating identical output in gen_ndr for the old
76     # build system and the new one. That makes keeping things in sync much easier.
77     # eventually we should drop the gen_ndr files in git, but in the meanwhile this works
78     outdir = bld.bldnode.name + '/' + bld.path.find_dir(output_dir).bldpath(t.env)
79
80     if not os.path.lexists(outdir):
81         link_source = os.path.normpath(os.path.join(bld.curdir,output_dir))
82         link_source = os_path_relpath(link_source, os.path.dirname(outdir))
83         os.symlink(link_source, outdir)
84
85     real_outputdir = os.path.realpath(outdir)
86     t.env.OUTPUTDIR = os_path_relpath(real_outputdir, bld.bldnode.name + '/..')
87
88     if table_header_idx is not None:
89         pidl_headers = LOCAL_CACHE(bld, 'PIDL_HEADERS')
90         pidl_headers[name] = [bld.path.find_or_declare(out_files[table_header_idx])]
91
92     t.more_includes = '#' + bld.path.relpath_gen(bld.srcnode)
93 Build.BuildContext.SAMBA_PIDL = SAMBA_PIDL
94
95
96 def SAMBA_PIDL_LIST(bld, name, source,
97                     options='',
98                     output_dir='.',
99                     symlink=False):
100     '''A wrapper for building a set of IDL files'''
101     for p in TO_LIST(source):
102         bld.SAMBA_PIDL(name, p, options=options, output_dir=output_dir, symlink=symlink)
103 Build.BuildContext.SAMBA_PIDL_LIST = SAMBA_PIDL_LIST
104
105
106 #################################################################
107 # the rule for generating the NDR tables
108 from TaskGen import feature, before
109 @feature('collect')
110 @before('exec_rule')
111 def collect(self):
112     pidl_headers = LOCAL_CACHE(self.bld, 'PIDL_HEADERS')
113     for (name, hd) in pidl_headers.items():
114         y = self.bld.name_to_obj(name, self.env)
115         self.bld.ASSERT(y is not None, 'Failed to find PIDL header %s' % name)
116         y.post()
117         for node in hd:
118             self.source += " " + node.relpath_gen(self.path)
119
120
121 def SAMBA_PIDL_TABLES(bld, name, target):
122     headers = bld.env.PIDL_HEADERS
123     t = bld(
124             features = 'collect',
125             rule     = '${SRC} --output ${TGT} | sed "s|default/||" > ${TGT}',
126             ext_out  = '.c',
127             before   = 'cc',
128             on_results = True,
129             shell    = True,
130             source   = '../../librpc/tables.pl',
131             target   = target,
132             name     = name)
133 Build.BuildContext.SAMBA_PIDL_TABLES = SAMBA_PIDL_TABLES
134