blob: 65d5c598c45fae5562498b45d2f7b002b6b9480c [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 Pesaventoe28d8752022-03-19 03:55:25 -04003Copyright (c) 2014-2022, 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
Saurab Dulalcf064442020-12-14 11:04:57 -060025VERSION = "0.6.0"
sfayer93d9ec32014-12-04 23:34:41 +000026APPNAME = "nlsr"
Vince Lehmanb722b102014-08-24 16:33:49 -050027GIT_TAG_PREFIX = "NLSR-"
akmhoque298385a2014-02-13 14:13:09 -060028
akmhoque298385a2014-02-13 14:13:09 -060029def options(opt):
Yingdi Yu40cd1c32014-04-17 15:02:17 -070030 opt.load(['compiler_cxx', 'gnu_dirs'])
Davide Pesavento7ae8b082021-10-12 21:45:47 -040031 opt.load(['default-compiler-flags',
32 'coverage', 'sanitizers', 'boost',
33 'doxygen', 'sphinx_build'],
Davide Pesaventoe5569912019-01-29 19:39:06 -050034 tooldir=['.waf-tools'])
akmhoque298385a2014-02-13 14:13:09 -060035
Davide Pesaventof75bfda2019-11-10 18:34:13 -050036 optgrp = opt.add_option_group('NLSR Options')
37 optgrp.add_option('--with-tests', action='store_true', default=False,
38 help='Build unit tests')
Varun Patil7d2d6892022-10-14 12:50:30 -070039
40 optgrp.add_option('--with-chronosync', dest='with_chronosync', action='store_true', default=False,
Davide Pesavento7ae8b082021-10-12 21:45:47 -040041 help='Build with ChronoSync support')
Varun Patil7d2d6892022-10-14 12:50:30 -070042 optgrp.add_option('--without-chronosync', dest='with_chronosync', action='store_false', default=False,
43 help='Build without ChronoSync support')
44
45 optgrp.add_option('--with-psync', dest='with_psync', action='store_true', default=True,
46 help='Build with PSync support')
47 optgrp.add_option('--without-psync', dest='with_psync', action='store_false', default=True,
48 help='Build without PSync support')
49
50 optgrp.add_option('--with-svs', dest='with_svs', action='store_true', default=False,
51 help='Build with State Vector Sync support')
52 optgrp.add_option('--without-svs', dest='with_svs', action='store_false', default=False,
53 help='Build without State Vector Sync support')
akmhoque05d5fcf2014-04-15 14:58:45 -050054
akmhoque298385a2014-02-13 14:13:09 -060055def configure(conf):
Vince Lehmanb722b102014-08-24 16:33:49 -050056 conf.load(['compiler_cxx', 'gnu_dirs',
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -040057 'default-compiler-flags', 'boost',
Vince Lehmanb722b102014-08-24 16:33:49 -050058 'doxygen', 'sphinx_build'])
akmhoque298385a2014-02-13 14:13:09 -060059
Davide Pesaventof75bfda2019-11-10 18:34:13 -050060 conf.env.WITH_TESTS = conf.options.with_tests
Alexander Afanasyevfb2adee2015-03-30 10:56:55 -070061
Davide Pesaventoede59632022-08-26 20:35:44 -040062 conf.find_program('dot', mandatory=False)
63
64 # Prefer pkgconf if it's installed, because it gives more correct results
65 # on Fedora/CentOS/RHEL/etc. See https://bugzilla.redhat.com/show_bug.cgi?id=1953348
66 # Store the result in env.PKGCONFIG, which is the variable used inside check_cfg()
67 conf.find_program(['pkgconf', 'pkg-config'], var='PKGCONFIG')
Davide Pesavento7ae8b082021-10-12 21:45:47 -040068
Davide Pesaventod1f1df82022-03-12 16:40:37 -050069 pkg_config_path = os.environ.get('PKG_CONFIG_PATH', f'{conf.env.LIBDIR}/pkgconfig')
70 conf.check_cfg(package='libndn-cxx', args=['libndn-cxx >= 0.8.0', '--cflags', '--libs'],
71 uselib_store='NDN_CXX', pkg_config_path=pkg_config_path)
akmhoque85d88332014-02-17 21:11:21 -060072
Davide Pesaventof75bfda2019-11-10 18:34:13 -050073 boost_libs = ['system', 'iostreams', 'filesystem', 'regex']
74 if conf.env.WITH_TESTS:
Davide Pesaventod1f1df82022-03-12 16:40:37 -050075 boost_libs.append('unit_test_framework')
akmhoque85d88332014-02-17 21:11:21 -060076
dmcoomescf8d0ed2017-02-21 11:39:01 -060077 conf.check_boost(lib=boost_libs, mt=True)
Davide Pesaventod1f1df82022-03-12 16:40:37 -050078 if conf.env.BOOST_VERSION_NUMBER < 106501:
Davide Pesavento7ae8b082021-10-12 21:45:47 -040079 conf.fatal('The minimum supported version of Boost is 1.65.1.\n'
80 'Please upgrade your distribution or manually install a newer version of Boost.\n'
81 'For more information, see https://redmine.named-data.net/projects/nfd/wiki/Boost')
akmhoque05d5fcf2014-04-15 14:58:45 -050082
Ashlesh Gawande30d96e42021-03-21 19:15:33 -070083 if conf.options.with_chronosync:
Davide Pesaventod1f1df82022-03-12 16:40:37 -050084 conf.check_cfg(package='ChronoSync', args=['ChronoSync >= 0.5.4', '--cflags', '--libs'],
Ashlesh Gawande30d96e42021-03-21 19:15:33 -070085 uselib_store='CHRONOSYNC', pkg_config_path=pkg_config_path)
akmhoque05d5fcf2014-04-15 14:58:45 -050086
Varun Patil7d2d6892022-10-14 12:50:30 -070087 if conf.options.with_psync:
88 conf.check_cfg(package='PSync', args=['PSync >= 0.3.0', '--cflags', '--libs'],
89 uselib_store='PSYNC', pkg_config_path=pkg_config_path)
90
91 if conf.options.with_svs:
92 conf.check_cfg(package='libndn-svs', args=['libndn-svs >= 0.1.0', '--cflags', '--libs'],
93 uselib_store='SVS', pkg_config_path=pkg_config_path)
94
95 if not any((conf.options.with_chronosync, conf.options.with_psync, conf.options.with_svs)):
96 conf.fatal('Cannot compile without any Sync protocol. '
97 'Specify at least one of --with-psync or --with-svs or --with-chronosync')
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -050098
Alexander Afanasyev67758b12018-03-06 18:36:44 -050099 conf.check_compiler_flags()
100
Davide Pesaventoe5569912019-01-29 19:39:06 -0500101 # Loading "late" to prevent tests from being compiled with profiling flags
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700102 conf.load('coverage')
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500103 conf.load('sanitizers')
104
Davide Pesaventof75bfda2019-11-10 18:34:13 -0500105 conf.define_cond('WITH_TESTS', conf.env.WITH_TESTS)
Junxiao Shia3a63972022-01-24 02:03:41 +0000106 conf.define('DEFAULT_CONFIG_FILE', '%s/ndn/nlsr.conf' % conf.env.SYSCONFDIR)
Davide Pesaventof75bfda2019-11-10 18:34:13 -0500107 # The config header will contain all defines that were added using conf.define()
108 # or conf.define_cond(). Everything that was added directly to conf.env.DEFINES
109 # will not appear in the config header, but will instead be passed directly to the
110 # compiler on the command line.
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700111 conf.write_config_header('config.hpp')
akmhoque05d5fcf2014-04-15 14:58:45 -0500112
Vince Lehmanb722b102014-08-24 16:33:49 -0500113def build(bld):
114 version(bld)
115
Davide Pesaventoe5569912019-01-29 19:39:06 -0500116 bld(features='subst',
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500117 name='version.hpp',
Vince Lehmanb722b102014-08-24 16:33:49 -0500118 source='src/version.hpp.in',
119 target='src/version.hpp',
Vince Lehmanb722b102014-08-24 16:33:49 -0500120 VERSION_STRING=VERSION_BASE,
121 VERSION_BUILD=VERSION,
122 VERSION=int(VERSION_SPLIT[0]) * 1000000 +
123 int(VERSION_SPLIT[1]) * 1000 +
124 int(VERSION_SPLIT[2]),
125 VERSION_MAJOR=VERSION_SPLIT[0],
126 VERSION_MINOR=VERSION_SPLIT[1],
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500127 VERSION_PATCH=VERSION_SPLIT[2])
Vince Lehmanb722b102014-08-24 16:33:49 -0500128
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500129 bld.objects(
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700130 target='nlsr-objects',
Davide Pesaventoe5569912019-01-29 19:39:06 -0500131 source=bld.path.ant_glob('src/**/*.cpp',
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700132 excl=['src/main.cpp']),
Varun Patil7d2d6892022-10-14 12:50:30 -0700133 use='NDN_CXX BOOST CHRONOSYNC PSYNC SVS',
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700134 includes='. src',
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500135 export_includes='. src')
akmhoque298385a2014-02-13 14:13:09 -0600136
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500137 bld.program(
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700138 target='bin/nlsr',
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500139 name='nlsr',
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700140 source='src/main.cpp',
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500141 use='nlsr-objects')
akmhoque298385a2014-02-13 14:13:09 -0600142
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500143 bld.program(
Vince Lehmanc439d662015-04-27 10:56:00 -0500144 target='bin/nlsrc',
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500145 name='nlsrc',
Vince Lehmanc439d662015-04-27 10:56:00 -0500146 source='tools/nlsrc.cpp',
Davide Pesaventoe5569912019-01-29 19:39:06 -0500147 use='nlsr-objects')
Vince Lehmanc439d662015-04-27 10:56:00 -0500148
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500149 if bld.env.WITH_TESTS:
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700150 bld.recurse('tests')
Vince Lehmanb722b102014-08-24 16:33:49 -0500151
Davide Pesavento0da3eab2019-01-31 01:10:00 -0500152 bld.install_as('${SYSCONFDIR}/ndn/nlsr.conf.sample', 'nlsr.conf')
153
154 if Utils.unversioned_sys_platform() == 'linux':
155 bld(features='subst',
156 name='nlsr.service',
157 source='systemd/nlsr.service.in',
158 target='systemd/nlsr.service')
159
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500160 if bld.env.SPHINX_BUILD:
161 bld(features='sphinx',
162 name='manpages',
163 builder='man',
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500164 config='docs/conf.py',
Davide Pesavento0da3eab2019-01-31 01:10:00 -0500165 outdir='docs/manpages',
Davide Pesaventof75bfda2019-11-10 18:34:13 -0500166 source=bld.path.ant_glob('docs/manpages/*.rst'),
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500167 install_path='${MANDIR}',
Davide Pesaventof75bfda2019-11-10 18:34:13 -0500168 version=VERSION_BASE,
169 release=VERSION)
Vince Lehmanb722b102014-08-24 16:33:49 -0500170
171def docs(bld):
172 from waflib import Options
173 Options.commands = ['doxygen', 'sphinx'] + Options.commands
174
175def doxygen(bld):
176 version(bld)
177
178 if not bld.env.DOXYGEN:
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500179 bld.fatal('Cannot build documentation ("doxygen" not found in PATH)')
Vince Lehmanb722b102014-08-24 16:33:49 -0500180
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500181 bld(features='subst',
182 name='doxygen.conf',
183 source=['docs/doxygen.conf.in',
184 'docs/named_data_theme/named_data_footer-with-analytics.html.in'],
185 target=['docs/doxygen.conf',
186 'docs/named_data_theme/named_data_footer-with-analytics.html'],
187 VERSION=VERSION,
Davide Pesavento7ae8b082021-10-12 21:45:47 -0400188 HAVE_DOT='YES' if bld.env.DOT else 'NO',
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500189 HTML_FOOTER='../build/docs/named_data_theme/named_data_footer-with-analytics.html' \
190 if os.getenv('GOOGLE_ANALYTICS', None) \
191 else '../docs/named_data_theme/named_data_footer.html',
192 GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', ''))
193
194 bld(features='doxygen',
195 doxyfile='docs/doxygen.conf',
196 use='doxygen.conf')
Vince Lehmanb722b102014-08-24 16:33:49 -0500197
198def sphinx(bld):
199 version(bld)
200
201 if not bld.env.SPHINX_BUILD:
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500202 bld.fatal('Cannot build documentation ("sphinx-build" not found in PATH)')
203
204 bld(features='sphinx',
205 config='docs/conf.py',
206 outdir='docs',
207 source=bld.path.ant_glob('docs/**/*.rst'),
Davide Pesaventof75bfda2019-11-10 18:34:13 -0500208 version=VERSION_BASE,
209 release=VERSION)
Vince Lehmanb722b102014-08-24 16:33:49 -0500210
211def version(ctx):
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500212 # don't execute more than once
Vince Lehmanb722b102014-08-24 16:33:49 -0500213 if getattr(Context.g_module, 'VERSION_BASE', None):
214 return
215
216 Context.g_module.VERSION_BASE = Context.g_module.VERSION
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500217 Context.g_module.VERSION_SPLIT = VERSION_BASE.split('.')
Vince Lehmanb722b102014-08-24 16:33:49 -0500218
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500219 # first, try to get a version string from git
220 gotVersionFromGit = False
Vince Lehmanb722b102014-08-24 16:33:49 -0500221 try:
222 cmd = ['git', 'describe', '--always', '--match', '%s*' % GIT_TAG_PREFIX]
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500223 out = subprocess.check_output(cmd, universal_newlines=True).strip()
224 if out:
225 gotVersionFromGit = True
Vince Lehmanb722b102014-08-24 16:33:49 -0500226 if out.startswith(GIT_TAG_PREFIX):
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500227 Context.g_module.VERSION = out.lstrip(GIT_TAG_PREFIX)
Vince Lehmanb722b102014-08-24 16:33:49 -0500228 else:
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500229 # no tags matched
230 Context.g_module.VERSION = '%s-commit-%s' % (VERSION_BASE, out)
Davide Pesaventoa08dc3f2018-05-24 00:40:28 -0400231 except (OSError, subprocess.CalledProcessError):
Vince Lehmanb722b102014-08-24 16:33:49 -0500232 pass
233
Alexander Afanasyev96ebd9b2020-06-01 19:16:52 -0400234 versionFile = ctx.path.find_node('VERSION.info')
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500235 if not gotVersionFromGit and versionFile is not None:
Vince Lehmanb722b102014-08-24 16:33:49 -0500236 try:
237 Context.g_module.VERSION = versionFile.read()
238 return
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500239 except EnvironmentError:
Vince Lehmanb722b102014-08-24 16:33:49 -0500240 pass
241
242 # version was obtained from git, update VERSION file if necessary
243 if versionFile is not None:
244 try:
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500245 if versionFile.read() == Context.g_module.VERSION:
246 # already up-to-date
247 return
248 except EnvironmentError as e:
249 Logs.warn('%s exists but is not readable (%s)' % (versionFile, e.strerror))
Vince Lehmanb722b102014-08-24 16:33:49 -0500250 else:
Alexander Afanasyev96ebd9b2020-06-01 19:16:52 -0400251 versionFile = ctx.path.make_node('VERSION.info')
Vince Lehmanb722b102014-08-24 16:33:49 -0500252
Vince Lehmanb722b102014-08-24 16:33:49 -0500253 try:
254 versionFile.write(Context.g_module.VERSION)
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500255 except EnvironmentError as e:
256 Logs.warn('%s is not writable (%s)' % (versionFile, e.strerror))
Vince Lehmanb722b102014-08-24 16:33:49 -0500257
258def dist(ctx):
259 version(ctx)
260
261def distcheck(ctx):
262 version(ctx)