blob: d169a5a3c147e3a5576e38c16e2dd7fc44d6b990 [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"""
Yumin Xiaab497452016-05-10 20:23:24 +08004Copyright (c) 2014-2016, Regents of the University of California,
taylorchu5ae28772015-03-08 17:45:52 -07005 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{
Alexander Afanasyeve0d71b02016-05-25 11:39:13 -070088 char buffer[100];
Alexander Afanasyev748e9892015-01-28 15:07:41 -080089 ::sysconf(_SC_GETGR_R_SIZE_MAX);
90 group grp;
Alexander Afanasyeve0d71b02016-05-25 11:39:13 -070091 group* grpRes;
92 getgrnam_r("nogroup", &grp, buffer, 100, &grpRes);
Alexander Afanasyev748e9892015-01-28 15:07:41 -080093 passwd pwd;
Alexander Afanasyeve0d71b02016-05-25 11:39:13 -070094 passwd* pwdRes;
95 getpwnam_r("nobody", &pwd, buffer, 100, &pwdRes);
Alexander Afanasyev748e9892015-01-28 15:07:41 -080096
97 int ret = setegid(grp.gr_gid);
98 ret = seteuid(pwd.pw_uid);
99 (void)(ret);
100 return 0;
101}
102'''):
103 Logs.warn('Dropping privileges is not supported on this platform')
104
Alexander Afanasyev49343f62015-01-26 21:58:07 -0800105 conf.check_cxx(header_name='ifaddrs.h', mandatory=False)
Alexander Afanasyev49343f62015-01-26 21:58:07 -0800106
Yumin Xiaab497452016-05-10 20:23:24 +0800107 boost_libs = 'system chrono program_options random thread log log_setup'
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800108 if conf.options.with_tests:
109 conf.env['WITH_TESTS'] = 1
Junxiao Shi88884492014-02-15 15:57:43 -0700110 conf.define('WITH_TESTS', 1);
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700111 boost_libs += ' unit_test_framework'
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800112
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -0400113 if conf.options.with_other_tests:
114 conf.env['WITH_OTHER_TESTS'] = 1
115
Yumin Xiaab497452016-05-10 20:23:24 +0800116 conf.check_boost(lib=boost_libs, mt=True)
Davide Pesaventocafae242016-04-22 02:21:35 +0200117 if conf.env.BOOST_VERSION_NUMBER < 105400:
118 Logs.error("Minimum required boost version is 1.54.0")
Junxiao Shiea48d8b2014-03-16 13:53:47 -0700119 Logs.error("Please upgrade your distribution or install custom boost libraries" +
120 " (http://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)")
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800121 return
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800122
Alexander Afanasyev6602b3b2016-03-15 14:14:11 -0700123 if conf.env['CXX_NAME'] == 'clang' and conf.env.BOOST_VERSION_NUMBER < 105800:
124 conf.define('BOOST_ASIO_HAS_STD_ARRAY', 1) # Workaround for http://redmine.named-data.net/issues/3360#note-14
125
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800126 conf.load('unix-socket')
Wentao Shang53df1632014-04-21 12:01:32 -0700127 conf.checkWebsocket(mandatory=True)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100128
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700129 if not conf.options.without_libpcap:
Alexander Afanasyeve9186212014-08-23 20:15:48 -0700130 conf.check_asio_pcap_support()
131 if conf.env['HAVE_ASIO_PCAP_SUPPORT']:
132 conf.checkDependency(name='libpcap', lib='pcap', mandatory=True,
133 errmsg='not found, but required for Ethernet face support. '
134 'Specify --without-libpcap to disable Ethernet face support.')
135 else:
136 Logs.warn('Warning: Ethernet face support is not supported on this platform with Boost libraries version 1.56. '
137 'See http://redmine.named-data.net/issues/1877 for more details')
Davide Pesaventof0ae4422014-05-05 16:32:12 +0200138 if conf.env['HAVE_LIBPCAP']:
139 conf.check_cxx(function_name='pcap_set_immediate_mode', header_name='pcap/pcap.h',
140 cxxflags='-Wno-error', use='LIBPCAP', mandatory=False)
Alexander Afanasyevefea8fe2014-03-23 00:00:35 -0700141
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800142 if conf.options.with_custom_logger:
143 conf.define('HAVE_CUSTOM_LOGGER', 1)
144 conf.env['INCLUDES_CUSTOM_LOGGER'] = [conf.options.with_custom_logger]
145 conf.env['HAVE_CUSTOM_LOGGER'] = 1
146
Alexander Afanasyev689569b2014-02-16 20:20:07 -0800147 conf.load('coverage')
148
Steve DiBenedettofbb40a82014-03-11 19:40:15 -0600149 conf.define('DEFAULT_CONFIG_FILE', '%s/ndn/nfd.conf' % conf.env['SYSCONFDIR'])
Steve DiBenedetto2c2b8892014-02-27 11:46:48 -0700150
Junxiao Shi759f7062014-11-29 10:19:22 -0700151 # disable assertions in release builds
152 if not conf.options.debug:
153 conf.define('NDEBUG', 1)
154
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700155 conf.write_config_header('config.hpp')
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800156
Junxiao Shi09bf7c42014-01-31 11:10:25 -0700157def build(bld):
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700158 version(bld)
159
160 bld(features="subst",
161 name='version',
162 source='version.hpp.in',
163 target='version.hpp',
164 install_path=None,
165 VERSION_STRING=VERSION_BASE,
166 VERSION_BUILD=VERSION,
167 VERSION=int(VERSION_SPLIT[0]) * 1000000 +
168 int(VERSION_SPLIT[1]) * 1000 +
169 int(VERSION_SPLIT[2]),
170 VERSION_MAJOR=VERSION_SPLIT[0],
171 VERSION_MINOR=VERSION_SPLIT[1],
172 VERSION_PATCH=VERSION_SPLIT[2],
173 )
174
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700175 core = bld(
176 target='core-objects',
177 name='core-objects',
Alexander Afanasyev58ea4582014-05-30 08:38:56 +0300178 features='cxx pch',
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800179 source=bld.path.ant_glob(['core/**/*.cpp'],
180 excl=['core/logger*.cpp']),
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700181 use='version BOOST NDN_CXX LIBRT',
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700182 includes='. core',
183 export_includes='. core',
Alexander Afanasyev58ea4582014-05-30 08:38:56 +0300184 headers='common.hpp',
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700185 )
186
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800187 if bld.env['HAVE_CUSTOM_LOGGER']:
188 core.use += " CUSTOM_LOGGER"
189 else:
190 core.source += bld.path.ant_glob(['core/logger*.cpp'])
191
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800192 nfd_objects = bld(
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700193 target='daemon-objects',
194 name='daemon-objects',
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700195 features='cxx',
196 source=bld.path.ant_glob(['daemon/**/*.cpp'],
197 excl=['daemon/face/ethernet-*.cpp',
198 'daemon/face/unix-*.cpp',
Wentao Shang53df1632014-04-21 12:01:32 -0700199 'daemon/face/websocket-*.cpp',
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700200 'daemon/main.cpp']),
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600201 use='core-objects WEBSOCKET',
202 includes='daemon',
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700203 export_includes='daemon',
Junxiao Shi0fcb41e2014-01-24 10:29:43 -0700204 )
205
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700206 if bld.env['HAVE_LIBPCAP']:
Davide Pesavento44deacc2014-02-19 10:48:07 +0100207 nfd_objects.source += bld.path.ant_glob('daemon/face/ethernet-*.cpp')
Alexander Afanasyev5cda2e02014-04-11 13:58:44 -0700208 nfd_objects.use += ' LIBPCAP'
Davide Pesavento44deacc2014-02-19 10:48:07 +0100209
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800210 if bld.env['HAVE_UNIX_SOCKETS']:
Davide Pesavento44deacc2014-02-19 10:48:07 +0100211 nfd_objects.source += bld.path.ant_glob('daemon/face/unix-*.cpp')
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800212
Wentao Shang53df1632014-04-21 12:01:32 -0700213 if bld.env['HAVE_WEBSOCKET']:
214 nfd_objects.source += bld.path.ant_glob('daemon/face/websocket-*.cpp')
215
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700216 rib_objects = bld(
217 target='rib-objects',
218 name='rib-objects',
219 features='cxx',
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800220 source=bld.path.ant_glob(['rib/**/*.cpp']),
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700221 use='core-objects',
222 )
223
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800224 bld(target='bin/nfd',
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700225 features='cxx cxxprogram',
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800226 source='daemon/main.cpp',
227 use='daemon-objects rib-objects',
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700228 )
229
Alexander Afanasyev262203b2015-01-26 16:39:59 -0800230 bld.recurse("tools")
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700231 bld.recurse("tests")
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -0400232
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700233 bld(features="subst",
234 source='nfd.conf.sample.in',
235 target='nfd.conf.sample',
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700236 install_path="${SYSCONFDIR}/ndn",
Wentao Shang53df1632014-04-21 12:01:32 -0700237 IF_HAVE_LIBPCAP="" if bld.env['HAVE_LIBPCAP'] else "; ",
238 IF_HAVE_WEBSOCKET="" if bld.env['HAVE_WEBSOCKET'] else "; ")
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800239
Alexander Afanasyev49272f72014-04-06 21:49:46 -0700240 if bld.env['SPHINX_BUILD']:
241 bld(features="sphinx",
242 builder="man",
243 outdir="docs/manpages",
244 config="docs/conf.py",
245 source=bld.path.ant_glob('docs/manpages/**/*.rst'),
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700246 install_path="${MANDIR}/",
247 VERSION=VERSION)
Alexander Afanasyev49272f72014-04-06 21:49:46 -0700248
Alexander Afanasyev5c475972015-12-20 16:16:56 -0800249 bld.install_files("${SYSCONFDIR}/ndn", "autoconfig.conf.sample")
250
Alexander Afanasyev284257b2014-04-11 14:16:51 -0700251def docs(bld):
252 from waflib import Options
253 Options.commands = ['doxygen', 'sphinx'] + Options.commands
254
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800255def doxygen(bld):
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700256 version(bld)
257
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800258 if not bld.env.DOXYGEN:
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700259 Logs.error("ERROR: cannot build documentation (`doxygen' is not found in $PATH)")
260 else:
261 bld(features="subst",
262 name="doxygen-conf",
Alexander Afanasyev20757882014-08-25 22:39:08 -0700263 source=["docs/doxygen.conf.in",
264 "docs/named_data_theme/named_data_footer-with-analytics.html.in"],
265 target=["docs/doxygen.conf",
266 "docs/named_data_theme/named_data_footer-with-analytics.html"],
Alexander Afanasyevabb307c2015-10-23 17:00:13 -0700267 VERSION=VERSION,
Alexander Afanasyev20757882014-08-25 22:39:08 -0700268 HTML_FOOTER="../build/docs/named_data_theme/named_data_footer-with-analytics.html" \
269 if os.getenv('GOOGLE_ANALYTICS', None) \
270 else "../docs/named_data_theme/named_data_footer.html",
271 GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', ""),
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700272 )
273
274 bld(features="doxygen",
275 doxyfile='docs/doxygen.conf',
276 use="doxygen-conf")
Alexander Afanasyev49272f72014-04-06 21:49:46 -0700277
278def sphinx(bld):
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700279 version(bld)
280
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700281 if not bld.env.SPHINX_BUILD:
282 bld.fatal("ERROR: cannot build documentation (`sphinx-build' is not found in $PATH)")
283 else:
284 bld(features="sphinx",
285 outdir="docs",
286 source=bld.path.ant_glob('docs/**/*.rst'),
287 config="docs/conf.py",
Alexander Afanasyevabb307c2015-10-23 17:00:13 -0700288 VERSION=VERSION)
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700289
290def version(ctx):
Alexander Afanasyev26181532014-05-07 23:38:51 -0700291 if getattr(Context.g_module, 'VERSION_BASE', None):
292 return
293
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700294 Context.g_module.VERSION_BASE = Context.g_module.VERSION
295 Context.g_module.VERSION_SPLIT = [v for v in VERSION_BASE.split('.')]
296
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700297 didGetVersion = False
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700298 try:
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700299 cmd = ['git', 'describe', '--always', '--match', '%s*' % GIT_TAG_PREFIX]
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700300 p = Utils.subprocess.Popen(cmd, stdout=Utils.subprocess.PIPE,
301 stderr=None, stdin=None)
Alexander Afanasyev3b21fa32014-09-01 13:25:20 -0700302 out = str(p.communicate()[0].strip())
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700303 didGetVersion = (p.returncode == 0 and out != "")
304 if didGetVersion:
305 if out.startswith(GIT_TAG_PREFIX):
306 Context.g_module.VERSION = out[len(GIT_TAG_PREFIX):]
307 else:
308 Context.g_module.VERSION = "%s-commit-%s" % (Context.g_module.VERSION_BASE, out)
309 except OSError:
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700310 pass
311
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700312 versionFile = ctx.path.find_node('VERSION')
313
314 if not didGetVersion and versionFile is not None:
315 try:
316 Context.g_module.VERSION = versionFile.read()
317 return
318 except (OSError, IOError):
319 pass
320
321 # version was obtained from git, update VERSION file if necessary
322 if versionFile is not None:
323 try:
324 version = versionFile.read()
325 if version == Context.g_module.VERSION:
326 return # no need to update
327 except (OSError, IOError):
328 Logs.warn("VERSION file exists, but not readable")
329 else:
330 versionFile = ctx.path.make_node('VERSION')
331
332 if versionFile is None:
333 return
334
335 try:
336 versionFile.write(Context.g_module.VERSION)
337 except (OSError, IOError):
338 Logs.warn("VERSION file is not writeable")
339
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700340def dist(ctx):
341 version(ctx)
342
343def distcheck(ctx):
344 version(ctx)