blob: 5d23b8a2a2d50e94113cd5b38a32c45804e642e9 [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"""
Ashlesh Gawande30d96e42021-03-21 19:15:33 -07003Copyright (c) 2014-2021, 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"
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 Pesavento7ae8b082021-10-12 21:45:47 -040033 opt.load(['default-compiler-flags',
34 'coverage', 'sanitizers', 'boost',
35 'doxygen', 'sphinx_build'],
Davide Pesaventoe5569912019-01-29 19:39:06 -050036 tooldir=['.waf-tools'])
akmhoque298385a2014-02-13 14:13:09 -060037
Davide Pesaventof75bfda2019-11-10 18:34:13 -050038 optgrp = opt.add_option_group('NLSR Options')
39 optgrp.add_option('--with-tests', action='store_true', default=False,
40 help='Build unit tests')
Ashlesh Gawande30d96e42021-03-21 19:15:33 -070041 optgrp.add_option('--with-chronosync', action='store_true', default=False,
Davide Pesavento7ae8b082021-10-12 21:45:47 -040042 help='Build with ChronoSync support')
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
Davide Pesaventof75bfda2019-11-10 18:34:13 -050049 conf.env.WITH_TESTS = conf.options.with_tests
Alexander Afanasyevfb2adee2015-03-30 10:56:55 -070050
Davide Pesavento7ae8b082021-10-12 21:45:47 -040051 conf.find_program('dot', var='DOT', mandatory=False)
52
Davide Pesaventod1f1df82022-03-12 16:40:37 -050053 pkg_config_path = os.environ.get('PKG_CONFIG_PATH', f'{conf.env.LIBDIR}/pkgconfig')
54 conf.check_cfg(package='libndn-cxx', args=['libndn-cxx >= 0.8.0', '--cflags', '--libs'],
55 uselib_store='NDN_CXX', pkg_config_path=pkg_config_path)
akmhoque85d88332014-02-17 21:11:21 -060056
Davide Pesaventof75bfda2019-11-10 18:34:13 -050057 boost_libs = ['system', 'iostreams', 'filesystem', 'regex']
58 if conf.env.WITH_TESTS:
Davide Pesaventod1f1df82022-03-12 16:40:37 -050059 boost_libs.append('unit_test_framework')
akmhoque85d88332014-02-17 21:11:21 -060060
dmcoomescf8d0ed2017-02-21 11:39:01 -060061 conf.check_boost(lib=boost_libs, mt=True)
Davide Pesaventod1f1df82022-03-12 16:40:37 -050062 if conf.env.BOOST_VERSION_NUMBER < 106501:
Davide Pesavento7ae8b082021-10-12 21:45:47 -040063 conf.fatal('The minimum supported version of Boost is 1.65.1.\n'
64 'Please upgrade your distribution or manually install a newer version of Boost.\n'
65 'For more information, see https://redmine.named-data.net/projects/nfd/wiki/Boost')
akmhoque05d5fcf2014-04-15 14:58:45 -050066
Ashlesh Gawande30d96e42021-03-21 19:15:33 -070067 if conf.options.with_chronosync:
Davide Pesaventod1f1df82022-03-12 16:40:37 -050068 conf.check_cfg(package='ChronoSync', args=['ChronoSync >= 0.5.4', '--cflags', '--libs'],
Ashlesh Gawande30d96e42021-03-21 19:15:33 -070069 uselib_store='CHRONOSYNC', pkg_config_path=pkg_config_path)
akmhoque05d5fcf2014-04-15 14:58:45 -050070
Davide Pesaventod1f1df82022-03-12 16:40:37 -050071 conf.check_cfg(package='PSync', args=['PSync >= 0.3.0', '--cflags', '--libs'],
72 uselib_store='PSYNC', pkg_config_path=pkg_config_path)
Ashlesh Gawande32ec3fd2018-07-18 13:42:32 -050073
Alexander Afanasyev67758b12018-03-06 18:36:44 -050074 conf.check_compiler_flags()
75
Davide Pesaventoe5569912019-01-29 19:39:06 -050076 # Loading "late" to prevent tests from being compiled with profiling flags
Yingdi Yu40cd1c32014-04-17 15:02:17 -070077 conf.load('coverage')
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -050078 conf.load('sanitizers')
79
Davide Pesaventof75bfda2019-11-10 18:34:13 -050080 conf.define_cond('WITH_TESTS', conf.env.WITH_TESTS)
Junxiao Shia3a63972022-01-24 02:03:41 +000081 conf.define('DEFAULT_CONFIG_FILE', '%s/ndn/nlsr.conf' % conf.env.SYSCONFDIR)
Davide Pesaventof75bfda2019-11-10 18:34:13 -050082 # The config header will contain all defines that were added using conf.define()
83 # or conf.define_cond(). Everything that was added directly to conf.env.DEFINES
84 # will not appear in the config header, but will instead be passed directly to the
85 # compiler on the command line.
Yingdi Yu40cd1c32014-04-17 15:02:17 -070086 conf.write_config_header('config.hpp')
akmhoque05d5fcf2014-04-15 14:58:45 -050087
Vince Lehmanb722b102014-08-24 16:33:49 -050088def build(bld):
89 version(bld)
90
Davide Pesaventoe5569912019-01-29 19:39:06 -050091 bld(features='subst',
Alexander Afanasyev67758b12018-03-06 18:36:44 -050092 name='version.hpp',
Vince Lehmanb722b102014-08-24 16:33:49 -050093 source='src/version.hpp.in',
94 target='src/version.hpp',
Vince Lehmanb722b102014-08-24 16:33:49 -050095 VERSION_STRING=VERSION_BASE,
96 VERSION_BUILD=VERSION,
97 VERSION=int(VERSION_SPLIT[0]) * 1000000 +
98 int(VERSION_SPLIT[1]) * 1000 +
99 int(VERSION_SPLIT[2]),
100 VERSION_MAJOR=VERSION_SPLIT[0],
101 VERSION_MINOR=VERSION_SPLIT[1],
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500102 VERSION_PATCH=VERSION_SPLIT[2])
Vince Lehmanb722b102014-08-24 16:33:49 -0500103
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500104 bld.objects(
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700105 target='nlsr-objects',
Davide Pesaventoe5569912019-01-29 19:39:06 -0500106 source=bld.path.ant_glob('src/**/*.cpp',
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700107 excl=['src/main.cpp']),
Ashlesh Gawande30d96e42021-03-21 19:15:33 -0700108 use='NDN_CXX BOOST CHRONOSYNC PSYNC',
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700109 includes='. src',
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500110 export_includes='. src')
akmhoque298385a2014-02-13 14:13:09 -0600111
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500112 bld.program(
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700113 target='bin/nlsr',
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500114 name='nlsr',
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700115 source='src/main.cpp',
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500116 use='nlsr-objects')
akmhoque298385a2014-02-13 14:13:09 -0600117
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500118 bld.program(
Vince Lehmanc439d662015-04-27 10:56:00 -0500119 target='bin/nlsrc',
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500120 name='nlsrc',
Vince Lehmanc439d662015-04-27 10:56:00 -0500121 source='tools/nlsrc.cpp',
Davide Pesaventoe5569912019-01-29 19:39:06 -0500122 use='nlsr-objects')
Vince Lehmanc439d662015-04-27 10:56:00 -0500123
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500124 if bld.env.WITH_TESTS:
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700125 bld.recurse('tests')
Vince Lehmanb722b102014-08-24 16:33:49 -0500126
Davide Pesavento0da3eab2019-01-31 01:10:00 -0500127 bld.install_as('${SYSCONFDIR}/ndn/nlsr.conf.sample', 'nlsr.conf')
128
129 if Utils.unversioned_sys_platform() == 'linux':
130 bld(features='subst',
131 name='nlsr.service',
132 source='systemd/nlsr.service.in',
133 target='systemd/nlsr.service')
134
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500135 if bld.env.SPHINX_BUILD:
136 bld(features='sphinx',
137 name='manpages',
138 builder='man',
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500139 config='docs/conf.py',
Davide Pesavento0da3eab2019-01-31 01:10:00 -0500140 outdir='docs/manpages',
Davide Pesaventof75bfda2019-11-10 18:34:13 -0500141 source=bld.path.ant_glob('docs/manpages/*.rst'),
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500142 install_path='${MANDIR}',
Davide Pesaventof75bfda2019-11-10 18:34:13 -0500143 version=VERSION_BASE,
144 release=VERSION)
Vince Lehmanb722b102014-08-24 16:33:49 -0500145
146def docs(bld):
147 from waflib import Options
148 Options.commands = ['doxygen', 'sphinx'] + Options.commands
149
150def doxygen(bld):
151 version(bld)
152
153 if not bld.env.DOXYGEN:
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500154 bld.fatal('Cannot build documentation ("doxygen" not found in PATH)')
Vince Lehmanb722b102014-08-24 16:33:49 -0500155
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500156 bld(features='subst',
157 name='doxygen.conf',
158 source=['docs/doxygen.conf.in',
159 'docs/named_data_theme/named_data_footer-with-analytics.html.in'],
160 target=['docs/doxygen.conf',
161 'docs/named_data_theme/named_data_footer-with-analytics.html'],
162 VERSION=VERSION,
Davide Pesavento7ae8b082021-10-12 21:45:47 -0400163 HAVE_DOT='YES' if bld.env.DOT else 'NO',
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500164 HTML_FOOTER='../build/docs/named_data_theme/named_data_footer-with-analytics.html' \
165 if os.getenv('GOOGLE_ANALYTICS', None) \
166 else '../docs/named_data_theme/named_data_footer.html',
167 GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', ''))
168
169 bld(features='doxygen',
170 doxyfile='docs/doxygen.conf',
171 use='doxygen.conf')
Vince Lehmanb722b102014-08-24 16:33:49 -0500172
173def sphinx(bld):
174 version(bld)
175
176 if not bld.env.SPHINX_BUILD:
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500177 bld.fatal('Cannot build documentation ("sphinx-build" not found in PATH)')
178
179 bld(features='sphinx',
180 config='docs/conf.py',
181 outdir='docs',
182 source=bld.path.ant_glob('docs/**/*.rst'),
Davide Pesaventof75bfda2019-11-10 18:34:13 -0500183 version=VERSION_BASE,
184 release=VERSION)
Vince Lehmanb722b102014-08-24 16:33:49 -0500185
186def version(ctx):
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500187 # don't execute more than once
Vince Lehmanb722b102014-08-24 16:33:49 -0500188 if getattr(Context.g_module, 'VERSION_BASE', None):
189 return
190
191 Context.g_module.VERSION_BASE = Context.g_module.VERSION
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500192 Context.g_module.VERSION_SPLIT = VERSION_BASE.split('.')
Vince Lehmanb722b102014-08-24 16:33:49 -0500193
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500194 # first, try to get a version string from git
195 gotVersionFromGit = False
Vince Lehmanb722b102014-08-24 16:33:49 -0500196 try:
197 cmd = ['git', 'describe', '--always', '--match', '%s*' % GIT_TAG_PREFIX]
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500198 out = subprocess.check_output(cmd, universal_newlines=True).strip()
199 if out:
200 gotVersionFromGit = True
Vince Lehmanb722b102014-08-24 16:33:49 -0500201 if out.startswith(GIT_TAG_PREFIX):
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500202 Context.g_module.VERSION = out.lstrip(GIT_TAG_PREFIX)
Vince Lehmanb722b102014-08-24 16:33:49 -0500203 else:
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500204 # no tags matched
205 Context.g_module.VERSION = '%s-commit-%s' % (VERSION_BASE, out)
Davide Pesaventoa08dc3f2018-05-24 00:40:28 -0400206 except (OSError, subprocess.CalledProcessError):
Vince Lehmanb722b102014-08-24 16:33:49 -0500207 pass
208
Alexander Afanasyev96ebd9b2020-06-01 19:16:52 -0400209 versionFile = ctx.path.find_node('VERSION.info')
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500210 if not gotVersionFromGit and versionFile is not None:
Vince Lehmanb722b102014-08-24 16:33:49 -0500211 try:
212 Context.g_module.VERSION = versionFile.read()
213 return
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500214 except EnvironmentError:
Vince Lehmanb722b102014-08-24 16:33:49 -0500215 pass
216
217 # version was obtained from git, update VERSION file if necessary
218 if versionFile is not None:
219 try:
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500220 if versionFile.read() == Context.g_module.VERSION:
221 # already up-to-date
222 return
223 except EnvironmentError as e:
224 Logs.warn('%s exists but is not readable (%s)' % (versionFile, e.strerror))
Vince Lehmanb722b102014-08-24 16:33:49 -0500225 else:
Alexander Afanasyev96ebd9b2020-06-01 19:16:52 -0400226 versionFile = ctx.path.make_node('VERSION.info')
Vince Lehmanb722b102014-08-24 16:33:49 -0500227
Vince Lehmanb722b102014-08-24 16:33:49 -0500228 try:
229 versionFile.write(Context.g_module.VERSION)
Alexander Afanasyev67758b12018-03-06 18:36:44 -0500230 except EnvironmentError as e:
231 Logs.warn('%s is not writable (%s)' % (versionFile, e.strerror))
Vince Lehmanb722b102014-08-24 16:33:49 -0500232
233def dist(ctx):
234 version(ctx)
235
236def distcheck(ctx):
237 version(ctx)