|
| 1 | +import argparse |
| 2 | +import collections |
| 3 | +import os |
| 4 | +import tarfile |
| 5 | + |
| 6 | +parser = argparse.ArgumentParser( |
| 7 | + fromfile_prefix_chars='@', |
| 8 | + description='Bundle terraform files into an archive') |
| 9 | + |
| 10 | +parser.add_argument( |
| 11 | + '--file', action='append', metavar=('tgt_path', 'src'), nargs=2, default=[], |
| 12 | + help="'src' file will be added to 'tgt_path'") |
| 13 | + |
| 14 | +parser.add_argument( |
| 15 | + '--embed', action='append', metavar=('embed_path', 'src_tar'), nargs=2, default=[], |
| 16 | + help="'src' archive will be embedded in 'embed_path'. If 'embed_path=.' then archive content will be merged into " |
| 17 | + "the output root") |
| 18 | + |
| 19 | +parser.add_argument( |
| 20 | + '--output', action='store', required=True, |
| 21 | + help="Output path of bundled archive") |
| 22 | + |
| 23 | +BundleItem = collections.namedtuple('BundleItem', 'tarinfo file') |
| 24 | + |
| 25 | + |
| 26 | +class Bundle: |
| 27 | + |
| 28 | + def __init__(self, output): |
| 29 | + # map of paths to BundleItems |
| 30 | + self._file_map = {} |
| 31 | + self._output = tarfile.open(output, "w") |
| 32 | + |
| 33 | + def add(self, src, arcname): |
| 34 | + f = open(os.path.realpath(src), 'r') |
| 35 | + tarinfo = self._output.gettarinfo(arcname=arcname, fileobj=f) |
| 36 | + if self._file_map.has_key(tarinfo.name): |
| 37 | + raise ValueError("File '%s' is already in archive" % tarinfo.name) |
| 38 | + tarinfo.mtime = 0 # zero out modification time |
| 39 | + self._file_map[tarinfo.name] = BundleItem(tarinfo, f) |
| 40 | + |
| 41 | + def embed(self, archive, embed_path): |
| 42 | + tar = tarfile.open(archive) |
| 43 | + for tarinfo in tar.getmembers(): |
| 44 | + f = tar.extractfile(tarinfo) |
| 45 | + if embed_path != ".": |
| 46 | + tarinfo.name = embed_path + "/" + tarinfo.name |
| 47 | + if self._file_map.has_key(tarinfo.name): |
| 48 | + raise ValueError("File '%s' is already in archive" % tarinfo.name) |
| 49 | + self._file_map[tarinfo.name] = BundleItem(tarinfo, f) |
| 50 | + |
| 51 | + def finish(self): |
| 52 | + for path in sorted(self._file_map.keys()): |
| 53 | + tarinfo, f = self._file_map[path] |
| 54 | + self._output.addfile(tarinfo, fileobj=f) |
| 55 | + |
| 56 | + |
| 57 | +def main(args): |
| 58 | + """ |
| 59 | +
|
| 60 | + :return: |
| 61 | + """ |
| 62 | + |
| 63 | + # output = tarfile.open(args.output, "w") |
| 64 | + bundle = Bundle(args.output) |
| 65 | + |
| 66 | + # add each args.file |
| 67 | + for tgt_path, src in args.file: |
| 68 | + bundle.add(src, tgt_path) |
| 69 | + # embed each args.embed |
| 70 | + for embed_path, src_tar in args.embed: |
| 71 | + bundle.embed(src_tar, embed_path) |
| 72 | + |
| 73 | + bundle.finish() |
| 74 | + |
| 75 | +if __name__ == '__main__': |
| 76 | + main(parser.parse_args()) |
0 commit comments