summaryrefslogtreecommitdiffstats
path: root/python/mozbuild/mozbuild/action/package_generated_sources.py
blob: d87a75fc6f7ea9bd32b82c4a3d0802f3e878ec42 (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
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

import argparse
import sys

import buildconfig
import mozpack.path as mozpath
from mozpack.archive import create_tar_gz_from_files
from mozpack.files import BaseFile

from mozbuild.generated_sources import get_generated_sources


def main(argv):
    parser = argparse.ArgumentParser(description="Produce archive of generated sources")
    parser.add_argument("outputfile", help="File to write output to")
    args = parser.parse_args(argv)

    objdir_abspath = mozpath.abspath(buildconfig.topobjdir)

    def is_valid_entry(entry):
        if isinstance(entry[1], BaseFile):
            entry_abspath = mozpath.abspath(entry[1].path)
        else:
            entry_abspath = mozpath.abspath(entry[1])
        if not entry_abspath.startswith(objdir_abspath):
            print(
                "Warning: omitting generated source [%s] from archive" % entry_abspath,
                file=sys.stderr,
            )
            return False
        return True

    files = dict(filter(is_valid_entry, get_generated_sources()))
    with open(args.outputfile, "wb") as fh:
        create_tar_gz_from_files(fh, files, compresslevel=5)


if __name__ == "__main__":
    sys.exit(main(sys.argv[1:]))