blob: d3807c62b1e61428276e076b5f9515f02b0f6840 [file] [log] [blame]
Chris Fallinb3f6daf2014-12-11 18:58:04 -08001#!/usr/bin/python
2
3import sys
4import re
5
6INCLUDE_RE = re.compile('^#include "([^"]*)"$')
7
8def parse_include(line):
9 match = INCLUDE_RE.match(line)
10 return match.groups()[0] if match else None
11
12class Amalgamator:
13 def __init__(self, include_path, output_path):
14 self.include_path = include_path
Joshua Haberman3a37b912018-09-06 13:41:30 -070015 self.included = set(["upb/port_def.inc", "upb/port_undef.inc"])
Chris Fallinb3f6daf2014-12-11 18:58:04 -080016 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 Haberman3a37b912018-09-06 13:41:30 -070021 self.output_c.write('#include "upb/port_def.inc"\n')
Chris Fallinb3f6daf2014-12-11 18:58:04 -080022
23 self.output_h.write("// Amalgamated source file\n")
Joshua Haberman3a37b912018-09-06 13:41:30 -070024 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 Fallinb3f6daf2014-12-11 18:58:04 -080029
30 def _process_file(self, infile_name, outfile):
31 for line in open(infile_name):
32 include = parse_include(line)
Josh Habermancea73702018-03-07 16:30:21 -080033 if include is not None and (include.startswith("upb") or
34 include.startswith("google")):
Chris Fallinb3f6daf2014-12-11 18:58:04 -080035 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
49include_path = sys.argv[1]
50output_path = sys.argv[2]
51amalgamator = Amalgamator(include_path, output_path)
52
53for filename in sys.argv[3:]:
54 amalgamator.add_src(filename.strip())
Joshua Haberman3a37b912018-09-06 13:41:30 -070055
56amalgamator.finish()