| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 %(factory_implementation)s | 50 %(factory_implementation)s |
| 51 return 0; | 51 return 0; |
| 52 } | 52 } |
| 53 | 53 |
| 54 } // namespace WebCore | 54 } // namespace WebCore |
| 55 """ | 55 """ |
| 56 | 56 |
| 57 | 57 |
| 58 class EventFactoryWriter(name_macros.Writer): | 58 class EventFactoryWriter(name_macros.Writer): |
| 59 defaults = { | 59 defaults = { |
| 60 'JSInterfaceName': None, | 60 'implementedAs': None, |
| 61 'interfaceName': None, | |
| 62 'conditional': None, | 61 'conditional': None, |
| 63 'runtimeConditional': None, | 62 'runtimeConditional': None, |
| 64 } | 63 } |
| 65 default_parameters = { | 64 default_parameters = { |
| 66 'namespace': '', | 65 'namespace': '', |
| 67 } | 66 } |
| 68 | 67 |
| 69 def __init__(self, in_file_path, enabled_conditions): | 68 def __init__(self, in_file_path, enabled_conditions): |
| 70 super(EventFactoryWriter, self).__init__(in_file_path, enabled_condition
s) | 69 super(EventFactoryWriter, self).__init__(in_file_path, enabled_condition
s) |
| 71 self._outputs[(self.class_name + ".cpp")] = self.generate_implementation | 70 self._outputs[(self.class_name + ".cpp")] = self.generate_implementation |
| 72 | 71 |
| 73 def _events(self): | 72 def _events(self): |
| 74 return self.in_file.name_dictionaries | 73 return self.in_file.name_dictionaries |
| 75 | 74 |
| 76 def _factory_implementation(self, event): | 75 def _factory_implementation(self, event): |
| 77 runtime_condition = '' | 76 runtime_condition = '' |
| 78 if event['runtimeConditional']: | 77 if event['runtimeConditional']: |
| 79 runtime_condition = ' && RuntimeEnabledFeatures::' + event['runtimeC
onditional'] + '()' | 78 runtime_condition = ' && RuntimeEnabledFeatures::' + event['runtimeC
onditional'] + '()' |
| 80 name = os.path.basename(event['name']) | 79 name = os.path.basename(event['name']) |
| 81 interface_name = event['interfaceName'] if event['interfaceName'] else n
ame | 80 class_name = self._class_name_for_entry(event) |
| 82 implementation = """ if (type == "%(name)s"%(runtime_condition)s) | 81 implementation = """ if (type == "%(name)s"%(runtime_condition)s) |
| 83 return %(interface_name)s::create();""" % { | 82 return %(class_name)s::create();""" % { |
| 84 'name': name, | 83 'name': name, |
| 85 'runtime_condition': runtime_condition, | 84 'runtime_condition': runtime_condition, |
| 86 'interface_name': interface_name, | 85 'class_name': class_name, |
| 87 } | 86 } |
| 88 return self.wrap_with_condition(implementation, event['conditional']) | 87 return self.wrap_with_condition(implementation, event['conditional']) |
| 89 | 88 |
| 90 def generate_implementation(self): | 89 def generate_implementation(self): |
| 91 return IMPLEMENTATION_TEMPLATE % { | 90 return IMPLEMENTATION_TEMPLATE % { |
| 92 'class_name': self.class_name, | 91 'class_name': self.class_name, |
| 93 'license': license.license_for_generated_cpp(), | 92 'license': license.license_for_generated_cpp(), |
| 94 'factory_implementation': "\n".join(map(self._factory_implementation
, self._events())), | 93 'factory_implementation': "\n".join(map(self._factory_implementation
, self._events())), |
| 95 } | 94 } |
| 96 | 95 |
| 97 | 96 |
| 98 if __name__ == "__main__": | 97 if __name__ == "__main__": |
| 99 name_macros.Maker(EventFactoryWriter).main(sys.argv) | 98 name_macros.Maker(EventFactoryWriter).main(sys.argv) |
| OLD | NEW |