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