blob: 126ec40c12912bc30f597f78335c63fd069d69dd [file] [log] [blame]
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -08001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -08002
Alexander Afanasyev5560fd42018-03-07 17:03:03 -05003from waflib import Context, Logs, Utils
4import os, subprocess
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -07005
Alexander Afanasyevb72360f2019-01-28 14:17:11 -05006VERSION = '0.6.5'
Alexander Afanasyev5560fd42018-03-07 17:03:03 -05007APPNAME = 'ndn-cxx'
8PACKAGE_BUGREPORT = 'https://redmine.named-data.net/projects/ndn-cxx'
9PACKAGE_URL = 'http://named-data.net/doc/ndn-cxx/'
10GIT_TAG_PREFIX = 'ndn-cxx-'
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070011
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080012def options(opt):
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070013 opt.load(['compiler_cxx', 'gnu_dirs', 'c_osx'])
Davide Pesavento844b0932018-05-07 01:00:16 -040014 opt.load(['default-compiler-flags', 'compiler-features',
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -050015 'coverage', 'pch', 'sanitizers', 'osx-frameworks',
Alexander Afanasyevadc71842017-01-26 22:17:58 -050016 'boost', 'openssl', 'sqlite3',
Davide Pesavento1349d2d2016-08-09 06:43:57 +020017 'doxygen', 'sphinx_build'],
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070018 tooldir=['.waf-tools'])
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080019
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070020 opt = opt.add_option_group('Library Options')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080021
Davide Pesavento4b8eab72018-09-01 20:10:36 -040022 opt.add_option('--with-examples', action='store_true', default=False,
23 help='Build examples')
24
25 opt.add_option('--with-tests', action='store_true', default=False,
Davide Pesaventofd674012019-02-06 02:00:12 -050026 help='Build tests')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080027
Yingdi Yue6bfab22014-02-06 16:01:19 -080028 opt.add_option('--without-tools', action='store_false', default=True, dest='with_tools',
Davide Pesavento4b8eab72018-09-01 20:10:36 -040029 help='Do not build tools')
Alexander Afanasyevc8bcd452014-05-12 17:58:47 -070030
Davide Pesaventofd674012019-02-06 02:00:12 -050031 stacktrace_choices = ['backtrace', 'addr2line', 'basic', 'noop']
32 opt.add_option('--with-stacktrace', action='store', default=None, choices=stacktrace_choices,
33 help='Select the stacktrace backend implementation: '
34 '%s [default=auto-detect]' % ', '.join(stacktrace_choices))
35 opt.add_option('--without-stacktrace', action='store_const', const='', dest='with_stacktrace',
36 help='Disable stacktrace support')
37
38 opt.add_option('--without-sqlite-locking', action='store_false', default=True, dest='with_sqlite_locking',
Davide Pesavento4b8eab72018-09-01 20:10:36 -040039 help='Disable filesystem locking in sqlite3 database '
40 '(use unix-dot locking mechanism instead). '
41 'This option may be necessary if the home directory is hosted on NFS.')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080042
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070043 opt.add_option('--without-osx-keychain', action='store_false', default=True,
Davide Pesavento4b8eab72018-09-01 20:10:36 -040044 dest='with_osx_keychain', help='Do not use macOS Keychain as default TPM (macOS only)')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080045
Spyridon Mastorakis5ebfda62015-07-21 20:57:40 -070046 opt.add_option('--enable-static', action='store_true', default=False,
Davide Pesavento4b8eab72018-09-01 20:10:36 -040047 dest='enable_static', help='Build static library (disabled by default)')
Spyridon Mastorakis5ebfda62015-07-21 20:57:40 -070048 opt.add_option('--disable-static', action='store_false', default=False,
Davide Pesavento4b8eab72018-09-01 20:10:36 -040049 dest='enable_static', help='Do not build static library (disabled by default)')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080050
Spyridon Mastorakis5ebfda62015-07-21 20:57:40 -070051 opt.add_option('--enable-shared', action='store_true', default=True,
Davide Pesavento4b8eab72018-09-01 20:10:36 -040052 dest='enable_shared', help='Build shared library (enabled by default)')
Spyridon Mastorakis5ebfda62015-07-21 20:57:40 -070053 opt.add_option('--disable-shared', action='store_false', default=True,
Davide Pesavento4b8eab72018-09-01 20:10:36 -040054 dest='enable_shared', help='Do not build shared library (enabled by default)')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080055
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080056def configure(conf):
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080057 conf.start_msg('Building static library')
58 if conf.options.enable_static:
59 conf.end_msg('yes')
60 else:
61 conf.end_msg('no', color='YELLOW')
62 conf.env.enable_static = conf.options.enable_static
63
64 conf.start_msg('Building shared library')
65 if conf.options.enable_shared:
66 conf.end_msg('yes')
67 else:
68 conf.end_msg('no', color='YELLOW')
69 conf.env.enable_shared = conf.options.enable_shared
70
71 if not conf.options.enable_shared and not conf.options.enable_static:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -050072 conf.fatal('Either static library or shared library must be enabled')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080073
Davide Pesavento1349d2d2016-08-09 06:43:57 +020074 conf.load(['compiler_cxx', 'gnu_dirs', 'c_osx',
Davide Pesavento844b0932018-05-07 01:00:16 -040075 'default-compiler-flags', 'compiler-features',
Alexander Afanasyevadc71842017-01-26 22:17:58 -050076 'pch', 'osx-frameworks', 'boost', 'openssl', 'sqlite3',
Davide Pesavento1349d2d2016-08-09 06:43:57 +020077 'doxygen', 'sphinx_build'])
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080078
Davide Pesaventofd674012019-02-06 02:00:12 -050079 conf.env.WITH_TESTS = conf.options.with_tests
80 conf.env.WITH_TOOLS = conf.options.with_tools
81 conf.env.WITH_EXAMPLES = conf.options.with_examples
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080082
Alexander Afanasyev95de62e2014-04-11 18:26:33 -070083 conf.find_program('sh', var='SH', mandatory=True)
84
Davide Pesavento2bf35a62017-04-02 00:41:06 -040085 conf.check_cxx(lib='pthread', uselib_store='PTHREAD', define_name='HAVE_PTHREAD', mandatory=False)
Alexander Afanasyevfff47d62014-05-11 19:24:46 -070086 conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False)
Davide Pesavento50b92262018-07-11 12:28:31 -040087 conf.check_cxx(msg='Checking for function getpass', define_name='HAVE_GETPASS', mandatory=False,
Alexander Afanasyev5560fd42018-03-07 17:03:03 -050088 fragment='''#include <unistd.h>
89 int main() { getpass("Enter password"); }''')
Alexander Afanasyevfff47d62014-05-11 19:24:46 -070090
Davide Pesavento474c3b22018-08-25 16:24:43 -040091 if conf.check_cxx(msg='Checking for netlink', define_name='HAVE_NETLINK', mandatory=False,
Davide Pesavento2bf35a62017-04-02 00:41:06 -040092 header_name=['linux/if_addr.h', 'linux/if_link.h',
Davide Pesavento474c3b22018-08-25 16:24:43 -040093 'linux/netlink.h', 'linux/rtnetlink.h', 'linux/genetlink.h']):
Davide Pesaventofd674012019-02-06 02:00:12 -050094 conf.env.HAVE_NETLINK = True
Davide Pesavento50b92262018-07-11 12:28:31 -040095 conf.check_cxx(msg='Checking for NETLINK_EXT_ACK', define_name='HAVE_NETLINK_EXT_ACK', mandatory=False,
96 fragment='''#include <linux/netlink.h>
97 int main() { return NETLINK_EXT_ACK; }''')
Davide Pesavento2bf35a62017-04-02 00:41:06 -040098 conf.check_cxx(msg='Checking for IFA_FLAGS', define_name='HAVE_IFA_FLAGS', mandatory=False,
Davide Pesavento844b0932018-05-07 01:00:16 -040099 fragment='''#include <linux/if_addr.h>
100 int main() { return IFA_FLAGS; }''')
Alexander Afanasyev7b3080f2015-01-28 21:21:01 -0800101
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500102 conf.check_osx_frameworks()
Yingdi Yue6bfab22014-02-06 16:01:19 -0800103
Alexander Afanasyev1160baa2014-04-10 18:50:29 -0700104 conf.check_sqlite3(mandatory=True)
Davide Pesavento844b0932018-05-07 01:00:16 -0400105 conf.check_openssl(mandatory=True, atleast_version=0x1000200f) # 1.0.2
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800106
Davide Pesaventofd674012019-02-06 02:00:12 -0500107 boost_libs = ['system', 'filesystem', 'date_time', 'iostreams',
108 'program_options', 'chrono', 'thread', 'log', 'log_setup']
Junxiao Shi7d054272016-08-04 17:00:41 +0000109
Davide Pesaventofd674012019-02-06 02:00:12 -0500110 stacktrace_backend = conf.options.with_stacktrace
111 if stacktrace_backend is None:
112 # auto-detect
113 for candidate in ['backtrace', 'basic']:
114 try:
115 conf.check_boost(lib='stacktrace_%s' % candidate, mt=True)
116 except conf.errors.ConfigurationError:
117 continue
118 stacktrace_backend = candidate
119 break
120 if stacktrace_backend:
121 conf.env.HAVE_STACKTRACE = True
122 conf.env.append_unique('DEFINES_BOOST', ['BOOST_STACKTRACE_DYN_LINK'])
123 boost_libs.append('stacktrace_%s' % stacktrace_backend)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800124
Davide Pesaventofd674012019-02-06 02:00:12 -0500125 if conf.env.WITH_TESTS:
126 boost_libs.append('unit_test_framework')
127
128 conf.check_boost(lib=boost_libs, mt=True)
Davide Pesavento844b0932018-05-07 01:00:16 -0400129 if conf.env.BOOST_VERSION_NUMBER < 105800:
130 conf.fatal('Minimum required Boost version is 1.58.0\n'
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500131 'Please upgrade your distribution or manually install a newer version of Boost'
132 ' (https://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800133
Alexander Afanasyevb82d8c32017-09-21 11:35:07 -0400134 conf.check_compiler_flags()
135
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500136 # Loading "late" to prevent tests from being compiled with profiling flags
Alexander Afanasyev1160baa2014-04-10 18:50:29 -0700137 conf.load('coverage')
Eric Newberrya3973e02016-11-01 17:58:12 -0700138 conf.load('sanitizers')
139
Alexander Afanasyev224044f2016-07-18 10:45:08 +0200140 if not conf.env.enable_static:
141 # If there happens to be a static library, waf will put the corresponding -L flags
142 # before dynamic library flags. This can result in compilation failure when the
143 # system has a different version of the ndn-cxx library installed.
Davide Pesaventofd674012019-02-06 02:00:12 -0500144 conf.env.prepend_value('STLIBPATH', ['.'])
Alexander Afanasyev224044f2016-07-18 10:45:08 +0200145
Davide Pesaventofd674012019-02-06 02:00:12 -0500146 conf.define_cond('HAVE_STACKTRACE', conf.env.HAVE_STACKTRACE)
147 conf.define_cond('HAVE_TESTS', conf.env.WITH_TESTS)
148 conf.define_cond('WITH_OSX_KEYCHAIN', conf.env.HAVE_OSX_FRAMEWORKS and conf.options.with_osx_keychain)
149 conf.define_cond('DISABLE_SQLITE3_FS_LOCKING', not conf.options.with_sqlite_locking)
150 conf.define('SYSCONFDIR', conf.env.SYSCONFDIR)
151 # The config header will contain all defines that were added using conf.define()
152 # or conf.define_cond(). Everything that was added directly to conf.env.DEFINES
153 # will not appear in the config header, but will instead be passed directly to the
154 # compiler on the command line.
Junxiao Shid1fc9a72018-12-12 16:35:34 +0000155 conf.write_config_header('ndn-cxx/detail/config.hpp', define_prefix='NDN_CXX_')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800156
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700157def build(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700158 version(bld)
159
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500160 bld(features='subst',
161 name='version.hpp',
Davide Pesavento19442812018-11-23 14:00:04 -0500162 source='ndn-cxx/version.hpp.in',
163 target='ndn-cxx/version.hpp',
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700164 install_path=None,
165 VERSION_STRING=VERSION_BASE,
166 VERSION_BUILD=VERSION,
167 VERSION=int(VERSION_SPLIT[0]) * 1000000 +
168 int(VERSION_SPLIT[1]) * 1000 +
169 int(VERSION_SPLIT[2]),
170 VERSION_MAJOR=VERSION_SPLIT[0],
171 VERSION_MINOR=VERSION_SPLIT[1],
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200172 VERSION_PATCH=VERSION_SPLIT[2])
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700173
Davide Pesaventofd674012019-02-06 02:00:12 -0500174 if bld.env.HAVE_OSX_FRAMEWORKS:
Alexander Afanasyev7cd43ab2017-03-27 21:33:10 -0500175 # Need to disable precompiled headers for Objective-C++ code
176 bld(features=['cxx'],
Davide Pesavento19442812018-11-23 14:00:04 -0500177 target='ndn-cxx-mm-objects',
178 source=bld.path.ant_glob('ndn-cxx/**/*-osx.mm'),
179 use='BOOST PTHREAD OSX_COREFOUNDATION OSX_SECURITY OSX_SYSTEMCONFIGURATION OSX_FOUNDATION OSX_COREWLAN',
Davide Pesavento7e780642018-11-24 15:51:34 -0500180 includes='.')
Alexander Afanasyev7cd43ab2017-03-27 21:33:10 -0500181
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800182 libndn_cxx = dict(
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500183 target='ndn-cxx',
Davide Pesavento19442812018-11-23 14:00:04 -0500184 source=bld.path.ant_glob('ndn-cxx/**/*.cpp',
185 excl=['ndn-cxx/**/*-osx.cpp',
186 'ndn-cxx/**/*netlink*.cpp',
187 'ndn-cxx/**/*-sqlite3.cpp']),
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500188 features='pch',
Junxiao Shid1fc9a72018-12-12 16:35:34 +0000189 headers='ndn-cxx/impl/common-pch.hpp',
Davide Pesavento19442812018-11-23 14:00:04 -0500190 use='ndn-cxx-mm-objects version BOOST OPENSSL SQLITE3 RT PTHREAD',
Davide Pesavento7e780642018-11-24 15:51:34 -0500191 includes='.',
192 export_includes='.',
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200193 install_path='${LIBDIR}')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800194
Davide Pesaventofd674012019-02-06 02:00:12 -0500195 if bld.env.HAVE_OSX_FRAMEWORKS:
Davide Pesavento19442812018-11-23 14:00:04 -0500196 libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*-osx.cpp')
Davide Pesavento4b8eab72018-09-01 20:10:36 -0400197 libndn_cxx['use'] += ' OSX_COREFOUNDATION OSX_SECURITY OSX_SYSTEMCONFIGURATION OSX_FOUNDATION OSX_COREWLAN'
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500198
Davide Pesaventofd674012019-02-06 02:00:12 -0500199 if bld.env.HAVE_NETLINK:
Davide Pesavento19442812018-11-23 14:00:04 -0500200 libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*netlink*.cpp')
Davide Pesavento2bf35a62017-04-02 00:41:06 -0400201
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800202 # In case we want to make it optional later
Davide Pesavento19442812018-11-23 14:00:04 -0500203 libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*-sqlite3.cpp')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800204
205 if bld.env.enable_shared:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500206 bld.shlib(name='ndn-cxx',
207 vnum=VERSION_BASE,
208 cnum=VERSION_BASE,
209 **libndn_cxx)
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800210
211 if bld.env.enable_static:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500212 bld.stlib(name='ndn-cxx-static' if bld.env.enable_shared else 'ndn-cxx',
213 **libndn_cxx)
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800214
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700215 # Prepare flags that should go to pkgconfig file
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800216 pkgconfig_libs = []
217 pkgconfig_ldflags = []
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800218 pkgconfig_linkflags = []
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800219 pkgconfig_includes = []
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800220 pkgconfig_cxxflags = []
Alexander Afanasyev8fdae892019-02-10 16:40:48 -0500221 pkgconfig_defines = []
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800222 for lib in Utils.to_list(libndn_cxx['use']):
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800223 if bld.env['LIB_%s' % lib]:
224 pkgconfig_libs += Utils.to_list(bld.env['LIB_%s' % lib])
225 if bld.env['LIBPATH_%s' % lib]:
226 pkgconfig_ldflags += Utils.to_list(bld.env['LIBPATH_%s' % lib])
227 if bld.env['INCLUDES_%s' % lib]:
228 pkgconfig_includes += Utils.to_list(bld.env['INCLUDES_%s' % lib])
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800229 if bld.env['LINKFLAGS_%s' % lib]:
230 pkgconfig_linkflags += Utils.to_list(bld.env['LINKFLAGS_%s' % lib])
231 if bld.env['CXXFLAGS_%s' % lib]:
232 pkgconfig_cxxflags += Utils.to_list(bld.env['CXXFLAGS_%s' % lib])
Alexander Afanasyev8fdae892019-02-10 16:40:48 -0500233 if bld.env['DEFINES_%s' % lib]:
234 pkgconfig_defines += Utils.to_list(bld.env['DEFINES_%s' % lib])
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800235
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500236 EXTRA_FRAMEWORKS = ''
Davide Pesaventofd674012019-02-06 02:00:12 -0500237 if bld.env.HAVE_OSX_FRAMEWORKS:
Davide Pesavento4b8eab72018-09-01 20:10:36 -0400238 EXTRA_FRAMEWORKS = '-framework CoreFoundation -framework Security -framework SystemConfiguration -framework Foundation -framework CoreWLAN'
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800239
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800240 def uniq(alist):
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200241 seen = set()
242 return [x for x in alist if x not in seen and not seen.add(x)]
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800243
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500244 pkconfig = bld(features='subst',
245 source='libndn-cxx.pc.in',
246 target='libndn-cxx.pc',
247 install_path='${LIBDIR}/pkgconfig',
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700248 VERSION=VERSION_BASE,
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800249
250 # This probably not the right thing to do, but to simplify life of apps
251 # that use the library
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500252 EXTRA_LIBS=' '.join([('-l%s' % i) for i in uniq(pkgconfig_libs)]),
253 EXTRA_LDFLAGS=' '.join([('-L%s' % i) for i in uniq(pkgconfig_ldflags)]),
254 EXTRA_LINKFLAGS=' '.join(uniq(pkgconfig_linkflags)),
255 EXTRA_INCLUDES=' '.join([('-I%s' % i) for i in uniq(pkgconfig_includes)]),
Alexander Afanasyev8fdae892019-02-10 16:40:48 -0500256 EXTRA_CXXFLAGS=' '.join(uniq(pkgconfig_cxxflags)) + ' ' + ' '.join([('-D%s' % i) for i in uniq(pkgconfig_defines)]),
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200257 EXTRA_FRAMEWORKS=EXTRA_FRAMEWORKS)
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800258
Davide Pesaventofd674012019-02-06 02:00:12 -0500259 if bld.env.WITH_TESTS:
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800260 bld.recurse('tests')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800261
Davide Pesaventofd674012019-02-06 02:00:12 -0500262 if bld.env.WITH_TOOLS:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500263 bld.recurse('tools')
Alexander Afanasyevc8bcd452014-05-12 17:58:47 -0700264
Davide Pesaventofd674012019-02-06 02:00:12 -0500265 if bld.env.WITH_EXAMPLES:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500266 bld.recurse('examples')
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800267
Davide Pesavento19442812018-11-23 14:00:04 -0500268 headers = bld.path.ant_glob('ndn-cxx/**/*.hpp',
269 excl=['ndn-cxx/**/*-osx.hpp',
270 'ndn-cxx/**/*netlink*.hpp',
271 'ndn-cxx/**/*-sqlite3.hpp',
Junxiao Shi24c5a002018-12-12 04:47:15 +0000272 'ndn-cxx/**/impl/**/*'])
Davide Pesavento50b92262018-07-11 12:28:31 -0400273
Davide Pesaventofd674012019-02-06 02:00:12 -0500274 if bld.env.HAVE_OSX_FRAMEWORKS:
Junxiao Shi24c5a002018-12-12 04:47:15 +0000275 headers += bld.path.ant_glob('ndn-cxx/**/*-osx.hpp', excl='ndn-cxx/**/impl/**/*')
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500276
Davide Pesaventofd674012019-02-06 02:00:12 -0500277 if bld.env.HAVE_NETLINK:
Junxiao Shi24c5a002018-12-12 04:47:15 +0000278 headers += bld.path.ant_glob('ndn-cxx/**/*netlink*.hpp', excl='ndn-cxx/**/impl/**/*')
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500279
280 # In case we want to make it optional later
Junxiao Shi24c5a002018-12-12 04:47:15 +0000281 headers += bld.path.ant_glob('ndn-cxx/**/*-sqlite3.hpp', excl='ndn-cxx/**/impl/**/*')
Junxiao Shie30aaea2014-12-03 20:48:34 -0700282
Davide Pesaventofd674012019-02-06 02:00:12 -0500283 bld.install_files(bld.env.INCLUDEDIR, headers, relative_trick=True)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800284
Junxiao Shid1fc9a72018-12-12 16:35:34 +0000285 # Install generated headers
286 for filename in ['ndn-cxx/detail/config.hpp', 'ndn-cxx/version.hpp']:
Davide Pesaventofd674012019-02-06 02:00:12 -0500287 bld.install_files('%s/%s' % (bld.env.INCLUDEDIR, os.path.dirname(filename)),
Junxiao Shid1fc9a72018-12-12 16:35:34 +0000288 bld.path.find_resource(filename))
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700289
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500290 bld.install_files('${SYSCONFDIR}/ndn', 'client.conf.sample')
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600291
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500292 if bld.env.SPHINX_BUILD:
293 bld(features='sphinx',
294 name='manpages',
295 builder='man',
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500296 config='docs/conf.py',
Davide Pesavento4b8eab72018-09-01 20:10:36 -0400297 outdir='docs/manpages',
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700298 source=bld.path.ant_glob('docs/manpages/**/*.rst'),
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500299 install_path='${MANDIR}',
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700300 VERSION=VERSION)
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700301
302def docs(bld):
303 from waflib import Options
304 Options.commands = ['doxygen', 'sphinx'] + Options.commands
305
Alexander Afanasyev401a2362014-03-02 00:03:11 +0000306def doxygen(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700307 version(bld)
308
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800309 if not bld.env.DOXYGEN:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500310 bld.fatal('Cannot build documentation ("doxygen" not found in PATH)')
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700311
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500312 bld(features='subst',
313 name='doxygen.conf',
314 source=['docs/doxygen.conf.in',
315 'docs/named_data_theme/named_data_footer-with-analytics.html.in'],
316 target=['docs/doxygen.conf',
317 'docs/named_data_theme/named_data_footer-with-analytics.html'],
318 VERSION=VERSION,
319 HTML_FOOTER='../build/docs/named_data_theme/named_data_footer-with-analytics.html' \
320 if os.getenv('GOOGLE_ANALYTICS', None) \
321 else '../docs/named_data_theme/named_data_footer.html',
322 GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', ''))
323
324 bld(features='doxygen',
325 doxyfile='docs/doxygen.conf',
326 use='doxygen.conf')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800327
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700328def sphinx(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700329 version(bld)
330
Alexander Afanasyev1160baa2014-04-10 18:50:29 -0700331 if not bld.env.SPHINX_BUILD:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500332 bld.fatal('Cannot build documentation ("sphinx-build" not found in PATH)')
333
334 bld(features='sphinx',
335 config='docs/conf.py',
336 outdir='docs',
337 source=bld.path.ant_glob('docs/**/*.rst'),
338 VERSION=VERSION)
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700339
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700340def version(ctx):
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500341 # don't execute more than once
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700342 if getattr(Context.g_module, 'VERSION_BASE', None):
343 return
344
345 Context.g_module.VERSION_BASE = Context.g_module.VERSION
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500346 Context.g_module.VERSION_SPLIT = VERSION_BASE.split('.')
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700347
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500348 # first, try to get a version string from git
349 gotVersionFromGit = False
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700350 try:
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700351 cmd = ['git', 'describe', '--always', '--match', '%s*' % GIT_TAG_PREFIX]
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500352 out = subprocess.check_output(cmd, universal_newlines=True).strip()
353 if out:
354 gotVersionFromGit = True
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700355 if out.startswith(GIT_TAG_PREFIX):
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500356 Context.g_module.VERSION = out.lstrip(GIT_TAG_PREFIX)
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700357 else:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500358 # no tags matched
359 Context.g_module.VERSION = '%s-commit-%s' % (VERSION_BASE, out)
Davide Pesavento21be8162018-05-10 20:36:37 -0400360 except (OSError, subprocess.CalledProcessError):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700361 pass
362
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700363 versionFile = ctx.path.find_node('VERSION')
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500364 if not gotVersionFromGit and versionFile is not None:
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700365 try:
366 Context.g_module.VERSION = versionFile.read()
367 return
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500368 except EnvironmentError:
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700369 pass
370
371 # version was obtained from git, update VERSION file if necessary
372 if versionFile is not None:
373 try:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500374 if versionFile.read() == Context.g_module.VERSION:
375 # already up-to-date
376 return
377 except EnvironmentError as e:
378 Logs.warn('%s exists but is not readable (%s)' % (versionFile, e.strerror))
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700379 else:
380 versionFile = ctx.path.make_node('VERSION')
381
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700382 try:
383 versionFile.write(Context.g_module.VERSION)
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500384 except EnvironmentError as e:
385 Logs.warn('%s is not writable (%s)' % (versionFile, e.strerror))
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700386
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700387def dist(ctx):
388 version(ctx)
389
390def distcheck(ctx):
391 version(ctx)