blob: f51f65aa06faf9c5b25823ba5efdd0ba2e237fef [file] [log] [blame]
Alexander Afanasyev2aa39622014-01-22 11:51:11 -08001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -07002
3"""
taylorchu5ae28772015-03-08 17:45:52 -07004Copyright (c) 2014-2015, Regents of the University of California,
5 Arizona Board of Regents,
6 Colorado State University,
7 University Pierre & Marie Curie, Sorbonne University,
8 Washington University in St. Louis,
9 Beijing Institute of Technology,
10 The University of Memphis.
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070011
12This file is part of NFD (Named Data Networking Forwarding Daemon).
13See AUTHORS.md for complete list of NFD authors and contributors.
14
15NFD is free software: you can redistribute it and/or modify it under the terms
16of the GNU General Public License as published by the Free Software Foundation,
17either version 3 of the License, or (at your option) any later version.
18
19NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
20without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
21PURPOSE. See the GNU General Public License for more details.
22
23You should have received a copy of the GNU General Public License along with
24NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
25"""
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080026
Alexander Afanasyev58d479c2016-03-24 13:56:55 -070027VERSION = "0.4.1"
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -070028APPNAME = "nfd"
29BUGREPORT = "http://redmine.named-data.net/projects/nfd"
Alexander Afanasyevb47d5382014-05-05 14:35:03 -070030URL = "http://named-data.net/doc/NFD/"
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -070031GIT_TAG_PREFIX = "NFD-"
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -070032
Alexander Afanasyevb47d5382014-05-05 14:35:03 -070033from waflib import Logs, Utils, Context
Alexander Afanasyev20757882014-08-25 22:39:08 -070034import os
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080035
36def options(opt):
Alexander Afanasyev5cda2e02014-04-11 13:58:44 -070037 opt.load(['compiler_cxx', 'gnu_dirs'])
Wentao Shang53df1632014-04-21 12:01:32 -070038 opt.load(['boost', 'unix-socket', 'dependency-checker', 'websocket',
Alexander Afanasyeve9186212014-08-23 20:15:48 -070039 'default-compiler-flags', 'coverage', 'pch', 'boost-kqueue',
Junxiao Shi1c93cae2014-12-09 22:52:17 -070040 'doxygen', 'sphinx_build', 'type_traits', 'compiler-features'],
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -070041 tooldir=['.waf-tools'])
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080042
43 nfdopt = opt.add_option_group('NFD Options')
Alexander Afanasyev885a85b2014-04-12 21:01:13 -070044 opt.addUnixOptions(nfdopt)
Wentao Shang53df1632014-04-21 12:01:32 -070045 opt.addWebsocketOptions(nfdopt)
Alexander Afanasyev885a85b2014-04-12 21:01:13 -070046 opt.addDependencyOptions(nfdopt, 'libpcap')
47 nfdopt.add_option('--without-libpcap', action='store_true', default=False,
48 dest='without_libpcap',
49 help='''Disable libpcap (Ethernet face support will be disabled)''')
50
Alexander Afanasyev5cda2e02014-04-11 13:58:44 -070051 opt.addDependencyOptions(nfdopt, 'librt', '(optional)')
52 opt.addDependencyOptions(nfdopt, 'libresolv', '(optional)')
53
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -070054 nfdopt.add_option('--with-tests', action='store_true', default=False,
55 dest='with_tests', help='''Build unit tests''')
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -040056 nfdopt.add_option('--with-other-tests', action='store_true', default=False,
57 dest='with_other_tests', help='''Build other tests''')
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -060058
Alexander Afanasyev8269a052015-02-09 16:25:36 -080059 nfdopt.add_option('--with-custom-logger', type='string', default=None,
60 dest='with_custom_logger',
61 help='''Path to custom-logger.hpp and custom-logger-factory.hpp '''
62 '''implementing Logger and LoggerFactory interfaces''')
63
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080064def configure(conf):
Beichuan Zhang55b8ed42014-04-26 22:25:44 -070065 conf.load(['compiler_cxx', 'gnu_dirs',
Alexander Afanasyeve9186212014-08-23 20:15:48 -070066 'default-compiler-flags', 'pch', 'boost-kqueue',
Wentao Shang53df1632014-04-21 12:01:32 -070067 'boost', 'dependency-checker', 'websocket',
Junxiao Shi1c93cae2014-12-09 22:52:17 -070068 'doxygen', 'sphinx_build', 'type_traits', 'compiler-features'])
Alexander Afanasyevefea8fe2014-03-23 00:00:35 -070069
Davide Pesaventof0ae4422014-05-05 16:32:12 +020070 conf.find_program('bash', var='BASH')
71
taylorchu5ae28772015-03-08 17:45:52 -070072 if 'PKG_CONFIG_PATH' not in os.environ:
Alexander Afanasyevcdb8f362015-03-30 10:52:54 -070073 os.environ['PKG_CONFIG_PATH'] = Utils.subst_vars('${LIBDIR}/pkgconfig', conf.env)
Alexander Afanasyev4a771362014-04-24 21:29:33 -070074 conf.check_cfg(package='libndn-cxx', args=['--cflags', '--libs'],
75 uselib_store='NDN_CXX', mandatory=True)
Davide Pesavento44deacc2014-02-19 10:48:07 +010076
Davide Pesaventob499a602014-11-18 22:36:56 +010077 conf.checkDependency(name='librt', lib='rt', mandatory=False)
78 conf.checkDependency(name='libresolv', lib='resolv', mandatory=False)
79
Alexander Afanasyev748e9892015-01-28 15:07:41 -080080 if not conf.check_cxx(msg='Checking if privilege drop/elevation is supported', mandatory=False,
81 define_name='HAVE_PRIVILEGE_DROP_AND_ELEVATE', fragment='''
82#include <unistd.h>
83#include <pwd.h>
84#include <grp.h>
85int
86main(int, char**)
87{
88 ::sysconf(_SC_GETGR_R_SIZE_MAX);
89 group grp;
90 getgrnam_r("nogroup", &grp, nullptr, 0, nullptr);
91 passwd pwd;
92 getpwnam_r("nobody", &pwd, nullptr, 0, nullptr);
93
94 int ret = setegid(grp.gr_gid);
95 ret = seteuid(pwd.pw_uid);
96 (void)(ret);
97 return 0;
98}
99'''):
100 Logs.warn('Dropping privileges is not supported on this platform')
101
Alexander Afanasyev49343f62015-01-26 21:58:07 -0800102 conf.check_cxx(header_name='ifaddrs.h', mandatory=False)
Alexander Afanasyev49343f62015-01-26 21:58:07 -0800103
Alexander Afanasyev5d57f972015-02-11 21:04:29 -0800104 boost_libs = 'system chrono program_options random thread'
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800105 if conf.options.with_tests:
106 conf.env['WITH_TESTS'] = 1
Junxiao Shi88884492014-02-15 15:57:43 -0700107 conf.define('WITH_TESTS', 1);
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700108 boost_libs += ' unit_test_framework'
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800109
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -0400110 if conf.options.with_other_tests:
111 conf.env['WITH_OTHER_TESTS'] = 1
112
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800113 conf.check_boost(lib=boost_libs)
Alexander Afanasyeve1724c42014-02-26 22:00:54 -0800114 if conf.env.BOOST_VERSION_NUMBER < 104800:
Junxiao Shiea48d8b2014-03-16 13:53:47 -0700115 Logs.error("Minimum required boost version is 1.48.0")
116 Logs.error("Please upgrade your distribution or install custom boost libraries" +
117 " (http://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)")
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800118 return
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800119
Alexander Afanasyev6602b3b2016-03-15 14:14:11 -0700120 if conf.env['CXX_NAME'] == 'clang' and conf.env.BOOST_VERSION_NUMBER < 105800:
121 conf.define('BOOST_ASIO_HAS_STD_ARRAY', 1) # Workaround for http://redmine.named-data.net/issues/3360#note-14
122
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800123 conf.load('unix-socket')
Wentao Shang53df1632014-04-21 12:01:32 -0700124 conf.checkWebsocket(mandatory=True)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100125
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700126 if not conf.options.without_libpcap:
Alexander Afanasyeve9186212014-08-23 20:15:48 -0700127 conf.check_asio_pcap_support()
128 if conf.env['HAVE_ASIO_PCAP_SUPPORT']:
129 conf.checkDependency(name='libpcap', lib='pcap', mandatory=True,
130 errmsg='not found, but required for Ethernet face support. '
131 'Specify --without-libpcap to disable Ethernet face support.')
132 else:
133 Logs.warn('Warning: Ethernet face support is not supported on this platform with Boost libraries version 1.56. '
134 'See http://redmine.named-data.net/issues/1877 for more details')
Davide Pesaventof0ae4422014-05-05 16:32:12 +0200135 if conf.env['HAVE_LIBPCAP']:
136 conf.check_cxx(function_name='pcap_set_immediate_mode', header_name='pcap/pcap.h',
137 cxxflags='-Wno-error', use='LIBPCAP', mandatory=False)
Alexander Afanasyevefea8fe2014-03-23 00:00:35 -0700138
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800139 if conf.options.with_custom_logger:
140 conf.define('HAVE_CUSTOM_LOGGER', 1)
141 conf.env['INCLUDES_CUSTOM_LOGGER'] = [conf.options.with_custom_logger]
142 conf.env['HAVE_CUSTOM_LOGGER'] = 1
143
Alexander Afanasyev689569b2014-02-16 20:20:07 -0800144 conf.load('coverage')
145
Steve DiBenedettofbb40a82014-03-11 19:40:15 -0600146 conf.define('DEFAULT_CONFIG_FILE', '%s/ndn/nfd.conf' % conf.env['SYSCONFDIR'])
Steve DiBenedetto2c2b8892014-02-27 11:46:48 -0700147
Junxiao Shi759f7062014-11-29 10:19:22 -0700148 # disable assertions in release builds
149 if not conf.options.debug:
150 conf.define('NDEBUG', 1)
151
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700152 conf.write_config_header('config.hpp')
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800153
Junxiao Shi09bf7c42014-01-31 11:10:25 -0700154def build(bld):
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700155 version(bld)
156
157 bld(features="subst",
158 name='version',
159 source='version.hpp.in',
160 target='version.hpp',
161 install_path=None,
162 VERSION_STRING=VERSION_BASE,
163 VERSION_BUILD=VERSION,
164 VERSION=int(VERSION_SPLIT[0]) * 1000000 +
165 int(VERSION_SPLIT[1]) * 1000 +
166 int(VERSION_SPLIT[2]),
167 VERSION_MAJOR=VERSION_SPLIT[0],
168 VERSION_MINOR=VERSION_SPLIT[1],
169 VERSION_PATCH=VERSION_SPLIT[2],
170 )
171
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700172 core = bld(
173 target='core-objects',
174 name='core-objects',
Alexander Afanasyev58ea4582014-05-30 08:38:56 +0300175 features='cxx pch',
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800176 source=bld.path.ant_glob(['core/**/*.cpp'],
177 excl=['core/logger*.cpp']),
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700178 use='version BOOST NDN_CXX LIBRT',
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700179 includes='. core',
180 export_includes='. core',
Alexander Afanasyev58ea4582014-05-30 08:38:56 +0300181 headers='common.hpp',
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700182 )
183
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800184 if bld.env['HAVE_CUSTOM_LOGGER']:
185 core.use += " CUSTOM_LOGGER"
186 else:
187 core.source += bld.path.ant_glob(['core/logger*.cpp'])
188
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800189 nfd_objects = bld(
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700190 target='daemon-objects',
191 name='daemon-objects',
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700192 features='cxx',
193 source=bld.path.ant_glob(['daemon/**/*.cpp'],
194 excl=['daemon/face/ethernet-*.cpp',
195 'daemon/face/unix-*.cpp',
Wentao Shang53df1632014-04-21 12:01:32 -0700196 'daemon/face/websocket-*.cpp',
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700197 'daemon/main.cpp']),
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600198 use='core-objects WEBSOCKET',
199 includes='daemon',
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700200 export_includes='daemon',
Junxiao Shi0fcb41e2014-01-24 10:29:43 -0700201 )
202
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700203 if bld.env['HAVE_LIBPCAP']:
Davide Pesavento44deacc2014-02-19 10:48:07 +0100204 nfd_objects.source += bld.path.ant_glob('daemon/face/ethernet-*.cpp')
Alexander Afanasyev5cda2e02014-04-11 13:58:44 -0700205 nfd_objects.use += ' LIBPCAP'
Davide Pesavento44deacc2014-02-19 10:48:07 +0100206
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800207 if bld.env['HAVE_UNIX_SOCKETS']:
Davide Pesavento44deacc2014-02-19 10:48:07 +0100208 nfd_objects.source += bld.path.ant_glob('daemon/face/unix-*.cpp')
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800209
Wentao Shang53df1632014-04-21 12:01:32 -0700210 if bld.env['HAVE_WEBSOCKET']:
211 nfd_objects.source += bld.path.ant_glob('daemon/face/websocket-*.cpp')
212
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700213 rib_objects = bld(
214 target='rib-objects',
215 name='rib-objects',
216 features='cxx',
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800217 source=bld.path.ant_glob(['rib/**/*.cpp']),
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700218 use='core-objects',
219 )
220
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800221 bld(target='bin/nfd',
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700222 features='cxx cxxprogram',
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800223 source='daemon/main.cpp',
224 use='daemon-objects rib-objects',
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700225 )
226
Alexander Afanasyev262203b2015-01-26 16:39:59 -0800227 bld.recurse("tools")
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700228 bld.recurse("tests")
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -0400229
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700230 bld(features="subst",
231 source='nfd.conf.sample.in',
232 target='nfd.conf.sample',
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700233 install_path="${SYSCONFDIR}/ndn",
Wentao Shang53df1632014-04-21 12:01:32 -0700234 IF_HAVE_LIBPCAP="" if bld.env['HAVE_LIBPCAP'] else "; ",
235 IF_HAVE_WEBSOCKET="" if bld.env['HAVE_WEBSOCKET'] else "; ")
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800236
Alexander Afanasyev49272f72014-04-06 21:49:46 -0700237 if bld.env['SPHINX_BUILD']:
238 bld(features="sphinx",
239 builder="man",
240 outdir="docs/manpages",
241 config="docs/conf.py",
242 source=bld.path.ant_glob('docs/manpages/**/*.rst'),
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700243 install_path="${MANDIR}/",
244 VERSION=VERSION)
Alexander Afanasyev49272f72014-04-06 21:49:46 -0700245
Alexander Afanasyev5c475972015-12-20 16:16:56 -0800246 bld.install_files("${SYSCONFDIR}/ndn", "autoconfig.conf.sample")
247
Alexander Afanasyev284257b2014-04-11 14:16:51 -0700248def docs(bld):
249 from waflib import Options
250 Options.commands = ['doxygen', 'sphinx'] + Options.commands
251
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800252def doxygen(bld):
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700253 version(bld)
254
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800255 if not bld.env.DOXYGEN:
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700256 Logs.error("ERROR: cannot build documentation (`doxygen' is not found in $PATH)")
257 else:
258 bld(features="subst",
259 name="doxygen-conf",
Alexander Afanasyev20757882014-08-25 22:39:08 -0700260 source=["docs/doxygen.conf.in",
261 "docs/named_data_theme/named_data_footer-with-analytics.html.in"],
262 target=["docs/doxygen.conf",
263 "docs/named_data_theme/named_data_footer-with-analytics.html"],
Alexander Afanasyevabb307c2015-10-23 17:00:13 -0700264 VERSION=VERSION,
Alexander Afanasyev20757882014-08-25 22:39:08 -0700265 HTML_FOOTER="../build/docs/named_data_theme/named_data_footer-with-analytics.html" \
266 if os.getenv('GOOGLE_ANALYTICS', None) \
267 else "../docs/named_data_theme/named_data_footer.html",
268 GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', ""),
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700269 )
270
271 bld(features="doxygen",
272 doxyfile='docs/doxygen.conf',
273 use="doxygen-conf")
Alexander Afanasyev49272f72014-04-06 21:49:46 -0700274
275def sphinx(bld):
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700276 version(bld)
277
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700278 if not bld.env.SPHINX_BUILD:
279 bld.fatal("ERROR: cannot build documentation (`sphinx-build' is not found in $PATH)")
280 else:
281 bld(features="sphinx",
282 outdir="docs",
283 source=bld.path.ant_glob('docs/**/*.rst'),
284 config="docs/conf.py",
Alexander Afanasyevabb307c2015-10-23 17:00:13 -0700285 VERSION=VERSION)
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700286
287def version(ctx):
Alexander Afanasyev26181532014-05-07 23:38:51 -0700288 if getattr(Context.g_module, 'VERSION_BASE', None):
289 return
290
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700291 Context.g_module.VERSION_BASE = Context.g_module.VERSION
292 Context.g_module.VERSION_SPLIT = [v for v in VERSION_BASE.split('.')]
293
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700294 didGetVersion = False
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700295 try:
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700296 cmd = ['git', 'describe', '--always', '--match', '%s*' % GIT_TAG_PREFIX]
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700297 p = Utils.subprocess.Popen(cmd, stdout=Utils.subprocess.PIPE,
298 stderr=None, stdin=None)
Alexander Afanasyev3b21fa32014-09-01 13:25:20 -0700299 out = str(p.communicate()[0].strip())
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700300 didGetVersion = (p.returncode == 0 and out != "")
301 if didGetVersion:
302 if out.startswith(GIT_TAG_PREFIX):
303 Context.g_module.VERSION = out[len(GIT_TAG_PREFIX):]
304 else:
305 Context.g_module.VERSION = "%s-commit-%s" % (Context.g_module.VERSION_BASE, out)
306 except OSError:
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700307 pass
308
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700309 versionFile = ctx.path.find_node('VERSION')
310
311 if not didGetVersion and versionFile is not None:
312 try:
313 Context.g_module.VERSION = versionFile.read()
314 return
315 except (OSError, IOError):
316 pass
317
318 # version was obtained from git, update VERSION file if necessary
319 if versionFile is not None:
320 try:
321 version = versionFile.read()
322 if version == Context.g_module.VERSION:
323 return # no need to update
324 except (OSError, IOError):
325 Logs.warn("VERSION file exists, but not readable")
326 else:
327 versionFile = ctx.path.make_node('VERSION')
328
329 if versionFile is None:
330 return
331
332 try:
333 versionFile.write(Context.g_module.VERSION)
334 except (OSError, IOError):
335 Logs.warn("VERSION file is not writeable")
336
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700337def dist(ctx):
338 version(ctx)
339
340def distcheck(ctx):
341 version(ctx)