blob: cef5b2dcf0d7b41c28ab2a07fc7fac60f0ecaa47 [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 Afanasyevda3ba962015-12-29 19:13:52 -080027VERSION = "0.4.0"
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
120 conf.load('unix-socket')
Wentao Shang53df1632014-04-21 12:01:32 -0700121 conf.checkWebsocket(mandatory=True)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100122
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700123 if not conf.options.without_libpcap:
Alexander Afanasyeve9186212014-08-23 20:15:48 -0700124 conf.check_asio_pcap_support()
125 if conf.env['HAVE_ASIO_PCAP_SUPPORT']:
126 conf.checkDependency(name='libpcap', lib='pcap', mandatory=True,
127 errmsg='not found, but required for Ethernet face support. '
128 'Specify --without-libpcap to disable Ethernet face support.')
129 else:
130 Logs.warn('Warning: Ethernet face support is not supported on this platform with Boost libraries version 1.56. '
131 'See http://redmine.named-data.net/issues/1877 for more details')
Davide Pesaventof0ae4422014-05-05 16:32:12 +0200132 if conf.env['HAVE_LIBPCAP']:
133 conf.check_cxx(function_name='pcap_set_immediate_mode', header_name='pcap/pcap.h',
134 cxxflags='-Wno-error', use='LIBPCAP', mandatory=False)
Alexander Afanasyevefea8fe2014-03-23 00:00:35 -0700135
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800136 if conf.options.with_custom_logger:
137 conf.define('HAVE_CUSTOM_LOGGER', 1)
138 conf.env['INCLUDES_CUSTOM_LOGGER'] = [conf.options.with_custom_logger]
139 conf.env['HAVE_CUSTOM_LOGGER'] = 1
140
Alexander Afanasyev689569b2014-02-16 20:20:07 -0800141 conf.load('coverage')
142
Steve DiBenedettofbb40a82014-03-11 19:40:15 -0600143 conf.define('DEFAULT_CONFIG_FILE', '%s/ndn/nfd.conf' % conf.env['SYSCONFDIR'])
Steve DiBenedetto2c2b8892014-02-27 11:46:48 -0700144
Junxiao Shi759f7062014-11-29 10:19:22 -0700145 # disable assertions in release builds
146 if not conf.options.debug:
147 conf.define('NDEBUG', 1)
148
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700149 conf.write_config_header('config.hpp')
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800150
Junxiao Shi09bf7c42014-01-31 11:10:25 -0700151def build(bld):
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700152 version(bld)
153
154 bld(features="subst",
155 name='version',
156 source='version.hpp.in',
157 target='version.hpp',
158 install_path=None,
159 VERSION_STRING=VERSION_BASE,
160 VERSION_BUILD=VERSION,
161 VERSION=int(VERSION_SPLIT[0]) * 1000000 +
162 int(VERSION_SPLIT[1]) * 1000 +
163 int(VERSION_SPLIT[2]),
164 VERSION_MAJOR=VERSION_SPLIT[0],
165 VERSION_MINOR=VERSION_SPLIT[1],
166 VERSION_PATCH=VERSION_SPLIT[2],
167 )
168
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700169 core = bld(
170 target='core-objects',
171 name='core-objects',
Alexander Afanasyev58ea4582014-05-30 08:38:56 +0300172 features='cxx pch',
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800173 source=bld.path.ant_glob(['core/**/*.cpp'],
174 excl=['core/logger*.cpp']),
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700175 use='version BOOST NDN_CXX LIBRT',
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700176 includes='. core',
177 export_includes='. core',
Alexander Afanasyev58ea4582014-05-30 08:38:56 +0300178 headers='common.hpp',
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700179 )
180
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800181 if bld.env['HAVE_CUSTOM_LOGGER']:
182 core.use += " CUSTOM_LOGGER"
183 else:
184 core.source += bld.path.ant_glob(['core/logger*.cpp'])
185
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800186 nfd_objects = bld(
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700187 target='daemon-objects',
188 name='daemon-objects',
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700189 features='cxx',
190 source=bld.path.ant_glob(['daemon/**/*.cpp'],
191 excl=['daemon/face/ethernet-*.cpp',
192 'daemon/face/unix-*.cpp',
Wentao Shang53df1632014-04-21 12:01:32 -0700193 'daemon/face/websocket-*.cpp',
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700194 'daemon/main.cpp']),
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600195 use='core-objects WEBSOCKET',
196 includes='daemon',
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700197 export_includes='daemon',
Junxiao Shi0fcb41e2014-01-24 10:29:43 -0700198 )
199
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700200 if bld.env['HAVE_LIBPCAP']:
Davide Pesavento44deacc2014-02-19 10:48:07 +0100201 nfd_objects.source += bld.path.ant_glob('daemon/face/ethernet-*.cpp')
Alexander Afanasyev5cda2e02014-04-11 13:58:44 -0700202 nfd_objects.use += ' LIBPCAP'
Davide Pesavento44deacc2014-02-19 10:48:07 +0100203
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800204 if bld.env['HAVE_UNIX_SOCKETS']:
Davide Pesavento44deacc2014-02-19 10:48:07 +0100205 nfd_objects.source += bld.path.ant_glob('daemon/face/unix-*.cpp')
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800206
Wentao Shang53df1632014-04-21 12:01:32 -0700207 if bld.env['HAVE_WEBSOCKET']:
208 nfd_objects.source += bld.path.ant_glob('daemon/face/websocket-*.cpp')
209
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700210 rib_objects = bld(
211 target='rib-objects',
212 name='rib-objects',
213 features='cxx',
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800214 source=bld.path.ant_glob(['rib/**/*.cpp']),
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700215 use='core-objects',
216 )
217
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800218 bld(target='bin/nfd',
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700219 features='cxx cxxprogram',
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800220 source='daemon/main.cpp',
221 use='daemon-objects rib-objects',
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700222 )
223
Alexander Afanasyev262203b2015-01-26 16:39:59 -0800224 bld.recurse("tools")
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700225 bld.recurse("tests")
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -0400226
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700227 bld(features="subst",
228 source='nfd.conf.sample.in',
229 target='nfd.conf.sample',
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700230 install_path="${SYSCONFDIR}/ndn",
Wentao Shang53df1632014-04-21 12:01:32 -0700231 IF_HAVE_LIBPCAP="" if bld.env['HAVE_LIBPCAP'] else "; ",
232 IF_HAVE_WEBSOCKET="" if bld.env['HAVE_WEBSOCKET'] else "; ")
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800233
Alexander Afanasyev49272f72014-04-06 21:49:46 -0700234 if bld.env['SPHINX_BUILD']:
235 bld(features="sphinx",
236 builder="man",
237 outdir="docs/manpages",
238 config="docs/conf.py",
239 source=bld.path.ant_glob('docs/manpages/**/*.rst'),
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700240 install_path="${MANDIR}/",
241 VERSION=VERSION)
Alexander Afanasyev49272f72014-04-06 21:49:46 -0700242
Alexander Afanasyev5c475972015-12-20 16:16:56 -0800243 bld.install_files("${SYSCONFDIR}/ndn", "autoconfig.conf.sample")
244
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 Afanasyevabb307c2015-10-23 17:00:13 -0700261 VERSION=VERSION,
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 Afanasyevabb307c2015-10-23 17:00:13 -0700282 VERSION=VERSION)
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700283
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)