blob: af7203e1503e64b82b0c08d92458299ff160d3f5 [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
Davide Pesavento81de5d92022-12-30 01:08:05 -05006VERSION = '0.8.1'
Alexander Afanasyev5560fd42018-03-07 17:03:03 -05007APPNAME = 'ndn-cxx'
Alexander Afanasyev5560fd42018-03-07 17:03:03 -05008GIT_TAG_PREFIX = 'ndn-cxx-'
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -07009
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080010def options(opt):
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070011 opt.load(['compiler_cxx', 'gnu_dirs', 'c_osx'])
Davide Pesavento869d1a32023-03-14 23:55:02 -040012 opt.load(['cross', 'default-compiler-flags', 'pch',
13 'coverage', 'sanitizers', 'osx-frameworks',
Alexander Afanasyevadc71842017-01-26 22:17:58 -050014 'boost', 'openssl', 'sqlite3',
Davide Pesavento1349d2d2016-08-09 06:43:57 +020015 'doxygen', 'sphinx_build'],
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070016 tooldir=['.waf-tools'])
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080017
Davide Pesavento77f1c762019-02-19 03:20:49 -050018 opt = opt.add_option_group('ndn-cxx Options')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080019
Spyridon Mastorakis5ebfda62015-07-21 20:57:40 -070020 opt.add_option('--enable-static', action='store_true', default=False,
Davide Pesavento4b8eab72018-09-01 20:10:36 -040021 dest='enable_static', help='Build static library (disabled by default)')
Spyridon Mastorakis5ebfda62015-07-21 20:57:40 -070022 opt.add_option('--disable-static', action='store_false', default=False,
Davide Pesavento4b8eab72018-09-01 20:10:36 -040023 dest='enable_static', help='Do not build static library (disabled by default)')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080024
Spyridon Mastorakis5ebfda62015-07-21 20:57:40 -070025 opt.add_option('--enable-shared', action='store_true', default=True,
Davide Pesavento4b8eab72018-09-01 20:10:36 -040026 dest='enable_shared', help='Build shared library (enabled by default)')
Spyridon Mastorakis5ebfda62015-07-21 20:57:40 -070027 opt.add_option('--disable-shared', action='store_false', default=True,
Davide Pesavento4b8eab72018-09-01 20:10:36 -040028 dest='enable_shared', help='Do not build shared library (enabled by default)')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080029
Davide Pesavento77f1c762019-02-19 03:20:49 -050030 opt.add_option('--without-osx-keychain', action='store_false', default=True,
31 dest='with_osx_keychain', help='Do not use macOS Keychain as default TPM (macOS only)')
32
33 opt.add_option('--without-sqlite-locking', action='store_false', default=True, dest='with_sqlite_locking',
34 help='Disable filesystem locking in sqlite3 database '
35 '(use unix-dot locking mechanism instead). '
36 'This option may be necessary if the home directory is hosted on NFS.')
37
38 stacktrace_choices = ['backtrace', 'addr2line', 'basic', 'noop']
39 opt.add_option('--with-stacktrace', action='store', default=None, choices=stacktrace_choices,
40 help='Select the stacktrace backend implementation: '
41 '%s [default=auto-detect]' % ', '.join(stacktrace_choices))
42 opt.add_option('--without-stacktrace', action='store_const', const='', dest='with_stacktrace',
43 help='Disable stacktrace support')
44
45 opt.add_option('--with-examples', action='store_true', default=False,
46 help='Build examples')
47
48 opt.add_option('--with-tests', action='store_true', default=False,
49 help='Build tests')
50
51 opt.add_option('--without-tools', action='store_false', default=True, dest='with_tools',
52 help='Do not build tools')
53
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080054def configure(conf):
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080055 conf.start_msg('Building static library')
56 if conf.options.enable_static:
57 conf.end_msg('yes')
58 else:
59 conf.end_msg('no', color='YELLOW')
60 conf.env.enable_static = conf.options.enable_static
61
62 conf.start_msg('Building shared library')
63 if conf.options.enable_shared:
64 conf.end_msg('yes')
65 else:
66 conf.end_msg('no', color='YELLOW')
67 conf.env.enable_shared = conf.options.enable_shared
68
69 if not conf.options.enable_shared and not conf.options.enable_static:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -050070 conf.fatal('Either static library or shared library must be enabled')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080071
Davide Pesavento869d1a32023-03-14 23:55:02 -040072 conf.load(['compiler_cxx', 'gnu_dirs', 'c_osx',
73 'cross', 'default-compiler-flags', 'pch',
74 'osx-frameworks', 'boost', 'openssl', 'sqlite3',
Davide Pesavento1349d2d2016-08-09 06:43:57 +020075 'doxygen', 'sphinx_build'])
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080076
Davide Pesaventofd674012019-02-06 02:00:12 -050077 conf.env.WITH_TESTS = conf.options.with_tests
78 conf.env.WITH_TOOLS = conf.options.with_tools
79 conf.env.WITH_EXAMPLES = conf.options.with_examples
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080080
Davide Pesavento2d7c5852022-07-18 16:02:52 -040081 conf.find_program('dot', mandatory=False)
Alexander Afanasyev95de62e2014-04-11 18:26:33 -070082
Eric Newberry96033252020-04-10 13:08:27 -070083 conf.check_cxx(lib='atomic', uselib_store='ATOMIC', define_name='HAVE_ATOMIC', mandatory=False)
Davide Pesavento2bf35a62017-04-02 00:41:06 -040084 conf.check_cxx(lib='pthread', uselib_store='PTHREAD', define_name='HAVE_PTHREAD', mandatory=False)
Alexander Afanasyevfff47d62014-05-11 19:24:46 -070085 conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False)
Davide Pesavento78338c52020-04-20 23:00:02 -040086
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()
Davide Pesavento77f1c762019-02-19 03:20:49 -0500103 conf.check_sqlite3()
Davide Pesavento273ea012022-02-20 17:50:02 -0500104 conf.check_openssl(lib='crypto', atleast_version='1.1.1')
Yingdi Yue6bfab22014-02-06 16:01:19 -0800105
Davide Pesavento77f1c762019-02-19 03:20:49 -0500106 boost_libs = ['system', 'program_options', 'chrono', 'date_time', 'filesystem', 'thread', 'log']
Junxiao Shi7d054272016-08-04 17:00:41 +0000107
Davide Pesaventofd674012019-02-06 02:00:12 -0500108 stacktrace_backend = conf.options.with_stacktrace
109 if stacktrace_backend is None:
110 # auto-detect
Davide Pesaventof3089c32021-05-25 21:28:21 -0400111 for candidate in ('backtrace', 'basic'):
Davide Pesaventofd674012019-02-06 02:00:12 -0500112 try:
Davide Pesaventoc9967422023-09-07 22:04:34 -0400113 conf.check_boost(lib=f'stacktrace_{candidate}', mt=True)
Davide Pesaventofd674012019-02-06 02:00:12 -0500114 except conf.errors.ConfigurationError:
115 continue
116 stacktrace_backend = candidate
117 break
118 if stacktrace_backend:
119 conf.env.HAVE_STACKTRACE = True
120 conf.env.append_unique('DEFINES_BOOST', ['BOOST_STACKTRACE_DYN_LINK'])
Davide Pesaventoc9967422023-09-07 22:04:34 -0400121 boost_libs.append(f'stacktrace_{stacktrace_backend}')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800122
Davide Pesaventofd674012019-02-06 02:00:12 -0500123 if conf.env.WITH_TESTS:
124 boost_libs.append('unit_test_framework')
125
126 conf.check_boost(lib=boost_libs, mt=True)
Davide Pesavento541a8222022-03-01 15:08:42 -0500127 if conf.env.BOOST_VERSION_NUMBER < 106501:
Davide Pesavento78338c52020-04-20 23:00:02 -0400128 conf.fatal('The minimum supported version of Boost is 1.65.1.\n'
129 'Please upgrade your distribution or manually install a newer version of Boost.\n'
130 'For more information, see https://redmine.named-data.net/projects/nfd/wiki/Boost')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800131
Davide Pesaventofc27d3b2019-03-02 00:47:35 -0500132 # Workaround for bug 4860
133 if conf.env.BOOST_VERSION_NUMBER < 106900 and conf.env.CXX_NAME == 'clang':
134 conf.env.append_unique('DEFINES_BOOST', ['BOOST_ASIO_DISABLE_STD_EXPERIMENTAL_STRING_VIEW'])
135
Davide Pesaventod8e0cad2021-05-26 21:43:47 -0400136 conf.env.append_unique('DEFINES_BOOST', ['BOOST_FILESYSTEM_NO_DEPRECATED'])
137
Alexander Afanasyevb82d8c32017-09-21 11:35:07 -0400138 conf.check_compiler_flags()
139
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500140 # Loading "late" to prevent tests from being compiled with profiling flags
Alexander Afanasyev1160baa2014-04-10 18:50:29 -0700141 conf.load('coverage')
Eric Newberrya3973e02016-11-01 17:58:12 -0700142 conf.load('sanitizers')
143
Alexander Afanasyev224044f2016-07-18 10:45:08 +0200144 if not conf.env.enable_static:
145 # If there happens to be a static library, waf will put the corresponding -L flags
146 # before dynamic library flags. This can result in compilation failure when the
147 # system has a different version of the ndn-cxx library installed.
Davide Pesaventofd674012019-02-06 02:00:12 -0500148 conf.env.prepend_value('STLIBPATH', ['.'])
Alexander Afanasyev224044f2016-07-18 10:45:08 +0200149
Davide Pesaventofd674012019-02-06 02:00:12 -0500150 conf.define_cond('HAVE_STACKTRACE', conf.env.HAVE_STACKTRACE)
151 conf.define_cond('HAVE_TESTS', conf.env.WITH_TESTS)
152 conf.define_cond('WITH_OSX_KEYCHAIN', conf.env.HAVE_OSX_FRAMEWORKS and conf.options.with_osx_keychain)
153 conf.define_cond('DISABLE_SQLITE3_FS_LOCKING', not conf.options.with_sqlite_locking)
154 conf.define('SYSCONFDIR', conf.env.SYSCONFDIR)
155 # The config header will contain all defines that were added using conf.define()
156 # or conf.define_cond(). Everything that was added directly to conf.env.DEFINES
157 # will not appear in the config header, but will instead be passed directly to the
158 # compiler on the command line.
Junxiao Shid1fc9a72018-12-12 16:35:34 +0000159 conf.write_config_header('ndn-cxx/detail/config.hpp', define_prefix='NDN_CXX_')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800160
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700161def build(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700162 version(bld)
163
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500164 bld(features='subst',
165 name='version.hpp',
Davide Pesavento19442812018-11-23 14:00:04 -0500166 source='ndn-cxx/version.hpp.in',
167 target='ndn-cxx/version.hpp',
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700168 install_path=None,
169 VERSION_STRING=VERSION_BASE,
170 VERSION_BUILD=VERSION,
171 VERSION=int(VERSION_SPLIT[0]) * 1000000 +
172 int(VERSION_SPLIT[1]) * 1000 +
173 int(VERSION_SPLIT[2]),
174 VERSION_MAJOR=VERSION_SPLIT[0],
175 VERSION_MINOR=VERSION_SPLIT[1],
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200176 VERSION_PATCH=VERSION_SPLIT[2])
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700177
Davide Pesaventofd674012019-02-06 02:00:12 -0500178 if bld.env.HAVE_OSX_FRAMEWORKS:
Alexander Afanasyev7cd43ab2017-03-27 21:33:10 -0500179 # Need to disable precompiled headers for Objective-C++ code
Davide Pesavento25d4f1c2020-04-29 23:31:04 -0400180 bld(features='cxx',
Davide Pesavento19442812018-11-23 14:00:04 -0500181 target='ndn-cxx-mm-objects',
182 source=bld.path.ant_glob('ndn-cxx/**/*-osx.mm'),
183 use='BOOST PTHREAD OSX_COREFOUNDATION OSX_SECURITY OSX_SYSTEMCONFIGURATION OSX_FOUNDATION OSX_COREWLAN',
Davide Pesavento7e780642018-11-24 15:51:34 -0500184 includes='.')
Alexander Afanasyev7cd43ab2017-03-27 21:33:10 -0500185
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800186 libndn_cxx = dict(
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500187 target='ndn-cxx',
Davide Pesavento19442812018-11-23 14:00:04 -0500188 source=bld.path.ant_glob('ndn-cxx/**/*.cpp',
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400189 excl=['ndn-cxx/**/*-android.cpp',
190 'ndn-cxx/**/*-osx.cpp',
191 'ndn-cxx/**/*-sqlite3.cpp',
192 'ndn-cxx/**/*netlink*.cpp']),
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500193 features='pch',
Junxiao Shid1fc9a72018-12-12 16:35:34 +0000194 headers='ndn-cxx/impl/common-pch.hpp',
Eric Newberry96033252020-04-10 13:08:27 -0700195 use='ndn-cxx-mm-objects version BOOST OPENSSL SQLITE3 ATOMIC RT PTHREAD',
Davide Pesavento7e780642018-11-24 15:51:34 -0500196 includes='.',
197 export_includes='.',
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200198 install_path='${LIBDIR}')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800199
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400200 if bld.env.HOST == 'android':
201 libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*-android.cpp')
202
Davide Pesaventofd674012019-02-06 02:00:12 -0500203 if bld.env.HAVE_OSX_FRAMEWORKS:
Davide Pesavento19442812018-11-23 14:00:04 -0500204 libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*-osx.cpp')
Davide Pesavento4b8eab72018-09-01 20:10:36 -0400205 libndn_cxx['use'] += ' OSX_COREFOUNDATION OSX_SECURITY OSX_SYSTEMCONFIGURATION OSX_FOUNDATION OSX_COREWLAN'
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500206
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800207 # In case we want to make it optional later
Davide Pesavento19442812018-11-23 14:00:04 -0500208 libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*-sqlite3.cpp')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800209
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400210 if bld.env.HAVE_NETLINK:
211 libndn_cxx['source'] += bld.path.ant_glob('ndn-cxx/**/*netlink*.cpp')
212
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800213 if bld.env.enable_shared:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500214 bld.shlib(name='ndn-cxx',
215 vnum=VERSION_BASE,
216 cnum=VERSION_BASE,
217 **libndn_cxx)
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800218
219 if bld.env.enable_static:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500220 bld.stlib(name='ndn-cxx-static' if bld.env.enable_shared else 'ndn-cxx',
221 **libndn_cxx)
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800222
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700223 # Prepare flags that should go to pkgconfig file
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800224 pkgconfig_libs = []
225 pkgconfig_ldflags = []
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800226 pkgconfig_linkflags = []
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800227 pkgconfig_includes = []
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800228 pkgconfig_cxxflags = []
Alexander Afanasyev8fdae892019-02-10 16:40:48 -0500229 pkgconfig_defines = []
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800230 for lib in Utils.to_list(libndn_cxx['use']):
Davide Pesaventoc9967422023-09-07 22:04:34 -0400231 if bld.env[f'LIB_{lib}']:
232 pkgconfig_libs += Utils.to_list(bld.env[f'LIB_{lib}'])
233 if bld.env[f'LIBPATH_{lib}']:
234 pkgconfig_ldflags += Utils.to_list(bld.env[f'LIBPATH_{lib}'])
235 if bld.env[f'INCLUDES_{lib}']:
236 pkgconfig_includes += Utils.to_list(bld.env[f'INCLUDES_{lib}'])
237 if bld.env[f'LINKFLAGS_{lib}']:
238 pkgconfig_linkflags += Utils.to_list(bld.env[f'LINKFLAGS_{lib}'])
239 if bld.env[f'CXXFLAGS_{lib}']:
240 pkgconfig_cxxflags += Utils.to_list(bld.env[f'CXXFLAGS_{lib}'])
241 if bld.env[f'DEFINES_{lib}']:
242 pkgconfig_defines += Utils.to_list(bld.env[f'DEFINES_{lib}'])
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800243
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500244 EXTRA_FRAMEWORKS = ''
Davide Pesaventofd674012019-02-06 02:00:12 -0500245 if bld.env.HAVE_OSX_FRAMEWORKS:
Davide Pesavento4b8eab72018-09-01 20:10:36 -0400246 EXTRA_FRAMEWORKS = '-framework CoreFoundation -framework Security -framework SystemConfiguration -framework Foundation -framework CoreWLAN'
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800247
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800248 def uniq(alist):
Davide Pesaventoc9967422023-09-07 22:04:34 -0400249 return list(dict.fromkeys(alist))
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800250
Davide Pesaventoc9967422023-09-07 22:04:34 -0400251 bld(features='subst',
252 source='libndn-cxx.pc.in',
253 target='libndn-cxx.pc',
254 install_path='${LIBDIR}/pkgconfig',
255 VERSION=VERSION_BASE,
256 # This probably not the right thing to do, but to simplify life of apps
257 # that use the library
258 EXTRA_LIBS=' '.join([f'-l{i}' for i in uniq(pkgconfig_libs)]),
259 EXTRA_LDFLAGS=' '.join([f'-L{i}' for i in uniq(pkgconfig_ldflags)]),
260 EXTRA_LINKFLAGS=' '.join(uniq(pkgconfig_linkflags)),
261 EXTRA_INCLUDES=' '.join([f'-I{i}' for i in uniq(pkgconfig_includes)]),
262 EXTRA_CXXFLAGS=' '.join(uniq(pkgconfig_cxxflags) + [f'-D{i}' for i in uniq(pkgconfig_defines)]),
263 EXTRA_FRAMEWORKS=EXTRA_FRAMEWORKS)
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800264
Davide Pesaventofd674012019-02-06 02:00:12 -0500265 if bld.env.WITH_TESTS:
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800266 bld.recurse('tests')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800267
Davide Pesaventofd674012019-02-06 02:00:12 -0500268 if bld.env.WITH_TOOLS:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500269 bld.recurse('tools')
Alexander Afanasyevc8bcd452014-05-12 17:58:47 -0700270
Davide Pesaventofd674012019-02-06 02:00:12 -0500271 if bld.env.WITH_EXAMPLES:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500272 bld.recurse('examples')
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800273
Davide Pesavento19442812018-11-23 14:00:04 -0500274 headers = bld.path.ant_glob('ndn-cxx/**/*.hpp',
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400275 excl=['ndn-cxx/**/*-android.hpp',
276 'ndn-cxx/**/*-osx.hpp',
Davide Pesavento19442812018-11-23 14:00:04 -0500277 'ndn-cxx/**/*-sqlite3.hpp',
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400278 'ndn-cxx/**/*netlink*.hpp',
Junxiao Shi24c5a002018-12-12 04:47:15 +0000279 'ndn-cxx/**/impl/**/*'])
Davide Pesavento50b92262018-07-11 12:28:31 -0400280
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400281 if bld.env.HOST == 'android':
282 headers += bld.path.ant_glob('ndn-cxx/**/*-android.hpp', excl='ndn-cxx/**/impl/**/*')
283
Davide Pesaventofd674012019-02-06 02:00:12 -0500284 if bld.env.HAVE_OSX_FRAMEWORKS:
Junxiao Shi24c5a002018-12-12 04:47:15 +0000285 headers += bld.path.ant_glob('ndn-cxx/**/*-osx.hpp', excl='ndn-cxx/**/impl/**/*')
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500286
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500287 # In case we want to make it optional later
Junxiao Shi24c5a002018-12-12 04:47:15 +0000288 headers += bld.path.ant_glob('ndn-cxx/**/*-sqlite3.hpp', excl='ndn-cxx/**/impl/**/*')
Junxiao Shie30aaea2014-12-03 20:48:34 -0700289
Alexander Afanasyev39535f42019-07-05 22:07:52 -0400290 if bld.env.HAVE_NETLINK:
291 headers += bld.path.ant_glob('ndn-cxx/**/*netlink*.hpp', excl='ndn-cxx/**/impl/**/*')
292
Davide Pesaventof3089c32021-05-25 21:28:21 -0400293 bld.install_files('${INCLUDEDIR}', headers, relative_trick=True)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800294
Junxiao Shid1fc9a72018-12-12 16:35:34 +0000295 # Install generated headers
Davide Pesaventof3089c32021-05-25 21:28:21 -0400296 for filename in ('ndn-cxx/detail/config.hpp', 'ndn-cxx/version.hpp'):
297 bld.install_files('${INCLUDEDIR}/%s' % os.path.dirname(filename),
Junxiao Shid1fc9a72018-12-12 16:35:34 +0000298 bld.path.find_resource(filename))
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700299
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500300 bld.install_files('${SYSCONFDIR}/ndn', 'client.conf.sample')
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600301
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500302 if bld.env.SPHINX_BUILD:
303 bld(features='sphinx',
304 name='manpages',
305 builder='man',
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500306 config='docs/conf.py',
Davide Pesavento4b8eab72018-09-01 20:10:36 -0400307 outdir='docs/manpages',
Davide Pesaventob310efb2019-04-11 22:10:24 -0400308 source=bld.path.ant_glob('docs/manpages/*.rst'),
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500309 install_path='${MANDIR}',
Davide Pesaventob310efb2019-04-11 22:10:24 -0400310 version=VERSION_BASE,
311 release=VERSION)
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700312
313def docs(bld):
314 from waflib import Options
315 Options.commands = ['doxygen', 'sphinx'] + Options.commands
316
Alexander Afanasyev401a2362014-03-02 00:03:11 +0000317def doxygen(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700318 version(bld)
319
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800320 if not bld.env.DOXYGEN:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500321 bld.fatal('Cannot build documentation ("doxygen" not found in PATH)')
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700322
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500323 bld(features='subst',
324 name='doxygen.conf',
325 source=['docs/doxygen.conf.in',
326 'docs/named_data_theme/named_data_footer-with-analytics.html.in'],
327 target=['docs/doxygen.conf',
328 'docs/named_data_theme/named_data_footer-with-analytics.html'],
329 VERSION=VERSION,
Davide Pesaventodbe645f2021-04-16 00:42:52 -0400330 HAVE_DOT='YES' if bld.env.DOT else 'NO',
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500331 HTML_FOOTER='../build/docs/named_data_theme/named_data_footer-with-analytics.html' \
332 if os.getenv('GOOGLE_ANALYTICS', None) \
333 else '../docs/named_data_theme/named_data_footer.html',
334 GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', ''))
335
336 bld(features='doxygen',
337 doxyfile='docs/doxygen.conf',
338 use='doxygen.conf')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800339
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700340def sphinx(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700341 version(bld)
342
Alexander Afanasyev1160baa2014-04-10 18:50:29 -0700343 if not bld.env.SPHINX_BUILD:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500344 bld.fatal('Cannot build documentation ("sphinx-build" not found in PATH)')
345
346 bld(features='sphinx',
347 config='docs/conf.py',
348 outdir='docs',
349 source=bld.path.ant_glob('docs/**/*.rst'),
Davide Pesaventob310efb2019-04-11 22:10:24 -0400350 version=VERSION_BASE,
351 release=VERSION)
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700352
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700353def version(ctx):
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500354 # don't execute more than once
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700355 if getattr(Context.g_module, 'VERSION_BASE', None):
356 return
357
358 Context.g_module.VERSION_BASE = Context.g_module.VERSION
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500359 Context.g_module.VERSION_SPLIT = VERSION_BASE.split('.')
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700360
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500361 # first, try to get a version string from git
362 gotVersionFromGit = False
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700363 try:
Davide Pesaventoc9967422023-09-07 22:04:34 -0400364 cmd = ['git', 'describe', '--always', '--match', f'{GIT_TAG_PREFIX}*']
365 out = subprocess.run(cmd, capture_output=True, check=True, text=True).stdout.strip()
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500366 if out:
367 gotVersionFromGit = True
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700368 if out.startswith(GIT_TAG_PREFIX):
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500369 Context.g_module.VERSION = out.lstrip(GIT_TAG_PREFIX)
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700370 else:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500371 # no tags matched
Davide Pesaventoc9967422023-09-07 22:04:34 -0400372 Context.g_module.VERSION = f'{VERSION_BASE}-commit-{out}'
373 except (OSError, subprocess.SubprocessError):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700374 pass
375
Alexander Afanasyev3de8aac2020-05-28 20:51:43 -0400376 versionFile = ctx.path.find_node('VERSION.info')
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500377 if not gotVersionFromGit and versionFile is not None:
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700378 try:
379 Context.g_module.VERSION = versionFile.read()
380 return
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500381 except EnvironmentError:
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700382 pass
383
384 # version was obtained from git, update VERSION file if necessary
385 if versionFile is not None:
386 try:
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500387 if versionFile.read() == Context.g_module.VERSION:
388 # already up-to-date
389 return
390 except EnvironmentError as e:
Davide Pesaventoc9967422023-09-07 22:04:34 -0400391 Logs.warn(f'{versionFile} exists but is not readable ({e.strerror})')
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700392 else:
Alexander Afanasyev3de8aac2020-05-28 20:51:43 -0400393 versionFile = ctx.path.make_node('VERSION.info')
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700394
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700395 try:
396 versionFile.write(Context.g_module.VERSION)
Alexander Afanasyev5560fd42018-03-07 17:03:03 -0500397 except EnvironmentError as e:
Davide Pesaventoc9967422023-09-07 22:04:34 -0400398 Logs.warn(f'{versionFile} is not writable ({e.strerror})')
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700399
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700400def dist(ctx):
Davide Pesaventoae39daf2023-02-14 23:46:46 -0500401 ctx.algo = 'tar.xz'
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700402 version(ctx)
403
404def distcheck(ctx):
Davide Pesaventoae39daf2023-02-14 23:46:46 -0500405 ctx.algo = 'tar.xz'
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700406 version(ctx)