Chris Fallin | b3f6daf | 2014-12-11 18:58:04 -0800 | [diff] [blame] | 1 | #!/usr/bin/python |
Joshua Haberman | e59d2c8 | 2021-04-05 10:47:53 -0700 | [diff] [blame^] | 2 | # |
| 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 Fallin | b3f6daf | 2014-12-11 18:58:04 -0800 | [diff] [blame] | 27 | |
| 28 | import sys |
| 29 | import re |
Joshua Haberman | 985145c | 2019-04-24 17:36:17 +0000 | [diff] [blame] | 30 | import os |
Chris Fallin | b3f6daf | 2014-12-11 18:58:04 -0800 | [diff] [blame] | 31 | |
| 32 | INCLUDE_RE = re.compile('^#include "([^"]*)"$') |
| 33 | |
| 34 | def parse_include(line): |
| 35 | match = INCLUDE_RE.match(line) |
| 36 | return match.groups()[0] if match else None |
| 37 | |
| 38 | class Amalgamator: |
Joshua Haberman | 16facab | 2020-05-08 16:40:24 -0700 | [diff] [blame] | 39 | def __init__(self, output_path, prefix): |
Joshua Haberman | 985145c | 2019-04-24 17:36:17 +0000 | [diff] [blame] | 40 | self.include_paths = ["."] |
Joshua Haberman | 3a37b91 | 2018-09-06 13:41:30 -0700 | [diff] [blame] | 41 | self.included = set(["upb/port_def.inc", "upb/port_undef.inc"]) |
Joshua Haberman | 16facab | 2020-05-08 16:40:24 -0700 | [diff] [blame] | 42 | self.output_h = open(output_path + prefix + "upb.h", "w") |
| 43 | self.output_c = open(output_path + prefix + "upb.c", "w") |
Chris Fallin | b3f6daf | 2014-12-11 18:58:04 -0800 | [diff] [blame] | 44 | |
Joshua Haberman | 9bc7973 | 2019-01-23 17:16:31 -0800 | [diff] [blame] | 45 | self.output_c.write("/* Amalgamated source file */\n") |
Joshua Haberman | 16facab | 2020-05-08 16:40:24 -0700 | [diff] [blame] | 46 | self.output_c.write('#include "%supb.h"\n' % (prefix)) |
Josh Haberman | ae4c03b | 2018-09-09 14:26:51 -0700 | [diff] [blame] | 47 | self.output_c.write(open("upb/port_def.inc").read()) |
Chris Fallin | b3f6daf | 2014-12-11 18:58:04 -0800 | [diff] [blame] | 48 | |
Joshua Haberman | 9bc7973 | 2019-01-23 17:16:31 -0800 | [diff] [blame] | 49 | self.output_h.write("/* Amalgamated source file */\n") |
Josh Haberman | ad905b0 | 2019-02-17 20:36:26 -0800 | [diff] [blame] | 50 | self.output_h.write('#include <stdint.h>') |
Josh Haberman | ae4c03b | 2018-09-09 14:26:51 -0700 | [diff] [blame] | 51 | self.output_h.write(open("upb/port_def.inc").read()) |
Joshua Haberman | 3a37b91 | 2018-09-06 13:41:30 -0700 | [diff] [blame] | 52 | |
Joshua Haberman | 985145c | 2019-04-24 17:36:17 +0000 | [diff] [blame] | 53 | def add_include_path(self, path): |
| 54 | self.include_paths.append(path) |
| 55 | |
Joshua Haberman | 3a37b91 | 2018-09-06 13:41:30 -0700 | [diff] [blame] | 56 | def finish(self): |
Josh Haberman | ae4c03b | 2018-09-09 14:26:51 -0700 | [diff] [blame] | 57 | self.output_c.write(open("upb/port_undef.inc").read()) |
| 58 | self.output_h.write(open("upb/port_undef.inc").read()) |
Chris Fallin | b3f6daf | 2014-12-11 18:58:04 -0800 | [diff] [blame] | 59 | |
| 60 | def _process_file(self, infile_name, outfile): |
Joshua Haberman | 985145c | 2019-04-24 17:36:17 +0000 | [diff] [blame] | 61 | 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 Haberman | 2559e78 | 2020-04-09 14:36:24 -0700 | [diff] [blame] | 73 | if not self._process_include(line, outfile): |
Chris Fallin | b3f6daf | 2014-12-11 18:58:04 -0800 | [diff] [blame] | 74 | outfile.write(line) |
| 75 | |
Joshua Haberman | 2559e78 | 2020-04-09 14:36:24 -0700 | [diff] [blame] | 76 | def _process_include(self, line, outfile): |
| 77 | include = parse_include(line) |
| 78 | if not include: |
| 79 | return False |
Joshua Haberman | 64abb5e | 2020-11-02 09:00:53 -0800 | [diff] [blame] | 80 | if not (include.startswith("upb") or include.startswith("google")): |
Joshua Haberman | 2559e78 | 2020-04-09 14:36:24 -0700 | [diff] [blame] | 81 | 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 Fallin | b3f6daf | 2014-12-11 18:58:04 -0800 | [diff] [blame] | 92 | 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 Haberman | 985145c | 2019-04-24 17:36:17 +0000 | [diff] [blame] | 100 | output_path = sys.argv[1] |
Joshua Haberman | 16facab | 2020-05-08 16:40:24 -0700 | [diff] [blame] | 101 | prefix = sys.argv[2] |
| 102 | amalgamator = Amalgamator(output_path, prefix) |
Joshua Haberman | 985145c | 2019-04-24 17:36:17 +0000 | [diff] [blame] | 103 | files = [] |
Chris Fallin | b3f6daf | 2014-12-11 18:58:04 -0800 | [diff] [blame] | 104 | |
Joshua Haberman | 16facab | 2020-05-08 16:40:24 -0700 | [diff] [blame] | 105 | for arg in sys.argv[3:]: |
Joshua Haberman | 985145c | 2019-04-24 17:36:17 +0000 | [diff] [blame] | 106 | 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 | |
| 114 | for filename in files: |
| 115 | amalgamator.add_src(filename) |
Joshua Haberman | 3a37b91 | 2018-09-06 13:41:30 -0700 | [diff] [blame] | 116 | |
| 117 | amalgamator.finish() |