Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
| 2 | |
Davide Pesavento | 0b272e0 | 2023-09-23 20:22:01 -0400 | [diff] [blame^] | 3 | import os |
| 4 | import subprocess |
| 5 | from waflib import Context, Logs |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 6 | |
Davide Pesavento | ec8f854 | 2023-01-18 23:10:24 -0500 | [diff] [blame] | 7 | VERSION = '0.4.0' |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 8 | APPNAME = 'PSync' |
| 9 | GIT_TAG_PREFIX = '' |
| 10 | |
Ashlesh Gawande | d51690a | 2019-11-11 22:51:06 -0600 | [diff] [blame] | 11 | BOOST_COMPRESSION_CODE = ''' |
| 12 | #include <boost/iostreams/filter/{0}.hpp> |
| 13 | int main() {{ boost::iostreams::{0}_compressor test; }} |
| 14 | ''' |
Ashlesh Gawande | d51690a | 2019-11-11 22:51:06 -0600 | [diff] [blame] | 15 | COMPRESSION_SCHEMES = ['zlib', 'gzip', 'bzip2', 'lzma', 'zstd'] |
| 16 | |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 17 | def options(opt): |
Davide Pesavento | 042dfb3 | 2020-07-23 21:07:16 -0400 | [diff] [blame] | 18 | opt.load(['compiler_cxx', 'gnu_dirs']) |
| 19 | opt.load(['default-compiler-flags', |
| 20 | 'coverage', 'sanitizers', 'boost', |
| 21 | 'doxygen', 'sphinx_build'], |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 22 | tooldir=['.waf-tools']) |
| 23 | |
Davide Pesavento | 17b266c | 2019-04-06 21:37:43 -0400 | [diff] [blame] | 24 | optgrp = opt.add_option_group('PSync Options') |
| 25 | optgrp.add_option('--with-examples', action='store_true', default=False, |
| 26 | help='Build examples') |
| 27 | optgrp.add_option('--with-tests', action='store_true', default=False, |
| 28 | help='Build unit tests') |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 29 | |
Ashlesh Gawande | d51690a | 2019-11-11 22:51:06 -0600 | [diff] [blame] | 30 | for scheme in COMPRESSION_SCHEMES: |
Davide Pesavento | 0b272e0 | 2023-09-23 20:22:01 -0400 | [diff] [blame^] | 31 | optgrp.add_option(f'--without-{scheme}', action='store_true', default=False, |
| 32 | help=f'Disable support for {scheme} (de)compression') |
Ashlesh Gawande | d51690a | 2019-11-11 22:51:06 -0600 | [diff] [blame] | 33 | |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 34 | def configure(conf): |
Davide Pesavento | 042dfb3 | 2020-07-23 21:07:16 -0400 | [diff] [blame] | 35 | conf.load(['compiler_cxx', 'gnu_dirs', |
Davide Pesavento | da27849 | 2019-01-29 15:00:49 -0500 | [diff] [blame] | 36 | 'default-compiler-flags', 'boost', |
| 37 | 'doxygen', 'sphinx_build']) |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 38 | |
Davide Pesavento | 17b266c | 2019-04-06 21:37:43 -0400 | [diff] [blame] | 39 | conf.env.WITH_EXAMPLES = conf.options.with_examples |
| 40 | conf.env.WITH_TESTS = conf.options.with_tests |
| 41 | |
Davide Pesavento | f278438 | 2022-07-09 19:58:53 -0400 | [diff] [blame] | 42 | conf.find_program('dot', mandatory=False) |
| 43 | |
| 44 | # Prefer pkgconf if it's installed, because it gives more correct results |
| 45 | # on Fedora/CentOS/RHEL/etc. See https://bugzilla.redhat.com/show_bug.cgi?id=1953348 |
| 46 | # Store the result in env.PKGCONFIG, which is the variable used inside check_cfg() |
| 47 | conf.find_program(['pkgconf', 'pkg-config'], var='PKGCONFIG') |
Davide Pesavento | 7549628 | 2021-04-25 16:38:22 -0400 | [diff] [blame] | 48 | |
Davide Pesavento | 85a73d2 | 2022-03-06 16:00:01 -0500 | [diff] [blame] | 49 | pkg_config_path = os.environ.get('PKG_CONFIG_PATH', f'{conf.env.LIBDIR}/pkgconfig') |
Davide Pesavento | ec8f854 | 2023-01-18 23:10:24 -0500 | [diff] [blame] | 50 | conf.check_cfg(package='libndn-cxx', args=['libndn-cxx >= 0.8.1', '--cflags', '--libs'], |
Davide Pesavento | 85a73d2 | 2022-03-06 16:00:01 -0500 | [diff] [blame] | 51 | uselib_store='NDN_CXX', pkg_config_path=pkg_config_path) |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 52 | |
Davide Pesavento | 0b272e0 | 2023-09-23 20:22:01 -0400 | [diff] [blame^] | 53 | conf.check_boost(lib='iostreams', mt=True) |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 54 | |
Ashlesh Gawande | d51690a | 2019-11-11 22:51:06 -0600 | [diff] [blame] | 55 | for scheme in COMPRESSION_SCHEMES: |
Davide Pesavento | 0b272e0 | 2023-09-23 20:22:01 -0400 | [diff] [blame^] | 56 | if getattr(conf.options, f'without_{scheme}'): |
Ashlesh Gawande | d51690a | 2019-11-11 22:51:06 -0600 | [diff] [blame] | 57 | continue |
| 58 | conf.check_cxx(fragment=BOOST_COMPRESSION_CODE.format(scheme), |
| 59 | use='BOOST', execute=False, mandatory=False, |
Davide Pesavento | 0b272e0 | 2023-09-23 20:22:01 -0400 | [diff] [blame^] | 60 | msg=f'Checking for {scheme} support in boost iostreams', |
| 61 | define_name=f'HAVE_{scheme.upper()}') |
| 62 | |
| 63 | if conf.env.WITH_TESTS: |
| 64 | conf.check_boost(lib='unit_test_framework', mt=True, uselib_store='BOOST_TESTS') |
Ashlesh Gawande | d51690a | 2019-11-11 22:51:06 -0600 | [diff] [blame] | 65 | |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 66 | conf.check_compiler_flags() |
| 67 | |
Davide Pesavento | 17b266c | 2019-04-06 21:37:43 -0400 | [diff] [blame] | 68 | # Loading "late" to prevent tests from being compiled with profiling flags |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 69 | conf.load('coverage') |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 70 | conf.load('sanitizers') |
| 71 | |
| 72 | # If there happens to be a static library, waf will put the corresponding -L flags |
| 73 | # before dynamic library flags. This can result in compilation failure when the |
| 74 | # system has a different version of the PSync library installed. |
Davide Pesavento | 17b266c | 2019-04-06 21:37:43 -0400 | [diff] [blame] | 75 | conf.env.prepend_value('STLIBPATH', ['.']) |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 76 | |
Davide Pesavento | 17b266c | 2019-04-06 21:37:43 -0400 | [diff] [blame] | 77 | conf.define_cond('WITH_TESTS', conf.env.WITH_TESTS) |
| 78 | # The config header will contain all defines that were added using conf.define() |
| 79 | # or conf.define_cond(). Everything that was added directly to conf.env.DEFINES |
| 80 | # will not appear in the config header, but will instead be passed directly to the |
| 81 | # compiler on the command line. |
| 82 | conf.write_config_header('PSync/detail/config.hpp', define_prefix='PSYNC_') |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 83 | |
| 84 | def build(bld): |
Davide Pesavento | 0b272e0 | 2023-09-23 20:22:01 -0400 | [diff] [blame^] | 85 | bld.shlib( |
| 86 | target='PSync', |
| 87 | vnum=VERSION, |
| 88 | cnum=VERSION, |
| 89 | source=bld.path.ant_glob('PSync/**/*.cpp'), |
| 90 | use='BOOST NDN_CXX', |
| 91 | includes='.', |
| 92 | export_includes='.') |
Davide Pesavento | 17b266c | 2019-04-06 21:37:43 -0400 | [diff] [blame] | 93 | |
| 94 | if bld.env.WITH_TESTS: |
| 95 | bld.recurse('tests') |
| 96 | |
| 97 | if bld.env.WITH_EXAMPLES: |
| 98 | bld.recurse('examples') |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 99 | |
Davide Pesavento | 0b272e0 | 2023-09-23 20:22:01 -0400 | [diff] [blame^] | 100 | # Install header files |
Ashlesh Gawande | 78b94ad | 2018-12-13 15:29:19 -0600 | [diff] [blame] | 101 | headers = bld.path.ant_glob('PSync/**/*.hpp') |
Davide Pesavento | c407dee | 2022-07-21 23:56:05 -0400 | [diff] [blame] | 102 | bld.install_files('${INCLUDEDIR}', headers, relative_trick=True) |
Davide Pesavento | 0b272e0 | 2023-09-23 20:22:01 -0400 | [diff] [blame^] | 103 | bld.install_files('${INCLUDEDIR}/PSync/detail', 'PSync/detail/config.hpp') |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 104 | |
Davide Pesavento | 17b266c | 2019-04-06 21:37:43 -0400 | [diff] [blame] | 105 | bld(features='subst', |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 106 | source='PSync.pc.in', |
| 107 | target='PSync.pc', |
Davide Pesavento | 34f7eea | 2019-11-09 17:33:45 -0500 | [diff] [blame] | 108 | install_path='${LIBDIR}/pkgconfig', |
| 109 | VERSION=VERSION) |
Ashlesh Gawande | 4c0a747 | 2018-08-08 12:20:33 -0500 | [diff] [blame] | 110 | |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 111 | def docs(bld): |
| 112 | from waflib import Options |
| 113 | Options.commands = ['doxygen', 'sphinx'] + Options.commands |
| 114 | |
| 115 | def doxygen(bld): |
| 116 | version(bld) |
| 117 | |
| 118 | if not bld.env.DOXYGEN: |
| 119 | bld.fatal('Cannot build documentation ("doxygen" not found in PATH)') |
| 120 | |
| 121 | bld(features='subst', |
| 122 | name='doxygen.conf', |
| 123 | source=['docs/doxygen.conf.in', |
| 124 | 'docs/named_data_theme/named_data_footer-with-analytics.html.in'], |
| 125 | target=['docs/doxygen.conf', |
| 126 | 'docs/named_data_theme/named_data_footer-with-analytics.html'], |
| 127 | VERSION=VERSION, |
Davide Pesavento | 7549628 | 2021-04-25 16:38:22 -0400 | [diff] [blame] | 128 | HAVE_DOT='YES' if bld.env.DOT else 'NO', |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 129 | HTML_FOOTER='../build/docs/named_data_theme/named_data_footer-with-analytics.html' \ |
| 130 | if os.getenv('GOOGLE_ANALYTICS', None) \ |
| 131 | else '../docs/named_data_theme/named_data_footer.html', |
| 132 | GOOGLE_ANALYTICS=os.getenv('GOOGLE_ANALYTICS', '')) |
| 133 | |
| 134 | bld(features='doxygen', |
| 135 | doxyfile='docs/doxygen.conf', |
| 136 | use='doxygen.conf') |
| 137 | |
| 138 | def sphinx(bld): |
| 139 | version(bld) |
| 140 | |
| 141 | if not bld.env.SPHINX_BUILD: |
| 142 | bld.fatal('Cannot build documentation ("sphinx-build" not found in PATH)') |
| 143 | |
| 144 | bld(features='sphinx', |
| 145 | config='docs/conf.py', |
| 146 | outdir='docs', |
| 147 | source=bld.path.ant_glob('docs/**/*.rst'), |
Davide Pesavento | 34f7eea | 2019-11-09 17:33:45 -0500 | [diff] [blame] | 148 | version=VERSION_BASE, |
| 149 | release=VERSION) |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 150 | |
| 151 | def version(ctx): |
| 152 | # don't execute more than once |
| 153 | if getattr(Context.g_module, 'VERSION_BASE', None): |
| 154 | return |
| 155 | |
| 156 | Context.g_module.VERSION_BASE = Context.g_module.VERSION |
| 157 | Context.g_module.VERSION_SPLIT = VERSION_BASE.split('.') |
| 158 | |
| 159 | # first, try to get a version string from git |
| 160 | gotVersionFromGit = False |
| 161 | try: |
Davide Pesavento | 0b272e0 | 2023-09-23 20:22:01 -0400 | [diff] [blame^] | 162 | cmd = ['git', 'describe', '--always', '--match', f'{GIT_TAG_PREFIX}*'] |
| 163 | out = subprocess.run(cmd, capture_output=True, check=True, text=True).stdout.strip() |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 164 | if out: |
| 165 | gotVersionFromGit = True |
| 166 | if out.startswith(GIT_TAG_PREFIX): |
| 167 | Context.g_module.VERSION = out.lstrip(GIT_TAG_PREFIX) |
| 168 | else: |
| 169 | # no tags matched |
Davide Pesavento | 0b272e0 | 2023-09-23 20:22:01 -0400 | [diff] [blame^] | 170 | Context.g_module.VERSION = f'{VERSION_BASE}-commit-{out}' |
| 171 | except (OSError, subprocess.SubprocessError): |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 172 | pass |
| 173 | |
Alexander Afanasyev | 89edd8f | 2020-06-01 18:58:54 -0400 | [diff] [blame] | 174 | versionFile = ctx.path.find_node('VERSION.info') |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 175 | if not gotVersionFromGit and versionFile is not None: |
| 176 | try: |
| 177 | Context.g_module.VERSION = versionFile.read() |
| 178 | return |
| 179 | except EnvironmentError: |
| 180 | pass |
| 181 | |
| 182 | # version was obtained from git, update VERSION file if necessary |
| 183 | if versionFile is not None: |
| 184 | try: |
| 185 | if versionFile.read() == Context.g_module.VERSION: |
| 186 | # already up-to-date |
| 187 | return |
| 188 | except EnvironmentError as e: |
Davide Pesavento | 0b272e0 | 2023-09-23 20:22:01 -0400 | [diff] [blame^] | 189 | Logs.warn(f'{versionFile} exists but is not readable ({e.strerror})') |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 190 | else: |
Alexander Afanasyev | 89edd8f | 2020-06-01 18:58:54 -0400 | [diff] [blame] | 191 | versionFile = ctx.path.make_node('VERSION.info') |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 192 | |
| 193 | try: |
| 194 | versionFile.write(Context.g_module.VERSION) |
| 195 | except EnvironmentError as e: |
Davide Pesavento | 0b272e0 | 2023-09-23 20:22:01 -0400 | [diff] [blame^] | 196 | Logs.warn(f'{versionFile} is not writable ({e.strerror})') |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 197 | |
| 198 | def dist(ctx): |
Davide Pesavento | 46bac78 | 2023-02-19 20:32:24 -0500 | [diff] [blame] | 199 | ctx.algo = 'tar.xz' |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 200 | version(ctx) |
| 201 | |
| 202 | def distcheck(ctx): |
Davide Pesavento | 46bac78 | 2023-02-19 20:32:24 -0500 | [diff] [blame] | 203 | ctx.algo = 'tar.xz' |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 204 | version(ctx) |