blob: e397ee9cf3bfb807637e1249f5052d955a3eea86 [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 Afanasyevcfe0b062014-05-08 18:26:50 -07006VERSION = "0.1.0"
Alexander Afanasyev766cea72014-04-24 19:16:42 -07007APPNAME = "ndn-cxx"
8PACKAGE_BUGREPORT = "http://redmine.named-data.net/projects/ndn-cxx"
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -07009PACKAGE_URL = "http://named-data.net/doc/ndn-cxx/"
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070010
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080011def options(opt):
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070012 opt.load(['compiler_cxx', 'gnu_dirs', 'c_osx'])
13 opt.load(['default-compiler-flags', 'coverage', 'osx-security', 'pch',
14 'boost', 'openssl', 'cryptopp', 'sqlite3',
15 'doxygen', 'sphinx_build'],
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070016 tooldir=['.waf-tools'])
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080017
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070018 opt = opt.add_option_group('Library Options')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080019
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070020 opt.add_option('--with-tests', action='store_true', default=False, dest='with_tests',
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080021 help='''build unit tests''')
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070022 opt.add_option('--with-log4cxx', action='store_true', default=False, dest='log4cxx',
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080023 help='''Compile with log4cxx logging support''')
24
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 Afanasyev5e1288e2014-03-28 11:11:48 -070028 opt.add_option('--without-sqlite-locking', action='store_false', default=True,
29 dest='with_sqlite_locking',
30 help='''Disable filesystem locking in sqlite3 database '''
31 '''(use unix-dot locking mechanism instead). '''
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -080032 '''This option may be necessary if home directory is hosted on NFS.''')
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070033 opt.add_option('--without-osx-keychain', action='store_false', default=True,
34 dest='with_osx_keychain',
Alexander Afanasyev3e08d5d2014-02-12 19:24:28 -080035 help='''On Darwin, do not use OSX keychain as a default TPM''')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080036
37def configure(conf):
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070038 conf.load(['compiler_cxx', 'gnu_dirs', 'c_osx',
39 'default-compiler-flags', 'osx-security', 'pch',
40 'boost', 'openssl', 'cryptopp', 'sqlite3',
41 'doxygen', 'sphinx_build'])
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080042
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070043 conf.env['WITH_TESTS'] = conf.options.with_tests
44 conf.env['WITH_TOOLS'] = conf.options.with_tools
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080045
Alexander Afanasyev95de62e2014-04-11 18:26:33 -070046 conf.find_program('sh', var='SH', mandatory=True)
47
Alexander Afanasyevfff47d62014-05-11 19:24:46 -070048 conf.check_cxx(lib='pthread', uselib_store='PTHREAD', define_name='HAVE_PTHREAD',
49 mandatory=False)
50 conf.check_cxx(lib='rt', uselib_store='RT', define_name='HAVE_RT', mandatory=False)
51 conf.check_cxx(cxxflags=['-fPIC'], uselib_store='cxxstlib', mandatory=False)
52
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070053 conf.check_osx_security(mandatory=False)
Yingdi Yue6bfab22014-02-06 16:01:19 -080054
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070055 conf.check_openssl(mandatory=True)
56 conf.check_sqlite3(mandatory=True)
Alexander Afanasyevfff47d62014-05-11 19:24:46 -070057 conf.check_cryptopp(mandatory=True, use='PTHREAD')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080058
59 if conf.options.log4cxx:
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070060 conf.check_cfg(package='liblog4cxx', args=['--cflags', '--libs'], uselib_store='LOG4CXX',
61 mandatory=True)
62 conf.define("HAVE_LOG4CXX", 1)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080063
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080064 if conf.options.use_cxx11:
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080065 conf.check(msg='Checking for type std::shared_ptr',
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070066 type_name="std::shared_ptr<int>", header_name="memory",
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070067 define_name='HAVE_STD_SHARED_PTR', mandatory=True)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080068 conf.check(msg='Checking for type std::function',
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070069 type_name="std::function<void()>", header_name="functional",
Alexander Afanasyevb78bc4d2014-04-09 21:20:52 -070070 define_name='HAVE_STD_FUNCTION', mandatory=True)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080071 conf.define('HAVE_CXX11', 1)
Alexander Afanasyev1dd95c52014-03-22 19:11:36 -070072
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070073 USED_BOOST_LIBS = ['system', 'filesystem', 'date_time', 'iostreams',
74 'regex', 'program_options', 'chrono']
Alexander Afanasyevdafdc372014-03-03 15:58:44 +000075 if conf.env['WITH_TESTS']:
76 USED_BOOST_LIBS += ['unit_test_framework']
Yingdi Yuf56c68f2014-04-24 21:50:13 -070077 conf.define('HAVE_TESTS', 1)
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080078
Alexander Afanasyevdafdc372014-03-03 15:58:44 +000079 conf.check_boost(lib=USED_BOOST_LIBS, mandatory=True)
80 if conf.env.BOOST_VERSION_NUMBER < 104800:
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -070081 Logs.error("Minimum required boost version is 1.48.0")
82 Logs.error("Please upgrade your distribution or install custom boost libraries" +
Alexander Afanasyevdafdc372014-03-03 15:58:44 +000083 " (http://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)")
84 return
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -080085
Alexander Afanasyev5b60f702014-02-07 12:55:24 -080086 if not conf.options.with_sqlite_locking:
87 conf.define('DISABLE_SQLITE3_FS_LOCKING', 1)
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -080088
Alexander Afanasyev59d67a52014-04-03 16:09:31 -070089 if conf.env['HAVE_OSX_SECURITY']:
Alexander Afanasyev3e08d5d2014-02-12 19:24:28 -080090 conf.env['WITH_OSX_KEYCHAIN'] = conf.options.with_osx_keychain
91 if conf.options.with_osx_keychain:
92 conf.define('WITH_OSX_KEYCHAIN', 1)
93 else:
94 conf.env['WITH_OSX_KEYCHAIN'] = False
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -080095
Alexander Afanasyev1160baa2014-04-10 18:50:29 -070096 # Loading "late" to prevent tests to be compiled with profiling flags
97 conf.load('coverage')
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -080098
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -060099 conf.define('SYSCONFDIR', conf.env['SYSCONFDIR'])
100
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700101 conf.write_config_header('src/ndn-cxx-config.hpp', define_prefix='NDN_CXX_')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800102
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700103def build(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700104 version(bld)
105
106 bld(features="subst",
107 name='version',
108 source='src/version.hpp.in',
109 target='src/version.hpp',
110 install_path=None,
111 VERSION_STRING=VERSION_BASE,
112 VERSION_BUILD=VERSION,
113 VERSION=int(VERSION_SPLIT[0]) * 1000000 +
114 int(VERSION_SPLIT[1]) * 1000 +
115 int(VERSION_SPLIT[2]),
116 VERSION_MAJOR=VERSION_SPLIT[0],
117 VERSION_MINOR=VERSION_SPLIT[1],
118 VERSION_PATCH=VERSION_SPLIT[2],
119 )
120
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700121 libndn_cxx = bld(
Alexander Afanasyev59efe102014-01-29 15:56:30 -0800122 features=['cxx', 'cxxstlib'], # 'cxxshlib',
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700123 # vnum=VERSION,
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700124 target="ndn-cxx",
125 name="ndn-cxx",
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700126 source=bld.path.ant_glob('src/**/*.cpp',
127 excl=['src/**/*-osx.cpp', 'src/**/*-sqlite3.cpp']),
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700128 use='version BOOST OPENSSL LOG4CXX CRYPTOPP SQLITE3 RT PIC PTHREAD',
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700129 includes=". src",
130 export_includes="src",
131 install_path='${LIBDIR}',
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800132 )
133
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -0800134 if bld.env['WITH_PCH']:
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700135 libndn_cxx.pch="src/common.hpp"
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800136
Alexander Afanasyev59d67a52014-04-03 16:09:31 -0700137 if bld.env['HAVE_OSX_SECURITY']:
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700138 libndn_cxx.source += bld.path.ant_glob('src/**/*-osx.cpp')
139 libndn_cxx.mac_app = True
140 libndn_cxx.use += " OSX_COREFOUNDATION OSX_SECURITY"
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800141
Alexander Afanasyev1e0a0772014-01-28 20:07:07 -0800142 # In case we want to make it optional later
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700143 libndn_cxx.source += bld.path.ant_glob('src/**/*-sqlite3.cpp')
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800144
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700145 # Prepare flags that should go to pkgconfig file
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800146 pkgconfig_libs = []
147 pkgconfig_ldflags = []
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800148 pkgconfig_linkflags = []
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800149 pkgconfig_includes = []
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800150 pkgconfig_cxxflags = []
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700151 for lib in Utils.to_list(libndn_cxx.use):
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800152 if bld.env['LIB_%s' % lib]:
153 pkgconfig_libs += Utils.to_list(bld.env['LIB_%s' % lib])
154 if bld.env['LIBPATH_%s' % lib]:
155 pkgconfig_ldflags += Utils.to_list(bld.env['LIBPATH_%s' % lib])
156 if bld.env['INCLUDES_%s' % lib]:
157 pkgconfig_includes += Utils.to_list(bld.env['INCLUDES_%s' % lib])
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800158 if bld.env['LINKFLAGS_%s' % lib]:
159 pkgconfig_linkflags += Utils.to_list(bld.env['LINKFLAGS_%s' % lib])
160 if bld.env['CXXFLAGS_%s' % lib]:
161 pkgconfig_cxxflags += Utils.to_list(bld.env['CXXFLAGS_%s' % lib])
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800162
Alexander Afanasyev84cf4292014-01-29 22:16:27 -0800163 EXTRA_FRAMEWORKS = "";
Alexander Afanasyev59d67a52014-04-03 16:09:31 -0700164 if bld.env['HAVE_OSX_SECURITY']:
Alexander Afanasyev84cf4292014-01-29 22:16:27 -0800165 EXTRA_FRAMEWORKS = "-framework CoreFoundation -framework Security"
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800166
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800167 def uniq(alist):
168 set = {}
169 return [set.setdefault(e,e) for e in alist if e not in set]
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800170
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700171 pkconfig = bld(features="subst",
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700172 source="libndn-cxx.pc.in",
173 target="libndn-cxx.pc",
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700174 install_path="${LIBDIR}/pkgconfig",
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700175 VERSION=VERSION_BASE,
Alexander Afanasyev200dd6f2014-01-28 19:04:25 -0800176
177 # This probably not the right thing to do, but to simplify life of apps
178 # that use the library
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700179 EXTRA_LIBS=" ".join([('-l%s' % i) for i in uniq(pkgconfig_libs)]),
180 EXTRA_LDFLAGS=" ".join([('-L%s' % i) for i in uniq(pkgconfig_ldflags)]),
181 EXTRA_LINKFLAGS=" ".join(uniq(pkgconfig_linkflags)),
182 EXTRA_INCLUDES=" ".join([('-I%s' % i) for i in uniq(pkgconfig_includes)]),
183 EXTRA_CXXFLAGS=" ".join(uniq(pkgconfig_cxxflags)),
184 EXTRA_FRAMEWORKS=EXTRA_FRAMEWORKS,
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800185 )
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800186
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800187 # Unit tests
188 if bld.env['WITH_TESTS']:
Alexander Afanasyevd409d592014-01-28 18:36:38 -0800189 bld.recurse('tests')
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -0700190 bld.recurse('tests-integrated')
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800191
Yingdi Yue6bfab22014-02-06 16:01:19 -0800192 if bld.env['WITH_TOOLS']:
193 bld.recurse("tools examples")
194 else:
195 bld.recurse("examples")
Alexander Afanasyevf5df8e62014-02-16 19:56:21 -0800196
Alexander Afanasyev19508852014-01-29 01:01:51 -0800197 headers = bld.path.ant_glob(['src/**/*.hpp'])
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700198 bld.install_files("%s/ndn-cxx" % bld.env['INCLUDEDIR'], headers,
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700199 relative_trick=True, cwd=bld.path.find_node('src'))
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800200
Alexander Afanasyev766cea72014-04-24 19:16:42 -0700201 bld.install_files("%s/ndn-cxx" % bld.env['INCLUDEDIR'],
202 bld.path.find_resource('src/ndn-cxx-config.hpp'))
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800203
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700204 bld.install_files("%s/ndn-cxx" % bld.env['INCLUDEDIR'],
205 bld.path.find_resource('src/version.hpp'))
206
Steve DiBenedettoc07b3a22014-03-19 12:32:52 -0600207 bld.install_files("${SYSCONFDIR}/ndn", "client.conf.sample")
208
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700209 if bld.env['SPHINX_BUILD']:
210 bld(features="sphinx",
211 builder="man",
212 outdir="docs/manpages",
213 config="docs/conf.py",
214 source=bld.path.ant_glob('docs/manpages/**/*.rst'),
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700215 install_path="${MANDIR}/",
216 VERSION=VERSION)
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700217
218def docs(bld):
219 from waflib import Options
220 Options.commands = ['doxygen', 'sphinx'] + Options.commands
221
Alexander Afanasyev401a2362014-03-02 00:03:11 +0000222def doxygen(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700223 version(bld)
224
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800225 if not bld.env.DOXYGEN:
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700226 Logs.error("ERROR: cannot build documentation (`doxygen' is not found in $PATH)")
227 else:
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700228 bld(features="subst",
229 name="doxygen-conf",
Alexander Afanasyev9b0e1142014-05-08 00:17:34 -0700230 source=["docs/doxygen.conf.in",
231 "docs/named_data_theme/named_data_footer-with-analytics.html.in"],
232 target=["docs/doxygen.conf",
233 "docs/named_data_theme/named_data_footer-with-analytics.html"],
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700234 VERSION=VERSION,
Alexander Afanasyev9b0e1142014-05-08 00:17:34 -0700235 HTML_FOOTER="../build/docs/named_data_theme/named_data_footer-with-analytics.html" \
236 if os.getenv('GOOGLE_ANALYTICS', None) \
237 else "../docs/named_data_theme/named_data_footer.html",
238 GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', ""),
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700239 )
240
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700241 bld(features="doxygen",
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700242 doxyfile='docs/doxygen.conf',
243 use="doxygen-conf")
Alexander Afanasyeva1ae0a12014-01-28 15:21:02 -0800244
Alexander Afanasyev5e1288e2014-03-28 11:11:48 -0700245def sphinx(bld):
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700246 version(bld)
247
Alexander Afanasyev1160baa2014-04-10 18:50:29 -0700248 if not bld.env.SPHINX_BUILD:
249 bld.fatal("ERROR: cannot build documentation (`sphinx-build' is not found in $PATH)")
Alexander Afanasyev7c6aeb02014-04-10 19:59:19 -0700250 else:
251 bld(features="sphinx",
252 outdir="docs",
253 source=bld.path.ant_glob("docs/**/*.rst"),
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -0700254 config="docs/conf.py",
255 VERSION=VERSION)
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -0700256
257
258def version(ctx):
259 if getattr(Context.g_module, 'VERSION_BASE', None):
260 return
261
262 Context.g_module.VERSION_BASE = Context.g_module.VERSION
263 Context.g_module.VERSION_SPLIT = [v for v in VERSION_BASE.split('.')]
264
265 try:
266 cmd = ['git', 'describe', '--match', 'ndn-cxx-*']
267 p = Utils.subprocess.Popen(cmd, stdout=Utils.subprocess.PIPE,
268 stderr=None, stdin=None)
269 out = p.communicate()[0].strip()
270 if p.returncode == 0 and out != "":
271 Context.g_module.VERSION = out[8:]
272 except:
273 pass
274
275def dist(ctx):
276 version(ctx)
277
278def distcheck(ctx):
279 version(ctx)