summaryrefslogtreecommitdiff
path: root/tests/helpers/gtkdoc_scangobj_runner.py
blob: c3546f7d1e6dc05e60390872ccc81eb565889d20 (plain)
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
# -*- python -*-

from __future__ import print_function

import argparse
import os
import sys

from subprocess import call, PIPE, Popen

if __name__ == '__main__':
    parser = argparse.ArgumentParser(description='gtkdoc-scangobj runner.')

    parser.add_argument("--binary-dir", type=str, required=True,
                        help='Path to be used as a working directory')
    parser.add_argument("--pkg-config", type=str, required=True,
                        help='Path to the pkg-config executable to be used')
    parser.add_argument("--extra-pkg", type=str, default=[], action='append',
                        help='Extra package to be use while scanning')
    parser.add_argument("--extra-cflags", type=str, default=[], action='append',
                        help='Extra Cflags to be use while scanning')
    parser.add_argument("--extra-lib", type=str, default=[], action='append',
                        help='Extra library to be use while scanning')

    options, arguments = parser.parse_known_args()

    arguments.insert(0, os.path.join(options.binary_dir, 'gtkdoc-scangobj'))

    process = Popen([options.pkg_config,
                    '--cflags'] + options.extra_pkg,
                    stdout=PIPE, stderr=PIPE)

    output, error = process.communicate()
    if process.returncode == 0:
        cflags = output.rstrip().decode('utf-8')
        arguments.append('--cflags={0}'.format(cflags))

    for flag in options.extra_cflags:
        arguments.append('--cflags={0}'.format(flag))

    process = Popen([options.pkg_config,
                    '--libs'] + options.extra_pkg,
                    stdout=PIPE, stderr=PIPE)

    output, error = process.communicate()
    if process.returncode == 0:
        arguments.append('--ldflags={0}'.format(output.rstrip().decode('utf-8')))

    for lib in options.extra_lib:
        arguments.append('--ldflags=-l{0}'.format(os.path.basename(lib).split('.')[0].lstrip('lib')))
        arguments.append('--ldflags=-L{0}'.format(os.path.dirname(lib)))
        arguments.append('--ldflags=-Wl,-rpath,{0}'.format(os.path.dirname(lib)))

    sys.exit(call(arguments))