Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 2 | """ |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 3 | Copyright (c) 2014-2018, Regents of the University of California, |
taylorchu | 5ae2877 | 2015-03-08 17:45:52 -0700 | [diff] [blame] | 4 | Arizona Board of Regents, |
| 5 | Colorado State University, |
| 6 | University Pierre & Marie Curie, Sorbonne University, |
| 7 | Washington University in St. Louis, |
| 8 | Beijing Institute of Technology, |
| 9 | The University of Memphis. |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 10 | |
| 11 | This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | |
| 14 | NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | of the GNU General Public License as published by the Free Software Foundation, |
| 16 | either version 3 of the License, or (at your option) any later version. |
| 17 | |
| 18 | NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | PURPOSE. See the GNU General Public License for more details. |
| 21 | |
| 22 | You should have received a copy of the GNU General Public License along with |
| 23 | NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 24 | """ |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 25 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 26 | from waflib import Context, Logs, Utils |
| 27 | import os, subprocess |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 28 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 29 | VERSION = '0.6.1' |
| 30 | APPNAME = 'nfd' |
| 31 | BUGREPORT = 'https://redmine.named-data.net/projects/nfd' |
| 32 | URL = 'https://named-data.net/doc/NFD/' |
| 33 | GIT_TAG_PREFIX = 'NFD-' |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 34 | |
| 35 | def options(opt): |
Alexander Afanasyev | 5cda2e0 | 2014-04-11 13:58:44 -0700 | [diff] [blame] | 36 | opt.load(['compiler_cxx', 'gnu_dirs']) |
Davide Pesavento | 67f3027 | 2016-08-10 01:55:16 +0000 | [diff] [blame] | 37 | opt.load(['default-compiler-flags', 'compiler-features', 'type_traits', |
| 38 | 'coverage', 'pch', 'sanitizers', 'boost', 'boost-kqueue', |
| 39 | 'dependency-checker', 'unix-socket', 'websocket', |
| 40 | 'doxygen', 'sphinx_build'], |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 41 | tooldir=['.waf-tools']) |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 42 | |
| 43 | nfdopt = opt.add_option_group('NFD Options') |
Alexander Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 44 | opt.addUnixOptions(nfdopt) |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 45 | opt.addWebsocketOptions(nfdopt) |
Davide Pesavento | 67f3027 | 2016-08-10 01:55:16 +0000 | [diff] [blame] | 46 | |
Alexander Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 47 | opt.addDependencyOptions(nfdopt, 'libpcap') |
| 48 | nfdopt.add_option('--without-libpcap', action='store_true', default=False, |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 49 | help='Disable libpcap (Ethernet face support will be disabled)') |
Alexander Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 50 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 51 | opt.addDependencyOptions(nfdopt, 'librt') |
| 52 | opt.addDependencyOptions(nfdopt, 'libresolv') |
Alexander Afanasyev | 5cda2e0 | 2014-04-11 13:58:44 -0700 | [diff] [blame] | 53 | |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 54 | nfdopt.add_option('--with-tests', action='store_true', default=False, |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 55 | help='Build unit tests') |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 56 | nfdopt.add_option('--with-other-tests', action='store_true', default=False, |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 57 | help='Build other tests') |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 58 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 59 | nfdopt.add_option('--with-custom-logger', metavar='PATH', |
| 60 | help='Path to custom-logger.hpp and custom-logger-factory.hpp ' |
| 61 | 'implementing Logger and LoggerFactory interfaces') |
| 62 | |
| 63 | PRIVILEGE_CHECK_CODE = ''' |
| 64 | #include <unistd.h> |
| 65 | #include <grp.h> |
| 66 | #include <pwd.h> |
| 67 | int main() |
| 68 | { |
| 69 | sysconf(_SC_GETGR_R_SIZE_MAX); |
| 70 | |
| 71 | char buffer[100]; |
| 72 | group grp; |
| 73 | group* grpRes; |
| 74 | getgrnam_r("nogroup", &grp, buffer, 100, &grpRes); |
| 75 | passwd pwd; |
| 76 | passwd* pwdRes; |
| 77 | getpwnam_r("nobody", &pwd, buffer, 100, &pwdRes); |
| 78 | |
| 79 | int ret = setegid(grp.gr_gid); |
| 80 | ret = seteuid(pwd.pw_uid); |
| 81 | (void)(ret); |
| 82 | |
| 83 | getegid(); |
| 84 | geteuid(); |
| 85 | } |
| 86 | ''' |
Alexander Afanasyev | 8269a05 | 2015-02-09 16:25:36 -0800 | [diff] [blame] | 87 | |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 88 | def configure(conf): |
Beichuan Zhang | 55b8ed4 | 2014-04-26 22:25:44 -0700 | [diff] [blame] | 89 | conf.load(['compiler_cxx', 'gnu_dirs', |
Davide Pesavento | 67f3027 | 2016-08-10 01:55:16 +0000 | [diff] [blame] | 90 | 'default-compiler-flags', 'compiler-features', 'type_traits', |
Eric Newberry | 27bdd1a | 2016-11-01 18:02:54 -0700 | [diff] [blame] | 91 | 'pch', 'boost', 'boost-kqueue', 'dependency-checker', 'websocket', |
Davide Pesavento | 67f3027 | 2016-08-10 01:55:16 +0000 | [diff] [blame] | 92 | 'doxygen', 'sphinx_build']) |
Alexander Afanasyev | efea8fe | 2014-03-23 00:00:35 -0700 | [diff] [blame] | 93 | |
Davide Pesavento | f0ae442 | 2014-05-05 16:32:12 +0200 | [diff] [blame] | 94 | conf.find_program('bash', var='BASH') |
| 95 | |
taylorchu | 5ae2877 | 2015-03-08 17:45:52 -0700 | [diff] [blame] | 96 | if 'PKG_CONFIG_PATH' not in os.environ: |
Alexander Afanasyev | cdb8f36 | 2015-03-30 10:52:54 -0700 | [diff] [blame] | 97 | os.environ['PKG_CONFIG_PATH'] = Utils.subst_vars('${LIBDIR}/pkgconfig', conf.env) |
Alexander Afanasyev | 4a77136 | 2014-04-24 21:29:33 -0700 | [diff] [blame] | 98 | conf.check_cfg(package='libndn-cxx', args=['--cflags', '--libs'], |
| 99 | uselib_store='NDN_CXX', mandatory=True) |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 100 | |
Davide Pesavento | b499a60 | 2014-11-18 22:36:56 +0100 | [diff] [blame] | 101 | conf.checkDependency(name='librt', lib='rt', mandatory=False) |
| 102 | conf.checkDependency(name='libresolv', lib='resolv', mandatory=False) |
| 103 | |
Alexander Afanasyev | 748e989 | 2015-01-28 15:07:41 -0800 | [diff] [blame] | 104 | if not conf.check_cxx(msg='Checking if privilege drop/elevation is supported', mandatory=False, |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 105 | define_name='HAVE_PRIVILEGE_DROP_AND_ELEVATE', fragment=PRIVILEGE_CHECK_CODE): |
Junxiao Shi | a5765d6 | 2017-08-09 04:07:46 +0000 | [diff] [blame] | 106 | Logs.warn('Dropping privileges is not supported on this platform') |
Alexander Afanasyev | 748e989 | 2015-01-28 15:07:41 -0800 | [diff] [blame] | 107 | |
Davide Pesavento | aaa5dd3 | 2016-09-02 12:33:33 +0000 | [diff] [blame] | 108 | conf.check_cxx(header_name='valgrind/valgrind.h', define_name='HAVE_VALGRIND', mandatory=False) |
Alexander Afanasyev | 49343f6 | 2015-01-26 21:58:07 -0800 | [diff] [blame] | 109 | |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 110 | if conf.options.with_tests: |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 111 | conf.env.WITH_TESTS = True |
Davide Pesavento | 67f3027 | 2016-08-10 01:55:16 +0000 | [diff] [blame] | 112 | conf.define('WITH_TESTS', 1) |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 113 | |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 114 | if conf.options.with_other_tests: |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 115 | conf.env.WITH_OTHER_TESTS = True |
Eric Newberry | 52ae329 | 2017-11-16 13:54:52 -0700 | [diff] [blame] | 116 | conf.define('WITH_OTHER_TESTS', 1) |
| 117 | |
| 118 | boost_libs = 'system chrono program_options thread log log_setup' |
| 119 | if conf.options.with_tests or conf.options.with_other_tests: |
| 120 | boost_libs += ' unit_test_framework' |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 121 | |
Yumin Xia | ab49745 | 2016-05-10 20:23:24 +0800 | [diff] [blame] | 122 | conf.check_boost(lib=boost_libs, mt=True) |
Davide Pesavento | cafae24 | 2016-04-22 02:21:35 +0200 | [diff] [blame] | 123 | if conf.env.BOOST_VERSION_NUMBER < 105400: |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 124 | conf.fatal('Minimum required Boost version is 1.54.0\n' |
| 125 | 'Please upgrade your distribution or manually install a newer version of Boost' |
| 126 | ' (https://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)') |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 127 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 128 | if conf.env.CXX_NAME == 'clang' and conf.env.BOOST_VERSION_NUMBER < 105800: |
Eric Newberry | 81a9a86 | 2016-12-27 22:59:27 -0700 | [diff] [blame] | 129 | conf.define('BOOST_ASIO_HAS_STD_ARRAY', 1) # Workaround for https://redmine.named-data.net/issues/3360#note-14 |
Eric Newberry | cb27ea8 | 2016-07-19 12:40:52 -0700 | [diff] [blame] | 130 | conf.define('BOOST_ASIO_HAS_STD_CHRONO', 1) # Solution documented at https://redmine.named-data.net/issues/3588#note-10 |
Alexander Afanasyev | 6602b3b | 2016-03-15 14:14:11 -0700 | [diff] [blame] | 131 | |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 132 | conf.load('unix-socket') |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 133 | conf.checkWebsocket(mandatory=True) |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 134 | |
Alexander Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 135 | if not conf.options.without_libpcap: |
Alexander Afanasyev | e918621 | 2014-08-23 20:15:48 -0700 | [diff] [blame] | 136 | conf.check_asio_pcap_support() |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 137 | if conf.env.HAVE_ASIO_PCAP_SUPPORT: |
Alexander Afanasyev | e918621 | 2014-08-23 20:15:48 -0700 | [diff] [blame] | 138 | conf.checkDependency(name='libpcap', lib='pcap', mandatory=True, |
| 139 | errmsg='not found, but required for Ethernet face support. ' |
| 140 | 'Specify --without-libpcap to disable Ethernet face support.') |
| 141 | else: |
Junxiao Shi | a5765d6 | 2017-08-09 04:07:46 +0000 | [diff] [blame] | 142 | Logs.warn('Warning: Ethernet face is not supported on this platform with Boost libraries version 1.56. ' |
Eric Newberry | 81a9a86 | 2016-12-27 22:59:27 -0700 | [diff] [blame] | 143 | 'See https://redmine.named-data.net/issues/1877 for more details') |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 144 | if conf.env.HAVE_LIBPCAP: |
| 145 | conf.check_cxx(msg='Checking if libpcap supports pcap_set_immediate_mode', mandatory=False, |
| 146 | define_name='HAVE_PCAP_SET_IMMEDIATE_MODE', use='LIBPCAP', |
| 147 | fragment='''#include <pcap/pcap.h> |
| 148 | int main() { pcap_t* p; pcap_set_immediate_mode(p, 1); }''') |
Alexander Afanasyev | efea8fe | 2014-03-23 00:00:35 -0700 | [diff] [blame] | 149 | |
Alexander Afanasyev | 8269a05 | 2015-02-09 16:25:36 -0800 | [diff] [blame] | 150 | if conf.options.with_custom_logger: |
| 151 | conf.define('HAVE_CUSTOM_LOGGER', 1) |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 152 | conf.env.HAVE_CUSTOM_LOGGER = True |
| 153 | conf.env.INCLUDES_CUSTOM_LOGGER = [conf.options.with_custom_logger] |
Alexander Afanasyev | 8269a05 | 2015-02-09 16:25:36 -0800 | [diff] [blame] | 154 | |
Alexander Afanasyev | b522070 | 2017-09-21 18:57:00 -0400 | [diff] [blame] | 155 | conf.check_compiler_flags() |
| 156 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 157 | # Loading "late" to prevent tests from being compiled with profiling flags |
Alexander Afanasyev | 689569b | 2014-02-16 20:20:07 -0800 | [diff] [blame] | 158 | conf.load('coverage') |
Eric Newberry | 27bdd1a | 2016-11-01 18:02:54 -0700 | [diff] [blame] | 159 | conf.load('sanitizers') |
| 160 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 161 | conf.define('DEFAULT_CONFIG_FILE', '%s/ndn/nfd.conf' % conf.env.SYSCONFDIR) |
Junxiao Shi | 759f706 | 2014-11-29 10:19:22 -0700 | [diff] [blame] | 162 | # disable assertions in release builds |
| 163 | if not conf.options.debug: |
| 164 | conf.define('NDEBUG', 1) |
Junxiao Shi | 9f5b01d | 2016-08-05 03:54:28 +0000 | [diff] [blame] | 165 | conf.write_config_header('core/config.hpp') |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 166 | |
Junxiao Shi | 09bf7c4 | 2014-01-31 11:10:25 -0700 | [diff] [blame] | 167 | def build(bld): |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 168 | version(bld) |
| 169 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 170 | bld(features='subst', |
| 171 | name='version.hpp', |
Junxiao Shi | 9f5b01d | 2016-08-05 03:54:28 +0000 | [diff] [blame] | 172 | source='core/version.hpp.in', |
| 173 | target='core/version.hpp', |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 174 | install_path=None, |
| 175 | VERSION_STRING=VERSION_BASE, |
| 176 | VERSION_BUILD=VERSION, |
| 177 | VERSION=int(VERSION_SPLIT[0]) * 1000000 + |
| 178 | int(VERSION_SPLIT[1]) * 1000 + |
| 179 | int(VERSION_SPLIT[2]), |
| 180 | VERSION_MAJOR=VERSION_SPLIT[0], |
| 181 | VERSION_MINOR=VERSION_SPLIT[1], |
Davide Pesavento | 67f3027 | 2016-08-10 01:55:16 +0000 | [diff] [blame] | 182 | VERSION_PATCH=VERSION_SPLIT[2]) |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 183 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 184 | core = bld.objects( |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 185 | target='core-objects', |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 186 | features='pch', |
| 187 | source=bld.path.ant_glob('core/**/*.cpp', excl=['core/logger*.cpp']), |
| 188 | use='version.hpp NDN_CXX BOOST LIBRT', |
| 189 | includes='.', |
Junxiao Shi | 9f5b01d | 2016-08-05 03:54:28 +0000 | [diff] [blame] | 190 | export_includes='.', |
Davide Pesavento | 67f3027 | 2016-08-10 01:55:16 +0000 | [diff] [blame] | 191 | headers='core/common.hpp') |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 192 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 193 | if bld.env.HAVE_CUSTOM_LOGGER: |
| 194 | core.use += ' CUSTOM_LOGGER' |
Alexander Afanasyev | 8269a05 | 2015-02-09 16:25:36 -0800 | [diff] [blame] | 195 | else: |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 196 | core.source += bld.path.ant_glob('core/logger*.cpp') |
Alexander Afanasyev | 8269a05 | 2015-02-09 16:25:36 -0800 | [diff] [blame] | 197 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 198 | nfd_objects = bld.objects( |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 199 | target='daemon-objects', |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 200 | source=bld.path.ant_glob('daemon/**/*.cpp', |
Davide Pesavento | fe0580c | 2017-05-12 02:02:10 -0400 | [diff] [blame] | 201 | excl=['daemon/face/*ethernet*.cpp', |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 202 | 'daemon/face/pcap*.cpp', |
| 203 | 'daemon/face/unix*.cpp', |
| 204 | 'daemon/face/websocket*.cpp', |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 205 | 'daemon/main.cpp']), |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 206 | use='core-objects', |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 207 | includes='daemon', |
Davide Pesavento | 67f3027 | 2016-08-10 01:55:16 +0000 | [diff] [blame] | 208 | export_includes='daemon') |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 209 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 210 | if bld.env.HAVE_LIBPCAP: |
Davide Pesavento | fe0580c | 2017-05-12 02:02:10 -0400 | [diff] [blame] | 211 | nfd_objects.source += bld.path.ant_glob('daemon/face/*ethernet*.cpp') |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 212 | nfd_objects.source += bld.path.ant_glob('daemon/face/pcap*.cpp') |
Alexander Afanasyev | 5cda2e0 | 2014-04-11 13:58:44 -0700 | [diff] [blame] | 213 | nfd_objects.use += ' LIBPCAP' |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 214 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 215 | if bld.env.HAVE_UNIX_SOCKETS: |
| 216 | nfd_objects.source += bld.path.ant_glob('daemon/face/unix*.cpp') |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 217 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 218 | if bld.env.HAVE_WEBSOCKET: |
| 219 | nfd_objects.source += bld.path.ant_glob('daemon/face/websocket*.cpp') |
| 220 | nfd_objects.use += ' WEBSOCKET' |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 221 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 222 | if bld.env.WITH_OTHER_TESTS: |
Eric Newberry | 69b63dc | 2017-11-04 15:42:46 -0700 | [diff] [blame] | 223 | nfd_objects.source += bld.path.ant_glob('tests/other/fw/*.cpp') |
| 224 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 225 | bld.objects(target='rib-objects', |
| 226 | source=bld.path.ant_glob('rib/**/*.cpp'), |
| 227 | use='core-objects') |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 228 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 229 | bld.program(name='nfd', |
| 230 | target='bin/nfd', |
| 231 | source='daemon/main.cpp', |
| 232 | use='daemon-objects rib-objects') |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 233 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 234 | bld.recurse('tools') |
| 235 | bld.recurse('tests') |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 236 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 237 | bld(features='subst', |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 238 | source='nfd.conf.sample.in', |
| 239 | target='nfd.conf.sample', |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 240 | install_path='${SYSCONFDIR}/ndn', |
| 241 | IF_HAVE_LIBPCAP='' if bld.env.HAVE_LIBPCAP else '; ', |
| 242 | IF_HAVE_WEBSOCKET='' if bld.env.HAVE_WEBSOCKET else '; ') |
Alexander Afanasyev | 35fc2b7 | 2014-02-13 16:56:21 -0800 | [diff] [blame] | 243 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 244 | if bld.env.SPHINX_BUILD: |
| 245 | bld(features='sphinx', |
| 246 | name='manpages', |
| 247 | builder='man', |
| 248 | config='docs/conf.py', |
| 249 | outdir='docs/manpages', |
Alexander Afanasyev | 49272f7 | 2014-04-06 21:49:46 -0700 | [diff] [blame] | 250 | source=bld.path.ant_glob('docs/manpages/**/*.rst'), |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 251 | install_path='${MANDIR}', |
Beichuan Zhang | 55b8ed4 | 2014-04-26 22:25:44 -0700 | [diff] [blame] | 252 | VERSION=VERSION) |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 253 | bld.symlink_as('${MANDIR}/man1/nfdc-channel.1', 'nfdc-face.1') |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 254 | bld.symlink_as('${MANDIR}/man1/nfdc-fib.1', 'nfdc-route.1') |
| 255 | bld.symlink_as('${MANDIR}/man1/nfdc-register.1', 'nfdc-route.1') |
| 256 | bld.symlink_as('${MANDIR}/man1/nfdc-unregister.1', 'nfdc-route.1') |
| 257 | bld.symlink_as('${MANDIR}/man1/nfdc-set-strategy.1', 'nfdc-strategy.1') |
| 258 | bld.symlink_as('${MANDIR}/man1/nfdc-unset-strategy.1', 'nfdc-strategy.1') |
Alexander Afanasyev | 49272f7 | 2014-04-06 21:49:46 -0700 | [diff] [blame] | 259 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 260 | bld.install_files('${SYSCONFDIR}/ndn', 'autoconfig.conf.sample') |
Alexander Afanasyev | 5c47597 | 2015-12-20 16:16:56 -0800 | [diff] [blame] | 261 | |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 262 | def docs(bld): |
| 263 | from waflib import Options |
| 264 | Options.commands = ['doxygen', 'sphinx'] + Options.commands |
| 265 | |
Alexander Afanasyev | 35fc2b7 | 2014-02-13 16:56:21 -0800 | [diff] [blame] | 266 | def doxygen(bld): |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 267 | version(bld) |
| 268 | |
Alexander Afanasyev | 35fc2b7 | 2014-02-13 16:56:21 -0800 | [diff] [blame] | 269 | if not bld.env.DOXYGEN: |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 270 | bld.fatal('Cannot build documentation ("doxygen" not found in PATH)') |
Beichuan Zhang | 55b8ed4 | 2014-04-26 22:25:44 -0700 | [diff] [blame] | 271 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 272 | bld(features='subst', |
| 273 | name='doxygen.conf', |
| 274 | source=['docs/doxygen.conf.in', |
| 275 | 'docs/named_data_theme/named_data_footer-with-analytics.html.in'], |
| 276 | target=['docs/doxygen.conf', |
| 277 | 'docs/named_data_theme/named_data_footer-with-analytics.html'], |
| 278 | VERSION=VERSION, |
| 279 | HTML_FOOTER='../build/docs/named_data_theme/named_data_footer-with-analytics.html' \ |
| 280 | if os.getenv('GOOGLE_ANALYTICS', None) \ |
| 281 | else '../docs/named_data_theme/named_data_footer.html', |
| 282 | GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', '')) |
| 283 | |
| 284 | bld(features='doxygen', |
| 285 | doxyfile='docs/doxygen.conf', |
| 286 | use='doxygen.conf') |
Alexander Afanasyev | 49272f7 | 2014-04-06 21:49:46 -0700 | [diff] [blame] | 287 | |
| 288 | def sphinx(bld): |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 289 | version(bld) |
| 290 | |
Beichuan Zhang | 55b8ed4 | 2014-04-26 22:25:44 -0700 | [diff] [blame] | 291 | if not bld.env.SPHINX_BUILD: |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 292 | bld.fatal('Cannot build documentation ("sphinx-build" not found in PATH)') |
| 293 | |
| 294 | bld(features='sphinx', |
| 295 | config='docs/conf.py', |
| 296 | outdir='docs', |
| 297 | source=bld.path.ant_glob('docs/**/*.rst'), |
| 298 | VERSION=VERSION) |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 299 | |
| 300 | def version(ctx): |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 301 | # don't execute more than once |
Alexander Afanasyev | 2618153 | 2014-05-07 23:38:51 -0700 | [diff] [blame] | 302 | if getattr(Context.g_module, 'VERSION_BASE', None): |
| 303 | return |
| 304 | |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 305 | Context.g_module.VERSION_BASE = Context.g_module.VERSION |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 306 | Context.g_module.VERSION_SPLIT = VERSION_BASE.split('.') |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 307 | |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 308 | # first, try to get a version string from git |
| 309 | gotVersionFromGit = False |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 310 | try: |
Alexander Afanasyev | 48f5a3c | 2014-08-22 22:33:01 -0700 | [diff] [blame] | 311 | cmd = ['git', 'describe', '--always', '--match', '%s*' % GIT_TAG_PREFIX] |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 312 | out = subprocess.check_output(cmd, universal_newlines=True).strip() |
| 313 | if out: |
| 314 | gotVersionFromGit = True |
Alexander Afanasyev | 48f5a3c | 2014-08-22 22:33:01 -0700 | [diff] [blame] | 315 | if out.startswith(GIT_TAG_PREFIX): |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 316 | Context.g_module.VERSION = out.lstrip(GIT_TAG_PREFIX) |
Alexander Afanasyev | 48f5a3c | 2014-08-22 22:33:01 -0700 | [diff] [blame] | 317 | else: |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 318 | # no tags matched |
| 319 | Context.g_module.VERSION = '%s-commit-%s' % (VERSION_BASE, out) |
| 320 | except subprocess.CalledProcessError: |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 321 | pass |
| 322 | |
Alexander Afanasyev | 48f5a3c | 2014-08-22 22:33:01 -0700 | [diff] [blame] | 323 | versionFile = ctx.path.find_node('VERSION') |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 324 | if not gotVersionFromGit and versionFile is not None: |
Alexander Afanasyev | 48f5a3c | 2014-08-22 22:33:01 -0700 | [diff] [blame] | 325 | try: |
| 326 | Context.g_module.VERSION = versionFile.read() |
| 327 | return |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 328 | except EnvironmentError: |
Alexander Afanasyev | 48f5a3c | 2014-08-22 22:33:01 -0700 | [diff] [blame] | 329 | pass |
| 330 | |
| 331 | # version was obtained from git, update VERSION file if necessary |
| 332 | if versionFile is not None: |
| 333 | try: |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 334 | if versionFile.read() == Context.g_module.VERSION: |
| 335 | # already up-to-date |
| 336 | return |
| 337 | except EnvironmentError as e: |
| 338 | Logs.warn('%s exists but is not readable (%s)' % (versionFile, e.strerror)) |
Alexander Afanasyev | 48f5a3c | 2014-08-22 22:33:01 -0700 | [diff] [blame] | 339 | else: |
| 340 | versionFile = ctx.path.make_node('VERSION') |
| 341 | |
Alexander Afanasyev | 48f5a3c | 2014-08-22 22:33:01 -0700 | [diff] [blame] | 342 | try: |
| 343 | versionFile.write(Context.g_module.VERSION) |
Davide Pesavento | 0064c1d | 2018-03-03 18:43:53 -0500 | [diff] [blame^] | 344 | except EnvironmentError as e: |
| 345 | Logs.warn('%s is not writable (%s)' % (versionFile, e.strerror)) |
Alexander Afanasyev | 48f5a3c | 2014-08-22 22:33:01 -0700 | [diff] [blame] | 346 | |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 347 | def dist(ctx): |
| 348 | version(ctx) |
| 349 | |
| 350 | def distcheck(ctx): |
| 351 | version(ctx) |