Chris Fallin | b3f6daf | 2014-12-11 18:58:04 -0800 | [diff] [blame] | 1 | #!/usr/bin/python |
| 2 | |
| 3 | import sys |
| 4 | import re |
| 5 | |
| 6 | INCLUDE_RE = re.compile('^#include "([^"]*)"$') |
| 7 | |
| 8 | def parse_include(line): |
| 9 | match = INCLUDE_RE.match(line) |
| 10 | return match.groups()[0] if match else None |
| 11 | |
| 12 | class Amalgamator: |
| 13 | def __init__(self, include_path, output_path): |
| 14 | self.include_path = include_path |
Joshua Haberman | 3a37b91 | 2018-09-06 13:41:30 -0700 | [diff] [blame^] | 15 | self.included = set(["upb/port_def.inc", "upb/port_undef.inc"]) |
Chris Fallin | b3f6daf | 2014-12-11 18:58:04 -0800 | [diff] [blame] | 16 | self.output_h = open(output_path + "upb.h", "w") |
| 17 | self.output_c = open(output_path + "upb.c", "w") |
| 18 | |
| 19 | self.output_c.write("// Amalgamated source file\n") |
| 20 | self.output_c.write('#include "upb.h"\n') |
Joshua Haberman | 3a37b91 | 2018-09-06 13:41:30 -0700 | [diff] [blame^] | 21 | self.output_c.write('#include "upb/port_def.inc"\n') |
Chris Fallin | b3f6daf | 2014-12-11 18:58:04 -0800 | [diff] [blame] | 22 | |
| 23 | self.output_h.write("// Amalgamated source file\n") |
Joshua Haberman | 3a37b91 | 2018-09-06 13:41:30 -0700 | [diff] [blame^] | 24 | self.output_h.write('#include "upb/port_def.inc"\n') |
| 25 | |
| 26 | def finish(self): |
| 27 | self.output_c.write('#include "upb/port_undef.inc"\n') |
| 28 | self.output_h.write('#include "upb/port_undef.inc"\n') |
Chris Fallin | b3f6daf | 2014-12-11 18:58:04 -0800 | [diff] [blame] | 29 | |
| 30 | def _process_file(self, infile_name, outfile): |
| 31 | for line in open(infile_name): |
| 32 | include = parse_include(line) |
Josh Haberman | cea7370 | 2018-03-07 16:30:21 -0800 | [diff] [blame] | 33 | if include is not None and (include.startswith("upb") or |
| 34 | include.startswith("google")): |
Chris Fallin | b3f6daf | 2014-12-11 18:58:04 -0800 | [diff] [blame] | 35 | if include not in self.included: |
| 36 | self.included.add(include) |
| 37 | self._add_header(self.include_path + include) |
| 38 | else: |
| 39 | outfile.write(line) |
| 40 | |
| 41 | def _add_header(self, filename): |
| 42 | self._process_file(filename, self.output_h) |
| 43 | |
| 44 | def add_src(self, filename): |
| 45 | self._process_file(filename, self.output_c) |
| 46 | |
| 47 | # ---- main ---- |
| 48 | |
| 49 | include_path = sys.argv[1] |
| 50 | output_path = sys.argv[2] |
| 51 | amalgamator = Amalgamator(include_path, output_path) |
| 52 | |
| 53 | for filename in sys.argv[3:]: |
| 54 | amalgamator.add_src(filename.strip()) |
Joshua Haberman | 3a37b91 | 2018-09-06 13:41:30 -0700 | [diff] [blame^] | 55 | |
| 56 | amalgamator.finish() |