blob: 8e07ef69a9185e8e937aa716d143f42304ac6019 [file] [log] [blame]
Chris Fallinb3f6daf2014-12-11 18:58:04 -08001#!/usr/bin/python
Joshua Habermane59d2c82021-04-05 10:47:53 -07002#
3# Copyright (c) 2009-2011, Google LLC
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are met:
8# * Redistributions of source code must retain the above copyright
9# notice, this list of conditions and the following disclaimer.
10# * Redistributions in binary form must reproduce the above copyright
11# notice, this list of conditions and the following disclaimer in the
12# documentation and/or other materials provided with the distribution.
13# * Neither the name of Google LLC nor the
14# names of its contributors may be used to endorse or promote products
15# derived from this software without specific prior written permission.
16#
17# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20# DISCLAIMED. IN NO EVENT SHALL Google LLC BE LIABLE FOR ANY
21# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Chris Fallinb3f6daf2014-12-11 18:58:04 -080027
28import sys
29import re
Joshua Haberman985145c2019-04-24 17:36:17 +000030import os
Chris Fallinb3f6daf2014-12-11 18:58:04 -080031
32INCLUDE_RE = re.compile('^#include "([^"]*)"$')
33
34def parse_include(line):
35 match = INCLUDE_RE.match(line)
36 return match.groups()[0] if match else None
37
38class Amalgamator:
Joshua Haberman16facab2020-05-08 16:40:24 -070039 def __init__(self, output_path, prefix):
Joshua Haberman985145c2019-04-24 17:36:17 +000040 self.include_paths = ["."]
Joshua Haberman3a37b912018-09-06 13:41:30 -070041 self.included = set(["upb/port_def.inc", "upb/port_undef.inc"])
Joshua Haberman16facab2020-05-08 16:40:24 -070042 self.output_h = open(output_path + prefix + "upb.h", "w")
43 self.output_c = open(output_path + prefix + "upb.c", "w")
Chris Fallinb3f6daf2014-12-11 18:58:04 -080044
Joshua Haberman9bc79732019-01-23 17:16:31 -080045 self.output_c.write("/* Amalgamated source file */\n")
Joshua Haberman16facab2020-05-08 16:40:24 -070046 self.output_c.write('#include "%supb.h"\n' % (prefix))
Josh Habermanae4c03b2018-09-09 14:26:51 -070047 self.output_c.write(open("upb/port_def.inc").read())
Chris Fallinb3f6daf2014-12-11 18:58:04 -080048
Joshua Haberman9bc79732019-01-23 17:16:31 -080049 self.output_h.write("/* Amalgamated source file */\n")
Josh Habermanad905b02019-02-17 20:36:26 -080050 self.output_h.write('#include <stdint.h>')
Josh Habermanae4c03b2018-09-09 14:26:51 -070051 self.output_h.write(open("upb/port_def.inc").read())
Joshua Haberman3a37b912018-09-06 13:41:30 -070052
Joshua Haberman985145c2019-04-24 17:36:17 +000053 def add_include_path(self, path):
54 self.include_paths.append(path)
55
Joshua Haberman3a37b912018-09-06 13:41:30 -070056 def finish(self):
Josh Habermanae4c03b2018-09-09 14:26:51 -070057 self.output_c.write(open("upb/port_undef.inc").read())
58 self.output_h.write(open("upb/port_undef.inc").read())
Chris Fallinb3f6daf2014-12-11 18:58:04 -080059
60 def _process_file(self, infile_name, outfile):
Joshua Haberman985145c2019-04-24 17:36:17 +000061 file = None
62 for path in self.include_paths:
63 try:
64 full_path = os.path.join(path, infile_name)
65 file = open(full_path)
66 break
67 except IOError:
68 pass
69 if not file:
70 raise RuntimeError("Couldn't open file " + infile_name)
71
72 for line in file:
Joshua Haberman2559e782020-04-09 14:36:24 -070073 if not self._process_include(line, outfile):
Chris Fallinb3f6daf2014-12-11 18:58:04 -080074 outfile.write(line)
75
Joshua Haberman2559e782020-04-09 14:36:24 -070076 def _process_include(self, line, outfile):
77 include = parse_include(line)
78 if not include:
79 return False
Joshua Haberman64abb5e2020-11-02 09:00:53 -080080 if not (include.startswith("upb") or include.startswith("google")):
Joshua Haberman2559e782020-04-09 14:36:24 -070081 return False
82 if include.endswith("hpp"):
83 # Skip, we don't support the amalgamation from C++.
84 return True
85 else:
86 # Include this upb header inline.
87 if include not in self.included:
88 self.included.add(include)
89 self._add_header(include)
90 return True
91
Chris Fallinb3f6daf2014-12-11 18:58:04 -080092 def _add_header(self, filename):
93 self._process_file(filename, self.output_h)
94
95 def add_src(self, filename):
96 self._process_file(filename, self.output_c)
97
98# ---- main ----
99
Joshua Haberman985145c2019-04-24 17:36:17 +0000100output_path = sys.argv[1]
Joshua Haberman16facab2020-05-08 16:40:24 -0700101prefix = sys.argv[2]
102amalgamator = Amalgamator(output_path, prefix)
Joshua Haberman985145c2019-04-24 17:36:17 +0000103files = []
Chris Fallinb3f6daf2014-12-11 18:58:04 -0800104
Joshua Haberman16facab2020-05-08 16:40:24 -0700105for arg in sys.argv[3:]:
Joshua Haberman985145c2019-04-24 17:36:17 +0000106 arg = arg.strip()
107 if arg.startswith("-I"):
108 amalgamator.add_include_path(arg[2:])
109 elif arg.endswith(".h") or arg.endswith(".inc"):
110 pass
111 else:
112 files.append(arg)
113
114for filename in files:
115 amalgamator.add_src(filename)
Joshua Haberman3a37b912018-09-06 13:41:30 -0700116
117amalgamator.finish()