blob: f8471efa8f230afa41c03f6f0d5276db162d470d [file] [log] [blame]
akmhoque298385a2014-02-13 14:13:09 -06001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
Yingdi Yu40cd1c32014-04-17 15:02:17 -07002
3"""
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -05004Copyright (c) 2014-2017, The University of Memphis,
Vince Lehmanc2e51f62015-01-20 15:03:11 -06005 Regents of the University of California,
6 Arizona Board of Regents.
Yingdi Yu40cd1c32014-04-17 15:02:17 -07007
8This file is part of NLSR (Named-data Link State Routing).
9See AUTHORS.md for complete list of NLSR authors and contributors.
10
11NLSR is free software: you can redistribute it and/or modify it under the terms
12of the GNU General Public License as published by the Free Software Foundation,
13either version 3 of the License, or (at your option) any later version.
14
15NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
16without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
17PURPOSE. See the GNU General Public License for more details.
18
19You should have received a copy of the GNU General Public License along with
20NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
21"""
22
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -040023VERSION = "0.3.2"
sfayer93d9ec32014-12-04 23:34:41 +000024APPNAME = "nlsr"
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -040025BUGREPORT = "https://redmine.named-data.net/projects/nlsr"
26URL = "https://named-data.net/doc/NLSR/"
Vince Lehmanb722b102014-08-24 16:33:49 -050027GIT_TAG_PREFIX = "NLSR-"
akmhoque298385a2014-02-13 14:13:09 -060028
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -040029from waflib import Logs, Utils, Context
Alexander Afanasyevfb2adee2015-03-30 10:56:55 -070030import os
akmhoque298385a2014-02-13 14:13:09 -060031
32def options(opt):
Yingdi Yu40cd1c32014-04-17 15:02:17 -070033 opt.load(['compiler_cxx', 'gnu_dirs'])
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -050034 opt.load(['default-compiler-flags', 'coverage', 'sanitizers',
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -040035 'boost', 'doxygen', 'sphinx_build'],
Yingdi Yu40cd1c32014-04-17 15:02:17 -070036 tooldir=['.waf-tools'])
akmhoque298385a2014-02-13 14:13:09 -060037
Yingdi Yu40cd1c32014-04-17 15:02:17 -070038 nlsropt = opt.add_option_group('NLSR Options')
akmhoque05d5fcf2014-04-15 14:58:45 -050039
Yingdi Yu40cd1c32014-04-17 15:02:17 -070040 nlsropt.add_option('--with-tests', action='store_true', default=False, dest='with_tests',
41 help='''build unit tests''')
akmhoque298385a2014-02-13 14:13:09 -060042
akmhoque05d5fcf2014-04-15 14:58:45 -050043
akmhoque298385a2014-02-13 14:13:09 -060044def configure(conf):
Vince Lehmanb722b102014-08-24 16:33:49 -050045 conf.load(['compiler_cxx', 'gnu_dirs',
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -040046 'default-compiler-flags', 'boost',
Vince Lehmanb722b102014-08-24 16:33:49 -050047 'doxygen', 'sphinx_build'])
akmhoque298385a2014-02-13 14:13:09 -060048
Alexander Afanasyevfb2adee2015-03-30 10:56:55 -070049 if 'PKG_CONFIG_PATH' not in os.environ:
50 os.environ['PKG_CONFIG_PATH'] = Utils.subst_vars('${LIBDIR}/pkgconfig', conf.env)
51
akmhoquec8a10f72014-04-25 18:42:55 -050052 conf.check_cfg(package='libndn-cxx', args=['--cflags', '--libs'],
Vince Lehmanb45eed22015-01-13 14:58:07 -060053 uselib_store='NDN_CXX', mandatory=True)
akmhoque85d88332014-02-17 21:11:21 -060054
akmhoque674b0b12014-05-20 14:33:28 -050055 conf.check_cfg(package='liblog4cxx', args=['--cflags', '--libs'],
56 uselib_store='LOG4CXX', mandatory=True)
57
58 boost_libs = 'system chrono program_options iostreams thread regex filesystem'
Yingdi Yu40cd1c32014-04-17 15:02:17 -070059 if conf.options.with_tests:
60 conf.env['WITH_TESTS'] = 1
61 conf.define('WITH_TESTS', 1);
62 boost_libs += ' unit_test_framework'
akmhoque85d88332014-02-17 21:11:21 -060063
Yingdi Yu40cd1c32014-04-17 15:02:17 -070064 conf.check_boost(lib=boost_libs)
akmhoque298385a2014-02-13 14:13:09 -060065
akmhoquec8a10f72014-04-25 18:42:55 -050066 if conf.env.BOOST_VERSION_NUMBER < 104800:
akmhoquefdbddb12014-05-02 18:35:19 -050067 Logs.error("Minimum required boost version is 1.48.0")
Yingdi Yu40cd1c32014-04-17 15:02:17 -070068 Logs.error("Please upgrade your distribution or install custom boost libraries")
akmhoque05d5fcf2014-04-15 14:58:45 -050069 return
70
Ashlesh Gawande7600c902017-06-21 13:28:35 -050071 conf.check_cfg(package='ChronoSync', args=['ChronoSync >= 0.3', '--cflags', '--libs'],
Ashlesh Gawande415676b2016-12-22 00:26:23 -060072 uselib_store='SYNC', mandatory=True)
akmhoque05d5fcf2014-04-15 14:58:45 -050073
Yingdi Yu40cd1c32014-04-17 15:02:17 -070074 conf.load('coverage')
75
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -050076 conf.load('sanitizers')
77
Yingdi Yu40cd1c32014-04-17 15:02:17 -070078 conf.define('DEFAULT_CONFIG_FILE', '%s/ndn/nlsr.conf' % conf.env['SYSCONFDIR'])
79
80 conf.write_config_header('config.hpp')
akmhoque05d5fcf2014-04-15 14:58:45 -050081
akmhoque298385a2014-02-13 14:13:09 -060082
Vince Lehmanb722b102014-08-24 16:33:49 -050083def build(bld):
84 version(bld)
85
86 bld(features="subst",
87 name='version',
88 source='src/version.hpp.in',
89 target='src/version.hpp',
90 install_path=None,
91 VERSION_STRING=VERSION_BASE,
92 VERSION_BUILD=VERSION,
93 VERSION=int(VERSION_SPLIT[0]) * 1000000 +
94 int(VERSION_SPLIT[1]) * 1000 +
95 int(VERSION_SPLIT[2]),
96 VERSION_MAJOR=VERSION_SPLIT[0],
97 VERSION_MINOR=VERSION_SPLIT[1],
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -050098 VERSION_PATCH=VERSION_SPLIT[2])
Vince Lehmanb722b102014-08-24 16:33:49 -050099
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700100 nlsr_objects = bld(
101 target='nlsr-objects',
102 name='nlsr-objects',
103 features='cxx',
104 source=bld.path.ant_glob(['src/**/*.cpp'],
105 excl=['src/main.cpp']),
Ashlesh Gawande415676b2016-12-22 00:26:23 -0600106 use='NDN_CXX BOOST LOG4CXX SYNC',
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700107 includes='. src',
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500108 export_includes='. src')
akmhoque298385a2014-02-13 14:13:09 -0600109
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700110 nlsr = bld(
111 target='bin/nlsr',
112 features='cxx cxxprogram',
113 source='src/main.cpp',
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500114 use='nlsr-objects')
akmhoque298385a2014-02-13 14:13:09 -0600115
Vince Lehmanc439d662015-04-27 10:56:00 -0500116 nlsrc = bld(
117 target='bin/nlsrc',
118 features='cxx cxxprogram',
119 source='tools/nlsrc.cpp',
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500120 use='nlsr-objects BOOST')
Vince Lehmanc439d662015-04-27 10:56:00 -0500121
Ashlesh Gawande9b71bbc2017-07-21 15:52:25 -0500122 bld(features="subst",
123 source='nlsr.conf',
124 target='nlsr.conf.sample',
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500125 install_path="${SYSCONFDIR}/ndn")
Ashlesh Gawande9b71bbc2017-07-21 15:52:25 -0500126
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700127 if bld.env['WITH_TESTS']:
128 bld.recurse('tests')
129 bld.recurse('tests-integrated')
Vince Lehmanb722b102014-08-24 16:33:49 -0500130
Vince Lehmanc439d662015-04-27 10:56:00 -0500131 if bld.env['SPHINX_BUILD']:
132 bld(features="sphinx",
133 builder="man",
134 outdir="docs/manpages",
135 config="docs/conf.py",
136 source=bld.path.ant_glob('docs/manpages/**/*.rst'),
137 install_path="${MANDIR}/",
138 VERSION=VERSION)
Vince Lehmanb722b102014-08-24 16:33:49 -0500139
140def docs(bld):
141 from waflib import Options
142 Options.commands = ['doxygen', 'sphinx'] + Options.commands
143
144def doxygen(bld):
145 version(bld)
146
147 if not bld.env.DOXYGEN:
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500148 Logs.error("ERROR: cannot build documentation (`doxygen' not found in $PATH)")
Vince Lehmanb722b102014-08-24 16:33:49 -0500149 else:
150 bld(features="subst",
151 name="doxygen-conf",
152 source="docs/doxygen.conf.in",
153 target="docs/doxygen.conf",
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500154 VERSION=VERSION_BASE)
Vince Lehmanb722b102014-08-24 16:33:49 -0500155
156 bld(features="doxygen",
157 doxyfile='docs/doxygen.conf',
158 use="doxygen-conf")
159
160def sphinx(bld):
161 version(bld)
162
163 if not bld.env.SPHINX_BUILD:
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500164 bld.fatal("ERROR: cannot build documentation (`sphinx-build' not found in $PATH)")
Vince Lehmanb722b102014-08-24 16:33:49 -0500165 else:
166 bld(features="sphinx",
167 outdir="docs",
168 source=bld.path.ant_glob('docs/**/*.rst'),
169 config="docs/conf.py",
170 VERSION=VERSION_BASE)
171
172def version(ctx):
173 if getattr(Context.g_module, 'VERSION_BASE', None):
174 return
175
176 Context.g_module.VERSION_BASE = Context.g_module.VERSION
177 Context.g_module.VERSION_SPLIT = [v for v in VERSION_BASE.split('.')]
178
179 didGetVersion = False
180 try:
181 cmd = ['git', 'describe', '--always', '--match', '%s*' % GIT_TAG_PREFIX]
182 p = Utils.subprocess.Popen(cmd, stdout=Utils.subprocess.PIPE,
183 stderr=None, stdin=None)
Alexander Afanasyevc0b97af2014-09-01 13:23:50 -0700184 out = str(p.communicate()[0].strip())
Vince Lehmanb722b102014-08-24 16:33:49 -0500185 didGetVersion = (p.returncode == 0 and out != "")
186 if didGetVersion:
187 if out.startswith(GIT_TAG_PREFIX):
188 Context.g_module.VERSION = out[len(GIT_TAG_PREFIX):]
189 else:
190 Context.g_module.VERSION = "%s-commit-%s" % (Context.g_module.VERSION_BASE, out)
191 except OSError:
192 pass
193
194 versionFile = ctx.path.find_node('VERSION')
195
196 if not didGetVersion and versionFile is not None:
197 try:
198 Context.g_module.VERSION = versionFile.read()
199 return
200 except (OSError, IOError):
201 pass
202
203 # version was obtained from git, update VERSION file if necessary
204 if versionFile is not None:
205 try:
206 version = versionFile.read()
207 if version == Context.g_module.VERSION:
208 return # no need to update
209 except (OSError, IOError):
210 Logs.warn("VERSION file exists, but not readable")
211 else:
212 versionFile = ctx.path.make_node('VERSION')
213
214 if versionFile is None:
215 return
216
217 try:
218 versionFile.write(Context.g_module.VERSION)
219 except (OSError, IOError):
220 Logs.warn("VERSION file is not writeable")
221
222def dist(ctx):
223 version(ctx)
224
225def distcheck(ctx):
226 version(ctx)