-
Notifications
You must be signed in to change notification settings - Fork 0
/
wscript
632 lines (548 loc) · 22.7 KB
/
wscript
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
#!/usr/bin/env python
import glob
import os
import shutil
import sys
from waflib import Build, Options, Logs
from waflib.extras import autowaf
# Library and package version (UNIX style major, minor, micro)
# major increment <=> incompatible changes
# minor increment <=> compatible changes (additions)
# micro increment <=> no interface changes
LILV_VERSION = '0.24.10'
LILV_MAJOR_VERSION = '0'
# Mandatory waf variables
APPNAME = 'lilv' # Package name for waf dist
VERSION = LILV_VERSION # Package version for waf dist
top = '.' # Source directory
out = 'build' # Build directory
# Release variables
uri = 'http://drobilla.net/sw/lilv'
dist_pattern = 'http://download.drobilla.net/lilv-%d.%d.%d.tar.bz2'
post_tags = ['Hacking', 'LAD', 'LV2', 'Lilv']
tests = [
'test_bad_port_index',
'test_bad_port_symbol',
'test_classes',
'test_discovery',
'test_filesystem',
'test_get_symbol',
'test_no_author',
'test_no_verify',
'test_plugin',
'test_port',
'test_preset',
'test_project',
'test_project_no_author',
'test_prototype',
'test_reload_bundle',
'test_replace_version',
'test_state',
'test_string',
'test_ui',
'test_util',
'test_value',
'test_verify',
'test_world',
]
test_plugins = [
'bad_syntax',
'failed_instantiation',
'failed_lib_descriptor',
'lib_descriptor',
'missing_descriptor',
'missing_name',
'missing_plugin',
'missing_port',
'missing_port_name',
'new_version',
'old_version'
]
def options(ctx):
ctx.load('compiler_c')
ctx.load('compiler_cxx')
ctx.load('python')
opt = ctx.configuration_options()
ctx.add_flags(
opt,
{'no-utils': 'do not build command line utilities',
'no-bindings': 'do not build python bindings',
'dyn-manifest': 'build support for dynamic manifests',
'no-bash-completion': 'do not install bash completion script',
'static': 'build static library',
'no-shared': 'do not build shared library',
'static-progs': 'build programs as static binaries'})
opt.add_option('--default-lv2-path', type='string', default='',
dest='default_lv2_path',
help='default LV2 path to use if LV2_PATH is unset')
def configure(conf):
conf.load('compiler_c', cache=True)
try:
conf.load('compiler_cxx', cache=True)
conf.define('LILV_CXX', True)
except Exception:
pass
if not Options.options.no_bindings:
try:
conf.load('python', cache=True)
conf.check_python_version((2, 6, 0))
conf.env.LILV_PYTHON = 1
except Exception as e:
Logs.warn('Failed to configure Python (%s)\n' % e)
conf.load('autowaf', cache=True)
autowaf.set_c_lang(conf, 'c99')
conf.env.BASH_COMPLETION = not Options.options.no_bash_completion
conf.env.BUILD_UTILS = not Options.options.no_utils
conf.env.BUILD_SHARED = not Options.options.no_shared
conf.env.STATIC_PROGS = Options.options.static_progs
conf.env.BUILD_STATIC = (Options.options.static or
Options.options.static_progs)
if not conf.env.BUILD_SHARED and not conf.env.BUILD_STATIC:
conf.fatal('Neither a shared nor a static build requested')
if Options.options.strict:
# Check for programs used by lint target
conf.find_program("flake8", var="FLAKE8", mandatory=False)
conf.find_program("clang-tidy", var="CLANG_TIDY", mandatory=False)
conf.find_program("iwyu_tool", var="IWYU_TOOL", mandatory=False)
if Options.options.ultra_strict:
autowaf.add_compiler_flags(conf.env, '*', {
'clang': [
'-Wno-documentation-unknown-command',
]
})
autowaf.add_compiler_flags(conf.env, 'c', {
'clang': [
'-Wno-cast-align',
'-Wno-cast-qual',
'-Wno-double-promotion',
'-Wno-float-equal',
'-Wno-format-nonliteral',
'-Wno-implicit-float-conversion',
'-Wno-implicit-int-conversion',
'-Wno-padded',
'-Wno-reserved-id-macro',
'-Wno-shorten-64-to-32',
'-Wno-sign-conversion',
'-Wno-switch-enum',
'-Wno-unused-parameter',
'-Wno-vla',
],
'gcc': [
'-Wno-cast-align',
'-Wno-cast-qual',
'-Wno-conversion',
'-Wno-double-promotion',
'-Wno-float-equal',
'-Wno-padded',
'-Wno-stack-protector',
'-Wno-suggest-attribute=const',
'-Wno-suggest-attribute=pure',
'-Wno-switch-enum',
'-Wno-unused-parameter',
'-Wno-vla',
],
'msvc': [
'/wd4061', # enumerator in switch is not explicitly handled
'/wd4365', # signed/unsigned mismatch
'/wd4514', # unreferenced inline function has been removed
'/wd4774', # format string is not a string literal
'/wd4820', # padding added after construct
'/wd4996', # POSIX name for this item is deprecated
],
})
autowaf.add_compiler_flags(conf.env, 'cxx', {
'clang': [
'-Wno-extra-semi',
],
'gcc': [
'-Wno-effc++',
'-Wno-extra-semi',
'-Wno-pedantic',
],
})
conf.check_pkg('lv2 >= 1.18.0', uselib_store='LV2')
conf.check_pkg('serd-0 >= 0.30.0', uselib_store='SERD')
conf.check_pkg('sord-0 >= 0.14.0', uselib_store='SORD')
conf.check_pkg('sratom-0 >= 0.4.0', uselib_store='SRATOM')
conf.check_pkg('sndfile >= 1.0.0', uselib_store='SNDFILE', mandatory=False)
defines = ['_POSIX_C_SOURCE=200809L', '_BSD_SOURCE', '_DEFAULT_SOURCE']
if conf.env.DEST_OS == 'darwin':
defines += ['_DARWIN_C_SOURCE']
rt_lib = ['rt']
if conf.env.DEST_OS == 'darwin' or conf.env.DEST_OS == 'win32':
rt_lib = []
conf.check_function('c', 'lstat',
header_name = ['sys/stat.h'],
defines = defines,
define_name = 'HAVE_LSTAT',
return_type = 'int',
arg_types = 'const char*, struct stat*',
mandatory = False)
conf.check_function('c', 'flock',
header_name = 'sys/file.h',
defines = defines,
define_name = 'HAVE_FLOCK',
return_type = 'int',
arg_types = 'int, int',
mandatory = False)
conf.check_function('c', 'fileno',
header_name = 'stdio.h',
defines = defines,
define_name = 'HAVE_FILENO',
return_type = 'int',
arg_types = 'FILE*',
mandatory = False)
conf.check_function('c', 'clock_gettime',
header_name = ['sys/time.h', 'time.h'],
defines = ['_POSIX_C_SOURCE=200809L'],
define_name = 'HAVE_CLOCK_GETTIME',
uselib_store = 'CLOCK_GETTIME',
lib = rt_lib,
return_type = 'int',
arg_types = 'clockid_t, struct timespec*',
mandatory = False)
conf.check_cc(define_name = 'HAVE_LIBDL',
lib = 'dl',
mandatory = False)
if conf.env.DEST_OS == 'win32':
conf.check_function('c', 'CreateSymbolicLink',
header_name = ['windows.h'],
define_name = 'HAVE_CREATESYMBOLICLINK',
return_type = 'BOOLEAN',
arg_types = 'LPCSTR, LPCSTR, DWORD',
mandatory = False)
if Options.options.dyn_manifest:
conf.define('LILV_DYN_MANIFEST', 1)
lilv_path_sep = ':'
lilv_dir_sep = '/'
if conf.env.DEST_OS == 'win32':
lilv_path_sep = ';'
lilv_dir_sep = '\\\\'
conf.define('LILV_PATH_SEP', lilv_path_sep)
conf.define('LILV_DIR_SEP', lilv_dir_sep)
# Set default LV2 path
lv2_path = Options.options.default_lv2_path
if lv2_path == '':
if conf.env.DEST_OS == 'darwin':
lv2_path = lilv_path_sep.join(['~/Library/Audio/Plug-Ins/LV2',
'~/.lv2',
'/usr/local/lib/lv2',
'/usr/lib/lv2',
'/Library/Audio/Plug-Ins/LV2'])
elif conf.env.DEST_OS == 'haiku':
lv2_path = lilv_path_sep.join(['~/.lv2',
'/boot/common/add-ons/lv2'])
elif conf.env.DEST_OS == 'win32':
lv2_path = lilv_path_sep.join(['%APPDATA%\\\\LV2',
'%COMMONPROGRAMFILES%\\\\LV2'])
else:
libdirname = os.path.basename(conf.env.LIBDIR)
lv2_path = lilv_path_sep.join(['~/.lv2',
'/usr/%s/lv2' % libdirname,
'/usr/local/%s/lv2' % libdirname])
conf.define('LILV_DEFAULT_LV2_PATH', lv2_path)
autowaf.set_lib_env(conf, 'lilv', LILV_VERSION)
conf.write_config_header('lilv_config.h', remove=False)
conf.undefine('LILV_DEFAULT_LV2_PATH') # Cmd line errors with VC++
autowaf.display_summary(
conf,
{'Default LV2_PATH': lv2_path,
'Utilities': bool(conf.env.BUILD_UTILS),
'Unit tests': bool(conf.env.BUILD_TESTS),
'Dynamic manifest support': conf.is_defined('LILV_DYN_MANIFEST'),
'Python bindings': bool(conf.env.LILV_PYTHON)})
def build_util(bld, name, defines, libs=''):
obj = bld(features = 'c cprogram',
source = name + '.c',
includes = ['.', './src', './utils'],
use = 'liblilv',
uselib = 'SERD SORD SRATOM LV2 ' + libs,
target = name,
defines = defines,
install_path = '${BINDIR}')
if not bld.env.BUILD_SHARED or bld.env.STATIC_PROGS:
obj.use = 'liblilv_static'
if bld.env.STATIC_PROGS:
if not bld.env.MSVC_COMPILER:
obj.lib = ['m']
obj.env.SHLIB_MARKER = obj.env.STLIB_MARKER
obj.linkflags = ['-static', '-Wl,--start-group']
return obj
def build(bld):
# C/C++ Headers
includedir = '${INCLUDEDIR}/lilv-%s/lilv' % LILV_MAJOR_VERSION
bld.install_files(includedir, bld.path.ant_glob('lilv/*.h'))
bld.install_files(includedir, bld.path.ant_glob('lilv/*.hpp'))
lib_source = '''
src/collections.c
src/filesystem.c
src/instance.c
src/lib.c
src/node.c
src/plugin.c
src/pluginclass.c
src/port.c
src/query.c
src/scalepoint.c
src/state.c
src/ui.c
src/util.c
src/world.c
src/zix/tree.c
'''.split()
lib = []
libflags = ['-fvisibility=hidden']
defines = []
if bld.is_defined('HAVE_LIBDL'):
lib += ['dl']
if bld.env.DEST_OS == 'win32':
lib = []
if bld.env.MSVC_COMPILER:
libflags = []
# Pkgconfig file
autowaf.build_pc(bld, 'LILV', LILV_VERSION, LILV_MAJOR_VERSION, [],
{'LILV_MAJOR_VERSION': LILV_MAJOR_VERSION,
'LILV_PKG_DEPS': 'lv2 serd-0 sord-0 sratom-0',
'LILV_PKG_LIBS': ' -l'.join([''] + lib)})
# Shared Library
if bld.env.BUILD_SHARED:
obj = bld(features = 'c cshlib',
export_includes = ['.'],
source = lib_source,
includes = ['.', './src'],
name = 'liblilv',
target = 'lilv-%s' % LILV_MAJOR_VERSION,
vnum = LILV_VERSION,
install_path = '${LIBDIR}',
defines = ['LILV_SHARED', 'LILV_INTERNAL'],
cflags = libflags,
lib = lib,
uselib = 'SERD SORD SRATOM LV2')
# Static library
if bld.env.BUILD_STATIC:
obj = bld(features = 'c cstlib',
export_includes = ['.'],
source = lib_source,
includes = ['.', './src'],
name = 'liblilv_static',
target = 'lilv-%s' % LILV_MAJOR_VERSION,
vnum = LILV_VERSION,
install_path = '${LIBDIR}',
defines = defines + ['LILV_INTERNAL'],
uselib = 'SERD SORD SRATOM LV2')
# Python bindings
if bld.env.LILV_PYTHON:
bld(features = 'subst',
is_copy = True,
source = 'bindings/python/lilv.py',
target = 'lilv.py',
install_path = '${PYTHONDIR}')
if bld.env.BUILD_TESTS:
import re
test_libs = lib
test_cflags = ['']
test_linkflags = ['']
if not bld.env.NO_COVERAGE:
test_cflags += ['--coverage']
test_linkflags += ['--coverage']
# Copy skeleton LV2 bundle for tests
for name in ('manifest.ttl', 'lv2core.ttl'):
bld(features = 'subst',
is_copy = True,
source = 'test/core.lv2/' + name,
target = 'test/test_lv2_path/core.lv2/' + name,
install_path = None)
# Make a pattern for shared objects without the 'lib' prefix
module_pattern = re.sub('^lib', '', bld.env.cshlib_PATTERN)
shlib_ext = module_pattern[module_pattern.rfind('.'):]
for p in ['test'] + test_plugins:
obj = bld(features = 'c cshlib',
source = 'test/%s.lv2/%s.c' % (p, p),
name = p,
target = 'test/%s.lv2/%s' % (p, p),
install_path = None,
defines = defines,
cflags = test_cflags,
linkflags = test_linkflags,
lib = test_libs,
uselib = 'LV2')
obj.env.cshlib_PATTERN = module_pattern
for p in test_plugins:
if not bld.path.find_node('test/%s.lv2/test_%s.c' % (p, p)):
continue
obj = bld(features = 'c cprogram',
source = 'test/%s.lv2/test_%s.c' % (p, p),
target = 'test/test_%s' % p,
includes = ['.', './src'],
use = 'liblilv_profiled',
install_path = None,
defines = defines,
cflags = test_cflags,
linkflags = test_linkflags,
lib = test_libs,
uselib = 'SERD SORD SRATOM LV2')
# Test plugin data files
for p in ['test'] + test_plugins:
for i in ['manifest.ttl.in', p + '.ttl.in']:
bundle = 'test/%s.lv2/' % p
bld(features = 'subst',
source = bundle + i,
target = bundle + i.replace('.in', ''),
install_path = None,
SHLIB_EXT = shlib_ext)
# Static profiled library (for unit test code coverage)
obj = bld(features = 'c cstlib',
source = lib_source,
includes = ['.', './src'],
name = 'liblilv_profiled',
target = 'lilv_profiled',
install_path = None,
defines = defines + ['LILV_INTERNAL'],
cflags = test_cflags,
linkflags = test_linkflags,
lib = test_libs,
uselib = 'SERD SORD SRATOM LV2')
# Unit test program
testdir = bld.path.get_bld().make_node('test').abspath()
bpath = os.path.join(testdir, 'test.lv2')
bpath = bpath.replace('\\', '/')
testdir = testdir.replace('\\', '/')
for test in tests:
obj = bld(features = 'c cprogram',
source = ['test/%s.c' % test,
'test/lilv_test_utils.c'],
includes = ['.', './src'],
use = 'liblilv_profiled',
lib = test_libs,
uselib = 'SERD SORD SRATOM LV2',
target = 'test/' + test,
install_path = None,
defines = (defines +
['LILV_TEST_BUNDLE=\"%s/\"' % bpath] +
['LILV_TEST_DIR=\"%s/\"' % testdir]),
cflags = test_cflags,
linkflags = test_linkflags)
# C++ API test
if 'COMPILER_CXX' in bld.env:
obj = bld(features = 'cxx cxxprogram',
source = 'test/lilv_cxx_test.cpp',
includes = ['.', './src'],
use = 'liblilv_profiled',
lib = test_libs,
uselib = 'SERD SORD SRATOM LV2',
target = 'test/lilv_cxx_test',
install_path = None,
cxxflags = test_cflags,
linkflags = test_linkflags)
if bld.env.LILV_PYTHON:
test_bundle = 'bindings/bindings_test_plugin.lv2/'
# Copy Python unittest files
for i in ['test_api.py']:
bld(features = 'subst',
is_copy = True,
source = 'bindings/test/python/' + i,
target = 'bindings/' + i,
install_path = None)
# Build bindings test plugin
obj = bld(features = 'c cshlib',
source = 'bindings/test/bindings_test_plugin.c',
name = 'bindings_test_plugin',
target = test_bundle + '/bindings_test_plugin',
install_path = None,
defines = defines,
cflags = test_cflags,
linkflags = test_linkflags,
lib = test_libs,
uselib = 'LV2')
obj.env.cshlib_PATTERN = module_pattern
# Bindings test plugin data files
for i in ['manifest.ttl.in', 'bindings_test_plugin.ttl.in']:
bld(features = 'subst',
source = 'bindings/test/' + i,
target = test_bundle + i.replace('.in', ''),
install_path = None,
SHLIB_EXT = shlib_ext)
# Utilities
if bld.env.BUILD_UTILS:
utils = '''
utils/lilv-bench
utils/lv2info
utils/lv2ls
'''
for i in utils.split():
build_util(bld, i, defines)
if bld.env.HAVE_SNDFILE:
obj = build_util(bld, 'utils/lv2apply', defines, 'SNDFILE')
# lv2bench (less portable than other utilities)
if (bld.env.DEST_OS != 'win32' and
bld.is_defined('HAVE_CLOCK_GETTIME') and
not bld.env.STATIC_PROGS):
obj = build_util(bld, 'utils/lv2bench', defines)
if bld.env.DEST_OS != 'darwin':
obj.lib = ['rt']
# Documentation
autowaf.build_dox(bld, 'LILV', LILV_VERSION, top, out)
# Man pages
bld.install_files('${MANDIR}/man1', bld.path.ant_glob('doc/*.1'))
# Bash completion
if bld.env.BASH_COMPLETION:
bld.install_as('${SYSCONFDIR}/bash_completion.d/lilv',
'utils/lilv.bash_completion')
bld.add_post_fun(autowaf.run_ldconfig)
def test(tst):
with tst.group('unit') as check:
for test in tests:
if not (sys.platform == 'win32' and test == 'test_state'):
check(['./test/' + test])
if tst.is_defined('LILV_CXX'):
check(['./test/lilv_cxx_test'])
if tst.env.LILV_PYTHON:
with tst.group('python') as check:
check(['python', '-m', 'unittest', 'discover', 'bindings/'])
with tst.group('plugin') as check:
for p in test_plugins:
prog_name = tst.env.cprogram_PATTERN % ('test_' + p)
if os.path.exists(os.path.join('test', prog_name)):
check(['./test/test_' + p, 'test/%s.lv2/' % p])
try:
shutil.rmtree('state')
except Exception:
pass
class LintContext(Build.BuildContext):
fun = cmd = 'lint'
def lint(ctx):
"checks code for style issues"
import subprocess
st = 0
if "FLAKE8" in ctx.env:
Logs.info("Running flake8")
st = subprocess.call([ctx.env.FLAKE8[0],
"wscript",
"--ignore",
"E101,E129,W191,E221,W504,E251,E241,E741"])
else:
Logs.warn("Not running flake8")
if "IWYU_TOOL" in ctx.env:
Logs.info("Running include-what-you-use")
cmd = [ctx.env.IWYU_TOOL[0], "-o", "clang", "-p", "build"]
output = subprocess.check_output(cmd).decode('utf-8')
if 'error: ' in output:
sys.stdout.write(output)
st += 1
else:
Logs.warn("Not running include-what-you-use")
if "CLANG_TIDY" in ctx.env and "clang" in ctx.env.CC[0]:
Logs.info("Running clang-tidy")
sources = glob.glob('src/*.c') + glob.glob('tests/*.c')
sources = list(map(os.path.abspath, sources))
procs = []
for source in sources:
cmd = [ctx.env.CLANG_TIDY[0], "--quiet", "-p=.", source]
procs += [subprocess.Popen(cmd, cwd="build")]
for proc in procs:
stdout, stderr = proc.communicate()
st += proc.returncode
else:
Logs.warn("Not running clang-tidy")
if st != 0:
sys.exit(st)