blob: 74dcee0b0de471e80ef7a5ebeef03876cb2e7230 [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 Pesavento5a1d77a2024-03-13 19:24:11 -04003Copyright (c) 2014-2024, 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 Pesavento5849ee72023-11-12 20:00:21 -050022import os
23import subprocess
Davide Pesaventof75bfda2019-11-10 18:34:13 -050024from waflib import Context, Logs, Utils
Davide Pesaventof75bfda2019-11-10 18:34:13 -050025
Saurab Dulalecb0b712023-08-18 01:48:54 +000026VERSION = '0.7.0'
Davide Pesaventofa54ee92023-02-20 04:16:51 -050027APPNAME = 'nlsr'
28GIT_TAG_PREFIX = 'NLSR-'
akmhoque298385a2014-02-13 14:13:09 -060029
akmhoque298385a2014-02-13 14:13:09 -060030def options(opt):
Yingdi Yu40cd1c32014-04-17 15:02:17 -070031 opt.load(['compiler_cxx', 'gnu_dirs'])
Davide Pesavento7ae8b082021-10-12 21:45:47 -040032 opt.load(['default-compiler-flags',
33 'coverage', 'sanitizers', 'boost',
Davide Pesavento5a1d77a2024-03-13 19:24:11 -040034 'doxygen', 'sphinx'],
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')
Varun Patil7d2d6892022-10-14 12:50:30 -070038
39 optgrp.add_option('--with-chronosync', dest='with_chronosync', action='store_true', default=False,
Davide Pesavento7ae8b082021-10-12 21:45:47 -040040 help='Build with ChronoSync support')
Varun Patil7d2d6892022-10-14 12:50:30 -070041 optgrp.add_option('--without-chronosync', dest='with_chronosync', action='store_false', default=False,
42 help='Build without ChronoSync support')
43
44 optgrp.add_option('--with-psync', dest='with_psync', action='store_true', default=True,
45 help='Build with PSync support')
46 optgrp.add_option('--without-psync', dest='with_psync', action='store_false', default=True,
47 help='Build without PSync support')
48
49 optgrp.add_option('--with-svs', dest='with_svs', action='store_true', default=False,
50 help='Build with State Vector Sync support')
51 optgrp.add_option('--without-svs', dest='with_svs', action='store_false', default=False,
52 help='Build without State Vector Sync support')
akmhoque05d5fcf2014-04-15 14:58:45 -050053
Davide Pesaventofcef0582022-12-06 15:00:02 -050054 optgrp.add_option('--with-tests', action='store_true', default=False,
55 help='Build unit tests')
56
akmhoque298385a2014-02-13 14:13:09 -060057def configure(conf):
Vince Lehmanb722b102014-08-24 16:33:49 -050058 conf.load(['compiler_cxx', 'gnu_dirs',
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -040059 'default-compiler-flags', 'boost',
Davide Pesavento5a1d77a2024-03-13 19:24:11 -040060 'doxygen', 'sphinx'])
akmhoque298385a2014-02-13 14:13:09 -060061
Davide Pesaventof75bfda2019-11-10 18:34:13 -050062 conf.env.WITH_TESTS = conf.options.with_tests
Alexander Afanasyevfb2adee2015-03-30 10:56:55 -070063
Davide Pesaventoede59632022-08-26 20:35:44 -040064 conf.find_program('dot', mandatory=False)
65
66 # Prefer pkgconf if it's installed, because it gives more correct results
67 # on Fedora/CentOS/RHEL/etc. See https://bugzilla.redhat.com/show_bug.cgi?id=1953348
68 # Store the result in env.PKGCONFIG, which is the variable used inside check_cfg()
69 conf.find_program(['pkgconf', 'pkg-config'], var='PKGCONFIG')
Davide Pesavento7ae8b082021-10-12 21:45:47 -040070
Davide Pesaventod1f1df82022-03-12 16:40:37 -050071 pkg_config_path = os.environ.get('PKG_CONFIG_PATH', f'{conf.env.LIBDIR}/pkgconfig')
Davide Pesavento1e9faf12023-01-21 16:04:50 -050072 conf.check_cfg(package='libndn-cxx', args=['libndn-cxx >= 0.8.1', '--cflags', '--libs'],
Davide Pesaventod1f1df82022-03-12 16:40:37 -050073 uselib_store='NDN_CXX', pkg_config_path=pkg_config_path)
akmhoque85d88332014-02-17 21:11:21 -060074
Davide Pesavento5849ee72023-11-12 20:00:21 -050075 conf.check_boost(lib='filesystem', mt=True)
76 if conf.env.BOOST_VERSION_NUMBER < 107100:
77 conf.fatal('The minimum supported version of Boost is 1.71.0.\n'
Davide Pesavento7ae8b082021-10-12 21:45:47 -040078 'Please upgrade your distribution or manually install a newer version of Boost.\n'
79 'For more information, see https://redmine.named-data.net/projects/nfd/wiki/Boost')
akmhoque05d5fcf2014-04-15 14:58:45 -050080
Davide Pesavento5849ee72023-11-12 20:00:21 -050081 if conf.env.WITH_TESTS:
82 conf.check_boost(lib='unit_test_framework', mt=True, uselib_store='BOOST_TESTS')
83
Ashlesh Gawande30d96e42021-03-21 19:15:33 -070084 if conf.options.with_chronosync:
Davide Pesavento1e9faf12023-01-21 16:04:50 -050085 conf.check_cfg(package='ChronoSync', args=['ChronoSync >= 0.5.5', '--cflags', '--libs'],
Ashlesh Gawande30d96e42021-03-21 19:15:33 -070086 uselib_store='CHRONOSYNC', pkg_config_path=pkg_config_path)
akmhoque05d5fcf2014-04-15 14:58:45 -050087
Varun Patil7d2d6892022-10-14 12:50:30 -070088 if conf.options.with_psync:
Davide Pesavento1e9faf12023-01-21 16:04:50 -050089 conf.check_cfg(package='PSync', args=['PSync >= 0.4.0', '--cflags', '--libs'],
Varun Patil7d2d6892022-10-14 12:50:30 -070090 uselib_store='PSYNC', pkg_config_path=pkg_config_path)
91
92 if conf.options.with_svs:
93 conf.check_cfg(package='libndn-svs', args=['libndn-svs >= 0.1.0', '--cflags', '--libs'],
94 uselib_store='SVS', pkg_config_path=pkg_config_path)
95
96 if not any((conf.options.with_chronosync, conf.options.with_psync, conf.options.with_svs)):
97 conf.fatal('Cannot compile without any Sync protocol. '
98 'Specify at least one of --with-psync or --with-svs or --with-chronosync')
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -050099
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500100 conf.check_compiler_flags()
101
Davide Pesaventoe5569912019-01-29 19:39:06 -0500102 # Loading "late" to prevent tests from being compiled with profiling flags
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700103 conf.load('coverage')
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500104 conf.load('sanitizers')
105
Davide Pesaventof75bfda2019-11-10 18:34:13 -0500106 conf.define_cond('WITH_TESTS', conf.env.WITH_TESTS)
Davide Pesavento5849ee72023-11-12 20:00:21 -0500107 conf.define('DEFAULT_CONFIG_FILE', f'{conf.env.SYSCONFDIR}/ndn/nlsr.conf')
Davide Pesaventof75bfda2019-11-10 18:34:13 -0500108 # The config header will contain all defines that were added using conf.define()
109 # or conf.define_cond(). Everything that was added directly to conf.env.DEFINES
110 # will not appear in the config header, but will instead be passed directly to the
111 # compiler on the command line.
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700112 conf.write_config_header('config.hpp')
akmhoque05d5fcf2014-04-15 14:58:45 -0500113
Vince Lehmanb722b102014-08-24 16:33:49 -0500114def build(bld):
115 version(bld)
116
Davide Pesaventoe5569912019-01-29 19:39:06 -0500117 bld(features='subst',
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500118 name='version.hpp',
Vince Lehmanb722b102014-08-24 16:33:49 -0500119 source='src/version.hpp.in',
120 target='src/version.hpp',
Davide Pesavento5849ee72023-11-12 20:00:21 -0500121 install_path=None,
Vince Lehmanb722b102014-08-24 16:33:49 -0500122 VERSION_STRING=VERSION_BASE,
123 VERSION_BUILD=VERSION,
124 VERSION=int(VERSION_SPLIT[0]) * 1000000 +
125 int(VERSION_SPLIT[1]) * 1000 +
126 int(VERSION_SPLIT[2]),
127 VERSION_MAJOR=VERSION_SPLIT[0],
128 VERSION_MINOR=VERSION_SPLIT[1],
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500129 VERSION_PATCH=VERSION_SPLIT[2])
Vince Lehmanb722b102014-08-24 16:33:49 -0500130
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500131 bld.objects(
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700132 target='nlsr-objects',
Davide Pesavento5849ee72023-11-12 20:00:21 -0500133 source=bld.path.ant_glob('src/**/*.cpp', excl=['src/main.cpp']),
134 use='BOOST NDN_CXX CHRONOSYNC PSYNC SVS',
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700135 includes='. src',
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500136 export_includes='. src')
akmhoque298385a2014-02-13 14:13:09 -0600137
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500138 bld.program(
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500139 name='nlsr',
Davide Pesavento5849ee72023-11-12 20:00:21 -0500140 target='bin/nlsr',
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700141 source='src/main.cpp',
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500142 use='nlsr-objects')
akmhoque298385a2014-02-13 14:13:09 -0600143
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500144 bld.program(
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500145 name='nlsrc',
Davide Pesavento5849ee72023-11-12 20:00:21 -0500146 target='bin/nlsrc',
Vince Lehmanc439d662015-04-27 10:56:00 -0500147 source='tools/nlsrc.cpp',
Davide Pesaventoe5569912019-01-29 19:39:06 -0500148 use='nlsr-objects')
Vince Lehmanc439d662015-04-27 10:56:00 -0500149
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500150 if bld.env.WITH_TESTS:
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700151 bld.recurse('tests')
Vince Lehmanb722b102014-08-24 16:33:49 -0500152
Davide Pesavento5849ee72023-11-12 20:00:21 -0500153 # Install sample config
Davide Pesavento0da3eab2019-01-31 01:10:00 -0500154 bld.install_as('${SYSCONFDIR}/ndn/nlsr.conf.sample', 'nlsr.conf')
155
156 if Utils.unversioned_sys_platform() == 'linux':
157 bld(features='subst',
Davide Pesavento5849ee72023-11-12 20:00:21 -0500158 name='systemd-units',
Davide Pesavento0da3eab2019-01-31 01:10:00 -0500159 source='systemd/nlsr.service.in',
160 target='systemd/nlsr.service')
161
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500162 if bld.env.SPHINX_BUILD:
163 bld(features='sphinx',
164 name='manpages',
165 builder='man',
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500166 config='docs/conf.py',
Davide Pesavento0da3eab2019-01-31 01:10:00 -0500167 outdir='docs/manpages',
Davide Pesaventof75bfda2019-11-10 18:34:13 -0500168 source=bld.path.ant_glob('docs/manpages/*.rst'),
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500169 install_path='${MANDIR}',
Davide Pesaventof75bfda2019-11-10 18:34:13 -0500170 version=VERSION_BASE,
171 release=VERSION)
Vince Lehmanb722b102014-08-24 16:33:49 -0500172
173def docs(bld):
174 from waflib import Options
175 Options.commands = ['doxygen', 'sphinx'] + Options.commands
176
177def doxygen(bld):
178 version(bld)
179
180 if not bld.env.DOXYGEN:
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500181 bld.fatal('Cannot build documentation ("doxygen" not found in PATH)')
Vince Lehmanb722b102014-08-24 16:33:49 -0500182
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500183 bld(features='subst',
184 name='doxygen.conf',
185 source=['docs/doxygen.conf.in',
186 'docs/named_data_theme/named_data_footer-with-analytics.html.in'],
187 target=['docs/doxygen.conf',
188 'docs/named_data_theme/named_data_footer-with-analytics.html'],
189 VERSION=VERSION,
Davide Pesavento7ae8b082021-10-12 21:45:47 -0400190 HAVE_DOT='YES' if bld.env.DOT else 'NO',
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500191 HTML_FOOTER='../build/docs/named_data_theme/named_data_footer-with-analytics.html' \
192 if os.getenv('GOOGLE_ANALYTICS', None) \
193 else '../docs/named_data_theme/named_data_footer.html',
194 GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', ''))
195
196 bld(features='doxygen',
197 doxyfile='docs/doxygen.conf',
198 use='doxygen.conf')
Vince Lehmanb722b102014-08-24 16:33:49 -0500199
200def sphinx(bld):
201 version(bld)
202
203 if not bld.env.SPHINX_BUILD:
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500204 bld.fatal('Cannot build documentation ("sphinx-build" not found in PATH)')
205
206 bld(features='sphinx',
207 config='docs/conf.py',
208 outdir='docs',
209 source=bld.path.ant_glob('docs/**/*.rst'),
Davide Pesaventof75bfda2019-11-10 18:34:13 -0500210 version=VERSION_BASE,
211 release=VERSION)
Vince Lehmanb722b102014-08-24 16:33:49 -0500212
213def version(ctx):
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500214 # don't execute more than once
Vince Lehmanb722b102014-08-24 16:33:49 -0500215 if getattr(Context.g_module, 'VERSION_BASE', None):
216 return
217
218 Context.g_module.VERSION_BASE = Context.g_module.VERSION
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500219 Context.g_module.VERSION_SPLIT = VERSION_BASE.split('.')
Vince Lehmanb722b102014-08-24 16:33:49 -0500220
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500221 # first, try to get a version string from git
Davide Pesavento50213142024-04-22 03:44:05 -0400222 version_from_git = ''
Vince Lehmanb722b102014-08-24 16:33:49 -0500223 try:
Davide Pesavento50213142024-04-22 03:44:05 -0400224 cmd = ['git', 'describe', '--abbrev=8', '--always', '--match', f'{GIT_TAG_PREFIX}*']
225 version_from_git = subprocess.run(cmd, capture_output=True, check=True, text=True).stdout.strip()
226 if version_from_git:
227 if GIT_TAG_PREFIX and version_from_git.startswith(GIT_TAG_PREFIX):
228 Context.g_module.VERSION = version_from_git[len(GIT_TAG_PREFIX):]
229 elif not GIT_TAG_PREFIX and ('.' in version_from_git or '-' in version_from_git):
230 Context.g_module.VERSION = version_from_git
Vince Lehmanb722b102014-08-24 16:33:49 -0500231 else:
Davide Pesavento50213142024-04-22 03:44:05 -0400232 # no tags matched (or we are in a shallow clone)
233 Context.g_module.VERSION = f'{VERSION_BASE}+git.{version_from_git}'
Davide Pesavento5849ee72023-11-12 20:00:21 -0500234 except (OSError, subprocess.SubprocessError):
Vince Lehmanb722b102014-08-24 16:33:49 -0500235 pass
236
Davide Pesavento50213142024-04-22 03:44:05 -0400237 # fallback to the VERSION.info file, if it exists and is not empty
238 version_from_file = ''
239 version_file = ctx.path.find_node('VERSION.info')
240 if version_file is not None:
Vince Lehmanb722b102014-08-24 16:33:49 -0500241 try:
Davide Pesavento50213142024-04-22 03:44:05 -0400242 version_from_file = version_file.read().strip()
243 except OSError as e:
244 Logs.warn(f'{e.filename} exists but is not readable ({e.strerror})')
245 if version_from_file and not version_from_git:
246 Context.g_module.VERSION = version_from_file
247 return
Vince Lehmanb722b102014-08-24 16:33:49 -0500248
Davide Pesavento50213142024-04-22 03:44:05 -0400249 # update VERSION.info if necessary
250 if version_from_file == Context.g_module.VERSION:
251 # already up-to-date
252 return
253 if version_file is None:
254 version_file = ctx.path.make_node('VERSION.info')
Vince Lehmanb722b102014-08-24 16:33:49 -0500255 try:
Davide Pesavento50213142024-04-22 03:44:05 -0400256 version_file.write(Context.g_module.VERSION)
257 except OSError as e:
258 Logs.warn(f'{e.filename} is not writable ({e.strerror})')
Vince Lehmanb722b102014-08-24 16:33:49 -0500259
260def dist(ctx):
Davide Pesaventofa54ee92023-02-20 04:16:51 -0500261 ctx.algo = 'tar.xz'
Vince Lehmanb722b102014-08-24 16:33:49 -0500262 version(ctx)
263
264def distcheck(ctx):
Davide Pesaventofa54ee92023-02-20 04:16:51 -0500265 ctx.algo = 'tar.xz'
Vince Lehmanb722b102014-08-24 16:33:49 -0500266 version(ctx)