build: only depend on the actual pidl source files in the pidl rule
[nivanova/samba-autobuild/.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         bld.pidl_files_cache = bld.srcnode.ant_glob('pidl/**/*.pm', flat=False)
55         bld.pidl_files_cache.extend(bld.srcnode.ant_glob('pidl', flat=False))
56         pidl_src_nodes = bld.pidl_files_cache
57
58     # the cd .. is needed because pidl currently is sensitive to the directory it is run in
59     t = bld(rule='cd .. && ${PIDL} ${OPTIONS} --outputdir ${OUTPUTDIR} -- ${SRC[0].abspath(env)}',
60             ext_out    = '.c',
61             before     = 'cc',
62             on_results = True,
63             shell      = True,
64             source     = source,
65             target     = out_files,
66             name       = name,
67             samba_type = 'PIDL')
68
69     # prime the list of nodes we are dependent on with the cached pidl sources
70     t.allnodes = pidl_src_nodes
71
72     t.env.PIDL = "../pidl/pidl"
73     t.env.OPTIONS = TO_LIST(options)
74
75     # this rather convoluted set of path calculations is to cope with the possibility
76     # that gen_ndr is a symlink into the source tree. By doing this for the source3
77     # gen_ndr directory we end up generating identical output in gen_ndr for the old
78     # build system and the new one. That makes keeping things in sync much easier.
79     # eventually we should drop the gen_ndr files in git, but in the meanwhile this works
80     outdir = bld.bldnode.name + '/' + bld.path.find_dir(output_dir).bldpath(t.env)
81
82     if not os.path.lexists(outdir):
83         link_source = os.path.normpath(os.path.join(bld.curdir,output_dir))
84         link_source = os_path_relpath(link_source, os.path.dirname(outdir))
85         os.symlink(link_source, outdir)
86
87     real_outputdir = os.path.realpath(outdir)
88     t.env.OUTPUTDIR = os_path_relpath(real_outputdir, bld.bldnode.name + '/..')
89
90     if table_header_idx is not None:
91         pidl_headers = LOCAL_CACHE(bld, 'PIDL_HEADERS')
92         pidl_headers[name] = [bld.path.find_or_declare(out_files[table_header_idx])]
93
94     t.more_includes = '#' + bld.path.relpath_gen(bld.srcnode)
95 Build.BuildContext.SAMBA_PIDL = SAMBA_PIDL
96
97
98 def SAMBA_PIDL_LIST(bld, name, source,
99                     options='',
100                     output_dir='.',
101                     symlink=False):
102     '''A wrapper for building a set of IDL files'''
103     for p in TO_LIST(source):
104         bld.SAMBA_PIDL(name, p, options=options, output_dir=output_dir, symlink=symlink)
105 Build.BuildContext.SAMBA_PIDL_LIST = SAMBA_PIDL_LIST
106
107
108 #################################################################
109 # the rule for generating the NDR tables
110 from TaskGen import feature, before
111 @feature('collect')
112 @before('exec_rule')
113 def collect(self):
114     pidl_headers = LOCAL_CACHE(self.bld, 'PIDL_HEADERS')
115     for (name, hd) in pidl_headers.items():
116         y = self.bld.name_to_obj(name, self.env)
117         self.bld.ASSERT(y is not None, 'Failed to find PIDL header %s' % name)
118         y.post()
119         for node in hd:
120             self.source += " " + node.relpath_gen(self.path)
121
122
123 def SAMBA_PIDL_TABLES(bld, name, target):
124     headers = bld.env.PIDL_HEADERS
125     t = bld(
126             features = 'collect',
127             rule     = '${SRC} --output ${TGT} | sed "s|default/||" > ${TGT}',
128             ext_out  = '.c',
129             before   = 'cc',
130             on_results = True,
131             shell    = True,
132             source   = '../../librpc/tables.pl',
133             target   = target,
134             name     = name)
135 Build.BuildContext.SAMBA_PIDL_TABLES = SAMBA_PIDL_TABLES
136