aed664960360685c3adf5fd7b35e00b12cda51c3
[senf.git] / site_scons / SENFSCons.py
1 import os.path, glob
2 import SCons.Options, SCons.Environment, SCons.Script.SConscript, SCons.Node.FS
3 import SCons.Defaults, SCons.Action
4 from SCons.Script import *
5
6 def Glob(env, exclude=[], subdirs=[]):
7     testSources = glob.glob("*.test.cc")
8     sources = [ x for x in glob.glob("*.cc") if x not in testSources and x not in exclude ]
9     for subdir in subdirs:
10         testSources += glob.glob(os.path.join(subdir,"*.test.cc"))
11         sources += [ x for x in glob.glob(os.path.join(subdir,"*.cc"))
12                      if x not in testSources and x not in exclude ]
13     includes = []
14     for d in [ '.' ] + subdirs:
15         for f in os.listdir(d):
16             ext = '.' + f.split('.',1)[-1]
17             p = os.path.join(d,f)
18             if ext in env['CPP_INCLUDE_EXTENSIONS'] \
19                and ext not in env['CPP_EXCLUDE_EXTENSIONS'] \
20                and p not in exclude:
21                 includes.append(p)
22     return ( sources, testSources, includes )
23
24 def Doxygen(env, doxyfile = "Doxyfile", extra_sources = []):
25     # There is one small problem we need to solve with this builder: The Doxygen builder reads
26     # the Doxyfile and thus depends on the environment variables set by doclib/doxygen.sh. We
27     # thus have to provide all necessary definitions here manually via DOXYENV !
28
29     if type(doxyfile) is type(""):
30         doxyfile = env.File(doxyfile)
31
32     # Module name is derived from the doxyfile path
33     # Utils/Console/Doxyfile -> Utils_Console
34     module = doxyfile.dir.get_path(env.Dir('#')).replace('/','_')
35     if module == '.' : module = "Main"
36
37     # Rule to generate tagfile
38     # (need to exclude the 'clean' case, otherwise we'll have duplicate nodes)
39     if not env.GetOption('clean'):
40         tagfile = env.Doxygen(doxyfile,
41                               DOXYOPTS = [ '--tagfile-name', '"${MODULE}.tag"',
42                                            '--tagfile' ],
43                               DOXYENV  = { 'TOPDIR'          : env.Dir('#').abspath,
44                                            'output_dir'      : 'doc',
45                                            'html_dir'        : 'html',
46                                            'html'            : 'NO',
47                                            'generate_tagfile': 'doc/${MODULE}.tag' },
48                               MODULE   = module )
49         env.Append(ALL_TAGFILES = [ tagfile[0].abspath ])
50         env.Depends(tagfile, [ env.File('#/doclib/doxygen.sh'), 
51                                env.File('#/doclib/tag-munge.xsl') ])
52
53     # Rule to generate HTML documentation
54     doc = env.Doxygen(doxyfile,
55                       DOXYOPTS = [ '--tagfiles', '"$ALL_TAGFILES"',
56                                    '--tagfile-name', '"${MODULE}.tag"',
57                                    '--html' ],
58                       MODULE   = module,
59                       DOXYENV  = { 'TOPDIR'          : env.Dir('#').abspath,
60                                    'tagfiles'        : '${ALL_TAGFILES}',
61                                    'output_dir'      : 'doc',
62                                    'html_dir'        : 'html',
63                                    'html'            : 'YES' } )
64     env.Depends(doc, [ env.File('#/doclib/doxygen.sh'),
65                        env.File('#/doclib/html-munge.xsl') ])
66
67     # Copy the extra_sources (the images) into the documentation directory
68     # (need to exclude the 'clean' case otherwise there are multiple ways to clean the copies)
69     if extra_sources:
70         if env.GetOption('clean'):
71             env.Depends(doc, extra_sources)
72         else:
73             env.Depends(doc, env.CopyToDir(doc[0].dir, extra_sources))
74
75     # Install documentation into DOCINSTALLDIR
76     env.Install(env.Dir('$DOCINSTALLDIR').Dir(doc[0].dir.dir.get_path(env.Dir('#'))), doc[0].dir)
77
78     # Useful aliases
79     env.Alias('all_docs', doc)
80     env.Clean(env.Alias('all_docs'), doc)
81     env.Clean(env.Alias('all'), doc)
82
83     return doc
84
85 def AllIncludesHH(env, exclude=[]):
86     exclude = exclude[:] + ['all_includes.hh'] # Make a copy !!
87     headers = [ f for f in glob.glob("*.hh")
88                 if f not in exclude and not f.endswith('.test.hh') ]
89     headers.sort()
90     target = env.File("all_includes.hh")
91     file(target.abspath,"w").write("".join([ '#include "%s"\n' % f
92                                              for f in headers ]))
93     env.Clean(env.Alias('all'), target)
94
95 ###########################################################################
96 # The following functions serve as simple macros for most SConscript files
97 #
98 # If you need to customize these rules, copy-and-paste the code into the
99 # SConscript file and adjust at will (don't forget to replace the
100 # parameters with their actual value. Parameters are marked with ((name)) )
101
102 def AutoRules(env, exclude=[], subdirs=[], doc_extra_sources = []):
103     import SENFSCons
104
105     sources, tests, includes = SENFSCons.Glob(env, exclude=((exclude)), subdirs=((subdirs)) )
106     subscripts               = env.Glob("*/SConscript")
107     doxyfile                 = env.Glob("Doxyfile")
108
109     if sources               : env.Append(ALLOBJECTS = env.Object(sources))
110     if tests                 : env.BoostUnitTest('test', tests)
111     if includes              : env.InstallSubdir('$INCLUDEINSTALLDIR', includes)
112     if doxyfile              : SENFSCons.Doxygen(env, extra_sources=((doc_extra_sources)) )
113     if subscripts            : SConscript(subscripts)
114
115
116 def AutoPacketBundle(env, name, exclude=[], subdirs=[], doc_extra_sources=[]):
117     import SENFSCons
118
119     sources, tests, includes = SENFSCons.Glob(env, exclude=((exclude)), subdirs=((subdirs)) )
120     subscripts               = env.Glob("*/SConscript")
121     doxyfile                 = env.Glob("Doxyfile")
122
123     objects = env.Object(sources)
124     cobject = env.CombinedObject('${LOCALLIBDIR}/${NAME}${OBJADDSUFFIX}', objects, NAME=((name)))
125
126     env.Default(cobject)
127     env.Append(ALLOBJECTS = objects, PACKET_BUNDLES = cobject)
128     env.Install('$OBJINSTALLDIR', cobject)
129
130     if tests                 : env.BoostUnitTest('test', tests + cobject)
131     if includes              : env.InstallSubdir('$INCLUDEINSTALLDIR', includes)
132     if doxyfile              : SENFSCons.Doxygen(env, extra_sources=((doc_extra_sources)) )
133     if subscripts            : SConscript(subscripts)