source: python/lib/moresetuptools.py @ 42dbcf4

feature/crepe
Last change on this file since 42dbcf4 was d0c88f4, checked in by Paul Brossier <piem@piem.org>, 3 years ago

[python] also add hd5 when building standolone python external

  • Property mode set to 100644
File size: 8.0 KB
Line 
1""" A collection of function used from setup.py distutils script """
2#
3import sys, os, glob, subprocess
4import distutils, distutils.command.clean, distutils.dir_util
5from gen_external import generate_external, header, output_path
6
7from this_version import get_aubio_version
8
9# inspired from https://gist.github.com/abergmeier/9488990
10def add_packages(packages, ext=None, **kw):
11    """ use pkg-config to search which of 'packages' are installed """
12    flag_map = {
13        '-I': 'include_dirs',
14        '-L': 'library_dirs',
15        '-l': 'libraries'}
16
17    # if a setuptools extension is passed, fill it with pkg-config results
18    if ext:
19        kw = {'include_dirs': ext.include_dirs,
20              'extra_link_args': ext.extra_link_args,
21              'library_dirs': ext.library_dirs,
22              'libraries': ext.libraries,
23             }
24
25    for package in packages:
26        print("checking for {:s}".format(package))
27        cmd = ['pkg-config', '--libs', '--cflags', package]
28        try:
29            tokens = subprocess.check_output(cmd)
30        except Exception as e:
31            print("Running \"{:s}\" failed: {:s}".format(' '.join(cmd), repr(e)))
32            continue
33        tokens = tokens.decode('utf8').split()
34        for token in tokens:
35            key = token[:2]
36            try:
37                arg = flag_map[key]
38                value = token[2:]
39            except KeyError:
40                arg = 'extra_link_args'
41                value = token
42            kw.setdefault(arg, []).append(value)
43    for key, value in iter(kw.items()): # remove duplicated
44        kw[key] = list(set(value))
45    return kw
46
47def add_local_aubio_header(ext):
48    """ use local "src/aubio.h", not <aubio/aubio.h>"""
49    ext.define_macros += [('USE_LOCAL_AUBIO', 1)]
50    ext.include_dirs += ['src'] # aubio.h
51
52def add_local_aubio_lib(ext):
53    """ add locally built libaubio from build/src """
54    print("Info: using locally built libaubio")
55    ext.library_dirs += [os.path.join('build', 'src')]
56    ext.libraries += ['aubio']
57
58def add_local_aubio_sources(ext):
59    """ build aubio inside python module instead of linking against libaubio """
60    print("Info: libaubio was not installed or built locally with waf, adding src/")
61    aubio_sources = sorted(glob.glob(os.path.join('src', '**.c')))
62    aubio_sources += sorted(glob.glob(os.path.join('src', '*', '**.c')))
63    ext.sources += aubio_sources
64
65def add_local_macros(ext, usedouble = False):
66    if usedouble:
67        ext.define_macros += [('HAVE_AUBIO_DOUBLE', 1)]
68    # define macros (waf puts them in build/src/config.h)
69    for define_macro in ['HAVE_STDLIB_H', 'HAVE_STDIO_H',
70                         'HAVE_MATH_H', 'HAVE_STRING_H',
71                         'HAVE_ERRNO_H', 'HAVE_C99_VARARGS_MACROS',
72                         'HAVE_LIMITS_H', 'HAVE_STDARG_H',
73                         'HAVE_MEMCPY_HACKS']:
74        ext.define_macros += [(define_macro, 1)]
75
76def add_external_deps(ext, usedouble = False):
77    # loof for additional packages
78    print("Info: looking for *optional* additional packages")
79    packages = ['libavcodec', 'libavformat', 'libavutil',
80                'libswresample', 'libavresample',
81                'jack',
82                'sndfile',
83                'rubberband',
84                'hdf5',
85                #'fftw3f',
86               ]
87    # samplerate only works with float
88    if usedouble is False:
89        packages += ['samplerate']
90    else:
91        print("Info: not adding libsamplerate in double precision mode")
92    add_packages(packages, ext=ext)
93    if 'avcodec' in ext.libraries \
94            and 'avformat' in ext.libraries \
95            and 'avutil' in ext.libraries:
96        if 'swresample' in ext.libraries:
97            ext.define_macros += [('HAVE_SWRESAMPLE', 1)]
98        elif 'avresample' in ext.libraries:
99            ext.define_macros += [('HAVE_AVRESAMPLE', 1)]
100        if 'swresample' in ext.libraries or 'avresample' in ext.libraries:
101            ext.define_macros += [('HAVE_LIBAV', 1)]
102    if 'sndfile' in ext.libraries:
103        ext.define_macros += [('HAVE_SNDFILE', 1)]
104    if 'samplerate' in ext.libraries:
105        ext.define_macros += [('HAVE_SAMPLERATE', 1)]
106    if 'rubberband' in ext.libraries:
107        ext.define_macros += [('HAVE_RUBBERBAND', 1)]
108    if 'fftw3f' in ext.libraries:
109        ext.define_macros += [('HAVE_FFTW3F', 1)]
110        ext.define_macros += [('HAVE_FFTW3', 1)]
111    if 'hdf5' in ext.libraries:
112        ext.libraries += ['hdf5_hl']
113        ext.define_macros += [('HAVE_HDF5', 1)]
114
115    # add accelerate on darwin
116    if sys.platform.startswith('darwin'):
117        ext.extra_link_args += ['-framework', 'Accelerate']
118        ext.define_macros += [('HAVE_ACCELERATE', 1)]
119        ext.define_macros += [('HAVE_SOURCE_APPLE_AUDIO', 1)]
120        ext.define_macros += [('HAVE_SINK_APPLE_AUDIO', 1)]
121
122    if sys.platform.startswith('win'):
123        ext.define_macros += [('HAVE_WIN_HACKS', 1)]
124
125    ext.define_macros += [('HAVE_WAVWRITE', 1)]
126    ext.define_macros += [('HAVE_WAVREAD', 1)]
127
128    # TODO: add cblas
129    if 0:
130        ext.libraries += ['cblas']
131        ext.define_macros += [('HAVE_ATLAS_CBLAS_H', 1)]
132
133def add_system_aubio(ext):
134    # use pkg-config to find aubio's location
135    aubio_version = get_aubio_version()
136    add_packages(['aubio = ' + aubio_version], ext)
137    if 'aubio' not in ext.libraries:
138        print("Info: aubio " + aubio_version + " was not found by pkg-config")
139    else:
140        print("Info: using system aubio " + aubio_version + " found in " + ' '.join(ext.library_dirs))
141
142def add_libav_on_win(ext):
143    """ no pkg-config on windows, simply assume these libs are available """
144    ext.libraries += ['avformat', 'avutil', 'avcodec', 'swresample']
145    for define_macro in ['HAVE_LIBAV', 'HAVE_SWRESAMPLE']:
146        ext.define_macros += [(define_macro, 1)]
147
148class CleanGenerated(distutils.command.clean.clean):
149    def run(self):
150        if os.path.isdir(output_path):
151            distutils.dir_util.remove_tree(output_path)
152
153from distutils.command.build_ext import build_ext as _build_ext
154class build_ext(_build_ext):
155
156    user_options = _build_ext.user_options + [
157            # The format is (long option, short option, description).
158            ('enable-double', None, 'use HAVE_AUBIO_DOUBLE=1 (default: 0)'),
159            ]
160
161    def initialize_options(self):
162        _build_ext.initialize_options(self)
163        self.enable_double = False
164
165    def finalize_options(self):
166        _build_ext.finalize_options(self)
167        if self.enable_double:
168            self.announce(
169                    'will generate code for aubio compiled with HAVE_AUBIO_DOUBLE=1',
170                    level=distutils.log.INFO)
171
172    def build_extension(self, extension):
173        if self.enable_double or 'HAVE_AUBIO_DOUBLE' in os.environ:
174            enable_double = True
175        else:
176            enable_double = False
177        # seack for aubio headers and lib in PKG_CONFIG_PATH
178        add_system_aubio(extension)
179        # the lib was not installed on this system
180        if 'aubio' not in extension.libraries:
181            # use local src/aubio.h
182            if os.path.isfile(os.path.join('src', 'aubio.h')):
183                add_local_aubio_header(extension)
184            add_local_macros(extension, usedouble=enable_double)
185            # look for a local waf build
186            if os.path.isfile(os.path.join('build','src', 'fvec.c.1.o')):
187                add_local_aubio_lib(extension)
188            else:
189                # check for external dependencies
190                add_external_deps(extension, usedouble=enable_double)
191                # force adding libav on windows
192                if os.name == 'nt' and ('WITH_LIBAV' in os.environ \
193                        or 'CONDA_PREFIX' in os.environ):
194                    add_libav_on_win(extension)
195                # add libaubio sources and look for optional deps with pkg-config
196                add_local_aubio_sources(extension)
197        # generate files python/gen/*.c, python/gen/aubio-generated.h
198        extension.include_dirs += [ output_path ]
199        extension.sources += generate_external(header, output_path, overwrite = False,
200                usedouble=enable_double)
201        return _build_ext.build_extension(self, extension)
Note: See TracBrowser for help on using the repository browser.