blob: b672791a0e63c1f1223cd90208b0abe7ec1e17c7 [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"""
Davide Pesaventoe5569912019-01-29 19:39:06 -05003Copyright (c) 2014-2019, The University of Memphis,
Vince Lehmanc2e51f62015-01-20 15:03:11 -06004 Regents of the University of California,
5 Arizona Board of Regents.
Yingdi Yu40cd1c32014-04-17 15:02:17 -07006
7This file is part of NLSR (Named-data Link State Routing).
8See AUTHORS.md for complete list of NLSR authors and contributors.
9
10NLSR is free software: you can redistribute it and/or modify it under the terms
11of the GNU General Public License as published by the Free Software Foundation,
12either version 3 of the License, or (at your option) any later version.
13
14NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
15without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16PURPOSE. See the GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License along with
19NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
20"""
21
Davide Pesaventof75bfda2019-11-10 18:34:13 -050022from waflib import Context, Logs, Utils
23import os, subprocess
24
dulalsaurab34832132019-06-11 18:06:19 +000025VERSION = "0.5.1"
sfayer93d9ec32014-12-04 23:34:41 +000026APPNAME = "nlsr"
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -040027BUGREPORT = "https://redmine.named-data.net/projects/nlsr"
28URL = "https://named-data.net/doc/NLSR/"
Vince Lehmanb722b102014-08-24 16:33:49 -050029GIT_TAG_PREFIX = "NLSR-"
akmhoque298385a2014-02-13 14:13:09 -060030
akmhoque298385a2014-02-13 14:13:09 -060031def options(opt):
Yingdi Yu40cd1c32014-04-17 15:02:17 -070032 opt.load(['compiler_cxx', 'gnu_dirs'])
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -050033 opt.load(['default-compiler-flags', 'coverage', 'sanitizers',
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -040034 'boost', 'doxygen', 'sphinx_build'],
Davide Pesaventoe5569912019-01-29 19:39:06 -050035 tooldir=['.waf-tools'])
akmhoque298385a2014-02-13 14:13:09 -060036
Davide Pesaventof75bfda2019-11-10 18:34:13 -050037 optgrp = opt.add_option_group('NLSR Options')
38 optgrp.add_option('--with-tests', action='store_true', default=False,
39 help='Build unit tests')
akmhoque05d5fcf2014-04-15 14:58:45 -050040
akmhoque298385a2014-02-13 14:13:09 -060041def configure(conf):
Vince Lehmanb722b102014-08-24 16:33:49 -050042 conf.load(['compiler_cxx', 'gnu_dirs',
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -040043 'default-compiler-flags', 'boost',
Vince Lehmanb722b102014-08-24 16:33:49 -050044 'doxygen', 'sphinx_build'])
akmhoque298385a2014-02-13 14:13:09 -060045
Davide Pesaventof75bfda2019-11-10 18:34:13 -050046 conf.env.WITH_TESTS = conf.options.with_tests
Alexander Afanasyevfb2adee2015-03-30 10:56:55 -070047
Davide Pesaventof75bfda2019-11-10 18:34:13 -050048 pkg_config_path = os.environ.get('PKG_CONFIG_PATH', '%s/pkgconfig' % conf.env.LIBDIR)
49 conf.check_cfg(package='libndn-cxx', args=['--cflags', '--libs'], uselib_store='NDN_CXX',
50 pkg_config_path=pkg_config_path)
akmhoque85d88332014-02-17 21:11:21 -060051
Davide Pesaventof75bfda2019-11-10 18:34:13 -050052 boost_libs = ['system', 'iostreams', 'filesystem', 'regex']
53 if conf.env.WITH_TESTS:
54 boost_libs += ['program_options', 'unit_test_framework']
akmhoque85d88332014-02-17 21:11:21 -060055
dmcoomescf8d0ed2017-02-21 11:39:01 -060056 conf.check_boost(lib=boost_libs, mt=True)
Davide Pesaventoe5569912019-01-29 19:39:06 -050057 if conf.env.BOOST_VERSION_NUMBER < 105800:
58 conf.fatal('Minimum required Boost version is 1.58.0\n'
Alexander Afanasyev67758b12018-03-06 18:36:44 -050059 'Please upgrade your distribution or manually install a newer version of Boost'
60 ' (https://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)')
akmhoque05d5fcf2014-04-15 14:58:45 -050061
Davide Pesaventof75bfda2019-11-10 18:34:13 -050062 conf.check_cfg(package='ChronoSync', args=['--cflags', '--libs'], uselib_store='SYNC',
63 pkg_config_path=pkg_config_path)
akmhoque05d5fcf2014-04-15 14:58:45 -050064
Davide Pesaventof75bfda2019-11-10 18:34:13 -050065 conf.check_cfg(package='PSync', args=['--cflags', '--libs'], uselib_store='PSYNC',
66 pkg_config_path=pkg_config_path)
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -050067
Alexander Afanasyev67758b12018-03-06 18:36:44 -050068 conf.check_compiler_flags()
69
Davide Pesaventoe5569912019-01-29 19:39:06 -050070 # Loading "late" to prevent tests from being compiled with profiling flags
Yingdi Yu40cd1c32014-04-17 15:02:17 -070071 conf.load('coverage')
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -050072 conf.load('sanitizers')
73
Davide Pesaventof75bfda2019-11-10 18:34:13 -050074 conf.define_cond('WITH_TESTS', conf.env.WITH_TESTS)
75 # The config header will contain all defines that were added using conf.define()
76 # or conf.define_cond(). Everything that was added directly to conf.env.DEFINES
77 # will not appear in the config header, but will instead be passed directly to the
78 # compiler on the command line.
Yingdi Yu40cd1c32014-04-17 15:02:17 -070079 conf.write_config_header('config.hpp')
akmhoque05d5fcf2014-04-15 14:58:45 -050080
Vince Lehmanb722b102014-08-24 16:33:49 -050081def build(bld):
82 version(bld)
83
Davide Pesaventoe5569912019-01-29 19:39:06 -050084 bld(features='subst',
Alexander Afanasyev67758b12018-03-06 18:36:44 -050085 name='version.hpp',
Vince Lehmanb722b102014-08-24 16:33:49 -050086 source='src/version.hpp.in',
87 target='src/version.hpp',
Vince Lehmanb722b102014-08-24 16:33:49 -050088 VERSION_STRING=VERSION_BASE,
89 VERSION_BUILD=VERSION,
90 VERSION=int(VERSION_SPLIT[0]) * 1000000 +
91 int(VERSION_SPLIT[1]) * 1000 +
92 int(VERSION_SPLIT[2]),
93 VERSION_MAJOR=VERSION_SPLIT[0],
94 VERSION_MINOR=VERSION_SPLIT[1],
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -050095 VERSION_PATCH=VERSION_SPLIT[2])
Vince Lehmanb722b102014-08-24 16:33:49 -050096
Alexander Afanasyev67758b12018-03-06 18:36:44 -050097 bld.objects(
Yingdi Yu40cd1c32014-04-17 15:02:17 -070098 target='nlsr-objects',
Davide Pesaventoe5569912019-01-29 19:39:06 -050099 source=bld.path.ant_glob('src/**/*.cpp',
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700100 excl=['src/main.cpp']),
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -0500101 use='NDN_CXX BOOST SYNC PSYNC',
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700102 includes='. src',
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500103 export_includes='. src')
akmhoque298385a2014-02-13 14:13:09 -0600104
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500105 bld.program(
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700106 target='bin/nlsr',
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500107 name='nlsr',
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700108 source='src/main.cpp',
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500109 use='nlsr-objects')
akmhoque298385a2014-02-13 14:13:09 -0600110
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500111 bld.program(
Vince Lehmanc439d662015-04-27 10:56:00 -0500112 target='bin/nlsrc',
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500113 name='nlsrc',
Vince Lehmanc439d662015-04-27 10:56:00 -0500114 source='tools/nlsrc.cpp',
Davide Pesaventoe5569912019-01-29 19:39:06 -0500115 use='nlsr-objects')
Vince Lehmanc439d662015-04-27 10:56:00 -0500116
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500117 if bld.env.WITH_TESTS:
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700118 bld.recurse('tests')
Vince Lehmanb722b102014-08-24 16:33:49 -0500119
Davide Pesavento0da3eab2019-01-31 01:10:00 -0500120 bld.install_as('${SYSCONFDIR}/ndn/nlsr.conf.sample', 'nlsr.conf')
121
122 if Utils.unversioned_sys_platform() == 'linux':
123 bld(features='subst',
124 name='nlsr.service',
125 source='systemd/nlsr.service.in',
126 target='systemd/nlsr.service')
127
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500128 if bld.env.SPHINX_BUILD:
129 bld(features='sphinx',
130 name='manpages',
131 builder='man',
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500132 config='docs/conf.py',
Davide Pesavento0da3eab2019-01-31 01:10:00 -0500133 outdir='docs/manpages',
Davide Pesaventof75bfda2019-11-10 18:34:13 -0500134 source=bld.path.ant_glob('docs/manpages/*.rst'),
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500135 install_path='${MANDIR}',
Davide Pesaventof75bfda2019-11-10 18:34:13 -0500136 version=VERSION_BASE,
137 release=VERSION)
Vince Lehmanb722b102014-08-24 16:33:49 -0500138
139def docs(bld):
140 from waflib import Options
141 Options.commands = ['doxygen', 'sphinx'] + Options.commands
142
143def doxygen(bld):
144 version(bld)
145
146 if not bld.env.DOXYGEN:
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500147 bld.fatal('Cannot build documentation ("doxygen" not found in PATH)')
Vince Lehmanb722b102014-08-24 16:33:49 -0500148
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500149 bld(features='subst',
150 name='doxygen.conf',
151 source=['docs/doxygen.conf.in',
152 'docs/named_data_theme/named_data_footer-with-analytics.html.in'],
153 target=['docs/doxygen.conf',
154 'docs/named_data_theme/named_data_footer-with-analytics.html'],
155 VERSION=VERSION,
156 HTML_FOOTER='../build/docs/named_data_theme/named_data_footer-with-analytics.html' \
157 if os.getenv('GOOGLE_ANALYTICS', None) \
158 else '../docs/named_data_theme/named_data_footer.html',
159 GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', ''))
160
161 bld(features='doxygen',
162 doxyfile='docs/doxygen.conf',
163 use='doxygen.conf')
Vince Lehmanb722b102014-08-24 16:33:49 -0500164
165def sphinx(bld):
166 version(bld)
167
168 if not bld.env.SPHINX_BUILD:
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500169 bld.fatal('Cannot build documentation ("sphinx-build" not found in PATH)')
170
171 bld(features='sphinx',
172 config='docs/conf.py',
173 outdir='docs',
174 source=bld.path.ant_glob('docs/**/*.rst'),
Davide Pesaventof75bfda2019-11-10 18:34:13 -0500175 version=VERSION_BASE,
176 release=VERSION)
Vince Lehmanb722b102014-08-24 16:33:49 -0500177
178def version(ctx):
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500179 # don't execute more than once
Vince Lehmanb722b102014-08-24 16:33:49 -0500180 if getattr(Context.g_module, 'VERSION_BASE', None):
181 return
182
183 Context.g_module.VERSION_BASE = Context.g_module.VERSION
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500184 Context.g_module.VERSION_SPLIT = VERSION_BASE.split('.')
Vince Lehmanb722b102014-08-24 16:33:49 -0500185
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500186 # first, try to get a version string from git
187 gotVersionFromGit = False
Vince Lehmanb722b102014-08-24 16:33:49 -0500188 try:
189 cmd = ['git', 'describe', '--always', '--match', '%s*' % GIT_TAG_PREFIX]
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500190 out = subprocess.check_output(cmd, universal_newlines=True).strip()
191 if out:
192 gotVersionFromGit = True
Vince Lehmanb722b102014-08-24 16:33:49 -0500193 if out.startswith(GIT_TAG_PREFIX):
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500194 Context.g_module.VERSION = out.lstrip(GIT_TAG_PREFIX)
Vince Lehmanb722b102014-08-24 16:33:49 -0500195 else:
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500196 # no tags matched
197 Context.g_module.VERSION = '%s-commit-%s' % (VERSION_BASE, out)
Davide Pesaventoa08dc3f2018-05-24 00:40:28 -0400198 except (OSError, subprocess.CalledProcessError):
Vince Lehmanb722b102014-08-24 16:33:49 -0500199 pass
200
201 versionFile = ctx.path.find_node('VERSION')
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500202 if not gotVersionFromGit and versionFile is not None:
Vince Lehmanb722b102014-08-24 16:33:49 -0500203 try:
204 Context.g_module.VERSION = versionFile.read()
205 return
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500206 except EnvironmentError:
Vince Lehmanb722b102014-08-24 16:33:49 -0500207 pass
208
209 # version was obtained from git, update VERSION file if necessary
210 if versionFile is not None:
211 try:
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500212 if versionFile.read() == Context.g_module.VERSION:
213 # already up-to-date
214 return
215 except EnvironmentError as e:
216 Logs.warn('%s exists but is not readable (%s)' % (versionFile, e.strerror))
Vince Lehmanb722b102014-08-24 16:33:49 -0500217 else:
218 versionFile = ctx.path.make_node('VERSION')
219
Vince Lehmanb722b102014-08-24 16:33:49 -0500220 try:
221 versionFile.write(Context.g_module.VERSION)
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500222 except EnvironmentError as e:
223 Logs.warn('%s is not writable (%s)' % (versionFile, e.strerror))
Vince Lehmanb722b102014-08-24 16:33:49 -0500224
225def dist(ctx):
226 version(ctx)
227
228def distcheck(ctx):
229 version(ctx)