senfutil.Doxygen build fixes
[senf.git] / site_scons / senfutil.py
1 import os.path, glob, site_tools.Yaptu
2 from SCons.Script import *
3
4 senfutildir = os.path.dirname(__file__)
5
6 # Fix for SCons 0.97 compatibility
7 try:
8     Variables
9 except NameError: 
10     Variables = Options
11     BoolVariable = BoolOption
12
13 def parseLogOption(value):
14     stream, area, level = ( x.strip() for x in value.strip().split('|') )
15     stream = ''.join('(%s)' % x for x in stream.split('::') )
16     if area : area = ''.join( '(%s)' % x for x in area.split('::') )
17     else    : area = '(_)'
18     return '((%s,%s,%s))' % (stream,area,level)
19
20 def expandLogOption(target, source, env, for_signature):
21     if env.get('LOGLEVELS'):
22         return [ 'SENF_LOG_CONF="' + ''.join( parseLogOption(x) for x in env.subst('$LOGLEVELS').split() )+'"']
23     else:
24         return []
25
26 class BuildTypeOptions:
27     def __init__(self, var):
28         self._var = var
29
30     def __call__(self, target, source, env, for_signature):
31         type = env['final'] and "final" or env['debug'] and "debug" or "normal"
32         return env[self._var + "_" + type]
33
34 def parseArguments(env, *defs):
35     vars = Variables(args=ARGUMENTS)
36     for d in defs : vars.Add(d)
37     vars.Update(env)
38     env.Help("""
39 Any construction environment variable may be set from the scons
40 command line (see SConstruct file and SCons documentation for a list
41 of variables) using
42
43    VARNAME=value    Assign new value  
44    VARNAME+=value   Append value at end
45
46 Special command line parameters:
47 """)
48     env.Help(vars.GenerateHelpText(env))
49     try                  : unknv = vars.UnknownVariables()
50     except AttributeError: unknv = vars.UnknownOptions()
51     for k,v in unknv.iteritems():
52         if k.endswith('+'):
53             env.Append(**{k[:-1]: v})
54         else:
55             env.Replace(**{k: v})
56
57
58 ###########################################################################
59 # This looks much more complicated than it is: We do three things here:
60 # a) switch between final or debug options
61 # b) parse the LOGLEVELS parameter into the correct SENF_LOG_CONF syntax
62 # c) check for a local SENF, set options accordingly and update that SENF if needed
63
64 def SetupForSENF(env, senf_paths = []):
65     global senfutildir
66     senf_paths.extend(('senf', '../senf', os.path.dirname(senfutildir), '/usr/local', '/usr'))
67     tooldir = os.path.join(senfutildir, 'site_tools')
68
69     env.Tool('Boost',       [ tooldir ])
70     env.Tool('PhonyTarget', [ tooldir ])
71     env.Tool('Yaptu',       [ tooldir ])
72     env.Tool('CopyToDir',   [ tooldir ])
73     env.Tool('Doxygen',     [ tooldir ])
74
75     env.Append(
76         LIBS              = [ 'senf', 'rt', '$BOOSTREGEXLIB',
77                               '$BOOSTIOSTREAMSLIB', '$BOOSTSIGNALSLIB',
78                               '$BOOSTFSLIB' ],
79         BOOSTREGEXLIB     = 'boost_regex',
80         BOOSTIOSTREAMSLIB = 'boost_iostreams',
81         BOOSTSIGNALSLIB   = 'boost_signals',
82         BOOSTFSLIB        = 'boost_filesystem',
83         
84         CXXFLAGS          = [ '-Wno-long-long', '$CXXFLAGS_' ],
85         CXXFLAGS_         = BuildTypeOptions('CXXFLAGS'),
86         
87         CPPDEFINES        = [ '$expandLogOption', '$CPPDEFINES_' ],
88         expandLogOption   = expandLogOption,
89         CPPDEFINES_       = BuildTypeOptions('CPPDEFINES'),
90         
91         LINKFLAGS         = [ '-rdynamic', '$LINKFLAGS_' ],
92         LINKFLAGS_        = BuildTypeOptions('LINKFLAGS'),
93
94         LOGLEVELS         = [ '$LOGLEVELS_' ],
95         LOGLEVELS_        = BuildTypeOptions('LOGLEVELS'),
96         )
97
98     env.SetDefault( 
99         CXXFLAGS_final    = [],
100         CXXFLAGS_normal   = [],
101         CXXFLAGS_debug    = [],
102
103         CPPDEFINES_final  = [],
104         CPPDEFINES_normal = [],
105         CPPDEFINES_debug  = [],
106
107         LINKFLAGS_final   = [],
108         LINKFLAGS_normal  = [],
109         LINKFLAGS_debug   = [],
110
111         LOGLEVELS_final   = [],
112         LOGLEVELS_normal  = [],
113         LOGLEVELS_debug   = [],
114
115         PROJECTNAME       = "Unnamed project",
116         DOCLINKS          = [],
117         PROJECTEMAIL      = "nobody@nowhere.org",
118         COPYRIGHT         = "nobody",
119         )
120
121     # Interpret command line options
122     parseArguments(
123         env, 
124         BoolVariable('final', 'Build final (optimized) build', False),
125         BoolVariable('debug', 'Link in debug symbols', False),
126     )
127
128     # If we have a symbolic link (or directory) 'senf', we use it as our
129     # senf repository
130     for path in senf_paths:
131         if not path.startswith('/') : sconspath = '#/%s' % path
132         else                        : sconspath = path
133         if os.path.exists(os.path.join(path,"senf/config.hh")):
134             print "\nUsing SENF in '%s'\n" \
135                 % ('/..' in sconspath and os.path.abspath(path) or sconspath)
136             env.Append( LIBPATH = [ sconspath ],
137                         CPPPATH = [ sconspath ],
138                         BUNDLEDIR = sconspath )
139             try:
140                 env.MergeFlags(file(os.path.join(path,"senf.conf")).read())
141             except IOError:
142                 print "(SENF configuration file 'senf.conf' not found, assuming non-final SENF)"
143                 env.Append(CPPDEFINES = [ 'SENF_DEBUG' ])
144             break
145         elif os.path.exists(os.path.join(path,"include/senf/config.hh")):
146             print "\nUsing system SENF in '%s/'\n" % sconspath
147             env.Append(BUNDLEDIR = os.path.join(sconspath,"lib/senf"))
148             break
149     else:
150         print "\nSENF library not found .. trying build anyway !!\n"
151
152
153 def DefaultOptions(env):
154     env.Append(
155         CXXFLAGS         = [ '-Wall', '-Woverloaded-virtual' ],
156         CXXFLAGS_final   = [ '-O2' ],
157         CXXFLAGS_normal  = [ '-O0', '-g' ],
158         CXXFLAGS_debug   = [ '$CXXFLAGS_normal' ],
159
160         LINKFLAGS_normal = [ '-Wl,-S' ],
161         LINKFLAGS_debug  = [ '-g' ],
162     )
163
164 def Glob(env, exclude=[], subdirs=[]):
165     testSources = glob.glob("*.test.cc")
166     sources = [ x for x in glob.glob("*.cc") if x not in testSources and x not in exclude ]
167     for subdir in subdirs:
168         testSources += glob.glob(os.path.join(subdir,"*.test.cc"))
169         sources += [ x for x in glob.glob(os.path.join(subdir,"*.cc"))
170                      if x not in testSources and x not in exclude ]
171     return (sources, testSources)
172
173 def Doxygen(env, doxyheader=None, doxyfooter=None, doxycss=None, mydoxyfile=False, **kw):
174     # Additional interesting keyword arguments or environment variables:
175     #    PROJECTNAME, DOCLINKS, PROJECTEMAIL, COPYRIGHT
176
177     libdir=os.path.join(senfutildir, 'lib')
178     
179     if env.GetOption('clean'):
180         env.Clean('doc', env.Dir('doc'))
181         if not mydoxyfile:
182             env.Clean('doc', "Doxyfile")
183
184     if not mydoxyfile:
185         # Create Doxyfile NOW
186         site_tools.Yaptu.yaptuAction("Doxyfile", 
187                                      os.path.join(libdir, "Doxyfile.yap"),
188                                      env)
189
190     # The other files are created using dependencies
191     if doxyheader: 
192         doxyheader = env.CopyToDir(env.Dir("doc"), doxyheader)
193     else:
194         doxyheader = env.Yaptu("doc/doxyheader.html", os.path.join(libdir, "doxyheader.yap"), **kw)
195     if doxyfooter:
196         doxyfooter = env.CopyToDir(env.Dir("doc"), doxyfooter)
197     else:
198         doxyfooter = env.Yaptu("doc/doxyfooter.html", os.path.join(libdir, "doxyfooter.yap"), **kw)
199     if doxycss:
200         doxycss = env.CopyToDir(env.Dir("doc"), doxycss)
201     else:
202         doxycss    = env.CopyToDir(env.Dir("doc"), os.path.join(libdir, "doxy.css"))
203
204     doc = env.Doxygen("Doxyfile",
205                       DOXYOPTS   = [ '--html' ],
206                       DOXYENV    = { 'TOPDIR'     : env.Dir('#').abspath,
207                                      'LIBDIR'     : libdir,
208                                      'output_dir' : 'doc',
209                                      'html_dir'   : 'html',
210                                      'html'       : 'YES' },
211                       DOCLIBDIR  = libdir,
212                       DOXYGENCOM = "$DOCLIBDIR/doxygen.sh $DOXYOPTS $SOURCE")
213
214     env.Depends(doc, [ doxyheader, doxyfooter, doxycss ])
215
216     return doc