blob: 1af218a556d0a57f33ca40598e8e4acb7a0de6fd [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 Afanasyev88964782015-03-03 14:28:19 -080027VERSION = "0.3.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 Afanasyev6db058c2014-11-13 16:46:25 -080073 os.environ['PKG_CONFIG_PATH'] = ':'.join([
74 '/usr/local/lib/pkgconfig',
75 '/opt/local/lib/pkgconfig'])
Alexander Afanasyev4a771362014-04-24 21:29:33 -070076 conf.check_cfg(package='libndn-cxx', args=['--cflags', '--libs'],
77 uselib_store='NDN_CXX', mandatory=True)
Davide Pesavento44deacc2014-02-19 10:48:07 +010078
Davide Pesaventob499a602014-11-18 22:36:56 +010079 conf.checkDependency(name='librt', lib='rt', mandatory=False)
80 conf.checkDependency(name='libresolv', lib='resolv', mandatory=False)
81
Alexander Afanasyev748e9892015-01-28 15:07:41 -080082 if not conf.check_cxx(msg='Checking if privilege drop/elevation is supported', mandatory=False,
83 define_name='HAVE_PRIVILEGE_DROP_AND_ELEVATE', fragment='''
84#include <unistd.h>
85#include <pwd.h>
86#include <grp.h>
87int
88main(int, char**)
89{
90 ::sysconf(_SC_GETGR_R_SIZE_MAX);
91 group grp;
92 getgrnam_r("nogroup", &grp, nullptr, 0, nullptr);
93 passwd pwd;
94 getpwnam_r("nobody", &pwd, nullptr, 0, nullptr);
95
96 int ret = setegid(grp.gr_gid);
97 ret = seteuid(pwd.pw_uid);
98 (void)(ret);
99 return 0;
100}
101'''):
102 Logs.warn('Dropping privileges is not supported on this platform')
103
Alexander Afanasyev49343f62015-01-26 21:58:07 -0800104 conf.check_cxx(header_name='ifaddrs.h', mandatory=False)
Alexander Afanasyev49343f62015-01-26 21:58:07 -0800105
Alexander Afanasyev5d57f972015-02-11 21:04:29 -0800106 boost_libs = 'system chrono program_options random thread'
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800107 if conf.options.with_tests:
108 conf.env['WITH_TESTS'] = 1
Junxiao Shi88884492014-02-15 15:57:43 -0700109 conf.define('WITH_TESTS', 1);
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700110 boost_libs += ' unit_test_framework'
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800111
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -0400112 if conf.options.with_other_tests:
113 conf.env['WITH_OTHER_TESTS'] = 1
114
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800115 conf.check_boost(lib=boost_libs)
Alexander Afanasyeve1724c42014-02-26 22:00:54 -0800116 if conf.env.BOOST_VERSION_NUMBER < 104800:
Junxiao Shiea48d8b2014-03-16 13:53:47 -0700117 Logs.error("Minimum required boost version is 1.48.0")
118 Logs.error("Please upgrade your distribution or install custom boost libraries" +
119 " (http://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)")
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800120 return
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800121
122 conf.load('unix-socket')
Wentao Shang53df1632014-04-21 12:01:32 -0700123 conf.checkWebsocket(mandatory=True)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100124
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700125 if not conf.options.without_libpcap:
Alexander Afanasyeve9186212014-08-23 20:15:48 -0700126 conf.check_asio_pcap_support()
127 if conf.env['HAVE_ASIO_PCAP_SUPPORT']:
128 conf.checkDependency(name='libpcap', lib='pcap', mandatory=True,
129 errmsg='not found, but required for Ethernet face support. '
130 'Specify --without-libpcap to disable Ethernet face support.')
131 else:
132 Logs.warn('Warning: Ethernet face support is not supported on this platform with Boost libraries version 1.56. '
133 'See http://redmine.named-data.net/issues/1877 for more details')
Davide Pesaventof0ae4422014-05-05 16:32:12 +0200134 if conf.env['HAVE_LIBPCAP']:
135 conf.check_cxx(function_name='pcap_set_immediate_mode', header_name='pcap/pcap.h',
136 cxxflags='-Wno-error', use='LIBPCAP', mandatory=False)
Alexander Afanasyevefea8fe2014-03-23 00:00:35 -0700137
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800138 if conf.options.with_custom_logger:
139 conf.define('HAVE_CUSTOM_LOGGER', 1)
140 conf.env['INCLUDES_CUSTOM_LOGGER'] = [conf.options.with_custom_logger]
141 conf.env['HAVE_CUSTOM_LOGGER'] = 1
142
Alexander Afanasyev689569b2014-02-16 20:20:07 -0800143 conf.load('coverage')
144
Steve DiBenedettofbb40a82014-03-11 19:40:15 -0600145 conf.define('DEFAULT_CONFIG_FILE', '%s/ndn/nfd.conf' % conf.env['SYSCONFDIR'])
Steve DiBenedetto2c2b8892014-02-27 11:46:48 -0700146
Junxiao Shi759f7062014-11-29 10:19:22 -0700147 # disable assertions in release builds
148 if not conf.options.debug:
149 conf.define('NDEBUG', 1)
150
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700151 conf.write_config_header('config.hpp')
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800152
Junxiao Shi09bf7c42014-01-31 11:10:25 -0700153def build(bld):
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700154 version(bld)
155
156 bld(features="subst",
157 name='version',
158 source='version.hpp.in',
159 target='version.hpp',
160 install_path=None,
161 VERSION_STRING=VERSION_BASE,
162 VERSION_BUILD=VERSION,
163 VERSION=int(VERSION_SPLIT[0]) * 1000000 +
164 int(VERSION_SPLIT[1]) * 1000 +
165 int(VERSION_SPLIT[2]),
166 VERSION_MAJOR=VERSION_SPLIT[0],
167 VERSION_MINOR=VERSION_SPLIT[1],
168 VERSION_PATCH=VERSION_SPLIT[2],
169 )
170
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700171 core = bld(
172 target='core-objects',
173 name='core-objects',
Alexander Afanasyev58ea4582014-05-30 08:38:56 +0300174 features='cxx pch',
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800175 source=bld.path.ant_glob(['core/**/*.cpp'],
176 excl=['core/logger*.cpp']),
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700177 use='version BOOST NDN_CXX LIBRT',
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700178 includes='. core',
179 export_includes='. core',
Alexander Afanasyev58ea4582014-05-30 08:38:56 +0300180 headers='common.hpp',
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700181 )
182
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800183 if bld.env['HAVE_CUSTOM_LOGGER']:
184 core.use += " CUSTOM_LOGGER"
185 else:
186 core.source += bld.path.ant_glob(['core/logger*.cpp'])
187
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800188 nfd_objects = bld(
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700189 target='daemon-objects',
190 name='daemon-objects',
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700191 features='cxx',
192 source=bld.path.ant_glob(['daemon/**/*.cpp'],
193 excl=['daemon/face/ethernet-*.cpp',
194 'daemon/face/unix-*.cpp',
Wentao Shang53df1632014-04-21 12:01:32 -0700195 'daemon/face/websocket-*.cpp',
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700196 'daemon/main.cpp']),
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600197 use='core-objects WEBSOCKET',
198 includes='daemon',
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700199 export_includes='daemon',
Junxiao Shi0fcb41e2014-01-24 10:29:43 -0700200 )
201
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700202 if bld.env['HAVE_LIBPCAP']:
Davide Pesavento44deacc2014-02-19 10:48:07 +0100203 nfd_objects.source += bld.path.ant_glob('daemon/face/ethernet-*.cpp')
Alexander Afanasyev5cda2e02014-04-11 13:58:44 -0700204 nfd_objects.use += ' LIBPCAP'
Davide Pesavento44deacc2014-02-19 10:48:07 +0100205
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800206 if bld.env['HAVE_UNIX_SOCKETS']:
Davide Pesavento44deacc2014-02-19 10:48:07 +0100207 nfd_objects.source += bld.path.ant_glob('daemon/face/unix-*.cpp')
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800208
Wentao Shang53df1632014-04-21 12:01:32 -0700209 if bld.env['HAVE_WEBSOCKET']:
210 nfd_objects.source += bld.path.ant_glob('daemon/face/websocket-*.cpp')
211
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700212 rib_objects = bld(
213 target='rib-objects',
214 name='rib-objects',
215 features='cxx',
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800216 source=bld.path.ant_glob(['rib/**/*.cpp']),
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700217 use='core-objects',
218 )
219
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800220 bld(target='bin/nfd',
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700221 features='cxx cxxprogram',
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800222 source='daemon/main.cpp',
223 use='daemon-objects rib-objects',
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700224 )
225
Alexander Afanasyev262203b2015-01-26 16:39:59 -0800226 bld.recurse("tools")
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700227 bld.recurse("tests")
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -0400228
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700229 bld(features="subst",
230 source='nfd.conf.sample.in',
231 target='nfd.conf.sample',
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700232 install_path="${SYSCONFDIR}/ndn",
Wentao Shang53df1632014-04-21 12:01:32 -0700233 IF_HAVE_LIBPCAP="" if bld.env['HAVE_LIBPCAP'] else "; ",
234 IF_HAVE_WEBSOCKET="" if bld.env['HAVE_WEBSOCKET'] else "; ")
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800235
Alexander Afanasyev49272f72014-04-06 21:49:46 -0700236 if bld.env['SPHINX_BUILD']:
237 bld(features="sphinx",
238 builder="man",
239 outdir="docs/manpages",
240 config="docs/conf.py",
241 source=bld.path.ant_glob('docs/manpages/**/*.rst'),
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700242 install_path="${MANDIR}/",
243 VERSION=VERSION)
Alexander Afanasyev49272f72014-04-06 21:49:46 -0700244
Alexander Afanasyev284257b2014-04-11 14:16:51 -0700245def docs(bld):
246 from waflib import Options
247 Options.commands = ['doxygen', 'sphinx'] + Options.commands
248
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800249def doxygen(bld):
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700250 version(bld)
251
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800252 if not bld.env.DOXYGEN:
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700253 Logs.error("ERROR: cannot build documentation (`doxygen' is not found in $PATH)")
254 else:
255 bld(features="subst",
256 name="doxygen-conf",
Alexander Afanasyev20757882014-08-25 22:39:08 -0700257 source=["docs/doxygen.conf.in",
258 "docs/named_data_theme/named_data_footer-with-analytics.html.in"],
259 target=["docs/doxygen.conf",
260 "docs/named_data_theme/named_data_footer-with-analytics.html"],
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700261 VERSION=VERSION_BASE,
Alexander Afanasyev20757882014-08-25 22:39:08 -0700262 HTML_FOOTER="../build/docs/named_data_theme/named_data_footer-with-analytics.html" \
263 if os.getenv('GOOGLE_ANALYTICS', None) \
264 else "../docs/named_data_theme/named_data_footer.html",
265 GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', ""),
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700266 )
267
268 bld(features="doxygen",
269 doxyfile='docs/doxygen.conf',
270 use="doxygen-conf")
Alexander Afanasyev49272f72014-04-06 21:49:46 -0700271
272def sphinx(bld):
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700273 version(bld)
274
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700275 if not bld.env.SPHINX_BUILD:
276 bld.fatal("ERROR: cannot build documentation (`sphinx-build' is not found in $PATH)")
277 else:
278 bld(features="sphinx",
279 outdir="docs",
280 source=bld.path.ant_glob('docs/**/*.rst'),
281 config="docs/conf.py",
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700282 VERSION=VERSION_BASE)
283
284def version(ctx):
Alexander Afanasyev26181532014-05-07 23:38:51 -0700285 if getattr(Context.g_module, 'VERSION_BASE', None):
286 return
287
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700288 Context.g_module.VERSION_BASE = Context.g_module.VERSION
289 Context.g_module.VERSION_SPLIT = [v for v in VERSION_BASE.split('.')]
290
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700291 didGetVersion = False
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700292 try:
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700293 cmd = ['git', 'describe', '--always', '--match', '%s*' % GIT_TAG_PREFIX]
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700294 p = Utils.subprocess.Popen(cmd, stdout=Utils.subprocess.PIPE,
295 stderr=None, stdin=None)
Alexander Afanasyev3b21fa32014-09-01 13:25:20 -0700296 out = str(p.communicate()[0].strip())
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700297 didGetVersion = (p.returncode == 0 and out != "")
298 if didGetVersion:
299 if out.startswith(GIT_TAG_PREFIX):
300 Context.g_module.VERSION = out[len(GIT_TAG_PREFIX):]
301 else:
302 Context.g_module.VERSION = "%s-commit-%s" % (Context.g_module.VERSION_BASE, out)
303 except OSError:
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700304 pass
305
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700306 versionFile = ctx.path.find_node('VERSION')
307
308 if not didGetVersion and versionFile is not None:
309 try:
310 Context.g_module.VERSION = versionFile.read()
311 return
312 except (OSError, IOError):
313 pass
314
315 # version was obtained from git, update VERSION file if necessary
316 if versionFile is not None:
317 try:
318 version = versionFile.read()
319 if version == Context.g_module.VERSION:
320 return # no need to update
321 except (OSError, IOError):
322 Logs.warn("VERSION file exists, but not readable")
323 else:
324 versionFile = ctx.path.make_node('VERSION')
325
326 if versionFile is None:
327 return
328
329 try:
330 versionFile.write(Context.g_module.VERSION)
331 except (OSError, IOError):
332 Logs.warn("VERSION file is not writeable")
333
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700334def dist(ctx):
335 version(ctx)
336
337def distcheck(ctx):
338 version(ctx)