blob: e0fee20999c8d6081ef5d3d63cf266c6b529deb5 [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"""
Alexander Afanasyev19e2e6d2017-01-20 20:21:36 -08004Copyright (c) 2014-2017, Regents of the University of California,
taylorchu5ae28772015-03-08 17:45:52 -07005 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 Afanasyev19e2e6d2017-01-20 20:21:36 -080027VERSION = "0.5.1"
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -070028APPNAME = "nfd"
Eric Newberry81a9a862016-12-27 22:59:27 -070029BUGREPORT = "https://redmine.named-data.net/projects/nfd"
30URL = "https://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'])
Davide Pesavento67f30272016-08-10 01:55:16 +000038 opt.load(['default-compiler-flags', 'compiler-features', 'type_traits',
39 'coverage', 'pch', 'sanitizers', 'boost', 'boost-kqueue',
40 'dependency-checker', 'unix-socket', 'websocket',
41 'doxygen', 'sphinx_build'],
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -070042 tooldir=['.waf-tools'])
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080043
44 nfdopt = opt.add_option_group('NFD Options')
Alexander Afanasyev885a85b2014-04-12 21:01:13 -070045 opt.addUnixOptions(nfdopt)
Wentao Shang53df1632014-04-21 12:01:32 -070046 opt.addWebsocketOptions(nfdopt)
Davide Pesavento67f30272016-08-10 01:55:16 +000047
Alexander Afanasyev885a85b2014-04-12 21:01:13 -070048 opt.addDependencyOptions(nfdopt, 'libpcap')
49 nfdopt.add_option('--without-libpcap', action='store_true', default=False,
50 dest='without_libpcap',
51 help='''Disable libpcap (Ethernet face support will be disabled)''')
52
Alexander Afanasyev5cda2e02014-04-11 13:58:44 -070053 opt.addDependencyOptions(nfdopt, 'librt', '(optional)')
54 opt.addDependencyOptions(nfdopt, 'libresolv', '(optional)')
55
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -070056 nfdopt.add_option('--with-tests', action='store_true', default=False,
57 dest='with_tests', help='''Build unit tests''')
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -040058 nfdopt.add_option('--with-other-tests', action='store_true', default=False,
59 dest='with_other_tests', help='''Build other tests''')
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -060060
Alexander Afanasyev8269a052015-02-09 16:25:36 -080061 nfdopt.add_option('--with-custom-logger', type='string', default=None,
62 dest='with_custom_logger',
63 help='''Path to custom-logger.hpp and custom-logger-factory.hpp '''
64 '''implementing Logger and LoggerFactory interfaces''')
65
Alexander Afanasyev2aa39622014-01-22 11:51:11 -080066def configure(conf):
Beichuan Zhang55b8ed42014-04-26 22:25:44 -070067 conf.load(['compiler_cxx', 'gnu_dirs',
Davide Pesavento67f30272016-08-10 01:55:16 +000068 'default-compiler-flags', 'compiler-features', 'type_traits',
Eric Newberry27bdd1a2016-11-01 18:02:54 -070069 'pch', 'boost', 'boost-kqueue', 'dependency-checker', 'websocket',
Davide Pesavento67f30272016-08-10 01:55:16 +000070 'doxygen', 'sphinx_build'])
Alexander Afanasyevefea8fe2014-03-23 00:00:35 -070071
Davide Pesaventof0ae4422014-05-05 16:32:12 +020072 conf.find_program('bash', var='BASH')
73
taylorchu5ae28772015-03-08 17:45:52 -070074 if 'PKG_CONFIG_PATH' not in os.environ:
Alexander Afanasyevcdb8f362015-03-30 10:52:54 -070075 os.environ['PKG_CONFIG_PATH'] = Utils.subst_vars('${LIBDIR}/pkgconfig', conf.env)
Alexander Afanasyev4a771362014-04-24 21:29:33 -070076 conf.check_cfg(package='libndn-cxx', args=['--cflags', '--libs'],
77 uselib_store='NDN_CXX', mandatory=True)
Davide Pesavento44deacc2014-02-19 10:48:07 +010078
Davide Pesaventob499a602014-11-18 22:36:56 +010079 conf.checkDependency(name='librt', lib='rt', mandatory=False)
80 conf.checkDependency(name='libresolv', lib='resolv', mandatory=False)
81
Alexander Afanasyev748e9892015-01-28 15:07:41 -080082 if not conf.check_cxx(msg='Checking if privilege drop/elevation is supported', mandatory=False,
83 define_name='HAVE_PRIVILEGE_DROP_AND_ELEVATE', fragment='''
84#include <unistd.h>
85#include <pwd.h>
86#include <grp.h>
87int
88main(int, char**)
89{
Alexander Afanasyeve0d71b02016-05-25 11:39:13 -070090 char buffer[100];
Alexander Afanasyev748e9892015-01-28 15:07:41 -080091 ::sysconf(_SC_GETGR_R_SIZE_MAX);
92 group grp;
Alexander Afanasyeve0d71b02016-05-25 11:39:13 -070093 group* grpRes;
94 getgrnam_r("nogroup", &grp, buffer, 100, &grpRes);
Alexander Afanasyev748e9892015-01-28 15:07:41 -080095 passwd pwd;
Alexander Afanasyeve0d71b02016-05-25 11:39:13 -070096 passwd* pwdRes;
97 getpwnam_r("nobody", &pwd, buffer, 100, &pwdRes);
Alexander Afanasyev748e9892015-01-28 15:07:41 -080098
99 int ret = setegid(grp.gr_gid);
100 ret = seteuid(pwd.pw_uid);
101 (void)(ret);
Weiwei Liuf5aee942016-03-19 07:00:42 +0000102
103 getegid();
104 geteuid();
Alexander Afanasyev748e9892015-01-28 15:07:41 -0800105 return 0;
106}
107'''):
Junxiao Shia5765d62017-08-09 04:07:46 +0000108 Logs.warn('Dropping privileges is not supported on this platform')
Alexander Afanasyev748e9892015-01-28 15:07:41 -0800109
Davide Pesaventoaaa5dd32016-09-02 12:33:33 +0000110 conf.check_cxx(header_name='valgrind/valgrind.h', define_name='HAVE_VALGRIND', mandatory=False)
Alexander Afanasyev49343f62015-01-26 21:58:07 -0800111
Davide Pesavento5f47aa62016-10-07 22:09:09 +0200112 boost_libs = 'system chrono program_options thread log log_setup'
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800113 if conf.options.with_tests:
114 conf.env['WITH_TESTS'] = 1
Davide Pesavento67f30272016-08-10 01:55:16 +0000115 conf.define('WITH_TESTS', 1)
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700116 boost_libs += ' unit_test_framework'
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800117
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -0400118 if conf.options.with_other_tests:
119 conf.env['WITH_OTHER_TESTS'] = 1
120
Yumin Xiaab497452016-05-10 20:23:24 +0800121 conf.check_boost(lib=boost_libs, mt=True)
Davide Pesaventocafae242016-04-22 02:21:35 +0200122 if conf.env.BOOST_VERSION_NUMBER < 105400:
123 Logs.error("Minimum required boost version is 1.54.0")
Junxiao Shiea48d8b2014-03-16 13:53:47 -0700124 Logs.error("Please upgrade your distribution or install custom boost libraries" +
Eric Newberry81a9a862016-12-27 22:59:27 -0700125 " (https://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)")
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800126 return
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800127
Alexander Afanasyev6602b3b2016-03-15 14:14:11 -0700128 if conf.env['CXX_NAME'] == 'clang' and conf.env.BOOST_VERSION_NUMBER < 105800:
Eric Newberry81a9a862016-12-27 22:59:27 -0700129 conf.define('BOOST_ASIO_HAS_STD_ARRAY', 1) # Workaround for https://redmine.named-data.net/issues/3360#note-14
Eric Newberrycb27ea82016-07-19 12:40:52 -0700130 conf.define('BOOST_ASIO_HAS_STD_CHRONO', 1) # Solution documented at https://redmine.named-data.net/issues/3588#note-10
Alexander Afanasyev6602b3b2016-03-15 14:14:11 -0700131
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800132 conf.load('unix-socket')
Wentao Shang53df1632014-04-21 12:01:32 -0700133 conf.checkWebsocket(mandatory=True)
Davide Pesavento44deacc2014-02-19 10:48:07 +0100134
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700135 if not conf.options.without_libpcap:
Alexander Afanasyeve9186212014-08-23 20:15:48 -0700136 conf.check_asio_pcap_support()
137 if conf.env['HAVE_ASIO_PCAP_SUPPORT']:
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 Shia5765d62017-08-09 04:07:46 +0000142 Logs.warn('Warning: Ethernet face is not supported on this platform with Boost libraries version 1.56. '
Eric Newberry81a9a862016-12-27 22:59:27 -0700143 'See https://redmine.named-data.net/issues/1877 for more details')
Davide Pesaventof0ae4422014-05-05 16:32:12 +0200144 if conf.env['HAVE_LIBPCAP']:
145 conf.check_cxx(function_name='pcap_set_immediate_mode', header_name='pcap/pcap.h',
146 cxxflags='-Wno-error', use='LIBPCAP', mandatory=False)
Alexander Afanasyevefea8fe2014-03-23 00:00:35 -0700147
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800148 if conf.options.with_custom_logger:
149 conf.define('HAVE_CUSTOM_LOGGER', 1)
150 conf.env['INCLUDES_CUSTOM_LOGGER'] = [conf.options.with_custom_logger]
151 conf.env['HAVE_CUSTOM_LOGGER'] = 1
152
Alexander Afanasyev689569b2014-02-16 20:20:07 -0800153 conf.load('coverage')
154
Eric Newberry27bdd1a2016-11-01 18:02:54 -0700155 conf.load('sanitizers')
156
Steve DiBenedettofbb40a82014-03-11 19:40:15 -0600157 conf.define('DEFAULT_CONFIG_FILE', '%s/ndn/nfd.conf' % conf.env['SYSCONFDIR'])
Steve DiBenedetto2c2b8892014-02-27 11:46:48 -0700158
Junxiao Shi759f7062014-11-29 10:19:22 -0700159 # disable assertions in release builds
160 if not conf.options.debug:
161 conf.define('NDEBUG', 1)
162
Junxiao Shi9f5b01d2016-08-05 03:54:28 +0000163 conf.write_config_header('core/config.hpp')
Alexander Afanasyev2aa39622014-01-22 11:51:11 -0800164
Junxiao Shi09bf7c42014-01-31 11:10:25 -0700165def build(bld):
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700166 version(bld)
167
168 bld(features="subst",
169 name='version',
Junxiao Shi9f5b01d2016-08-05 03:54:28 +0000170 source='core/version.hpp.in',
171 target='core/version.hpp',
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700172 install_path=None,
173 VERSION_STRING=VERSION_BASE,
174 VERSION_BUILD=VERSION,
175 VERSION=int(VERSION_SPLIT[0]) * 1000000 +
176 int(VERSION_SPLIT[1]) * 1000 +
177 int(VERSION_SPLIT[2]),
178 VERSION_MAJOR=VERSION_SPLIT[0],
179 VERSION_MINOR=VERSION_SPLIT[1],
Davide Pesavento67f30272016-08-10 01:55:16 +0000180 VERSION_PATCH=VERSION_SPLIT[2])
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700181
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700182 core = bld(
183 target='core-objects',
184 name='core-objects',
Alexander Afanasyev58ea4582014-05-30 08:38:56 +0300185 features='cxx pch',
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800186 source=bld.path.ant_glob(['core/**/*.cpp'],
187 excl=['core/logger*.cpp']),
Alexander Afanasyev3d1874a2016-06-15 12:25:01 -0700188 use='version NDN_CXX BOOST LIBRT',
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700189 includes='. core',
Junxiao Shi9f5b01d2016-08-05 03:54:28 +0000190 export_includes='.',
Davide Pesavento67f30272016-08-10 01:55:16 +0000191 headers='core/common.hpp')
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700192
Alexander Afanasyev8269a052015-02-09 16:25:36 -0800193 if bld.env['HAVE_CUSTOM_LOGGER']:
194 core.use += " CUSTOM_LOGGER"
195 else:
196 core.source += bld.path.ant_glob(['core/logger*.cpp'])
197
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800198 nfd_objects = bld(
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700199 target='daemon-objects',
200 name='daemon-objects',
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700201 features='cxx',
202 source=bld.path.ant_glob(['daemon/**/*.cpp'],
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400203 excl=['daemon/face/*ethernet*.cpp',
204 'daemon/face/*pcap*.cpp',
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700205 'daemon/face/unix-*.cpp',
Wentao Shang53df1632014-04-21 12:01:32 -0700206 'daemon/face/websocket-*.cpp',
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700207 'daemon/main.cpp']),
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600208 use='core-objects WEBSOCKET',
209 includes='daemon',
Davide Pesavento67f30272016-08-10 01:55:16 +0000210 export_includes='daemon')
Junxiao Shi0fcb41e2014-01-24 10:29:43 -0700211
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700212 if bld.env['HAVE_LIBPCAP']:
Davide Pesaventofe0580c2017-05-12 02:02:10 -0400213 nfd_objects.source += bld.path.ant_glob('daemon/face/*ethernet*.cpp')
214 nfd_objects.source += bld.path.ant_glob('daemon/face/*pcap*.cpp')
Alexander Afanasyev5cda2e02014-04-11 13:58:44 -0700215 nfd_objects.use += ' LIBPCAP'
Davide Pesavento44deacc2014-02-19 10:48:07 +0100216
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800217 if bld.env['HAVE_UNIX_SOCKETS']:
Davide Pesavento44deacc2014-02-19 10:48:07 +0100218 nfd_objects.source += bld.path.ant_glob('daemon/face/unix-*.cpp')
Alexander Afanasyevc78b1412014-02-19 14:08:26 -0800219
Wentao Shang53df1632014-04-21 12:01:32 -0700220 if bld.env['HAVE_WEBSOCKET']:
221 nfd_objects.source += bld.path.ant_glob('daemon/face/websocket-*.cpp')
222
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700223 rib_objects = bld(
224 target='rib-objects',
225 name='rib-objects',
226 features='cxx',
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800227 source=bld.path.ant_glob(['rib/**/*.cpp']),
Davide Pesavento67f30272016-08-10 01:55:16 +0000228 use='core-objects')
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700229
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800230 bld(target='bin/nfd',
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700231 features='cxx cxxprogram',
Alexander Afanasyevf08a7372015-02-09 21:28:19 -0800232 source='daemon/main.cpp',
Davide Pesavento67f30272016-08-10 01:55:16 +0000233 use='daemon-objects rib-objects')
Alexander Afanasyev3ecec502014-04-16 13:42:44 -0700234
Alexander Afanasyev262203b2015-01-26 16:39:59 -0800235 bld.recurse("tools")
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700236 bld.recurse("tests")
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -0400237
Alexander Afanasyev97e4cac2014-03-28 10:55:11 -0700238 bld(features="subst",
239 source='nfd.conf.sample.in',
240 target='nfd.conf.sample',
Alexander Afanasyev885a85b2014-04-12 21:01:13 -0700241 install_path="${SYSCONFDIR}/ndn",
Wentao Shang53df1632014-04-21 12:01:32 -0700242 IF_HAVE_LIBPCAP="" if bld.env['HAVE_LIBPCAP'] else "; ",
243 IF_HAVE_WEBSOCKET="" if bld.env['HAVE_WEBSOCKET'] else "; ")
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800244
Alexander Afanasyev49272f72014-04-06 21:49:46 -0700245 if bld.env['SPHINX_BUILD']:
246 bld(features="sphinx",
247 builder="man",
248 outdir="docs/manpages",
249 config="docs/conf.py",
250 source=bld.path.ant_glob('docs/manpages/**/*.rst'),
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700251 install_path="${MANDIR}/",
252 VERSION=VERSION)
Junxiao Shi6c135622016-11-21 14:30:33 +0000253 bld.symlink_as('${MANDIR}/man1/nfdc-channel.1', 'nfdc-face.1')
Junxiao Shi6c135622016-11-21 14:30:33 +0000254 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 Afanasyev49272f72014-04-06 21:49:46 -0700259
Alexander Afanasyev5c475972015-12-20 16:16:56 -0800260 bld.install_files("${SYSCONFDIR}/ndn", "autoconfig.conf.sample")
261
Alexander Afanasyev284257b2014-04-11 14:16:51 -0700262def docs(bld):
263 from waflib import Options
264 Options.commands = ['doxygen', 'sphinx'] + Options.commands
265
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800266def doxygen(bld):
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700267 version(bld)
268
Alexander Afanasyev35fc2b72014-02-13 16:56:21 -0800269 if not bld.env.DOXYGEN:
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700270 Logs.error("ERROR: cannot build documentation (`doxygen' is not found in $PATH)")
271 else:
272 bld(features="subst",
273 name="doxygen-conf",
Alexander Afanasyev20757882014-08-25 22:39:08 -0700274 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"],
Alexander Afanasyevabb307c2015-10-23 17:00:13 -0700278 VERSION=VERSION,
Alexander Afanasyev20757882014-08-25 22:39:08 -0700279 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",
Davide Pesavento67f30272016-08-10 01:55:16 +0000282 GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', ""))
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700283
284 bld(features="doxygen",
285 doxyfile='docs/doxygen.conf',
286 use="doxygen-conf")
Alexander Afanasyev49272f72014-04-06 21:49:46 -0700287
288def sphinx(bld):
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700289 version(bld)
290
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700291 if not bld.env.SPHINX_BUILD:
292 bld.fatal("ERROR: cannot build documentation (`sphinx-build' is not found in $PATH)")
293 else:
294 bld(features="sphinx",
295 outdir="docs",
296 source=bld.path.ant_glob('docs/**/*.rst'),
297 config="docs/conf.py",
Alexander Afanasyevabb307c2015-10-23 17:00:13 -0700298 VERSION=VERSION)
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700299
300def version(ctx):
Alexander Afanasyev26181532014-05-07 23:38:51 -0700301 if getattr(Context.g_module, 'VERSION_BASE', None):
302 return
303
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700304 Context.g_module.VERSION_BASE = Context.g_module.VERSION
305 Context.g_module.VERSION_SPLIT = [v for v in VERSION_BASE.split('.')]
306
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700307 didGetVersion = False
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700308 try:
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700309 cmd = ['git', 'describe', '--always', '--match', '%s*' % GIT_TAG_PREFIX]
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700310 p = Utils.subprocess.Popen(cmd, stdout=Utils.subprocess.PIPE,
311 stderr=None, stdin=None)
Alexander Afanasyev3b21fa32014-09-01 13:25:20 -0700312 out = str(p.communicate()[0].strip())
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700313 didGetVersion = (p.returncode == 0 and out != "")
314 if didGetVersion:
315 if out.startswith(GIT_TAG_PREFIX):
316 Context.g_module.VERSION = out[len(GIT_TAG_PREFIX):]
317 else:
318 Context.g_module.VERSION = "%s-commit-%s" % (Context.g_module.VERSION_BASE, out)
319 except OSError:
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700320 pass
321
Alexander Afanasyev48f5a3c2014-08-22 22:33:01 -0700322 versionFile = ctx.path.find_node('VERSION')
323
324 if not didGetVersion and versionFile is not None:
325 try:
326 Context.g_module.VERSION = versionFile.read()
327 return
328 except (OSError, IOError):
329 pass
330
331 # version was obtained from git, update VERSION file if necessary
332 if versionFile is not None:
333 try:
334 version = versionFile.read()
335 if version == Context.g_module.VERSION:
336 return # no need to update
337 except (OSError, IOError):
338 Logs.warn("VERSION file exists, but not readable")
339 else:
340 versionFile = ctx.path.make_node('VERSION')
341
342 if versionFile is None:
343 return
344
345 try:
346 versionFile.write(Context.g_module.VERSION)
347 except (OSError, IOError):
348 Logs.warn("VERSION file is not writeable")
349
Alexander Afanasyevb47d5382014-05-05 14:35:03 -0700350def dist(ctx):
351 version(ctx)
352
353def distcheck(ctx):
354 version(ctx)