blob: 2712495d5d4fb2b64e669843a46ee6f02318c047 [file] [log] [blame]
Andrei Litvin7f358b62022-01-24 12:25:12 -05001#!/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
16import click
17import logging
18import coloredlogs
19import enum
20
21try:
22 from idl.matter_idl_parser import CreateParser
23except:
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 Litvin151a5f12022-01-25 18:06:35 -050029from idl.generators import FileSystemGeneratorStorage, GeneratorStorage
Andrei Litvin7f358b62022-01-24 12:25:12 -050030from idl.generators.java import JavaGenerator
31
32
33class 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 Litvin151a5f12022-01-25 18:06:35 -050043class 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 Litvin7f358b62022-01-24 12:25:12 -050055# 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 Litvin151a5f12022-01-25 18:06:35 -050065 'java': CodeGeneratorTypes.JAVA,
Andrei Litvin7f358b62022-01-24 12:25:12 -050066}
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 Litvin151a5f12022-01-25 18:06:35 -050090@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 Litvin7f358b62022-01-24 12:25:12 -050095@click.argument(
96 'idl_path',
97 type=click.Path(exists=True))
Andrei Litvin151a5f12022-01-25 18:06:35 -050098def main(log_level, generator, output_dir, dry_run, name_only, idl_path):
Andrei Litvin7f358b62022-01-24 12:25:12 -050099 """
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 Litvin151a5f12022-01-25 18:06:35 -0500108 if name_only:
109 storage = ListGeneratedFilesStorage()
110 else:
111 storage = FileSystemGeneratorStorage(output_dir)
112
Andrei Litvin7f358b62022-01-24 12:25:12 -0500113 logging.info("Running code generator %s" % generator)
Andrei Litvin151a5f12022-01-25 18:06:35 -0500114 generator = __GENERATORS__[
115 generator].CreateGenerator(storage, idl=idl_tree)
Andrei Litvin7f358b62022-01-24 12:25:12 -0500116 generator.render(dry_run)
117 logging.info("Done")
118
119
120if __name__ == '__main__':
121 main()