OLD | NEW |
---|---|
1 #!/usr/bin/python | 1 #!/usr/bin/python |
2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3 # for details. All rights reserved. Use of this source code is governed by a | 3 # for details. All rights reserved. Use of this source code is governed by a |
4 # BSD-style license that can be found in the LICENSE file. | 4 # BSD-style license that can be found in the LICENSE file. |
5 | 5 |
6 """This module provides shared functionality for the system to generate | 6 """This module provides shared functionality for the system to generate |
7 dart:html APIs from the IDL database.""" | 7 dart:html APIs from the IDL database.""" |
8 | 8 |
9 import emitter | 9 import emitter |
10 from generator import AnalyzeOperation, ConstantOutputOrder, \ | 10 from generator import AnalyzeOperation, ConstantOutputOrder, \ |
11 DartDomNameOfAttribute, FindMatchingAttribute, IsDartCollectionType, \ | 11 DartDomNameOfAttribute, FindMatchingAttribute, IsDartCollectionType, \ |
12 IsPureInterface, TypeOrNothing, ConvertToFuture, GetCallbackInfo | 12 IsPureInterface, TypeOrNothing, ConvertToFuture, GetCallbackInfo |
13 from htmlrenamer import convert_to_future_members | 13 from copy import deepcopy |
14 from htmlrenamer import convert_to_future_members, keep_overloaded_members, \ | |
15 private_html_members, renamed_html_members, renamed_overloads, \ | |
16 removed_html_members | |
17 import monitored | |
18 import sys | |
14 | 19 |
15 # Types that are accessible cross-frame in a limited fashion. | 20 # Types that are accessible cross-frame in a limited fashion. |
16 # In these cases, the base type (e.g., WindowBase) provides restricted access | 21 # In these cases, the base type (e.g., WindowBase) provides restricted access |
17 # while the subtype (e.g., Window) provides full access to the | 22 # while the subtype (e.g., Window) provides full access to the |
18 # corresponding objects if there are from the same frame. | 23 # corresponding objects if there are from the same frame. |
19 _secure_base_types = { | 24 _secure_base_types = { |
20 'Window': 'WindowBase', | 25 'Window': 'WindowBase', |
21 'Location': 'LocationBase', | 26 'Location': 'LocationBase', |
22 'History': 'HistoryBase', | 27 'History': 'HistoryBase', |
23 } | 28 } |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
76 else: | 81 else: |
77 for parent in self._database.Hierarchy(self._interface): | 82 for parent in self._database.Hierarchy(self._interface): |
78 if parent == self._interface: | 83 if parent == self._interface: |
79 continue | 84 continue |
80 parent_type_info = self._type_registry.TypeInfo(parent.id) | 85 parent_type_info = self._type_registry.TypeInfo(parent.id) |
81 if parent_type_info.list_item_type(): | 86 if parent_type_info.list_item_type(): |
82 self.AmendIndexer(parent_type_info.list_item_type()) | 87 self.AmendIndexer(parent_type_info.list_item_type()) |
83 break | 88 break |
84 | 89 |
85 # Group overloaded operations by name. | 90 # Group overloaded operations by name. |
91 self._AddRenamedOverloads(interface) | |
86 operationsByName = self._OperationsByName(interface) | 92 operationsByName = self._OperationsByName(interface) |
87 | 93 |
88 # Generate operations. | 94 # Generate operations. |
89 for id in sorted(operationsByName.keys()): | 95 for id in sorted(operationsByName.keys()): |
90 operations = operationsByName[id] | 96 operations = operationsByName[id] |
91 info = AnalyzeOperation(interface, operations) | 97 info = AnalyzeOperation(interface, operations) |
92 self.AddOperation(info, declare_only) | 98 self.AddOperation(info, declare_only) |
93 if ('%s.%s' % (interface.id, info.declared_name) in | 99 if ('%s.%s' % (interface.id, info.declared_name) in |
94 convert_to_future_members): | 100 convert_to_future_members): |
95 self.AddOperation(ConvertToFuture(info), declare_only) | 101 self.AddOperation(ConvertToFuture(info), declare_only) |
(...skipping 16 matching lines...) Expand all Loading... | |
112 operationsByName =self._OperationsByName(parent_interface) | 118 operationsByName =self._OperationsByName(parent_interface) |
113 | 119 |
114 # Generate operations. | 120 # Generate operations. |
115 for id in sorted(operationsByName.keys()): | 121 for id in sorted(operationsByName.keys()): |
116 if not any(op.id == id for op in interface.operations): | 122 if not any(op.id == id for op in interface.operations): |
117 operations = operationsByName[id] | 123 operations = operationsByName[id] |
118 info = AnalyzeOperation(interface, operations) | 124 info = AnalyzeOperation(interface, operations) |
119 self.SecondaryContext(parent_interface) | 125 self.SecondaryContext(parent_interface) |
120 self.AddOperation(info) | 126 self.AddOperation(info) |
121 | 127 |
128 def _AddRenamedOverloads(self, interface): | |
129 """The IDL has a number of functions with the same name but that accept | |
130 different types. This is fine for JavaScript, but results in vague type | |
131 signatures for Dart. We rename some of these (by adding a new identical | |
132 operation with a different DartName), and leave the original version in a | |
133 few specific instances.""" | |
134 potential_added_operations = set() | |
135 operations_by_name = self._OperationsByName(interface) | |
136 already_renamed = [operation.ext_attrs['DartName'] if 'DartName' in | |
137 operation.ext_attrs else '' for operation in interface.operations] | |
138 | |
139 for operation in interface.operations: | |
140 full_operation_str = self._GetStringRepresentation(interface, operation) | |
141 if (full_operation_str in renamed_overloads and | |
142 renamed_overloads[full_operation_str] not in already_renamed): | |
143 operation.ext_attrs['DartName'] = renamed_overloads[ | |
144 full_operation_str] | |
145 potential_added_operations.add(operation.id) | |
146 self._EnsureNoMultipleTypeSignatures(interface, operation, | |
147 operations_by_name) | |
148 self._AddDesiredOverloadedOperations(potential_added_operations, interface, | |
149 operations_by_name) | |
150 | |
151 def _AddDesiredOverloadedOperations(self, potential_added_operations, | |
152 interface, original_operations_by_name): | |
153 """For some cases we desire to keep the overloaded version in dart, for | |
154 simplicity of API, and explain the parameters accepted in documentation.""" | |
155 updated_operations_by_name = self._OperationsByName(interface) | |
156 for operation_id in potential_added_operations: | |
157 if (operation_id not in updated_operations_by_name and | |
158 '%s.%s' % (interface.id, operation_id) in keep_overloaded_members): | |
159 for operation in original_operations_by_name[operation_id]: | |
160 cloned_operation = deepcopy(operation) | |
161 cloned_operation.ext_attrs['DartName'] = operation_id | |
162 interface.operations.append(cloned_operation) | |
163 | |
164 def _EnsureNoMultipleTypeSignatures(self, interface, operation, | |
165 operations_by_name): | |
166 """Make sure that there is now at most one operation with a particular | |
167 operation.id. If not, stop library generation, and throw an error, requiring | |
168 programmer input about the best name change before proceeding.""" | |
169 operation_str = '%s.%s' % (interface.id, operation.id) | |
170 if (operation.id in operations_by_name and | |
171 len(operations_by_name[operation.id]) > 1 and | |
172 len(filter(lambda overload: overload.startswith(operation_str), | |
173 renamed_overloads.keys())) == 0 and | |
174 operation_str not in keep_overloaded_members and | |
175 operation_str not in renamed_html_members and | |
176 operation_str not in private_html_members and | |
177 operation_str not in removed_html_members and | |
178 operation.id != '__getter__' and | |
179 operation.id != '__setter__' and | |
180 operation.id != '__delete__'): | |
181 print 'ERROR: Multiple type signatures for %s.%s' % ( | |
182 interface.id, operation.id) | |
183 print ('Rename one of the methods in renamed_overloads or add it to ' | |
blois
2013/06/28 20:57:48
Using logging infrastructure
| |
184 ' keep_overloaded_members.\n' | |
185 'Generation UNsuccessful.') | |
186 sys.exit(1) | |
blois
2013/06/28 20:57:48
raise an error instead?
| |
187 | |
188 def _GetStringRepresentation(self, interface, operation): | |
189 """Given an IDLOperation, return a object-independent representation of the | |
190 operations's signature.""" | |
191 return '%s.%s(%s)' % (interface.id, operation.id, ', '.join( | |
192 ['%s %s' % (arg.type.id, arg.id) for arg in operation.arguments])) | |
193 | |
122 def _OperationsByName(self, interface): | 194 def _OperationsByName(self, interface): |
123 operationsByName = {} | 195 operationsByName = {} |
124 for operation in interface.operations: | 196 for operation in interface.operations: |
125 name = operation.ext_attrs.get('DartName', operation.id) | 197 name = operation.ext_attrs.get('DartName', operation.id) |
126 operationsByName.setdefault(name, []).append(operation) | 198 operationsByName.setdefault(name, []).append(operation) |
127 return operationsByName | 199 return operationsByName |
128 | 200 |
129 def AddConstant(self, constant): | 201 def AddConstant(self, constant): |
130 const_name = self._renamer.RenameMember( | 202 const_name = self._renamer.RenameMember( |
131 self._interface.id, constant, constant.id, 'get:', dartify_name=False) | 203 self._interface.id, constant, constant.id, 'get:', dartify_name=False) |
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
585 if interface.parents: | 657 if interface.parents: |
586 parent = interface.parents[0] | 658 parent = interface.parents[0] |
587 if IsPureInterface(parent.type.id): | 659 if IsPureInterface(parent.type.id): |
588 walk(interface.parents) | 660 walk(interface.parents) |
589 else: | 661 else: |
590 walk(interface.parents[1:]) | 662 walk(interface.parents[1:]) |
591 return result | 663 return result |
592 | 664 |
593 def _DartType(self, type_name): | 665 def _DartType(self, type_name): |
594 return self._type_registry.DartType(type_name) | 666 return self._type_registry.DartType(type_name) |
OLD | NEW |