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