summaryrefslogtreecommitdiff
path: root/libbtrfsutil/python/setup.py
blob: df44809f2cc3d8082de3a5fbc0ccbdf1dff6d5ba (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
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
#!/usr/bin/env python3

# Copyright (C) 2018 Facebook
#
# This file is part of libbtrfsutil.
#
# libbtrfsutil is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# libbtrfsutil is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with libbtrfsutil.  If not, see <http://www.gnu.org/licenses/>.

import re
import os
import os.path
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext
import subprocess


def get_version():
    with open('../btrfsutil.h', 'r') as f:
        btrfsutil_h = f.read()
    major = re.search(r'^#define BTRFS_UTIL_VERSION_MAJOR ([0-9]+)$',
                      btrfsutil_h, flags=re.MULTILINE).group(1)
    minor = re.search(r'^#define BTRFS_UTIL_VERSION_MINOR ([0-9]+)$',
                      btrfsutil_h, flags=re.MULTILINE).group(1)
    patch = re.search(r'^#define BTRFS_UTIL_VERSION_PATCH ([0-9]+)$',
                      btrfsutil_h, flags=re.MULTILINE).group(1)
    return major + '.' + minor + '.' + patch


def out_of_date(dependencies, target):
    dependency_mtimes = [os.path.getmtime(dependency) for dependency in dependencies]
    try:
        target_mtime = os.path.getmtime(target)
    except OSError:
        return True
    return any(dependency_mtime >= target_mtime for dependency_mtime in dependency_mtimes)


def gen_constants():
    with open('../btrfsutil.h', 'r') as f:
        btrfsutil_h = f.read()

    constants = re.findall(
        r'^\s*(BTRFS_UTIL_ERROR_[a-zA-Z0-9_]+)',
        btrfsutil_h, flags=re.MULTILINE)

    with open('constants.c', 'w') as f:
        f.write("""\
#include <btrfsutil.h>
#include "btrfsutilpy.h"

void add_module_constants(PyObject *m)
{
""")
        for constant in constants:
            assert constant.startswith('BTRFS_UTIL_')
            name = constant[len('BTRFS_UTIL_'):]
            f.write('\tPyModule_AddIntConstant(m, "{}", {});\n'.format(name, constant))
        f.write("""\
}
""")


class my_build_ext(build_ext):
    def run(self):
        if out_of_date(['../btrfsutil.h'], 'constants.c'):
            try:
                gen_constants()
            except Exception as e:
                try:
                    os.remove('constants.c')
                except OSError:
                    pass
                raise e
        super().run()


module = Extension(
    name='btrfsutil',
    sources=[
        'constants.c',
        'error.c',
        'filesystem.c',
        'module.c',
        'qgroup.c',
    ],
    include_dirs=['..'],
    library_dirs=['../..'],
    libraries=['btrfsutil'],
)

setup(
    name='btrfsutil',
    version=get_version(),
    description='Library for managing Btrfs filesystems',
    url='https://github.com/kdave/btrfs-progs',
    license='LGPLv3',
    cmdclass={'build_ext': my_build_ext},
    ext_modules=[module],
)