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 | |
| 3 | """ |
| 4 | Copyright (c) 2014 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 | |
| 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 | |
Beichuan Zhang | 55b8ed4 | 2014-04-26 22:25:44 -0700 | [diff] [blame] | 26 | import re |
| 27 | |
| 28 | VERSION = re.search('^#define NFD_VERSION_STRING\\s+"(.*)"', |
| 29 | open("version.hpp").read(), re.M).group(1) |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 30 | APPNAME = "nfd" |
| 31 | BUGREPORT = "http://redmine.named-data.net/projects/nfd" |
| 32 | URL = "https://github.com/named-data/NFD" |
| 33 | |
| 34 | from waflib import Logs |
hilata | 198cadb | 2014-02-15 23:46:19 -0600 | [diff] [blame] | 35 | import os |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 36 | |
| 37 | def options(opt): |
Alexander Afanasyev | 5cda2e0 | 2014-04-11 13:58:44 -0700 | [diff] [blame] | 38 | opt.load(['compiler_cxx', 'gnu_dirs']) |
| 39 | opt.load(['boost', 'unix-socket', 'dependency-checker', |
| 40 | 'default-compiler-flags', 'coverage', |
| 41 | 'doxygen', 'sphinx_build'], |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 42 | tooldir=['.waf-tools']) |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 43 | |
| 44 | nfdopt = opt.add_option_group('NFD Options') |
Alexander Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 45 | opt.addUnixOptions(nfdopt) |
| 46 | 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 Afanasyev | 5cda2e0 | 2014-04-11 13:58:44 -0700 | [diff] [blame] | 51 | opt.addDependencyOptions(nfdopt, 'librt', '(optional)') |
| 52 | opt.addDependencyOptions(nfdopt, 'libresolv', '(optional)') |
| 53 | |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 54 | nfdopt.add_option('--with-tests', action='store_true', default=False, |
| 55 | dest='with_tests', 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, |
| 57 | dest='with_other_tests', help='''Build other tests''') |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 58 | |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 59 | def configure(conf): |
Beichuan Zhang | 55b8ed4 | 2014-04-26 22:25:44 -0700 | [diff] [blame] | 60 | conf.load(['compiler_cxx', 'gnu_dirs', |
| 61 | 'default-compiler-flags', |
| 62 | 'boost', 'dependency-checker', |
| 63 | 'doxygen', 'sphinx_build']) |
Alexander Afanasyev | efea8fe | 2014-03-23 00:00:35 -0700 | [diff] [blame] | 64 | |
Alexander Afanasyev | 4a77136 | 2014-04-24 21:29:33 -0700 | [diff] [blame] | 65 | conf.check_cfg(package='libndn-cxx', args=['--cflags', '--libs'], |
| 66 | uselib_store='NDN_CXX', mandatory=True) |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 67 | |
Alexander Afanasyev | 82afa1a | 2014-03-20 16:56:56 -0700 | [diff] [blame] | 68 | boost_libs = 'system chrono program_options' |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 69 | if conf.options.with_tests: |
| 70 | conf.env['WITH_TESTS'] = 1 |
Junxiao Shi | 8888449 | 2014-02-15 15:57:43 -0700 | [diff] [blame] | 71 | conf.define('WITH_TESTS', 1); |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 72 | boost_libs += ' unit_test_framework' |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 73 | |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 74 | if conf.options.with_other_tests: |
| 75 | conf.env['WITH_OTHER_TESTS'] = 1 |
| 76 | |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 77 | conf.check_boost(lib=boost_libs) |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 78 | |
Alexander Afanasyev | e1724c4 | 2014-02-26 22:00:54 -0800 | [diff] [blame] | 79 | if conf.env.BOOST_VERSION_NUMBER < 104800: |
Junxiao Shi | ea48d8b | 2014-03-16 13:53:47 -0700 | [diff] [blame] | 80 | Logs.error("Minimum required boost version is 1.48.0") |
| 81 | Logs.error("Please upgrade your distribution or install custom boost libraries" + |
| 82 | " (http://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)") |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 83 | return |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 84 | |
| 85 | conf.load('unix-socket') |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 86 | |
Alexander Afanasyev | 5cda2e0 | 2014-04-11 13:58:44 -0700 | [diff] [blame] | 87 | conf.checkDependency(name='librt', lib='rt', mandatory=False) |
Alexander Afanasyev | 5cda2e0 | 2014-04-11 13:58:44 -0700 | [diff] [blame] | 88 | conf.checkDependency(name='libresolv', lib='resolv', mandatory=False) |
Alexander Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 89 | if not conf.options.without_libpcap: |
| 90 | conf.checkDependency(name='libpcap', lib='pcap', mandatory=True, |
| 91 | errmsg='not found, but required for Ethernet face support. ' |
| 92 | 'Specify --without-libpcap to disable Ethernet face support.') |
Alexander Afanasyev | efea8fe | 2014-03-23 00:00:35 -0700 | [diff] [blame] | 93 | |
Alexander Afanasyev | 689569b | 2014-02-16 20:20:07 -0800 | [diff] [blame] | 94 | conf.load('coverage') |
| 95 | |
Junxiao Shi | d71d84c | 2014-04-18 17:22:50 -0700 | [diff] [blame] | 96 | conf.find_program('bash', var='BASH') |
| 97 | |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 98 | conf.define('DEFAULT_CONFIG_FILE', '%s/ndn/nfd.conf' % conf.env['SYSCONFDIR']) |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 99 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 100 | conf.write_config_header('config.hpp') |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 101 | |
Junxiao Shi | 09bf7c4 | 2014-01-31 11:10:25 -0700 | [diff] [blame] | 102 | def build(bld): |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 103 | core = bld( |
| 104 | target='core-objects', |
| 105 | name='core-objects', |
| 106 | features='cxx', |
| 107 | source=bld.path.ant_glob(['core/**/*.cpp']), |
Alexander Afanasyev | 4a77136 | 2014-04-24 21:29:33 -0700 | [diff] [blame] | 108 | use='BOOST NDN_CXX LIBRT', |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 109 | includes='. core', |
| 110 | export_includes='. core', |
| 111 | ) |
| 112 | |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 113 | nfd_objects = bld( |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 114 | target='daemon-objects', |
| 115 | name='daemon-objects', |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 116 | features='cxx', |
| 117 | source=bld.path.ant_glob(['daemon/**/*.cpp'], |
| 118 | excl=['daemon/face/ethernet-*.cpp', |
| 119 | 'daemon/face/unix-*.cpp', |
| 120 | 'daemon/main.cpp']), |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 121 | use='core-objects', |
| 122 | includes='daemon', |
| 123 | export_includes='daemon', |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 124 | ) |
| 125 | |
Alexander Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 126 | if bld.env['HAVE_LIBPCAP']: |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 127 | nfd_objects.source += bld.path.ant_glob('daemon/face/ethernet-*.cpp') |
Alexander Afanasyev | 5cda2e0 | 2014-04-11 13:58:44 -0700 | [diff] [blame] | 128 | nfd_objects.use += ' LIBPCAP' |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 129 | |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 130 | if bld.env['HAVE_UNIX_SOCKETS']: |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 131 | nfd_objects.source += bld.path.ant_glob('daemon/face/unix-*.cpp') |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 132 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 133 | bld(target='bin/nfd', |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 134 | features='cxx cxxprogram', |
| 135 | source='daemon/main.cpp', |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 136 | use='daemon-objects', |
hilata | 198cadb | 2014-02-15 23:46:19 -0600 | [diff] [blame] | 137 | ) |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 138 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 139 | rib_objects = bld( |
| 140 | target='rib-objects', |
| 141 | name='rib-objects', |
| 142 | features='cxx', |
| 143 | source=bld.path.ant_glob(['rib/**/*.cpp'], |
| 144 | excl=['rib/main.cpp']), |
| 145 | use='core-objects', |
| 146 | ) |
| 147 | |
| 148 | bld(target='bin/nrd', |
| 149 | features='cxx cxxprogram', |
| 150 | source='rib/main.cpp', |
| 151 | use='rib-objects', |
| 152 | ) |
| 153 | |
hilata | 198cadb | 2014-02-15 23:46:19 -0600 | [diff] [blame] | 154 | for app in bld.path.ant_glob('tools/*.cpp'): |
| 155 | bld(features=['cxx', 'cxxprogram'], |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 156 | target='bin/%s' % (str(app.change_ext(''))), |
| 157 | source=['tools/%s' % (str(app))], |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 158 | use='core-objects LIBRESOLV', |
hilata | 198cadb | 2014-02-15 23:46:19 -0600 | [diff] [blame] | 159 | ) |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 160 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 161 | bld.recurse("tests") |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 162 | |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 163 | bld(features="subst", |
| 164 | source='nfd.conf.sample.in', |
| 165 | target='nfd.conf.sample', |
Alexander Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 166 | install_path="${SYSCONFDIR}/ndn", |
| 167 | IF_HAVE_LIBPCAP="" if bld.env['HAVE_LIBPCAP'] else "; ") |
Alexander Afanasyev | 35fc2b7 | 2014-02-13 16:56:21 -0800 | [diff] [blame] | 168 | |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 169 | bld(features='subst', |
| 170 | source='tools/nfd-status-http-server.py', |
Alexander Afanasyev | 03ea3eb | 2014-04-17 18:19:06 -0700 | [diff] [blame] | 171 | target='bin/nfd-status-http-server', |
Chengyu Fan | b07788a | 2014-03-31 12:15:36 -0600 | [diff] [blame] | 172 | install_path="${BINDIR}", |
| 173 | chmod=0755) |
| 174 | |
Alexander Afanasyev | 49272f7 | 2014-04-06 21:49:46 -0700 | [diff] [blame] | 175 | if bld.env['SPHINX_BUILD']: |
| 176 | bld(features="sphinx", |
| 177 | builder="man", |
| 178 | outdir="docs/manpages", |
| 179 | config="docs/conf.py", |
| 180 | source=bld.path.ant_glob('docs/manpages/**/*.rst'), |
Beichuan Zhang | 55b8ed4 | 2014-04-26 22:25:44 -0700 | [diff] [blame] | 181 | install_path="${MANDIR}/", |
| 182 | VERSION=VERSION) |
Alexander Afanasyev | 49272f7 | 2014-04-06 21:49:46 -0700 | [diff] [blame] | 183 | |
Junxiao Shi | d71d84c | 2014-04-18 17:22:50 -0700 | [diff] [blame] | 184 | for script in bld.path.ant_glob('tools/*.sh'): |
| 185 | bld(features='subst', |
| 186 | source='tools/%s' % (str(script)), |
| 187 | target='bin/%s' % (str(script.change_ext(''))), |
| 188 | install_path="${BINDIR}", |
| 189 | chmod=0755) |
| 190 | |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 191 | def docs(bld): |
| 192 | from waflib import Options |
| 193 | Options.commands = ['doxygen', 'sphinx'] + Options.commands |
| 194 | |
Alexander Afanasyev | 35fc2b7 | 2014-02-13 16:56:21 -0800 | [diff] [blame] | 195 | def doxygen(bld): |
| 196 | if not bld.env.DOXYGEN: |
Beichuan Zhang | 55b8ed4 | 2014-04-26 22:25:44 -0700 | [diff] [blame] | 197 | Logs.error("ERROR: cannot build documentation (`doxygen' is not found in $PATH)") |
| 198 | else: |
| 199 | bld(features="subst", |
| 200 | name="doxygen-conf", |
| 201 | source="docs/doxygen.conf.in", |
| 202 | target="docs/doxygen.conf", |
| 203 | VERSION=VERSION, |
| 204 | ) |
| 205 | |
| 206 | bld(features="doxygen", |
| 207 | doxyfile='docs/doxygen.conf', |
| 208 | use="doxygen-conf") |
Alexander Afanasyev | 49272f7 | 2014-04-06 21:49:46 -0700 | [diff] [blame] | 209 | |
| 210 | def sphinx(bld): |
Beichuan Zhang | 55b8ed4 | 2014-04-26 22:25:44 -0700 | [diff] [blame] | 211 | if not bld.env.SPHINX_BUILD: |
| 212 | bld.fatal("ERROR: cannot build documentation (`sphinx-build' is not found in $PATH)") |
| 213 | else: |
| 214 | bld(features="sphinx", |
| 215 | outdir="docs", |
| 216 | source=bld.path.ant_glob('docs/**/*.rst'), |
| 217 | config="docs/conf.py", |
| 218 | VERSION=VERSION) |