Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(246)

Side by Side Diff: core/scripts/make_event_factory.py

Issue 22498002: Roll IDL to multivm@1329 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « core/scripts/make_dom_exceptions.py ('k') | core/scripts/make_style_shorthands.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 'implementedAs': None, 60 'ImplementedAs': None,
61 'conditional': None, 61 'Conditional': None,
62 'runtimeConditional': None, 62 'EnabledAtRuntime': None,
63 } 63 }
64 default_parameters = { 64 default_parameters = {
65 'namespace': '', 65 'namespace': '',
66 } 66 }
67 67
68 def __init__(self, in_file_path, enabled_conditions): 68 def __init__(self, in_file_path, enabled_conditions):
69 super(EventFactoryWriter, self).__init__(in_file_path, enabled_condition s) 69 super(EventFactoryWriter, self).__init__(in_file_path, enabled_condition s)
70 self._outputs[(self.class_name + ".cpp")] = self.generate_implementation 70 self._outputs[(self.class_name + ".cpp")] = self.generate_implementation
71 71
72 def _events(self): 72 def _events(self):
73 return self.in_file.name_dictionaries 73 return self.in_file.name_dictionaries
74 74
75 def _factory_implementation(self, event): 75 def _factory_implementation(self, event):
76 runtime_condition = '' 76 runtime_condition = ''
77 if event['runtimeConditional']: 77 if event['EnabledAtRuntime']:
78 runtime_condition = ' && RuntimeEnabledFeatures::' + event['runtimeC onditional'] + '()' 78 runtime_condition = ' && RuntimeEnabledFeatures::' + event['EnabledA tRuntime'] + '()'
79 name = os.path.basename(event['name']) 79 name = os.path.basename(event['name'])
80 class_name = self._class_name_for_entry(event) 80 class_name = self._class_name_for_entry(event)
81 implementation = """ if (type == "%(name)s"%(runtime_condition)s) 81 implementation = """ if (type == "%(name)s"%(runtime_condition)s)
82 return %(class_name)s::create();""" % { 82 return %(class_name)s::create();""" % {
83 'name': name, 83 'name': name,
84 'runtime_condition': runtime_condition, 84 'runtime_condition': runtime_condition,
85 'class_name': class_name, 85 'class_name': class_name,
86 } 86 }
87 return self.wrap_with_condition(implementation, event['conditional']) 87 return self.wrap_with_condition(implementation, event['Conditional'])
88 88
89 def generate_implementation(self): 89 def generate_implementation(self):
90 return IMPLEMENTATION_TEMPLATE % { 90 return IMPLEMENTATION_TEMPLATE % {
91 'class_name': self.class_name, 91 'class_name': self.class_name,
92 'license': license.license_for_generated_cpp(), 92 'license': license.license_for_generated_cpp(),
93 'factory_implementation': "\n".join(map(self._factory_implementation , self._events())), 93 'factory_implementation': "\n".join(map(self._factory_implementation , self._events())),
94 } 94 }
95 95
96 96
97 if __name__ == "__main__": 97 if __name__ == "__main__":
98 name_macros.Maker(EventFactoryWriter).main(sys.argv) 98 name_macros.Maker(EventFactoryWriter).main(sys.argv)
OLDNEW
« no previous file with comments | « core/scripts/make_dom_exceptions.py ('k') | core/scripts/make_style_shorthands.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698