| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright (C) 2013 Google Inc. All rights reserved. | 2 # Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 # | 3 # |
| 4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
| 6 # met: | 6 # met: |
| 7 # | 7 # |
| 8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
| 9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
| 10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 | 45 |
| 46 class MakeNamesWriter(in_generator.Writer): | 46 class MakeNamesWriter(in_generator.Writer): |
| 47 defaults = { | 47 defaults = { |
| 48 'Conditional': None, # FIXME: Add support for Conditional. | 48 'Conditional': None, # FIXME: Add support for Conditional. |
| 49 'RuntimeEnabled': None, # What should we do for runtime-enabled feature
s? | 49 'RuntimeEnabled': None, # What should we do for runtime-enabled feature
s? |
| 50 'ImplementedAs': None, | 50 'ImplementedAs': None, |
| 51 'Symbol': None, | 51 'Symbol': None, |
| 52 } | 52 } |
| 53 default_parameters = { | 53 default_parameters = { |
| 54 'namespace': '', | 54 'namespace': '', |
| 55 'suffix': '', |
| 55 'export': '', | 56 'export': '', |
| 56 } | 57 } |
| 57 filters = { | 58 filters = { |
| 58 'cpp_name': name_utilities.cpp_name, | 59 'cpp_name': name_utilities.cpp_name, |
| 59 'hash': hasher.hash, | 60 'hash': hasher.hash, |
| 60 'script_name': name_utilities.script_name, | 61 'script_name': name_utilities.script_name, |
| 61 'symbol': _symbol, | 62 'symbol': _symbol, |
| 62 'to_macro_style': name_utilities.to_macro_style, | 63 'to_macro_style': name_utilities.to_macro_style, |
| 63 } | 64 } |
| 64 | 65 |
| 65 def __init__(self, in_file_path): | 66 def __init__(self, in_file_path): |
| 66 super(MakeNamesWriter, self).__init__(in_file_path) | 67 super(MakeNamesWriter, self).__init__(in_file_path) |
| 67 | 68 |
| 68 namespace = self.in_file.parameters['namespace'].strip('"') | 69 namespace = self.in_file.parameters['namespace'].strip('"') |
| 70 suffix = self.in_file.parameters['suffix'].strip('"') |
| 69 export = self.in_file.parameters['export'].strip('"') | 71 export = self.in_file.parameters['export'].strip('"') |
| 70 | 72 |
| 71 assert namespace, 'A namespace is required.' | 73 assert namespace, 'A namespace is required.' |
| 72 | 74 |
| 73 self._outputs = { | 75 self._outputs = { |
| 74 (namespace + 'Names.h'): self.generate_header, | 76 (namespace + suffix + 'Names.h'): self.generate_header, |
| 75 (namespace + 'Names.cpp'): self.generate_implementation, | 77 (namespace + suffix + 'Names.cpp'): self.generate_implementation, |
| 76 } | 78 } |
| 77 self._template_context = { | 79 self._template_context = { |
| 78 'namespace': namespace, | 80 'namespace': namespace, |
| 81 'suffix': suffix, |
| 79 'export': export, | 82 'export': export, |
| 80 'entries': self.in_file.name_dictionaries, | 83 'entries': self.in_file.name_dictionaries, |
| 81 } | 84 } |
| 82 | 85 |
| 83 @template_expander.use_jinja("MakeNames.h.tmpl", filters=filters) | 86 @template_expander.use_jinja("MakeNames.h.tmpl", filters=filters) |
| 84 def generate_header(self): | 87 def generate_header(self): |
| 85 return self._template_context | 88 return self._template_context |
| 86 | 89 |
| 87 @template_expander.use_jinja("MakeNames.cpp.tmpl", filters=filters) | 90 @template_expander.use_jinja("MakeNames.cpp.tmpl", filters=filters) |
| 88 def generate_implementation(self): | 91 def generate_implementation(self): |
| 89 return self._template_context | 92 return self._template_context |
| 90 | 93 |
| 91 | 94 |
| 92 if __name__ == "__main__": | 95 if __name__ == "__main__": |
| 93 in_generator.Maker(MakeNamesWriter).main(sys.argv) | 96 in_generator.Maker(MakeNamesWriter).main(sys.argv) |
| OLD | NEW |