blob: 0d5a9c4df828272979424c6c211250a26f206e87 [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 Afanasyevcfe0b062014-05-08 18:26:50 -07003from waflib import Logs, Utils, Context
4import os
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -07005
Alexander Afanasyevaa8b3782017-01-19 20:04:31 -08006VERSION = "0.5.1"
Alexander Afanasyev766cea72014-04-24 19:16:42 -07007APPNAME = "ndn-cxx"
Davide Pesavento0530b5b2016-11-07 03:23:58 +01008PACKAGE_BUGREPORT = "https://redmine.named-data.net/projects/ndn-cxx"
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -07009PACKAGE_URL = "http://named-data.net/doc/ndn-cxx/"
Alexander Afanasyev6c632302014-10-31 12:34:11 -070010GIT_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 Pesavento1349d2d2016-08-09 06:43:57 +020014 opt.load(['default-compiler-flags', 'compiler-features', 'type_traits',
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -050015 'coverage', 'pch', 'sanitizers', 'osx-frameworks',
Davide Pesavento1349d2d2016-08-09 06:43:57 +020016 'boost', 'cryptopp', 'openssl', 'sqlite3',
17 '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
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070022 opt.add_option('--with-tests', action='store_true', default=False, dest='with_tests',
Alexander Afanasyev224044f2016-07-18 10:45:08 +020023 help='''Build unit tests''')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080024
Yingdi Yue6bfab22014-02-06 16:01:19 -080025 opt.add_option('--without-tools', action='store_false', default=True, dest='with_tools',
26 help='''Do not build tools''')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080027
Alexander Afanasyevc8bcd452014-05-12 17:58:47 -070028 opt.add_option('--with-examples', action='store_true', default=False, dest='with_examples',
29 help='''Build examples''')
30
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070031 opt.add_option('--without-sqlite-locking', action='store_false', default=True,
32 dest='with_sqlite_locking',
33 help='''Disable filesystem locking in sqlite3 database '''
34 '''(use unix-dot locking mechanism instead). '''
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -080035 '''This option may be necessary if home directory is hosted on NFS.''')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080036
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070037 opt.add_option('--without-osx-keychain', action='store_false', default=True,
38 dest='with_osx_keychain',
Alexander Afanasyev3e08d5d2014-02-12 19:24:28 -080039 help='''On Darwin, do not use OSX keychain as a default TPM''')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080040
Spyridon Mastorakis5ebfda62015-07-21 20:57:40 -070041 opt.add_option('--enable-static', action='store_true', default=False,
42 dest='enable_static', help='''Build static library (disabled by default)''')
43 opt.add_option('--disable-static', action='store_false', default=False,
44 dest='enable_static', help='''Do not build static library (disabled by default)''')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080045
Spyridon Mastorakis5ebfda62015-07-21 20:57:40 -070046 opt.add_option('--enable-shared', action='store_true', default=True,
47 dest='enable_shared', help='''Build shared library (enabled by default)''')
48 opt.add_option('--disable-shared', action='store_false', default=True,
49 dest='enable_shared', help='''Do not build shared library (enabled by default)''')
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080050
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080051def configure(conf):
Alexander Afanasyev5519cc72015-03-01 14:25:03 -080052 conf.start_msg('Building static library')
53 if conf.options.enable_static:
54 conf.end_msg('yes')
55 else:
56 conf.end_msg('no', color='YELLOW')
57 conf.env.enable_static = conf.options.enable_static
58
59 conf.start_msg('Building shared library')
60 if conf.options.enable_shared:
61 conf.end_msg('yes')
62 else:
63 conf.end_msg('no', color='YELLOW')
64 conf.env.enable_shared = conf.options.enable_shared
65
66 if not conf.options.enable_shared and not conf.options.enable_static:
67 conf.fatal("Either static library or shared library must be enabled")
68
Davide Pesavento1349d2d2016-08-09 06:43:57 +020069 conf.load(['compiler_cxx', 'gnu_dirs', 'c_osx',
70 'default-compiler-flags', 'compiler-features', 'type_traits',
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -050071 'pch', 'osx-frameworks', 'boost', 'cryptopp', 'openssl', 'sqlite3',
Davide Pesavento1349d2d2016-08-09 06:43:57 +020072 'doxygen', 'sphinx_build'])
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080073
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070074 conf.env['WITH_TESTS'] = conf.options.with_tests
75 conf.env['WITH_TOOLS'] = conf.options.with_tools
Alexander Afanasyevc8bcd452014-05-12 17:58:47 -070076 conf.env['WITH_EXAMPLES'] = conf.options.with_examples
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080077
Alexander Afanasyev95de62e2014-04-11 18:26:33 -070078 conf.find_program('sh', var='SH', mandatory=True)
79
Davide Pesavento2bf35a62017-04-02 00:41:06 -040080 conf.check_cxx(lib='pthread', uselib_store='PTHREAD', define_name='HAVE_PTHREAD', mandatory=False)
Alexander Afanasyevfff47d62014-05-11 19:24:46 -070081 conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False)
Davide Pesavento2bf35a62017-04-02 00:41:06 -040082 conf.check_cxx(function_name='getpass', header_name='unistd.h', mandatory=False)
Alexander Afanasyevfff47d62014-05-11 19:24:46 -070083
Davide Pesavento2bf35a62017-04-02 00:41:06 -040084 if conf.check_cxx(msg='Checking for rtnetlink', define_name='HAVE_RTNETLINK', mandatory=False,
85 header_name=['linux/if_addr.h', 'linux/if_link.h',
86 'linux/netlink.h', 'linux/rtnetlink.h']):
87 conf.env['HAVE_RTNETLINK'] = True
88 conf.check_cxx(msg='Checking for IFA_FLAGS', define_name='HAVE_IFA_FLAGS', mandatory=False,
89 fragment='''
90 #include <linux/if_addr.h>
91 int main() { return IFA_FLAGS; }
92 ''')
Alexander Afanasyev7b3080f2015-01-28 21:21:01 -080093
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -050094 conf.check_osx_frameworks()
Yingdi Yue6bfab22014-02-06 16:01:19 -080095
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070096 conf.check_sqlite3(mandatory=True)
Alexander Afanasyevfff47d62014-05-11 19:24:46 -070097 conf.check_cryptopp(mandatory=True, use='PTHREAD')
Yingdi Yub3015bd2015-06-23 23:21:53 -070098 conf.check_openssl(mandatory=True, atleast_version=0x10001000) # 1.0.1
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080099
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700100 USED_BOOST_LIBS = ['system', 'filesystem', 'date_time', 'iostreams',
Davide Pesavento1cd9f6e2016-10-08 00:26:36 +0200101 'regex', 'program_options', 'chrono', 'thread',
102 'log', 'log_setup']
Junxiao Shi7d054272016-08-04 17:00:41 +0000103
Alexander Afanasyevdafdc372014-03-03 15:58:44 +0000104 if conf.env['WITH_TESTS']:
105 USED_BOOST_LIBS += ['unit_test_framework']
Yingdi Yuf56c68f2014-04-24 21:50:13 -0700106 conf.define('HAVE_TESTS', 1)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800107
Junxiao Shi7d054272016-08-04 17:00:41 +0000108 conf.check_boost(lib=USED_BOOST_LIBS, mandatory=True, mt=True)
Davide Pesaventoe6e6fde2016-04-16 14:44:45 +0200109 if conf.env.BOOST_VERSION_NUMBER < 105400:
110 Logs.error("Minimum required boost version is 1.54.0")
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700111 Logs.error("Please upgrade your distribution or install custom boost libraries" +
Davide Pesavento81bf95c2017-05-27 14:23:08 -0400112 " (https://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)")
Alexander Afanasyevdafdc372014-03-03 15:58:44 +0000113 return
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800114
Davide Pesavento81bf95c2017-05-27 14:23:08 -0400115 if conf.env['CXX_NAME'] == 'clang' and conf.env.BOOST_VERSION_NUMBER < 105800:
116 conf.env.append_value('DEFINES', 'BOOST_ASIO_HAS_STD_ARRAY=1') # Bug #4096
117
Alexander Afanasyev5b60f702014-02-07 12:55:24 -0800118 if not conf.options.with_sqlite_locking:
119 conf.define('DISABLE_SQLITE3_FS_LOCKING', 1)
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800120
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500121 if conf.env['HAVE_OSX_FRAMEWORKS']:
Alexander Afanasyev3e08d5d2014-02-12 19:24:28 -0800122 conf.env['WITH_OSX_KEYCHAIN'] = conf.options.with_osx_keychain
123 if conf.options.with_osx_keychain:
124 conf.define('WITH_OSX_KEYCHAIN', 1)
125 else:
126 conf.env['WITH_OSX_KEYCHAIN'] = False
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800127
Alexander Afanasyev1160baa2014-04-10 18:50:29 -0700128 # Loading "late" to prevent tests to be compiled with profiling flags
129 conf.load('coverage')
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800130
Eric Newberrya3973e02016-11-01 17:58:12 -0700131 conf.load('sanitizers')
132
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600133 conf.define('SYSCONFDIR', conf.env['SYSCONFDIR'])
134
Alexander Afanasyev224044f2016-07-18 10:45:08 +0200135 if not conf.env.enable_static:
136 # If there happens to be a static library, waf will put the corresponding -L flags
137 # before dynamic library flags. This can result in compilation failure when the
138 # system has a different version of the ndn-cxx library installed.
139 conf.env['STLIBPATH'] = ['.'] + conf.env['STLIBPATH']
140
Alexander Afanasyev3e7d2ac2015-02-10 19:39:28 -0800141 # config file will contain all defines that were added using conf.define('xxx'...)
142 # Everything that was added directly to conf.env['DEFINES'] will not appear in the
143 # config file and will be added using compiler directives in the command line.
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700144 conf.write_config_header('src/ndn-cxx-config.hpp', define_prefix='NDN_CXX_')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800145
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700146def build(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700147 version(bld)
148
149 bld(features="subst",
150 name='version',
151 source='src/version.hpp.in',
152 target='src/version.hpp',
153 install_path=None,
154 VERSION_STRING=VERSION_BASE,
155 VERSION_BUILD=VERSION,
156 VERSION=int(VERSION_SPLIT[0]) * 1000000 +
157 int(VERSION_SPLIT[1]) * 1000 +
158 int(VERSION_SPLIT[2]),
159 VERSION_MAJOR=VERSION_SPLIT[0],
160 VERSION_MINOR=VERSION_SPLIT[1],
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200161 VERSION_PATCH=VERSION_SPLIT[2])
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700162
Alexander Afanasyev7cd43ab2017-03-27 21:33:10 -0500163 if bld.env['HAVE_OSX_FRAMEWORKS']:
164 # Need to disable precompiled headers for Objective-C++ code
165 bld(features=['cxx'],
166 target="ndn-cxx-mm",
167 name="ndn-cxx-mm",
168 source=bld.path.ant_glob(['src/**/*-osx.mm']),
169 use='version BOOST CRYPTOPP OPENSSL SQLITE3 RT PTHREAD OSX_COREFOUNDATION OSX_CORESERVICES OSX_SECURITY OSX_SYSTEMCONFIGURATION',
170 includes=". src")
171
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800172 libndn_cxx = dict(
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700173 target="ndn-cxx",
174 name="ndn-cxx",
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700175 source=bld.path.ant_glob('src/**/*.cpp',
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500176 excl=['src/**/*-osx.cpp',
Davide Pesavento2bf35a62017-04-02 00:41:06 -0400177 'src/**/*-rtnl.cpp',
Davide Pesavento9a8bae52016-02-24 20:33:08 +0100178 'src/**/*-sqlite3.cpp']),
Alexander Afanasyev8b1674a2014-05-15 00:58:43 -0700179 headers='src/common-pch.hpp',
Alexander Afanasyev7cd43ab2017-03-27 21:33:10 -0500180 use='version ndn-cxx-mm BOOST CRYPTOPP OPENSSL SQLITE3 RT PTHREAD',
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700181 includes=". src",
182 export_includes="src",
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200183 install_path='${LIBDIR}')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800184
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500185 if bld.env['HAVE_OSX_FRAMEWORKS']:
186 libndn_cxx['source'] += bld.path.ant_glob('src/**/*-osx.cpp')
Alexander Afanasyev3b3355c2017-03-26 11:57:13 -0500187 libndn_cxx['use'] += " OSX_COREFOUNDATION OSX_CORESERVICES OSX_SECURITY OSX_SYSTEMCONFIGURATION"
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500188
Davide Pesavento2bf35a62017-04-02 00:41:06 -0400189 if bld.env['HAVE_RTNETLINK']:
190 libndn_cxx['source'] += bld.path.ant_glob('src/**/*-rtnl.cpp')
191
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800192 # In case we want to make it optional later
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800193 libndn_cxx['source'] += bld.path.ant_glob('src/**/*-sqlite3.cpp')
194
195 if bld.env.enable_shared:
196 bld(features=['pch', 'cxx', 'cxxshlib'],
197 vnum=VERSION_BASE,
198 cnum=VERSION_BASE,
199 **libndn_cxx)
200
201 if bld.env.enable_static:
202 bld(features=['pch', 'cxx', 'cxxstlib'],
203 **libndn_cxx)
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800204
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700205 # Prepare flags that should go to pkgconfig file
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800206 pkgconfig_libs = []
207 pkgconfig_ldflags = []
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800208 pkgconfig_linkflags = []
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800209 pkgconfig_includes = []
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800210 pkgconfig_cxxflags = []
Alexander Afanasyev5519cc72015-03-01 14:25:03 -0800211 for lib in Utils.to_list(libndn_cxx['use']):
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800212 if bld.env['LIB_%s' % lib]:
213 pkgconfig_libs += Utils.to_list(bld.env['LIB_%s' % lib])
214 if bld.env['LIBPATH_%s' % lib]:
215 pkgconfig_ldflags += Utils.to_list(bld.env['LIBPATH_%s' % lib])
216 if bld.env['INCLUDES_%s' % lib]:
217 pkgconfig_includes += Utils.to_list(bld.env['INCLUDES_%s' % lib])
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800218 if bld.env['LINKFLAGS_%s' % lib]:
219 pkgconfig_linkflags += Utils.to_list(bld.env['LINKFLAGS_%s' % lib])
220 if bld.env['CXXFLAGS_%s' % lib]:
221 pkgconfig_cxxflags += Utils.to_list(bld.env['CXXFLAGS_%s' % lib])
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800222
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200223 EXTRA_FRAMEWORKS = ""
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500224 if bld.env['HAVE_OSX_FRAMEWORKS']:
Alexander Afanasyev3b3355c2017-03-26 11:57:13 -0500225 EXTRA_FRAMEWORKS = "-framework CoreFoundation -framework CoreServices -framework Security -framework SystemConfiguration"
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800226
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800227 def uniq(alist):
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200228 seen = set()
229 return [x for x in alist if x not in seen and not seen.add(x)]
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800230
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700231 pkconfig = bld(features="subst",
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700232 source="libndn-cxx.pc.in",
233 target="libndn-cxx.pc",
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700234 install_path="${LIBDIR}/pkgconfig",
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700235 VERSION=VERSION_BASE,
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800236
237 # This probably not the right thing to do, but to simplify life of apps
238 # that use the library
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700239 EXTRA_LIBS=" ".join([('-l%s' % i) for i in uniq(pkgconfig_libs)]),
240 EXTRA_LDFLAGS=" ".join([('-L%s' % i) for i in uniq(pkgconfig_ldflags)]),
241 EXTRA_LINKFLAGS=" ".join(uniq(pkgconfig_linkflags)),
242 EXTRA_INCLUDES=" ".join([('-I%s' % i) for i in uniq(pkgconfig_includes)]),
243 EXTRA_CXXFLAGS=" ".join(uniq(pkgconfig_cxxflags)),
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200244 EXTRA_FRAMEWORKS=EXTRA_FRAMEWORKS)
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800245
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800246 if bld.env['WITH_TESTS']:
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800247 bld.recurse('tests')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800248
Yingdi Yue6bfab22014-02-06 16:01:19 -0800249 if bld.env['WITH_TOOLS']:
Alexander Afanasyevc8bcd452014-05-12 17:58:47 -0700250 bld.recurse("tools")
251
252 if bld.env['WITH_EXAMPLES']:
Yingdi Yue6bfab22014-02-06 16:01:19 -0800253 bld.recurse("examples")
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800254
Davide Pesavento9a8bae52016-02-24 20:33:08 +0100255 headers = bld.path.ant_glob('src/**/*.hpp',
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -0500256 excl=['src/**/*-osx.hpp',
257 'src/**/*-rtnl.hpp',
258 'src/**/*-sqlite3.hpp',
259 'src/**/detail/**/*'])
260 if bld.env['HAVE_OSX_FRAMEWORKS']:
261 headers += bld.path.ant_glob('src/**/*-osx.hpp', excl='src/**/detail/**/*')
262
263 if bld.env['HAVE_RTNETLINK']:
264 headers += bld.path.ant_glob('src/**/*-rtnl.hpp', excl='src/**/detail/**/*')
265
266 # In case we want to make it optional later
267 headers += bld.path.ant_glob('src/**/*-sqlite3.hpp', excl='src/**/detail/**/*')
Junxiao Shie30aaea2014-12-03 20:48:34 -0700268
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700269 bld.install_files("%s/ndn-cxx" % bld.env['INCLUDEDIR'], headers,
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700270 relative_trick=True, cwd=bld.path.find_node('src'))
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800271
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700272 bld.install_files("%s/ndn-cxx" % bld.env['INCLUDEDIR'],
273 bld.path.find_resource('src/ndn-cxx-config.hpp'))
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800274
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700275 bld.install_files("%s/ndn-cxx" % bld.env['INCLUDEDIR'],
276 bld.path.find_resource('src/version.hpp'))
277
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600278 bld.install_files("${SYSCONFDIR}/ndn", "client.conf.sample")
279
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700280 if bld.env['SPHINX_BUILD']:
281 bld(features="sphinx",
282 builder="man",
283 outdir="docs/manpages",
284 config="docs/conf.py",
285 source=bld.path.ant_glob('docs/manpages/**/*.rst'),
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700286 install_path="${MANDIR}/",
287 VERSION=VERSION)
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700288
289def docs(bld):
290 from waflib import Options
291 Options.commands = ['doxygen', 'sphinx'] + Options.commands
292
Alexander Afanasyev401a2362014-03-02 00:03:11 +0000293def doxygen(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700294 version(bld)
295
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800296 if not bld.env.DOXYGEN:
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200297 Logs.error("ERROR: cannot build documentation (`doxygen' not found in $PATH)")
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700298 else:
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700299 bld(features="subst",
300 name="doxygen-conf",
Alexander Afanasyev9b0e1142014-05-08 00:17:34 -0700301 source=["docs/doxygen.conf.in",
302 "docs/named_data_theme/named_data_footer-with-analytics.html.in"],
303 target=["docs/doxygen.conf",
304 "docs/named_data_theme/named_data_footer-with-analytics.html"],
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700305 VERSION=VERSION,
Alexander Afanasyev9b0e1142014-05-08 00:17:34 -0700306 HTML_FOOTER="../build/docs/named_data_theme/named_data_footer-with-analytics.html" \
307 if os.getenv('GOOGLE_ANALYTICS', None) \
308 else "../docs/named_data_theme/named_data_footer.html",
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200309 GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', ""))
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700310
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700311 bld(features="doxygen",
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700312 doxyfile='docs/doxygen.conf',
313 use="doxygen-conf")
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800314
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700315def sphinx(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700316 version(bld)
317
Alexander Afanasyev1160baa2014-04-10 18:50:29 -0700318 if not bld.env.SPHINX_BUILD:
Davide Pesavento1349d2d2016-08-09 06:43:57 +0200319 bld.fatal("ERROR: cannot build documentation (`sphinx-build' not found in $PATH)")
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700320 else:
321 bld(features="sphinx",
322 outdir="docs",
323 source=bld.path.ant_glob("docs/**/*.rst"),
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700324 config="docs/conf.py",
325 VERSION=VERSION)
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700326
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700327def version(ctx):
328 if getattr(Context.g_module, 'VERSION_BASE', None):
329 return
330
331 Context.g_module.VERSION_BASE = Context.g_module.VERSION
332 Context.g_module.VERSION_SPLIT = [v for v in VERSION_BASE.split('.')]
333
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700334 didGetVersion = False
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700335 try:
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700336 cmd = ['git', 'describe', '--always', '--match', '%s*' % GIT_TAG_PREFIX]
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700337 p = Utils.subprocess.Popen(cmd, stdout=Utils.subprocess.PIPE,
338 stderr=None, stdin=None)
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700339 out = str(p.communicate()[0].strip())
340 didGetVersion = (p.returncode == 0 and out != "")
341 if didGetVersion:
342 if out.startswith(GIT_TAG_PREFIX):
343 Context.g_module.VERSION = out[len(GIT_TAG_PREFIX):]
344 else:
345 Context.g_module.VERSION = "%s-commit-%s" % (Context.g_module.VERSION_BASE, out)
346 except OSError:
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700347 pass
348
Alexander Afanasyev6c632302014-10-31 12:34:11 -0700349 versionFile = ctx.path.find_node('VERSION')
350
351 if not didGetVersion and versionFile is not None:
352 try:
353 Context.g_module.VERSION = versionFile.read()
354 return
355 except (OSError, IOError):
356 pass
357
358 # version was obtained from git, update VERSION file if necessary
359 if versionFile is not None:
360 try:
361 version = versionFile.read()
362 if version == Context.g_module.VERSION:
363 return # no need to update
364 except (OSError, IOError):
365 Logs.warn("VERSION file exists, but not readable")
366 else:
367 versionFile = ctx.path.make_node('VERSION')
368
369 if versionFile is None:
370 return
371
372 try:
373 versionFile.write(Context.g_module.VERSION)
374 except (OSError, IOError):
375 Logs.warn("VERSION file is not writeable")
376
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700377def dist(ctx):
378 version(ctx)
379
380def distcheck(ctx):
381 version(ctx)