blob: fdef574a5d1899bad31a9923a656d56c8c506bd8 [file] [log] [blame]
akmhoque298385a2014-02-13 14:13:09 -06001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
Yingdi Yu40cd1c32014-04-17 15:02:17 -07002
3"""
Ashlesh Gawande39cf81a2018-02-22 13:37:07 -06004Copyright (c) 2014-2018, The University of Memphis,
Vince Lehmanc2e51f62015-01-20 15:03:11 -06005 Regents of the University of California,
6 Arizona Board of Regents.
Yingdi Yu40cd1c32014-04-17 15:02:17 -07007
8This file is part of NLSR (Named-data Link State Routing).
9See AUTHORS.md for complete list of NLSR authors and contributors.
10
11NLSR is free software: you can redistribute it and/or modify it under the terms
12of the GNU General Public License as published by the Free Software Foundation,
13either version 3 of the License, or (at your option) any later version.
14
15NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
16without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
17PURPOSE. See the GNU General Public License for more details.
18
19You should have received a copy of the GNU General Public License along with
20NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
21"""
22
Ashlesh Gawande39cf81a2018-02-22 13:37:07 -060023VERSION = "0.4.1"
sfayer93d9ec32014-12-04 23:34:41 +000024APPNAME = "nlsr"
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -040025BUGREPORT = "https://redmine.named-data.net/projects/nlsr"
26URL = "https://named-data.net/doc/NLSR/"
Vince Lehmanb722b102014-08-24 16:33:49 -050027GIT_TAG_PREFIX = "NLSR-"
akmhoque298385a2014-02-13 14:13:09 -060028
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -040029from waflib import Logs, Utils, Context
Alexander Afanasyevfb2adee2015-03-30 10:56:55 -070030import os
akmhoque298385a2014-02-13 14:13:09 -060031
32def options(opt):
Yingdi Yu40cd1c32014-04-17 15:02:17 -070033 opt.load(['compiler_cxx', 'gnu_dirs'])
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -050034 opt.load(['default-compiler-flags', 'coverage', 'sanitizers',
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -040035 'boost', 'doxygen', 'sphinx_build'],
Yingdi Yu40cd1c32014-04-17 15:02:17 -070036 tooldir=['.waf-tools'])
akmhoque298385a2014-02-13 14:13:09 -060037
Yingdi Yu40cd1c32014-04-17 15:02:17 -070038 nlsropt = opt.add_option_group('NLSR Options')
akmhoque05d5fcf2014-04-15 14:58:45 -050039
Yingdi Yu40cd1c32014-04-17 15:02:17 -070040 nlsropt.add_option('--with-tests', action='store_true', default=False, dest='with_tests',
41 help='''build unit tests''')
akmhoque298385a2014-02-13 14:13:09 -060042
akmhoque05d5fcf2014-04-15 14:58:45 -050043
akmhoque298385a2014-02-13 14:13:09 -060044def configure(conf):
Vince Lehmanb722b102014-08-24 16:33:49 -050045 conf.load(['compiler_cxx', 'gnu_dirs',
Davide Pesavento6ebfd7c2017-08-26 17:52:54 -040046 'default-compiler-flags', 'boost',
Vince Lehmanb722b102014-08-24 16:33:49 -050047 'doxygen', 'sphinx_build'])
akmhoque298385a2014-02-13 14:13:09 -060048
Alexander Afanasyevfb2adee2015-03-30 10:56:55 -070049 if 'PKG_CONFIG_PATH' not in os.environ:
50 os.environ['PKG_CONFIG_PATH'] = Utils.subst_vars('${LIBDIR}/pkgconfig', conf.env)
51
akmhoquec8a10f72014-04-25 18:42:55 -050052 conf.check_cfg(package='libndn-cxx', args=['--cflags', '--libs'],
Vince Lehmanb45eed22015-01-13 14:58:07 -060053 uselib_store='NDN_CXX', mandatory=True)
akmhoque85d88332014-02-17 21:11:21 -060054
dmcoomescf8d0ed2017-02-21 11:39:01 -060055 boost_libs = 'system chrono program_options iostreams thread regex filesystem log log_setup'
Yingdi Yu40cd1c32014-04-17 15:02:17 -070056 if conf.options.with_tests:
57 conf.env['WITH_TESTS'] = 1
58 conf.define('WITH_TESTS', 1);
59 boost_libs += ' unit_test_framework'
akmhoque85d88332014-02-17 21:11:21 -060060
dmcoomescf8d0ed2017-02-21 11:39:01 -060061 conf.check_boost(lib=boost_libs, mt=True)
akmhoque298385a2014-02-13 14:13:09 -060062
Ashlesh Gawande39cf81a2018-02-22 13:37:07 -060063 if conf.env.BOOST_VERSION_NUMBER < 105400:
64 Logs.error("Minimum required boost version is 1.54.0")
65 Logs.error("Please upgrade your distribution or install custom boost libraries" +
66 " (https://redmine.named-data.net/projects/nfd/wiki/Boost_FAQ)")
akmhoque05d5fcf2014-04-15 14:58:45 -050067 return
68
Ashlesh Gawande39cf81a2018-02-22 13:37:07 -060069 conf.check_cfg(package='ChronoSync', args=['--cflags', '--libs'],
Ashlesh Gawande415676b2016-12-22 00:26:23 -060070 uselib_store='SYNC', mandatory=True)
akmhoque05d5fcf2014-04-15 14:58:45 -050071
Yingdi Yu40cd1c32014-04-17 15:02:17 -070072 conf.load('coverage')
73
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -050074 conf.load('sanitizers')
75
Yingdi Yu40cd1c32014-04-17 15:02:17 -070076 conf.define('DEFAULT_CONFIG_FILE', '%s/ndn/nlsr.conf' % conf.env['SYSCONFDIR'])
77
78 conf.write_config_header('config.hpp')
akmhoque05d5fcf2014-04-15 14:58:45 -050079
akmhoque298385a2014-02-13 14:13:09 -060080
Vince Lehmanb722b102014-08-24 16:33:49 -050081def build(bld):
82 version(bld)
83
84 bld(features="subst",
85 name='version',
86 source='src/version.hpp.in',
87 target='src/version.hpp',
88 install_path=None,
89 VERSION_STRING=VERSION_BASE,
90 VERSION_BUILD=VERSION,
91 VERSION=int(VERSION_SPLIT[0]) * 1000000 +
92 int(VERSION_SPLIT[1]) * 1000 +
93 int(VERSION_SPLIT[2]),
94 VERSION_MAJOR=VERSION_SPLIT[0],
95 VERSION_MINOR=VERSION_SPLIT[1],
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -050096 VERSION_PATCH=VERSION_SPLIT[2])
Vince Lehmanb722b102014-08-24 16:33:49 -050097
Yingdi Yu40cd1c32014-04-17 15:02:17 -070098 nlsr_objects = bld(
99 target='nlsr-objects',
100 name='nlsr-objects',
101 features='cxx',
102 source=bld.path.ant_glob(['src/**/*.cpp'],
103 excl=['src/main.cpp']),
dmcoomescf8d0ed2017-02-21 11:39:01 -0600104 use='NDN_CXX BOOST SYNC',
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700105 includes='. src',
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500106 export_includes='. src')
akmhoque298385a2014-02-13 14:13:09 -0600107
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700108 nlsr = bld(
109 target='bin/nlsr',
110 features='cxx cxxprogram',
111 source='src/main.cpp',
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500112 use='nlsr-objects')
akmhoque298385a2014-02-13 14:13:09 -0600113
Vince Lehmanc439d662015-04-27 10:56:00 -0500114 nlsrc = bld(
115 target='bin/nlsrc',
116 features='cxx cxxprogram',
117 source='tools/nlsrc.cpp',
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500118 use='nlsr-objects BOOST')
Vince Lehmanc439d662015-04-27 10:56:00 -0500119
Ashlesh Gawande9b71bbc2017-07-21 15:52:25 -0500120 bld(features="subst",
121 source='nlsr.conf',
122 target='nlsr.conf.sample',
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500123 install_path="${SYSCONFDIR}/ndn")
Ashlesh Gawande9b71bbc2017-07-21 15:52:25 -0500124
Yingdi Yu40cd1c32014-04-17 15:02:17 -0700125 if bld.env['WITH_TESTS']:
126 bld.recurse('tests')
Vince Lehmanb722b102014-08-24 16:33:49 -0500127
Vince Lehmanc439d662015-04-27 10:56:00 -0500128 if bld.env['SPHINX_BUILD']:
129 bld(features="sphinx",
130 builder="man",
131 outdir="docs/manpages",
132 config="docs/conf.py",
133 source=bld.path.ant_glob('docs/manpages/**/*.rst'),
134 install_path="${MANDIR}/",
135 VERSION=VERSION)
Vince Lehmanb722b102014-08-24 16:33:49 -0500136
137def docs(bld):
138 from waflib import Options
139 Options.commands = ['doxygen', 'sphinx'] + Options.commands
140
141def doxygen(bld):
142 version(bld)
143
144 if not bld.env.DOXYGEN:
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500145 Logs.error("ERROR: cannot build documentation (`doxygen' not found in $PATH)")
Vince Lehmanb722b102014-08-24 16:33:49 -0500146 else:
147 bld(features="subst",
148 name="doxygen-conf",
149 source="docs/doxygen.conf.in",
150 target="docs/doxygen.conf",
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500151 VERSION=VERSION_BASE)
Vince Lehmanb722b102014-08-24 16:33:49 -0500152
153 bld(features="doxygen",
154 doxyfile='docs/doxygen.conf',
155 use="doxygen-conf")
156
157def sphinx(bld):
158 version(bld)
159
160 if not bld.env.SPHINX_BUILD:
Davide Pesaventoc58cc7f2017-08-08 16:51:28 -0500161 bld.fatal("ERROR: cannot build documentation (`sphinx-build' not found in $PATH)")
Vince Lehmanb722b102014-08-24 16:33:49 -0500162 else:
163 bld(features="sphinx",
164 outdir="docs",
165 source=bld.path.ant_glob('docs/**/*.rst'),
166 config="docs/conf.py",
167 VERSION=VERSION_BASE)
168
169def version(ctx):
170 if getattr(Context.g_module, 'VERSION_BASE', None):
171 return
172
173 Context.g_module.VERSION_BASE = Context.g_module.VERSION
174 Context.g_module.VERSION_SPLIT = [v for v in VERSION_BASE.split('.')]
175
176 didGetVersion = False
177 try:
178 cmd = ['git', 'describe', '--always', '--match', '%s*' % GIT_TAG_PREFIX]
179 p = Utils.subprocess.Popen(cmd, stdout=Utils.subprocess.PIPE,
180 stderr=None, stdin=None)
Alexander Afanasyevc0b97af2014-09-01 13:23:50 -0700181 out = str(p.communicate()[0].strip())
Vince Lehmanb722b102014-08-24 16:33:49 -0500182 didGetVersion = (p.returncode == 0 and out != "")
183 if didGetVersion:
184 if out.startswith(GIT_TAG_PREFIX):
185 Context.g_module.VERSION = out[len(GIT_TAG_PREFIX):]
186 else:
187 Context.g_module.VERSION = "%s-commit-%s" % (Context.g_module.VERSION_BASE, out)
188 except OSError:
189 pass
190
191 versionFile = ctx.path.find_node('VERSION')
192
193 if not didGetVersion and versionFile is not None:
194 try:
195 Context.g_module.VERSION = versionFile.read()
196 return
197 except (OSError, IOError):
198 pass
199
200 # version was obtained from git, update VERSION file if necessary
201 if versionFile is not None:
202 try:
203 version = versionFile.read()
204 if version == Context.g_module.VERSION:
205 return # no need to update
206 except (OSError, IOError):
207 Logs.warn("VERSION file exists, but not readable")
208 else:
209 versionFile = ctx.path.make_node('VERSION')
210
211 if versionFile is None:
212 return
213
214 try:
215 versionFile.write(Context.g_module.VERSION)
216 except (OSError, IOError):
217 Logs.warn("VERSION file is not writeable")
218
219def dist(ctx):
220 version(ctx)
221
222def distcheck(ctx):
223 version(ctx)