94b1b1cf50f469bd0a8c7c0ca99d5fb91436b721
[senf.git] / senfscons / SENFSCons.py
1 ## \file
2 # \brief SENFSCons package
3
4 ## \package senfscons.SENFSCons
5 # \brief Build helpers and utilities
6 #
7 # The SENFSCons package contains a number of build helpers and
8 # utilities which are used to simplify commmon tasks.
9 #
10 # The utitlities of this package are grouped into:
11 # <dl><dt>\ref use</dt><dd>help using complex environments and
12 # configure the construction environmen correspondingly</dd>
13 #
14 # <dt>\ref target</dt><dd>simplify building common targest and include
15 # enhanced functionality like unit-testing.</dd></dl>
16 #
17 # Additionally for external use are
18 # <dl><dt>MakeEnvironment()</dt><dd>Build construction
19 # environment</dd>
20 #
21 # <dt>GlobSources()</dt><dd>Utility to find source files</dd></dl>
22 #
23 # All other functions are for internal use only.
24
25 import os.path, glob
26 import SCons.Options, SCons.Environment, SCons.Script.SConscript, SCons.Node.FS
27 import SCons.Defaults, SCons.Action
28
29 ## \defgroup use Predefined Framework Configurators
30 #
31 # The following framework configurators are used in the top level \c
32 # SConstruct file to simplify more complex configurations.
33 #
34 # Each of the framework configurators introduces additional
35 # configuration parameters to \ref sconfig
36
37 ## \defgroup target Target Helpers
38 #
39 # To specify standard targets, the following helpers can be used. They
40 # automatically integrate several modules (like documentation,
41 # unit-testing etc).
42
43 ## \defgroup builder Builders
44 #
45 # The SENFSCons framework includes a series of builders. Each builder
46 # is defined in it's own package.
47
48 # Tools to load in MakeEnvironment
49 SCONS_TOOLS = [
50     "Doxygen",
51     "Dia2Png",
52     "CopyToDir",
53     "InstallIncludes",
54     "ProgramNoScan",
55     "CompileCheck",
56 ]
57
58 opts = None
59 finalizers = []
60
61 # This is the directory SENFSCons.py resides
62 basedir = os.path.abspath(os.path.split(__file__)[0])
63
64 ## \brief Initialize configuration options
65 # \internal
66 def InitOpts():
67     global opts
68     if opts is not None: return
69     opts = SCons.Options.Options('SConfig')
70     opts.Add('CXX', 'C++ compiler to use', 'g++')
71     opts.Add('EXTRA_DEFINES', 'Additional preprocessor defines', '')
72     opts.Add('EXTRA_LIBS', 'Additional libraries to link against', '')
73     opts.Add(SCons.Options.BoolOption('final','Enable optimization',0))
74     opts.Add('PREFIX', 'Installation prefix', '/usr/local')
75     opts.Add('LIBINSTALLDIR', 'Library install dir', '$PREFIX/lib')
76     opts.Add('BININSTALLDIR', 'Executable install dir', '$PREFIX/bin')
77     opts.Add('INCLUDEINSTALLDIR', 'Include-file install dir', '$PREFIX/include')
78     opts.Add('OBJINSTALLDIR', 'Static object file install dir', '$LIBINSTALLDIR')
79     opts.Add('DOCINSTALLDIR', 'Documentation install dir', '$PREFIX/doc')
80     opts.Add('CPP_INCLUDE_EXTENSIONS', 'File extensions to include in source install',
81              [ '.h', '.hh', '.ih', '.mpp', '.cci', '.ct', '.cti', '.mpp' ])
82     opts.Add('CPP_EXCLUDE_EXTENSIONS', 'File extensions to exclude from source install',
83              [ '.test.hh' ])
84
85 # A finalizer is any callable object. All finalizers will be called
86 # in MakeEnvironment. We use them so every finalizer has knowledge of
87 # all frameworks in use (e.g.: the boost runtime depends on the use of
88 # stlport).
89
90 ## \brief Register finalizer
91 # \internal
92 def Finalizer(f):
93     global finalizers
94     finalizers.append(f)
95
96 ## \brief Initialize the use of the <a href="http://www.boost.org/">Boost</a> library
97 #
98 # Configure the use of the <a href="http://www.boost.org">Boost</a>
99 # libraries. Most of these libraries are header-only, some however
100 # depend on a built library. The library selection is somewhat
101 # involved and depends on the threading model and the type of build
102 # (debug or final).
103 #
104 # \par Configuration Parameters:
105 #     <table class="senf">
106 #     <tr><td>\c BOOST_INCLUDES</td><td>Include directory.</td></tr>
107 #     <tr><td>\c BOOST_LIBDIR</td><td>Library directory</td></tr>
108 #     <tr><td>\c BOOST_VARIANT</td><td>Complete variant specification</td></tr>
109 #     <tr><td>\c BOOST_TOOLSET</td><td>Toolset to use</td></tr>
110 #     <tr><td>\c BOOST_RUNTIME</td><td>Runtime to use</td></tr>
111 #     <tr><td>\c BOOST_DEBUG_RUNTIME</td><td>Explicit debug runtime</td></tr>
112 #     </table>
113 #
114 # You can either specify \c BOOST_VARIANT explicitly or specify \c
115 # BOOST_TOOLSET and \c BOOST_RUNTIME. If you give \c BOOST_TOOLSET, \c
116 # BOOST_RUNTIME defaults to empty and \c BOOST_DEBUG_RUNTIME defaults
117 # to \c gd, If \c BOOST_TOOLSET is specified and you have included
118 # STLPort support (UseSTLPort()), then \c p is appended to both
119 # runtimes.
120 #
121 # The Boost configuration can get realtively complex. If the boost
122 # libraries are provided by the distribution, you probably don't need
123 # to specify any parameters. If your configuration is more complex,
124 # refer to the <a
125 # href="http://www.boost.org/tools/build/v2/index.html">Boost.Build</a>
126 # documentation for a definition of the terms used above (toolset,
127 # variant, runtime ...).
128 #
129 # \ingroup use
130 def UseBoost():
131     global opts
132     InitOpts()
133     opts.Add('BOOST_INCLUDES', 'Boost include directory', '')
134     opts.Add('BOOST_VARIANT', 'The boost variant to use', '')
135     opts.Add('BOOST_TOOLSET', 'The boost toolset to use', '')
136     opts.Add('BOOST_RUNTIME', 'The boost runtime to use', '')
137     opts.Add('BOOST_DEBUG_RUNTIME', 'The boost debug runtime to use', '')
138     opts.Add('BOOST_LIBDIR', 'The directory of the boost libraries', '')
139     Finalizer(FinalizeBoost)
140
141 ## \brief Finalize Boost environment
142 # \internal
143 def FinalizeBoost(env):
144     env.Tool('BoostUnitTests', [basedir])
145
146     if env['BOOST_TOOLSET']:
147         runtime = ""
148         if env['final'] : runtime += env.get('BOOST_RUNTIME','')
149         else            : runtime += env.get('BOOST_DEBUG_RUNTIME','gd')
150         if env['STLPORT_LIB'] : runtime += "p"
151         if runtime: runtime = "-" + runtime
152         env['BOOST_VARIANT'] = "-" + env['BOOST_TOOLSET'] + runtime
153
154     env['BOOSTTESTLIB'] = 'boost_unit_test_framework' + env['BOOST_VARIANT']
155     env['BOOSTREGEXLIB'] = 'boost_regex' + env['BOOST_VARIANT']
156     env['BOOSTFSLIB'] = 'boost_filesystem' + env['BOOST_VARIANT']
157     env['BOOSTIOSTREAMSLIB'] = 'boost_iostreams' + env['BOOST_VARIANT']
158
159     env.Append(LIBPATH = [ '$BOOST_LIBDIR' ],
160                CPPPATH = [ '$BOOST_INCLUDES' ])
161
162 ## \brief Use STLPort as STL replacement if available
163 #
164 # Use <a href="http://www.stlport.org">STLPort</a> as a replacement
165 # for the system STL. STLPort has the added feature of providing fully
166 # checked containers and iterators. This can greatly simplify
167 # debugging. However, STLPort and Boost interact in a non-trivial way
168 # so the configuration is relatively complex. This command does not
169 # enforce the use of STLPort, it is only used if available.
170 #
171 # \par Configuration Parameters:
172 #     <table class="senf">
173 #     <tr><td>\c STLPORT_INCLUDES</td><td>Include directory.</td></tr>
174 #     <tr><td>\c STLPORT_LIBDIR</td><td>Library directory</td></tr>
175 #     <tr><td>\c STLPORT_LIB</td><td>Name of STLPort library</td></tr>
176 #     <tr><td>\c STLPORT_DEBUGLIB</td><td>Name of STLPort debug library</td></tr>
177 #     </table>
178 #
179 # If \c STLPORT_LIB is specified, \c STLPORT_DEBUGLIB defaults to \c
180 # STLPORT_LIB with \c _stldebug appended. The STLPort library will
181 # only be used, if \c STLPORT_LIB is set in \c SConfig.
182 #
183 # \ingroup use
184 def UseSTLPort():
185     global opts
186     InitOpts()
187     opts.Add('STLPORT_INCLUDES', 'STLport include directory', '')
188     opts.Add('STLPORT_LIB', 'Name of the stlport library or empty to not use stlport', '')
189     opts.Add('STLPORT_DEBUGLIB', 'Name of the stlport debug library','')
190     opts.Add('STLPORT_LIBDIR', 'The directory of the stlport libraries','')
191     Finalizer(FinalizeSTLPort)
192
193 # \}
194
195 ## \brief Finalize STLPort environment
196 # \internal
197 def FinalizeSTLPort(env):
198     if env['STLPORT_LIB']:
199         if not env['STLPORT_DEBUGLIB']:
200             env['STLPORT_DEBUGLIB'] = env['STLPORT_LIB'] + '_stldebug'
201         env.Append(LIBPATH = [ '$STLPORT_LIBDIR' ],
202                    CPPPATH = [ '$STLPORT_INCLUDES' ])
203         if env['final']:
204             env.Append(LIBS = [ '$STLPORT_LIB' ])
205         else:
206             env.Append(LIBS = [ '$STLPORT_DEBUGLIB' ],
207                        CPPDEFINES = [ '_STLP_DEBUG' ])
208
209 ## \brief Build a configured construction environment
210 #
211 # This function is called after all frameworks are specified to build
212 # a tailored construction environment. You can then use this
213 # construction environment just like an ordinary SCons construction
214 # environment (which it is ...)
215 #
216 # This call will set some default compilation parameters depending on
217 # the \c final command line option: specifying <tt>final=1</tt> will
218 # built a release version of the code.
219 def MakeEnvironment():
220     global opts, finalizers
221     InitOpts()
222     env = SCons.Environment.Environment(options=opts)
223     env.Replace(**SCons.Script.SConscript.Arguments)
224     #for opt in opts.options:
225     #    if SCons.Script.SConscript.Arguments.get(opt.key):
226     #        env[opt.key] = SCons.Script.SConscript.Arguments.get(opt.key)
227     #if SCons.Script.SConscript.Arguments.get('final'):
228     #    env['final'] = 1
229     env.Help("\nSupported build variables (either in SConfig or on the command line:\n")
230     env.Help(opts.GenerateHelpText(env))
231
232     # We want to pass the SSH_AUTH_SOCK system env-var so we can ssh
233     # into other hosts from within SCons rules. I have used rules like
234     # this e.g. to automatically install stuff on a remote system ...
235     if os.environ.has_key('SSH_AUTH_SOCK'):
236         env.Append( ENV = { 'SSH_AUTH_SOCK': os.environ['SSH_AUTH_SOCK'] } )
237
238     for finalizer in finalizers:
239         finalizer(env)
240
241     for tool in SCONS_TOOLS:
242         env.Tool(tool, [basedir])
243
244     # These are the default compilation parameters. We should probably
245     # make these configurable
246     env.Append(LOCALLIBDIR = [ '#' ],
247                LIBPATH = [ '$LOCALLIBDIR' ])
248
249     if env['final']:
250         env.Append(CXXFLAGS = [ '-O3' ])
251     else:
252         # The boost-regex library is not compiled with _GLIBCXX_DEBUG so this fails:
253         #          CPPDEFINES = [ '_GLIBCXX_DEBUG' ],
254         env.Append(CXXFLAGS = [ '-O0', '-g' ],
255                    CPPDEFINES = [ 'SENF_DEBUG' ],
256                    LINKFLAGS = [ '-g', '-rdynamic' ])
257
258     env.Append(CPPDEFINES = [ '$EXTRA_DEFINES' ],
259                LIBS = [ '$EXTRA_LIBS' ],
260                ALLLIBS = [])
261
262     return env
263
264 ## \brief Find normal and test C++ sources
265 #
266 # GlobSources() will return a list of all C++ source files (named
267 # "*.cc") as well as a list of all unit-test files (named "*.test.cc")
268 # in the current directory. The sources will be returned as a tuple of
269 # sources, test-sources. The target helpers all accept such a tuple as
270 # their source argument.
271 def GlobSources(exclude=[], subdirs=[]):
272     testSources = glob.glob("*.test.cc")
273     sources = [ x for x in glob.glob("*.cc") if x not in testSources and x not in exclude ]
274     for subdir in subdirs:
275         testSources += glob.glob(os.path.join(subdir,"*.test.cc"))
276         sources += [ x for x in glob.glob(os.path.join(subdir,"*.cc"))
277                      if x not in testSources and x not in exclude ]
278     return (sources, testSources)
279
280 ## \brief Add generic standard targets for every module
281 #
282 # This target helper should be called in the top-level \c SConstruct file
283 # as well as in every module \c SConscipt file. It adds general
284 # targets. Right now, these are
285 # \li clean up \c .sconsign, \c .sconf_temp and \c config.log on
286 #   <tt>scons -c all</tt>
287 #
288 # \ingroup target
289 def StandardTargets(env):
290     env.Clean(env.Alias('all'), [ '.sconsign', '.sconf_temp', 'config.log' ])
291
292 ## \brief Add generic global targets
293 #
294 # This target helper should be called in the top-level \c SConstruct
295 # file. It adds general global targets. Right now theese are
296 # \li Make <tt>scons all</tt> build all targets.
297 #
298 # \ingroup target
299 def GlobalTargets(env):
300     env.Alias('all', [ 'default', 'all_tests', 'all_docs' ])
301
302 ## \brief Return path of a built library within $LOCALLIBDIR
303 # \internal
304 def LibPath(lib): return '${LOCALLIBDIR}/${LIBPREFIX}%s${LIBADDSUFFIX}${LIBSUFFIX}' % lib
305
306 def Test(env, sources, LIBS = [], OBJECTS = []):
307     test = [ env.BoostUnitTests(
308         target = 'test',
309         objects = [],
310         test_sources = sources,
311         LIBS = [ x + '$LIBADDSUFFIX' for x in LIBS ],
312         OBJECTS = OBJECTS,
313         DEPENDS = [ env.File(LibPath(x)) for x in LIBS ]) ]
314     compileTestSources = [ src for src in sources
315                            if 'COMPILE_CHECK' in file(src).read() ]
316     if compileTestSources:
317         test.extend(env.CompileCheck(source = compileTestSources))
318     env.Alias('all_tests', test)
319     env.Alias(env.File('test'), test)
320     
321
322 ## \brief Build object files
323 #
324 # This target helper will build object files from the given
325 # sources.
326 #
327 # If \a testSources are given, a unit test will be built using the <a
328 # href="http://www.boost.org/libs/test/doc/index.html">Boost.Test</a>
329 # library. \a LIBS may specify any additional library modules <em>from
330 # the same project</em> on which the test depends. Those libraries
331 # will be linked into the final test executable. The test will
332 # automatically be run if the \c test or \c all_tests targets are
333 # given.
334 #
335 # If \a sources is a 2-tuple as returned by GlobSources(), it will
336 # provide both \a sources and \a testSources.
337 #
338 # \ingroup target
339 def Objects(env, sources, testSources = None, LIBS = [], OBJECTS = [], no_includes = False):
340     if type(sources) == type(()):
341         testSources = sources[1]
342         sources = sources[0]
343     if type(sources) is not type([]):
344         sources = [ sources ]
345
346     objects = None
347     if sources:
348         obsources = [ source
349                       for source in sources
350                       if not str(source).endswith('.o') ]
351         objects = [ source
352                     for source in sources
353                     if str(source).endswith('.o') ]
354         if obsources:
355             objects += env.Object(obsources)
356
357     if testSources:
358         test = [ env.BoostUnitTests(
359             target = 'test',
360             objects = objects,
361             test_sources = testSources,
362             LIBS = [ x + '$LIBADDSUFFIX' for x in LIBS ],
363             OBJECTS = OBJECTS,
364             DEPENDS = [ env.File(LibPath(x)) for x in LIBS ]) ]
365         compileTestSources = [ src for src in testSources
366                                if 'COMPILE_CHECK' in file(src).read() ]
367         if compileTestSources:
368             test.extend(env.CompileCheck(source = compileTestSources))
369         env.Alias('all_tests', test)
370         # Hmm ... here I'd like to use an Alias instead of a file
371         # however the alias does not seem to live in the subdirectory
372         # which breaks 'scons -u test'
373         env.Alias(env.File('test'), test)
374
375     return objects
376
377 def InstallIncludeFiles(env, files):
378     # Hrmpf ... why do I need this in 0.97??
379     if env.GetOption('clean'):
380         return
381     target = env.Dir(env['INCLUDEINSTALLDIR'])
382     base = env.Dir(env['INSTALL_BASE'])
383     for f in files:
384         src = env.File(f)
385         env.Alias('install_all', env.Install(target.Dir(src.dir.get_path(base)), src))
386
387 def InstallSourceIncludes(env, sources):
388     target = env.Dir(env['INCLUDEINSTALLDIR']).Dir(
389         env.Dir('.').get_path(env.Dir(env['INSTALL_BASE'])))
390     install = env.InstallIncludes( target = target,
391                                    source = [ type(x) is str and env.File(x) or x
392                                               for x in sources ],
393                                    INSTALL_BASE = env.Dir('.') )
394     env.Alias( 'install_all', install )
395
396 def InstallWithSources(env, targets, dir, sources, testSources = [], no_includes = False):
397     if type(sources) is type(()):
398         sources, testSources = sources
399     if type(sources) is not type([]):
400         sources = [ sources ]
401     if type(testSources) is not type([]):
402         testSources = [ testSources ]
403
404     installs = [ env.Install(dir, targets) ]
405     env.Alias( 'install_all', installs[:] )
406
407     if not no_includes:
408         sources = targets
409         if testSources:
410             sources.append( env.File('.test.bin') )
411         installs.append(
412             InstallSourceIncludes(env, sources))
413
414     return installs
415
416 ## \brief Build documentation with doxygen
417 #
418 # The doxygen target helper will build software documentation using
419 # the given \a doxyfile (which defaults to \c Doxyfile). The Doxygen
420 # builder used supports automatic dependency generation (dependencies
421 # are automatically generated from the parameters specified in the \a
422 # doxyfile), automatic target emitters (the exact targets created are
423 # found parsing the \a doxyfile) and lots of other features. See the
424 # Doxygen builder documentation
425 #
426 # If \a extra_sources are given, the generated documentation will
427 # depend on them. This can be used to build images or other
428 # supplementary files.
429 #
430 # The doxygen target helper extends the builder with additional
431 # functionality:
432 #
433 # \li Fix tagfiles by removing namespace entries. These entries only
434 #     work for namespaces completely defined in a single module. As
435 #     soon as another module (which references the tagfile) has it's
436 #     own members in that namespace, the crosslinking will break.
437 # \li If \c DOXY_HTML_XSL is defined as a construction environment
438 #     variable, preprocess all generated html files (if html files are
439 #     generated) by the given XSLT stylesheet. Since the HTML
440 #     generated by doxygen is broken, we first filter the code through
441 #     HTML-\c tidy and filter out some error messages.
442 # \li If xml output is generated we create files \c bug.xmli and \c
443 #     todo.xmli which contain all bugs and todo items specified in the
444 #     sources. The format of these files is much more suited to
445 #     postprocessing and is a more database like format as the doxygen
446 #     generated files (which are more presentation oriented). if \c
447 #     DOXY_XREF_TYPES is given, it will specify the cross reference
448 #     types to support (defaults to \c bug and \c todo). See <a
449 #     href="http://www.stack.nl/~dimitri/doxygen/commands.html#cmdxrefitem">\xrefitem</a>
450 #     in the doxygen documentation.
451 #
452 # \ingroup target
453 def Doxygen(env, doxyfile = "Doxyfile", extra_sources = []):
454     # ARGHHH !!! without the [:] we are changing the target list
455     #        ||| WITHIN THE DOXYGEN BUILDER
456     docs = env.Doxygen(doxyfile)[:]
457     xmlnode = None
458     htmlnode = None
459     tagnode = None
460     for doc in docs:
461         if isinstance(doc,SCons.Node.FS.Dir): continue
462         if doc.name == 'xml.stamp' : xmlnode = doc
463         if doc.name == 'html.stamp' : htmlnode = doc
464         if doc.name == 'search.idx' : continue
465         if os.path.splitext(doc.name)[1] == '.stamp' : continue # ignore other file stamps
466         # otherwise it must be the tag file
467         tagnode = doc
468
469     if tagnode:
470         # Postprocess the tag file to remove the (broken) namespace
471         # references
472         env.AddPostAction(
473             docs,
474             SCons.Action.Action("xsltproc --nonet -o %(target)s.temp %(template)s %(target)s && mv %(target)s.temp %(target)s"
475                        % { 'target': tagnode.abspath,
476                            'template': os.path.join(basedir,"tagmunge.xsl") }))
477
478     if htmlnode and env.get('DOXY_HTML_XSL'):
479         xslfile = env.File(env['DOXY_HTML_XSL'])
480         reltopdir = '../' * len(htmlnode.dir.abspath[len(env.Dir('#').abspath)+1:].split('/'))
481         if reltopdir : reltopdir = reltopdir[:-1]
482         else         : reltopdir = '.'
483         env.AddPostAction(
484             docs,
485             SCons.Action.Action(("for html in %s/*.html; do " +
486                         "    echo $$html;" +
487                         "    mv $${html} $${html}.orig;" +
488                         "    sed -e 's/id=\"current\"/class=\"current\"/' $${html}.orig" +
489                         "        | tidy -ascii -q --wrap 0 --show-warnings no --fix-uri no " +
490                         "        | sed -e 's/name=\"\([^\"]*\)\"\([^>]*\) id=\"\\1\"/name=\"\\1\"\\2/g'" +
491                         "        | xsltproc --novalid --nonet --html --stringparam topdir %s -o $${html} %s -;"
492                         "done; true")
493                        % (htmlnode.dir.abspath, reltopdir, xslfile.abspath)))
494         for doc in docs:
495             env.Depends(doc, xslfile)
496
497     if xmlnode:
498         xrefs = []
499         for type in env.get("DOXY_XREF_TYPES",[ "bug", "todo" ]):
500             xref = os.path.join(xmlnode.dir.abspath,type+".xml")
501             xref_pp = env.Command(xref+'i', [ xref, os.path.join(basedir,'xrefxtract.xslt'), xmlnode ],
502                                   [ "test -s $SOURCE && xsltproc --nonet -o $TARGET" +
503                                     " --stringparam module $MODULE" +
504                                     " --stringparam type $TYPE" +
505                                     " ${SOURCES[1]} $SOURCE || touch $TARGET" ],
506                                   MODULE = xmlnode.dir.dir.dir.abspath[
507                                                len(env.Dir('#').abspath)+1:],
508                                   TYPE = type)
509             env.SideEffect(xref, xmlnode)
510             env.AddPreAction(docs, "rm -f %s" % (xref,))
511             env.AddPostAction(docs, "test -r %s || touch %s" % (xref,xref))
512             xrefs.extend(xref_pp)
513         docs.extend(xrefs)
514
515     if extra_sources and htmlnode:
516         env.Depends(docs,
517                     [ env.CopyToDir( source=source, target=htmlnode.dir )
518                       for source in extra_sources ])
519
520     if extra_sources and xmlnode:
521         env.Depends(docs,
522                     [ env.CopyToDir( source=source, target=xmlnode.dir )
523                       for source in extra_sources ])
524
525     if not htmlnode and not xmlnode:
526         env.Depends(docs, extra_sources)
527
528     for doc in docs :
529         env.Alias('all_docs', doc)
530         env.Clean('all_docs', doc)
531         env.Clean('all', doc)
532
533     l = len(env.Dir('#').abspath)
534     if htmlnode:
535         env.Alias('install_all',
536                   env.Command('$DOCINSTALLDIR' + htmlnode.dir.abspath[l:], htmlnode.dir,
537                               [ SCons.Defaults.Copy('$TARGET','$SOURCE') ]))
538     if tagnode:
539         env.Alias('install_all',
540                   env.Install( '$DOCINSTALLDIR' + tagnode.dir.abspath[l:],
541                                tagnode ))
542
543     return docs
544
545 ## \brief Build combined doxygen cross-reference
546 #
547 # This command will build a complete cross-reference of \c xrefitems
548 # accross all modules.
549 #
550 # Right now, this command is very project specific. It needs to be
551 # generalized.
552 #
553 # \ingroup target
554 def DoxyXRef(env, docs=None,
555              HTML_HEADER = None, HTML_FOOTER = None,
556              TITLE = "Cross-reference of action points"):
557     if docs is None:
558         docs = env.Alias('all_docs')[0].sources
559     xrefs = [ doc for doc in docs if os.path.splitext(doc.name)[1] == ".xmli" ]
560     xref = env.Command("doc/html/xref.xml", xrefs,
561                        [ "echo '<?xml version=\"1.0\"?>' > $TARGET",
562                          "echo '<xref>' >> $TARGET",
563                          "cat $SOURCES >> $TARGET",
564                          "echo '</xref>' >>$TARGET" ])
565
566     # Lastly we create the html file
567     sources = [ xref, "%s/xrefhtml.xslt" % basedir ]
568     if HTML_HEADER : sources.append(HTML_HEADER)
569     if HTML_FOOTER : sources.append(HTML_FOOTER)
570
571     commands = []
572     if HTML_HEADER:
573         commands.append("sed" +
574                         " -e 's/\\$$title/$TITLE/g'" +
575                         " -e 's/\\$$projectname/Overview/g'" +
576                         " ${SOURCES[2]} > $TARGET")
577     commands.append("xsltproc" +
578                     " --stringparam title '$TITLE'" +
579                     " --stringparam types '$DOXY_XREF_TYPES'" +
580                     " ${SOURCES[1]} $SOURCE >> $TARGET")
581     if HTML_FOOTER:
582         commands.append(
583             "sed -e 's/\\$$title/$TITLE/g' -e 's/\\$$projectname/Overview/g' ${SOURCES[%d]} >> $TARGET"
584             % (HTML_HEADER and 3 or 2))
585
586     if env.get('DOXY_HTML_XSL'):
587         xslfile = env.File(env['DOXY_HTML_XSL'])
588         reltopdir = '../' * len(xref[0].dir.abspath[len(env.Dir('#').abspath)+1:].split('/'))
589         if reltopdir : reltopdir = reltopdir[:-1]
590         else         : reltopdir = '.'
591         commands.append(("xsltproc -o ${TARGET}.tmp" +
592                          " --nonet --html" +
593                          " --stringparam topdir %s" +
594                          " ${SOURCES[-1]} $TARGET 2>/dev/null")
595                         % reltopdir)
596         commands.append("mv ${TARGET}.tmp ${TARGET}")
597         sources.append(xslfile)
598         
599     xref = env.Command("doc/html/xref.html", sources, commands,
600                        TITLE = TITLE)
601
602     env.Alias('all_docs',xref)
603     return xref
604
605
606 ## \brief Build library
607 #
608 # This target helper will build the given library. The library will be
609 # called lib<i>library</i>.a as is customary on UNIX systems. \a
610 # sources, \a testSources and \a LIBS are directly forwarded to the
611 # Objects build helper.
612 #
613 # The library is added to the list of default targets.
614 #
615 #\ingroup target
616 def Lib(env, library, sources, testSources = None, LIBS = [], OBJECTS = [], no_includes = False):
617     objects = Objects(env,sources,testSources,LIBS=LIBS,OBJECTS=OBJECTS)
618     lib = None
619     if objects:
620         lib = env.Library(env.File(LibPath(library)),objects)
621         env.Default(lib)
622         env.Append(ALLLIBS = library)
623         env.Alias('default', lib)
624         InstallWithSources(env, lib, '$LIBINSTALLDIR', sources, testSources, no_includes)
625     return lib
626
627 ## \brief Build Object from multiple sources
628 def Object(env, target, sources, testSources = None, LIBS = [], OBJECTS = [], no_includes = False):
629     objects = Objects(env,sources,testSources,LIBS=LIBS,OBJECTS=OBJECTS)
630     ob = None
631     if objects:
632         ob = env.Command(target+"${OBJADDSUFFIX}${OBJSUFFIX}", objects, "ld -r -o $TARGET $SOURCES")
633         env.Default(ob)
634         env.Alias('default', ob)
635         InstallWithSources(env, ob, '$OBJINSTALLDIR', sources, testSources, no_includes)
636     return ob
637
638 ## \brief Build executable
639 #
640 # This target helper will build the given binary.  The \a sources, \a
641 # testSources and \a LIBS arguments are forwarded to the Objects
642 # builder. The final program will be linked against all the library
643 # modules specified in \a LIBS (those are libraries which are built as
644 # part of the same proejct). To specify non-module libraries, use the
645 # construction environment parameters or the framework helpers.
646 #
647 # \ingroup target
648 def Binary(env, binary, sources, testSources = None, LIBS = [], OBJECTS = [], no_includes = False):
649     objects = Objects(env,sources,testSources,LIBS=LIBS,OBJECTS=OBJECTS)
650     program = None
651     if objects:
652         progEnv = env.Copy()
653         progEnv.Prepend(LIBS = [ x + '$LIBADDSUFFIX' for x in LIBS ])
654         program = progEnv.ProgramNoScan(target=binary,source=objects+OBJECTS)
655         env.Default(program)
656         env.Depends(program, [ env.File(LibPath(x)) for x in LIBS ])
657         env.Alias('default', program)
658         InstallWithSources(env, program, '$BININSTALLDIR', sources, testSources, no_includes)
659     return program
660
661 def AllIncludesHH(env, headers):
662     headers.sort()
663     target = env.File("all_includes.hh")
664     file(target.abspath,"w").write("".join([ '#include "%s"\n' % f
665                                              for f in headers ]))
666     env.Clean('all', target)