[19c3d75] | 1 | import distutils.ccompiler |
---|
[541ea280] | 2 | import sys |
---|
| 3 | import os |
---|
| 4 | import subprocess |
---|
| 5 | import glob |
---|
[ccb9fb5] | 6 | |
---|
[89b04e8] | 7 | header = os.path.join('src', 'aubio.h') |
---|
| 8 | output_path = os.path.join('python', 'gen') |
---|
[1167631] | 9 | |
---|
| 10 | source_header = """// this file is generated! do not modify |
---|
[ccb9fb5] | 11 | #include "aubio-types.h" |
---|
| 12 | """ |
---|
| 13 | |
---|
[51ca615] | 14 | default_skip_objects = [ |
---|
[541ea280] | 15 | # already in ext/ |
---|
| 16 | 'fft', |
---|
| 17 | 'pvoc', |
---|
| 18 | 'filter', |
---|
| 19 | 'filterbank', |
---|
| 20 | # AUBIO_UNSTABLE |
---|
| 21 | 'hist', |
---|
| 22 | 'parameter', |
---|
| 23 | 'scale', |
---|
| 24 | 'beattracking', |
---|
| 25 | 'resampler', |
---|
| 26 | 'peakpicker', |
---|
| 27 | 'pitchfcomb', |
---|
| 28 | 'pitchmcomb', |
---|
| 29 | 'pitchschmitt', |
---|
| 30 | 'pitchspecacf', |
---|
| 31 | 'pitchyin', |
---|
| 32 | 'pitchyinfft', |
---|
[9fa0ed1] | 33 | 'pitchyinfast', |
---|
[541ea280] | 34 | 'sink', |
---|
| 35 | 'sink_apple_audio', |
---|
| 36 | 'sink_sndfile', |
---|
| 37 | 'sink_wavwrite', |
---|
| 38 | #'mfcc', |
---|
| 39 | 'source', |
---|
| 40 | 'source_apple_audio', |
---|
| 41 | 'source_sndfile', |
---|
| 42 | 'source_avcodec', |
---|
| 43 | 'source_wavread', |
---|
| 44 | #'sampler', |
---|
| 45 | 'audio_unit', |
---|
| 46 | 'spectral_whitening', |
---|
| 47 | ] |
---|
| 48 | |
---|
[ccb9fb5] | 49 | |
---|
[19c3d75] | 50 | def get_preprocessor(): |
---|
| 51 | # findout which compiler to use |
---|
| 52 | from distutils.sysconfig import customize_compiler |
---|
| 53 | compiler_name = distutils.ccompiler.get_default_compiler() |
---|
| 54 | compiler = distutils.ccompiler.new_compiler(compiler=compiler_name) |
---|
| 55 | try: |
---|
| 56 | customize_compiler(compiler) |
---|
| 57 | except AttributeError as e: |
---|
| 58 | print("Warning: failed customizing compiler ({:s})".format(repr(e))) |
---|
| 59 | |
---|
| 60 | if hasattr(compiler, 'initialize'): |
---|
| 61 | try: |
---|
| 62 | compiler.initialize() |
---|
| 63 | except ValueError as e: |
---|
| 64 | print("Warning: failed initializing compiler ({:s})".format(repr(e))) |
---|
| 65 | |
---|
| 66 | cpp_cmd = None |
---|
[541ea280] | 67 | if hasattr(compiler, 'preprocessor'): # for unixccompiler |
---|
[19c3d75] | 68 | cpp_cmd = compiler.preprocessor |
---|
[541ea280] | 69 | elif hasattr(compiler, 'compiler'): # for ccompiler |
---|
[19c3d75] | 70 | cpp_cmd = compiler.compiler.split() |
---|
| 71 | cpp_cmd += ['-E'] |
---|
[541ea280] | 72 | elif hasattr(compiler, 'cc'): # for msvccompiler |
---|
[19c3d75] | 73 | cpp_cmd = compiler.cc.split() |
---|
| 74 | cpp_cmd += ['-E'] |
---|
| 75 | |
---|
| 76 | if not cpp_cmd: |
---|
| 77 | print("Warning: could not guess preprocessor, using env's CC") |
---|
| 78 | cpp_cmd = os.environ.get('CC', 'cc').split() |
---|
| 79 | cpp_cmd += ['-E'] |
---|
[b075ad8] | 80 | cpp_cmd += ['-x', 'c'] # force C language (emcc defaults to c++) |
---|
[19c3d75] | 81 | return cpp_cmd |
---|
[ccb9fb5] | 82 | |
---|
[150ec2d] | 83 | |
---|
| 84 | def get_c_declarations(header=header, usedouble=False): |
---|
| 85 | ''' return a dense and preprocessed string of all c declarations implied by aubio.h |
---|
| 86 | ''' |
---|
[19c3d75] | 87 | cpp_cmd = get_preprocessor() |
---|
| 88 | |
---|
| 89 | macros = [('AUBIO_UNSTABLE', 1)] |
---|
[3d14829] | 90 | if usedouble: |
---|
| 91 | macros += [('HAVE_AUBIO_DOUBLE', 1)] |
---|
[19c3d75] | 92 | |
---|
| 93 | if not os.path.isfile(header): |
---|
| 94 | raise Exception("could not find include file " + header) |
---|
| 95 | |
---|
| 96 | includes = [os.path.dirname(header)] |
---|
| 97 | cpp_cmd += distutils.ccompiler.gen_preprocess_options(macros, includes) |
---|
| 98 | cpp_cmd += [header] |
---|
| 99 | |
---|
| 100 | print("Running command: {:s}".format(" ".join(cpp_cmd))) |
---|
| 101 | proc = subprocess.Popen(cpp_cmd, |
---|
[541ea280] | 102 | stderr=subprocess.PIPE, |
---|
| 103 | stdout=subprocess.PIPE) |
---|
[19c3d75] | 104 | assert proc, 'Proc was none' |
---|
| 105 | cpp_output = proc.stdout.read() |
---|
| 106 | err_output = proc.stderr.read() |
---|
| 107 | if not cpp_output: |
---|
| 108 | raise Exception("preprocessor output is empty:\n%s" % err_output) |
---|
| 109 | elif err_output: |
---|
[541ea280] | 110 | print("Warning: preprocessor produced warnings:\n%s" % err_output) |
---|
[19c3d75] | 111 | if not isinstance(cpp_output, list): |
---|
| 112 | cpp_output = [l.strip() for l in cpp_output.decode('utf8').split('\n')] |
---|
[ccb9fb5] | 113 | |
---|
| 114 | cpp_output = filter(lambda y: len(y) > 1, cpp_output) |
---|
[19c3d75] | 115 | cpp_output = list(filter(lambda y: not y.startswith('#'), cpp_output)) |
---|
[ccb9fb5] | 116 | |
---|
| 117 | i = 1 |
---|
| 118 | while 1: |
---|
[541ea280] | 119 | if i >= len(cpp_output): |
---|
| 120 | break |
---|
[50853b0] | 121 | if ('{' in cpp_output[i - 1]) and ('}' not in cpp_output[i - 1]) or (';' not in cpp_output[i - 1]): |
---|
[541ea280] | 122 | cpp_output[i] = cpp_output[i - 1] + ' ' + cpp_output[i] |
---|
| 123 | cpp_output.pop(i - 1) |
---|
[15a43e0] | 124 | elif ('}' in cpp_output[i]): |
---|
| 125 | cpp_output[i] = cpp_output[i - 1] + ' ' + cpp_output[i] |
---|
| 126 | cpp_output.pop(i - 1) |
---|
[ccb9fb5] | 127 | else: |
---|
| 128 | i += 1 |
---|
| 129 | |
---|
[eea6101] | 130 | # clean pointer notations |
---|
| 131 | tmp = [] |
---|
| 132 | for l in cpp_output: |
---|
[2f5f1e4] | 133 | tmp += [l.replace(' *', ' * ')] |
---|
[541ea280] | 134 | cpp_output = tmp |
---|
[ccb9fb5] | 135 | |
---|
[150ec2d] | 136 | return cpp_output |
---|
[ccb9fb5] | 137 | |
---|
[541ea280] | 138 | |
---|
[dad51ce] | 139 | def get_cpp_objects_from_c_declarations(c_declarations, skip_objects=None): |
---|
[50853b0] | 140 | if skip_objects is None: |
---|
[51ca615] | 141 | skip_objects = default_skip_objects |
---|
[541ea280] | 142 | typedefs = filter(lambda y: y.startswith('typedef struct _aubio'), c_declarations) |
---|
[ccb9fb5] | 143 | cpp_objects = [a.split()[3][:-1] for a in typedefs] |
---|
[51ca615] | 144 | cpp_objects_filtered = filter(lambda y: not y[6:-2] in skip_objects, cpp_objects) |
---|
| 145 | return cpp_objects_filtered |
---|
[ccb9fb5] | 146 | |
---|
[6cbf34b] | 147 | |
---|
[50853b0] | 148 | def get_all_func_names_from_lib(lib): |
---|
[6cbf34b] | 149 | ''' return flat string of all function used in lib |
---|
| 150 | ''' |
---|
| 151 | res = [] |
---|
[50853b0] | 152 | for _, v in lib.items(): |
---|
[6cbf34b] | 153 | if isinstance(v, dict): |
---|
[50853b0] | 154 | res += get_all_func_names_from_lib(v) |
---|
[6cbf34b] | 155 | elif isinstance(v, list): |
---|
| 156 | for elem in v: |
---|
| 157 | e = elem.split('(') |
---|
| 158 | if len(e) < 2: |
---|
| 159 | continue # not a function |
---|
| 160 | fname_part = e[0].strip().split(' ') |
---|
| 161 | fname = fname_part[-1] |
---|
| 162 | if fname: |
---|
| 163 | res += [fname] |
---|
| 164 | else: |
---|
| 165 | raise NameError('gen_lib : weird function: ' + str(e)) |
---|
[ccb9fb5] | 166 | |
---|
[6cbf34b] | 167 | return res |
---|
[ccb9fb5] | 168 | |
---|
[41fc24f] | 169 | |
---|
[6cbf34b] | 170 | def generate_lib_from_c_declarations(cpp_objects, c_declarations): |
---|
| 171 | ''' returns a lib from given cpp_object names |
---|
| 172 | |
---|
| 173 | a lib is a dict grouping functions by family (onset,pitch...) |
---|
| 174 | each eement is itself a dict of functions grouped by puposes as : |
---|
| 175 | struct, new, del, do, get, set and other |
---|
| 176 | ''' |
---|
[ccb9fb5] | 177 | lib = {} |
---|
| 178 | |
---|
| 179 | for o in cpp_objects: |
---|
[0b2643b] | 180 | shortname = o |
---|
[5674833] | 181 | if o[:6] == 'aubio_': |
---|
[0b2643b] | 182 | shortname = o[6:-2] # without aubio_ prefix and _t suffix |
---|
[541ea280] | 183 | |
---|
[c96e6c0] | 184 | lib[shortname] = {'struct': [], 'new': [], 'del': [], 'do': [], 'rdo': [], 'get': [], 'set': [], 'other': []} |
---|
[ccb9fb5] | 185 | lib[shortname]['longname'] = o |
---|
| 186 | lib[shortname]['shortname'] = shortname |
---|
[5674833] | 187 | |
---|
[0b2643b] | 188 | fullshortname = o[:-2] # name without _t suffix |
---|
| 189 | |
---|
[150ec2d] | 190 | for fn in c_declarations: |
---|
[0b2643b] | 191 | func_name = fn.split('(')[0].strip().split(' ')[-1] |
---|
| 192 | if func_name.startswith(fullshortname + '_') or func_name.endswith(fullshortname): |
---|
[5674833] | 193 | # print "found", shortname, "in", fn |
---|
[ccb9fb5] | 194 | if 'typedef struct ' in fn: |
---|
| 195 | lib[shortname]['struct'].append(fn) |
---|
| 196 | elif '_do' in fn: |
---|
| 197 | lib[shortname]['do'].append(fn) |
---|
[c96e6c0] | 198 | elif '_rdo' in fn: |
---|
| 199 | lib[shortname]['rdo'].append(fn) |
---|
[ccb9fb5] | 200 | elif 'new_' in fn: |
---|
| 201 | lib[shortname]['new'].append(fn) |
---|
| 202 | elif 'del_' in fn: |
---|
| 203 | lib[shortname]['del'].append(fn) |
---|
| 204 | elif '_get_' in fn: |
---|
| 205 | lib[shortname]['get'].append(fn) |
---|
| 206 | elif '_set_' in fn: |
---|
| 207 | lib[shortname]['set'].append(fn) |
---|
| 208 | else: |
---|
[541ea280] | 209 | # print "no idea what to do about", fn |
---|
[ccb9fb5] | 210 | lib[shortname]['other'].append(fn) |
---|
[41fc24f] | 211 | return lib |
---|
[ccb9fb5] | 212 | |
---|
[541ea280] | 213 | |
---|
[150ec2d] | 214 | def print_c_declarations_results(lib, c_declarations): |
---|
| 215 | for fn in c_declarations: |
---|
[ccb9fb5] | 216 | found = 0 |
---|
| 217 | for o in lib: |
---|
| 218 | for family in lib[o]: |
---|
| 219 | if fn in lib[o][family]: |
---|
| 220 | found = 1 |
---|
| 221 | if found == 0: |
---|
[541ea280] | 222 | print("missing", fn) |
---|
[ccb9fb5] | 223 | |
---|
| 224 | for o in lib: |
---|
| 225 | for family in lib[o]: |
---|
| 226 | if type(lib[o][family]) == str: |
---|
[541ea280] | 227 | print("{:15s} {:10s} {:s}".format(o, family, lib[o][family])) |
---|
[ccb9fb5] | 228 | elif len(lib[o][family]) == 1: |
---|
[541ea280] | 229 | print("{:15s} {:10s} {:s}".format(o, family, lib[o][family][0])) |
---|
[a7f398d] | 230 | else: |
---|
[541ea280] | 231 | print("{:15s} {:10s} {:s}".format(o, family, lib[o][family])) |
---|
[41fc24f] | 232 | |
---|
[ccb9fb5] | 233 | |
---|
[41fc24f] | 234 | def generate_external(header=header, output_path=output_path, usedouble=False, overwrite=True): |
---|
[541ea280] | 235 | if not os.path.isdir(output_path): |
---|
| 236 | os.mkdir(output_path) |
---|
| 237 | elif not overwrite: |
---|
| 238 | return sorted(glob.glob(os.path.join(output_path, '*.c'))) |
---|
[41fc24f] | 239 | |
---|
[150ec2d] | 240 | c_declarations = get_c_declarations(header, usedouble=usedouble) |
---|
| 241 | cpp_objects = get_cpp_objects_from_c_declarations(c_declarations) |
---|
[41fc24f] | 242 | |
---|
[6cbf34b] | 243 | lib = generate_lib_from_c_declarations(cpp_objects, c_declarations) |
---|
[150ec2d] | 244 | # print_c_declarations_results(lib, c_declarations) |
---|
[41fc24f] | 245 | |
---|
| 246 | sources_list = [] |
---|
[1167631] | 247 | try: |
---|
| 248 | from .gen_code import MappedObject |
---|
[19c3d75] | 249 | except (SystemError, ValueError): |
---|
[1167631] | 250 | from gen_code import MappedObject |
---|
[ccb9fb5] | 251 | for o in lib: |
---|
[1167631] | 252 | out = source_header |
---|
[541ea280] | 253 | mapped = MappedObject(lib[o], usedouble=usedouble) |
---|
[ccb9fb5] | 254 | out += mapped.gen_code() |
---|
| 255 | output_file = os.path.join(output_path, 'gen-%s.c' % o) |
---|
| 256 | with open(output_file, 'w') as f: |
---|
| 257 | f.write(out) |
---|
[541ea280] | 258 | print("wrote %s" % output_file) |
---|
[ccb9fb5] | 259 | sources_list.append(output_file) |
---|
| 260 | |
---|
[1167631] | 261 | out = source_header |
---|
[ccb9fb5] | 262 | out += "#include \"aubio-generated.h\"" |
---|
| 263 | check_types = "\n || ".join(["PyType_Ready(&Py_%sType) < 0" % o for o in lib]) |
---|
| 264 | out += """ |
---|
| 265 | |
---|
| 266 | int generated_types_ready (void) |
---|
| 267 | {{ |
---|
| 268 | return ({pycheck_types}); |
---|
| 269 | }} |
---|
[541ea280] | 270 | """.format(pycheck_types=check_types) |
---|
[ccb9fb5] | 271 | |
---|
| 272 | add_types = "".join([""" |
---|
| 273 | Py_INCREF (&Py_{name}Type); |
---|
[541ea280] | 274 | PyModule_AddObject(m, "{name}", (PyObject *) & Py_{name}Type);""".format(name=o) for o in lib]) |
---|
[ccb9fb5] | 275 | out += """ |
---|
| 276 | |
---|
| 277 | void add_generated_objects ( PyObject *m ) |
---|
| 278 | {{ |
---|
| 279 | {add_types} |
---|
| 280 | }} |
---|
[541ea280] | 281 | """.format(add_types=add_types) |
---|
[ccb9fb5] | 282 | |
---|
| 283 | output_file = os.path.join(output_path, 'aubio-generated.c') |
---|
| 284 | with open(output_file, 'w') as f: |
---|
| 285 | f.write(out) |
---|
[541ea280] | 286 | print("wrote %s" % output_file) |
---|
[ccb9fb5] | 287 | sources_list.append(output_file) |
---|
[a7f398d] | 288 | |
---|
[b6230d8] | 289 | objlist = "".join(["extern PyTypeObject Py_%sType;\n" % p for p in lib]) |
---|
[a89ed31] | 290 | out = """// generated list of objects created with gen_external.py |
---|
[ccb9fb5] | 291 | |
---|
[a89ed31] | 292 | #include <Python.h> |
---|
| 293 | """ |
---|
| 294 | if usedouble: |
---|
| 295 | out += """ |
---|
| 296 | #ifndef HAVE_AUBIO_DOUBLE |
---|
| 297 | #define HAVE_AUBIO_DOUBLE 1 |
---|
| 298 | #endif |
---|
| 299 | """ |
---|
| 300 | out += """ |
---|
[ccb9fb5] | 301 | {objlist} |
---|
| 302 | int generated_objects ( void ); |
---|
| 303 | void add_generated_objects( PyObject *m ); |
---|
[541ea280] | 304 | """.format(objlist=objlist) |
---|
[ccb9fb5] | 305 | |
---|
| 306 | output_file = os.path.join(output_path, 'aubio-generated.h') |
---|
| 307 | with open(output_file, 'w') as f: |
---|
| 308 | f.write(out) |
---|
[541ea280] | 309 | print("wrote %s" % output_file) |
---|
[ccb9fb5] | 310 | # no need to add header to list of sources |
---|
| 311 | |
---|
[ee7e543] | 312 | return sorted(sources_list) |
---|
[ccb9fb5] | 313 | |
---|
| 314 | if __name__ == '__main__': |
---|
[541ea280] | 315 | if len(sys.argv) > 1: |
---|
| 316 | header = sys.argv[1] |
---|
| 317 | if len(sys.argv) > 2: |
---|
| 318 | output_path = sys.argv[2] |
---|
[1167631] | 319 | generate_external(header, output_path) |
---|