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 | |
Junxiao Shi | 6b597e7 | 2014-06-29 23:41:17 -0700 | [diff] [blame] | 26 | VERSION = "0.2.0" |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 27 | APPNAME = "nfd" |
| 28 | BUGREPORT = "http://redmine.named-data.net/projects/nfd" |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 29 | URL = "http://named-data.net/doc/NFD/" |
Alexander Afanasyev | 48f5a3c | 2014-08-22 22:33:01 -0700 | [diff] [blame] | 30 | GIT_TAG_PREFIX = "NFD-" |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 31 | |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 32 | from waflib import Logs, Utils, Context |
Alexander Afanasyev | 2075788 | 2014-08-25 22:39:08 -0700 | [diff] [blame] | 33 | import os |
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']) |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 37 | opt.load(['boost', 'unix-socket', 'dependency-checker', 'websocket', |
Alexander Afanasyev | e918621 | 2014-08-23 20:15:48 -0700 | [diff] [blame] | 38 | 'default-compiler-flags', 'coverage', 'pch', 'boost-kqueue', |
Junxiao Shi | b2bcbcd | 2014-11-08 09:30:28 -0700 | [diff] [blame] | 39 | 'doxygen', 'sphinx_build', 'type_traits'], |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 40 | tooldir=['.waf-tools']) |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 41 | |
| 42 | nfdopt = opt.add_option_group('NFD Options') |
Alexander Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 43 | opt.addUnixOptions(nfdopt) |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 44 | opt.addWebsocketOptions(nfdopt) |
Alexander Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 45 | opt.addDependencyOptions(nfdopt, 'libpcap') |
| 46 | nfdopt.add_option('--without-libpcap', action='store_true', default=False, |
| 47 | dest='without_libpcap', |
| 48 | help='''Disable libpcap (Ethernet face support will be disabled)''') |
| 49 | |
Alexander Afanasyev | 5cda2e0 | 2014-04-11 13:58:44 -0700 | [diff] [blame] | 50 | opt.addDependencyOptions(nfdopt, 'librt', '(optional)') |
| 51 | opt.addDependencyOptions(nfdopt, 'libresolv', '(optional)') |
| 52 | |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 53 | nfdopt.add_option('--with-tests', action='store_true', default=False, |
| 54 | dest='with_tests', help='''Build unit tests''') |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 55 | nfdopt.add_option('--with-other-tests', action='store_true', default=False, |
| 56 | dest='with_other_tests', help='''Build other tests''') |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 57 | |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 58 | def configure(conf): |
Beichuan Zhang | 55b8ed4 | 2014-04-26 22:25:44 -0700 | [diff] [blame] | 59 | conf.load(['compiler_cxx', 'gnu_dirs', |
Alexander Afanasyev | e918621 | 2014-08-23 20:15:48 -0700 | [diff] [blame] | 60 | 'default-compiler-flags', 'pch', 'boost-kqueue', |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 61 | 'boost', 'dependency-checker', 'websocket', |
Junxiao Shi | b2bcbcd | 2014-11-08 09:30:28 -0700 | [diff] [blame] | 62 | 'doxygen', 'sphinx_build', 'type_traits']) |
Alexander Afanasyev | efea8fe | 2014-03-23 00:00:35 -0700 | [diff] [blame] | 63 | |
Davide Pesavento | f0ae442 | 2014-05-05 16:32:12 +0200 | [diff] [blame] | 64 | conf.find_program('bash', var='BASH') |
| 65 | |
Alexander Afanasyev | 6db058c | 2014-11-13 16:46:25 -0800 | [diff] [blame^] | 66 | if not os.environ.has_key('PKG_CONFIG_PATH'): |
| 67 | os.environ['PKG_CONFIG_PATH'] = ':'.join([ |
| 68 | '/usr/local/lib/pkgconfig', |
| 69 | '/opt/local/lib/pkgconfig']) |
Alexander Afanasyev | 4a77136 | 2014-04-24 21:29:33 -0700 | [diff] [blame] | 70 | conf.check_cfg(package='libndn-cxx', args=['--cflags', '--libs'], |
| 71 | uselib_store='NDN_CXX', mandatory=True) |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 72 | |
Davide Pesavento | b499a60 | 2014-11-18 22:36:56 +0100 | [diff] [blame] | 73 | conf.checkDependency(name='librt', lib='rt', mandatory=False) |
| 74 | conf.checkDependency(name='libresolv', lib='resolv', mandatory=False) |
| 75 | |
Wentao Shang | 93ef6c9 | 2014-06-19 11:59:17 -0400 | [diff] [blame] | 76 | boost_libs = 'system chrono program_options random' |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 77 | if conf.options.with_tests: |
| 78 | conf.env['WITH_TESTS'] = 1 |
Junxiao Shi | 8888449 | 2014-02-15 15:57:43 -0700 | [diff] [blame] | 79 | conf.define('WITH_TESTS', 1); |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 80 | boost_libs += ' unit_test_framework' |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 81 | |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 82 | if conf.options.with_other_tests: |
| 83 | conf.env['WITH_OTHER_TESTS'] = 1 |
| 84 | |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 85 | conf.check_boost(lib=boost_libs) |
Alexander Afanasyev | e1724c4 | 2014-02-26 22:00:54 -0800 | [diff] [blame] | 86 | if conf.env.BOOST_VERSION_NUMBER < 104800: |
Junxiao Shi | ea48d8b | 2014-03-16 13:53:47 -0700 | [diff] [blame] | 87 | Logs.error("Minimum required boost version is 1.48.0") |
| 88 | Logs.error("Please upgrade your distribution or install custom boost libraries" + |
| 89 | " (http://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)") |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 90 | return |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 91 | |
| 92 | conf.load('unix-socket') |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 93 | conf.checkWebsocket(mandatory=True) |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 94 | |
Alexander Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 95 | if not conf.options.without_libpcap: |
Alexander Afanasyev | e918621 | 2014-08-23 20:15:48 -0700 | [diff] [blame] | 96 | conf.check_asio_pcap_support() |
| 97 | if conf.env['HAVE_ASIO_PCAP_SUPPORT']: |
| 98 | conf.checkDependency(name='libpcap', lib='pcap', mandatory=True, |
| 99 | errmsg='not found, but required for Ethernet face support. ' |
| 100 | 'Specify --without-libpcap to disable Ethernet face support.') |
| 101 | else: |
| 102 | Logs.warn('Warning: Ethernet face support is not supported on this platform with Boost libraries version 1.56. ' |
| 103 | 'See http://redmine.named-data.net/issues/1877 for more details') |
Davide Pesavento | f0ae442 | 2014-05-05 16:32:12 +0200 | [diff] [blame] | 104 | if conf.env['HAVE_LIBPCAP']: |
| 105 | conf.check_cxx(function_name='pcap_set_immediate_mode', header_name='pcap/pcap.h', |
| 106 | cxxflags='-Wno-error', use='LIBPCAP', mandatory=False) |
Alexander Afanasyev | efea8fe | 2014-03-23 00:00:35 -0700 | [diff] [blame] | 107 | |
Alexander Afanasyev | 689569b | 2014-02-16 20:20:07 -0800 | [diff] [blame] | 108 | conf.load('coverage') |
| 109 | |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 110 | conf.define('DEFAULT_CONFIG_FILE', '%s/ndn/nfd.conf' % conf.env['SYSCONFDIR']) |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 111 | |
Junxiao Shi | 759f706 | 2014-11-29 10:19:22 -0700 | [diff] [blame] | 112 | # disable assertions in release builds |
| 113 | if not conf.options.debug: |
| 114 | conf.define('NDEBUG', 1) |
| 115 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 116 | conf.write_config_header('config.hpp') |
Alexander Afanasyev | 2aa3962 | 2014-01-22 11:51:11 -0800 | [diff] [blame] | 117 | |
Junxiao Shi | 09bf7c4 | 2014-01-31 11:10:25 -0700 | [diff] [blame] | 118 | def build(bld): |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 119 | version(bld) |
| 120 | |
| 121 | bld(features="subst", |
| 122 | name='version', |
| 123 | source='version.hpp.in', |
| 124 | target='version.hpp', |
| 125 | install_path=None, |
| 126 | VERSION_STRING=VERSION_BASE, |
| 127 | VERSION_BUILD=VERSION, |
| 128 | VERSION=int(VERSION_SPLIT[0]) * 1000000 + |
| 129 | int(VERSION_SPLIT[1]) * 1000 + |
| 130 | int(VERSION_SPLIT[2]), |
| 131 | VERSION_MAJOR=VERSION_SPLIT[0], |
| 132 | VERSION_MINOR=VERSION_SPLIT[1], |
| 133 | VERSION_PATCH=VERSION_SPLIT[2], |
| 134 | ) |
| 135 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 136 | core = bld( |
| 137 | target='core-objects', |
| 138 | name='core-objects', |
Alexander Afanasyev | 58ea458 | 2014-05-30 08:38:56 +0300 | [diff] [blame] | 139 | features='cxx pch', |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 140 | source=bld.path.ant_glob(['core/**/*.cpp']), |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 141 | use='version BOOST NDN_CXX LIBRT', |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 142 | includes='. core', |
| 143 | export_includes='. core', |
Alexander Afanasyev | 58ea458 | 2014-05-30 08:38:56 +0300 | [diff] [blame] | 144 | headers='common.hpp', |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 145 | ) |
| 146 | |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 147 | nfd_objects = bld( |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 148 | target='daemon-objects', |
| 149 | name='daemon-objects', |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 150 | features='cxx', |
| 151 | source=bld.path.ant_glob(['daemon/**/*.cpp'], |
| 152 | excl=['daemon/face/ethernet-*.cpp', |
| 153 | 'daemon/face/unix-*.cpp', |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 154 | 'daemon/face/websocket-*.cpp', |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 155 | 'daemon/main.cpp']), |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 156 | use='core-objects WEBSOCKET', |
| 157 | includes='daemon', |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 158 | export_includes='daemon', |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 159 | ) |
| 160 | |
Alexander Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 161 | if bld.env['HAVE_LIBPCAP']: |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 162 | nfd_objects.source += bld.path.ant_glob('daemon/face/ethernet-*.cpp') |
Alexander Afanasyev | 5cda2e0 | 2014-04-11 13:58:44 -0700 | [diff] [blame] | 163 | nfd_objects.use += ' LIBPCAP' |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 164 | |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 165 | if bld.env['HAVE_UNIX_SOCKETS']: |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 166 | nfd_objects.source += bld.path.ant_glob('daemon/face/unix-*.cpp') |
Alexander Afanasyev | c78b141 | 2014-02-19 14:08:26 -0800 | [diff] [blame] | 167 | |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 168 | if bld.env['HAVE_WEBSOCKET']: |
| 169 | nfd_objects.source += bld.path.ant_glob('daemon/face/websocket-*.cpp') |
| 170 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 171 | bld(target='bin/nfd', |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 172 | features='cxx cxxprogram', |
| 173 | source='daemon/main.cpp', |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 174 | use='daemon-objects', |
hilata | 198cadb | 2014-02-15 23:46:19 -0600 | [diff] [blame] | 175 | ) |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 176 | |
Alexander Afanasyev | 3ecec50 | 2014-04-16 13:42:44 -0700 | [diff] [blame] | 177 | rib_objects = bld( |
| 178 | target='rib-objects', |
| 179 | name='rib-objects', |
| 180 | features='cxx', |
| 181 | source=bld.path.ant_glob(['rib/**/*.cpp'], |
| 182 | excl=['rib/main.cpp']), |
| 183 | use='core-objects', |
| 184 | ) |
| 185 | |
| 186 | bld(target='bin/nrd', |
| 187 | features='cxx cxxprogram', |
| 188 | source='rib/main.cpp', |
| 189 | use='rib-objects', |
| 190 | ) |
| 191 | |
hilata | 198cadb | 2014-02-15 23:46:19 -0600 | [diff] [blame] | 192 | for app in bld.path.ant_glob('tools/*.cpp'): |
| 193 | bld(features=['cxx', 'cxxprogram'], |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 194 | target='bin/%s' % (str(app.change_ext(''))), |
| 195 | source=['tools/%s' % (str(app))], |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 196 | use='core-objects LIBRESOLV', |
hilata | 198cadb | 2014-02-15 23:46:19 -0600 | [diff] [blame] | 197 | ) |
Davide Pesavento | 44deacc | 2014-02-19 10:48:07 +0100 | [diff] [blame] | 198 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 199 | bld.recurse("tests") |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 200 | |
Alexander Afanasyev | 97e4cac | 2014-03-28 10:55:11 -0700 | [diff] [blame] | 201 | bld(features="subst", |
| 202 | source='nfd.conf.sample.in', |
| 203 | target='nfd.conf.sample', |
Alexander Afanasyev | 885a85b | 2014-04-12 21:01:13 -0700 | [diff] [blame] | 204 | install_path="${SYSCONFDIR}/ndn", |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 205 | IF_HAVE_LIBPCAP="" if bld.env['HAVE_LIBPCAP'] else "; ", |
| 206 | IF_HAVE_WEBSOCKET="" if bld.env['HAVE_WEBSOCKET'] else "; ") |
Alexander Afanasyev | 35fc2b7 | 2014-02-13 16:56:21 -0800 | [diff] [blame] | 207 | |
Alexander Afanasyev | 49272f7 | 2014-04-06 21:49:46 -0700 | [diff] [blame] | 208 | if bld.env['SPHINX_BUILD']: |
| 209 | bld(features="sphinx", |
| 210 | builder="man", |
| 211 | outdir="docs/manpages", |
| 212 | config="docs/conf.py", |
| 213 | source=bld.path.ant_glob('docs/manpages/**/*.rst'), |
Beichuan Zhang | 55b8ed4 | 2014-04-26 22:25:44 -0700 | [diff] [blame] | 214 | install_path="${MANDIR}/", |
| 215 | VERSION=VERSION) |
Alexander Afanasyev | 49272f7 | 2014-04-06 21:49:46 -0700 | [diff] [blame] | 216 | |
Alexander Afanasyev | 8a09376 | 2014-07-16 18:43:09 -0700 | [diff] [blame] | 217 | for script in bld.path.ant_glob(['tools/*.sh', 'tools/*.py']): |
Junxiao Shi | d71d84c | 2014-04-18 17:22:50 -0700 | [diff] [blame] | 218 | bld(features='subst', |
| 219 | source='tools/%s' % (str(script)), |
| 220 | target='bin/%s' % (str(script.change_ext(''))), |
| 221 | install_path="${BINDIR}", |
Alexander Afanasyev | f7bbe47 | 2014-05-11 19:31:13 -0700 | [diff] [blame] | 222 | chmod=Utils.O755, |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 223 | VERSION=VERSION) |
Junxiao Shi | d71d84c | 2014-04-18 17:22:50 -0700 | [diff] [blame] | 224 | |
Alexander Afanasyev | 8a09376 | 2014-07-16 18:43:09 -0700 | [diff] [blame] | 225 | bld.install_files("${DATAROOTDIR}/ndn", |
| 226 | bld.path.ant_glob('tools/nfd-status-http-server-files/*')) |
| 227 | |
Alexander Afanasyev | 284257b | 2014-04-11 14:16:51 -0700 | [diff] [blame] | 228 | def docs(bld): |
| 229 | from waflib import Options |
| 230 | Options.commands = ['doxygen', 'sphinx'] + Options.commands |
| 231 | |
Alexander Afanasyev | 35fc2b7 | 2014-02-13 16:56:21 -0800 | [diff] [blame] | 232 | def doxygen(bld): |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 233 | version(bld) |
| 234 | |
Alexander Afanasyev | 35fc2b7 | 2014-02-13 16:56:21 -0800 | [diff] [blame] | 235 | if not bld.env.DOXYGEN: |
Beichuan Zhang | 55b8ed4 | 2014-04-26 22:25:44 -0700 | [diff] [blame] | 236 | Logs.error("ERROR: cannot build documentation (`doxygen' is not found in $PATH)") |
| 237 | else: |
| 238 | bld(features="subst", |
| 239 | name="doxygen-conf", |
Alexander Afanasyev | 2075788 | 2014-08-25 22:39:08 -0700 | [diff] [blame] | 240 | source=["docs/doxygen.conf.in", |
| 241 | "docs/named_data_theme/named_data_footer-with-analytics.html.in"], |
| 242 | target=["docs/doxygen.conf", |
| 243 | "docs/named_data_theme/named_data_footer-with-analytics.html"], |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 244 | VERSION=VERSION_BASE, |
Alexander Afanasyev | 2075788 | 2014-08-25 22:39:08 -0700 | [diff] [blame] | 245 | HTML_FOOTER="../build/docs/named_data_theme/named_data_footer-with-analytics.html" \ |
| 246 | if os.getenv('GOOGLE_ANALYTICS', None) \ |
| 247 | else "../docs/named_data_theme/named_data_footer.html", |
| 248 | GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', ""), |
Beichuan Zhang | 55b8ed4 | 2014-04-26 22:25:44 -0700 | [diff] [blame] | 249 | ) |
| 250 | |
| 251 | bld(features="doxygen", |
| 252 | doxyfile='docs/doxygen.conf', |
| 253 | use="doxygen-conf") |
Alexander Afanasyev | 49272f7 | 2014-04-06 21:49:46 -0700 | [diff] [blame] | 254 | |
| 255 | def sphinx(bld): |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 256 | version(bld) |
| 257 | |
Beichuan Zhang | 55b8ed4 | 2014-04-26 22:25:44 -0700 | [diff] [blame] | 258 | if not bld.env.SPHINX_BUILD: |
| 259 | bld.fatal("ERROR: cannot build documentation (`sphinx-build' is not found in $PATH)") |
| 260 | else: |
| 261 | bld(features="sphinx", |
| 262 | outdir="docs", |
| 263 | source=bld.path.ant_glob('docs/**/*.rst'), |
| 264 | config="docs/conf.py", |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 265 | VERSION=VERSION_BASE) |
| 266 | |
| 267 | def version(ctx): |
Alexander Afanasyev | 2618153 | 2014-05-07 23:38:51 -0700 | [diff] [blame] | 268 | if getattr(Context.g_module, 'VERSION_BASE', None): |
| 269 | return |
| 270 | |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 271 | Context.g_module.VERSION_BASE = Context.g_module.VERSION |
| 272 | Context.g_module.VERSION_SPLIT = [v for v in VERSION_BASE.split('.')] |
| 273 | |
Alexander Afanasyev | 48f5a3c | 2014-08-22 22:33:01 -0700 | [diff] [blame] | 274 | didGetVersion = False |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 275 | try: |
Alexander Afanasyev | 48f5a3c | 2014-08-22 22:33:01 -0700 | [diff] [blame] | 276 | cmd = ['git', 'describe', '--always', '--match', '%s*' % GIT_TAG_PREFIX] |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 277 | p = Utils.subprocess.Popen(cmd, stdout=Utils.subprocess.PIPE, |
| 278 | stderr=None, stdin=None) |
Alexander Afanasyev | 3b21fa3 | 2014-09-01 13:25:20 -0700 | [diff] [blame] | 279 | out = str(p.communicate()[0].strip()) |
Alexander Afanasyev | 48f5a3c | 2014-08-22 22:33:01 -0700 | [diff] [blame] | 280 | didGetVersion = (p.returncode == 0 and out != "") |
| 281 | if didGetVersion: |
| 282 | if out.startswith(GIT_TAG_PREFIX): |
| 283 | Context.g_module.VERSION = out[len(GIT_TAG_PREFIX):] |
| 284 | else: |
| 285 | Context.g_module.VERSION = "%s-commit-%s" % (Context.g_module.VERSION_BASE, out) |
| 286 | except OSError: |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 287 | pass |
| 288 | |
Alexander Afanasyev | 48f5a3c | 2014-08-22 22:33:01 -0700 | [diff] [blame] | 289 | versionFile = ctx.path.find_node('VERSION') |
| 290 | |
| 291 | if not didGetVersion and versionFile is not None: |
| 292 | try: |
| 293 | Context.g_module.VERSION = versionFile.read() |
| 294 | return |
| 295 | except (OSError, IOError): |
| 296 | pass |
| 297 | |
| 298 | # version was obtained from git, update VERSION file if necessary |
| 299 | if versionFile is not None: |
| 300 | try: |
| 301 | version = versionFile.read() |
| 302 | if version == Context.g_module.VERSION: |
| 303 | return # no need to update |
| 304 | except (OSError, IOError): |
| 305 | Logs.warn("VERSION file exists, but not readable") |
| 306 | else: |
| 307 | versionFile = ctx.path.make_node('VERSION') |
| 308 | |
| 309 | if versionFile is None: |
| 310 | return |
| 311 | |
| 312 | try: |
| 313 | versionFile.write(Context.g_module.VERSION) |
| 314 | except (OSError, IOError): |
| 315 | Logs.warn("VERSION file is not writeable") |
| 316 | |
Alexander Afanasyev | b47d538 | 2014-05-05 14:35:03 -0700 | [diff] [blame] | 317 | def dist(ctx): |
| 318 | version(ctx) |
| 319 | |
| 320 | def distcheck(ctx): |
| 321 | version(ctx) |