Andrei Litvin | 7f358b6 | 2022-01-24 12:25:12 -0500 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # Copyright (c) 2022 Project CHIP Authors |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | import click |
| 17 | import logging |
| 18 | import coloredlogs |
| 19 | import enum |
| 20 | |
| 21 | try: |
| 22 | from idl.matter_idl_parser import CreateParser |
| 23 | except: |
| 24 | import os |
| 25 | import sys |
| 26 | sys.path.append(os.path.abspath(os.path.dirname(__file__))) |
| 27 | from idl.matter_idl_parser import CreateParser |
| 28 | |
Andrei Litvin | 151a5f1 | 2022-01-25 18:06:35 -0500 | [diff] [blame^] | 29 | from idl.generators import FileSystemGeneratorStorage, GeneratorStorage |
Andrei Litvin | 7f358b6 | 2022-01-24 12:25:12 -0500 | [diff] [blame] | 30 | from idl.generators.java import JavaGenerator |
| 31 | |
| 32 | |
| 33 | class CodeGeneratorTypes(enum.Enum): |
| 34 | JAVA = enum.auto() |
| 35 | |
| 36 | def CreateGenerator(self, *args, **kargs): |
| 37 | if self == CodeGeneratorTypes.JAVA: |
| 38 | return JavaGenerator(*args, **kargs) |
| 39 | else: |
| 40 | raise Error("Unknown code generator type") |
| 41 | |
| 42 | |
Andrei Litvin | 151a5f1 | 2022-01-25 18:06:35 -0500 | [diff] [blame^] | 43 | class ListGeneratedFilesStorage(GeneratorStorage): |
| 44 | """ |
| 45 | Output a list of files to be generated |
| 46 | """ |
| 47 | |
| 48 | def get_existing_data(self, relative_path: str): |
| 49 | return None # stdout has no pre-existing data |
| 50 | |
| 51 | def write_new_data(self, relative_path: str, content: str): |
| 52 | print(relative_path) |
| 53 | |
| 54 | |
Andrei Litvin | 7f358b6 | 2022-01-24 12:25:12 -0500 | [diff] [blame] | 55 | # Supported log levels, mapping string values required for argument |
| 56 | # parsing into logging constants |
| 57 | __LOG_LEVELS__ = { |
| 58 | 'debug': logging.DEBUG, |
| 59 | 'info': logging.INFO, |
| 60 | 'warn': logging.WARN, |
| 61 | 'fatal': logging.FATAL, |
| 62 | } |
| 63 | |
| 64 | __GENERATORS__ = { |
Andrei Litvin | 151a5f1 | 2022-01-25 18:06:35 -0500 | [diff] [blame^] | 65 | 'java': CodeGeneratorTypes.JAVA, |
Andrei Litvin | 7f358b6 | 2022-01-24 12:25:12 -0500 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | |
| 69 | @click.command() |
| 70 | @click.option( |
| 71 | '--log-level', |
| 72 | default='INFO', |
| 73 | type=click.Choice(__LOG_LEVELS__.keys(), case_sensitive=False), |
| 74 | help='Determines the verbosity of script output') |
| 75 | @click.option( |
| 76 | '--generator', |
| 77 | default='JAVA', |
| 78 | type=click.Choice(__GENERATORS__.keys(), case_sensitive=False), |
| 79 | help='What code generator to run') |
| 80 | @click.option( |
| 81 | '--output-dir', |
| 82 | type=click.Path(exists=False), |
| 83 | default=".", |
| 84 | help='Where to generate the code') |
| 85 | @click.option( |
| 86 | '--dry-run', |
| 87 | default=False, |
| 88 | is_flag=True, |
| 89 | help='If to actually generate') |
Andrei Litvin | 151a5f1 | 2022-01-25 18:06:35 -0500 | [diff] [blame^] | 90 | @click.option( |
| 91 | '--name-only', |
| 92 | default=False, |
| 93 | is_flag=True, |
| 94 | help='Output just a list of file names that would be generated') |
Andrei Litvin | 7f358b6 | 2022-01-24 12:25:12 -0500 | [diff] [blame] | 95 | @click.argument( |
| 96 | 'idl_path', |
| 97 | type=click.Path(exists=True)) |
Andrei Litvin | 151a5f1 | 2022-01-25 18:06:35 -0500 | [diff] [blame^] | 98 | def main(log_level, generator, output_dir, dry_run, name_only, idl_path): |
Andrei Litvin | 7f358b6 | 2022-01-24 12:25:12 -0500 | [diff] [blame] | 99 | """ |
| 100 | Parses MATTER IDL files (.matter) and performs SDK code generation |
| 101 | as set up by the program arguments. |
| 102 | """ |
| 103 | coloredlogs.install(level=__LOG_LEVELS__[ |
| 104 | log_level], fmt='%(asctime)s %(levelname)-7s %(message)s') |
| 105 | logging.info("Parsing idl from %s" % idl_path) |
| 106 | idl_tree = CreateParser().parse(open(idl_path, "rt").read()) |
| 107 | |
Andrei Litvin | 151a5f1 | 2022-01-25 18:06:35 -0500 | [diff] [blame^] | 108 | if name_only: |
| 109 | storage = ListGeneratedFilesStorage() |
| 110 | else: |
| 111 | storage = FileSystemGeneratorStorage(output_dir) |
| 112 | |
Andrei Litvin | 7f358b6 | 2022-01-24 12:25:12 -0500 | [diff] [blame] | 113 | logging.info("Running code generator %s" % generator) |
Andrei Litvin | 151a5f1 | 2022-01-25 18:06:35 -0500 | [diff] [blame^] | 114 | generator = __GENERATORS__[ |
| 115 | generator].CreateGenerator(storage, idl=idl_tree) |
Andrei Litvin | 7f358b6 | 2022-01-24 12:25:12 -0500 | [diff] [blame] | 116 | generator.render(dry_run) |
| 117 | logging.info("Done") |
| 118 | |
| 119 | |
| 120 | if __name__ == '__main__': |
| 121 | main() |