1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
|
#!/usr/bin/env python
#
# Copyright (c) 2014 Apple Inc. All rights reserved.
# Copyright (c) 2014 University of Washington. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
# THE POSSIBILITY OF SUCH DAMAGE.
import logging
import os.path
import re
from string import Template
from generator_templates import GeneratorTemplates as Templates
from models import PrimitiveType, ObjectType, ArrayType, EnumType, AliasedType, Frameworks, Platforms
log = logging.getLogger('global')
def ucfirst(str):
return str[:1].upper() + str[1:]
_ALWAYS_SPECIALCASED_ENUM_VALUE_SUBSTRINGS = set(['API', 'CSS', 'DOM', 'HTML', 'JIT', 'XHR', 'XML', 'IOS', 'MacOS'])
_ALWAYS_SPECIALCASED_ENUM_VALUE_LOOKUP_TABLE = dict([(s.upper(), s) for s in _ALWAYS_SPECIALCASED_ENUM_VALUE_SUBSTRINGS])
# These objects are built manually by creating and setting InspectorValues.
# Before sending these over the protocol, their shapes are checked against the specification.
# So, any types referenced by these types require debug-only assertions that check values.
# Calculating necessary assertions is annoying, and adds a lot of complexity to the generator.
# FIXME: This should be converted into a property in JSON.
_TYPES_NEEDING_RUNTIME_CASTS = set([
"Runtime.ObjectPreview",
"Runtime.RemoteObject",
"Runtime.PropertyDescriptor",
"Runtime.InternalPropertyDescriptor",
"Runtime.CollectionEntry",
"Debugger.FunctionDetails",
"Debugger.CallFrame",
"Canvas.TraceLog",
"Canvas.ResourceInfo",
"Canvas.ResourceState",
# This should be a temporary hack. TimelineEvent should be created via generated C++ API.
"Timeline.TimelineEvent",
# For testing purposes only.
"Test.TypeNeedingCast"
])
# FIXME: This should be converted into a property in JSON.
_TYPES_WITH_OPEN_FIELDS = set([
"Timeline.TimelineEvent",
# InspectorStyleSheet not only creates this property but wants to read it and modify it.
"CSS.CSSProperty",
# InspectorNetworkAgent needs to update mime-type.
"Network.Response",
# For testing purposes only.
"Test.OpenParameterBundle"
])
class Generator:
def __init__(self, model, platform, input_filepath):
self._model = model
self._platform = platform
self._input_filepath = input_filepath
self._settings = {}
def model(self):
return self._model
def platform(self):
return self._platform
def set_generator_setting(self, key, value):
self._settings[key] = value
def can_generate_platform(self, model_platform):
return model_platform is Platforms.Generic or self._platform is Platforms.All or model_platform is self._platform
def type_declarations_for_domain(self, domain):
return [type_declaration for type_declaration in domain.all_type_declarations() if self.can_generate_platform(type_declaration.platform)]
def commands_for_domain(self, domain):
return [command for command in domain.all_commands() if self.can_generate_platform(command.platform)]
def events_for_domain(self, domain):
return [event for event in domain.all_events() if self.can_generate_platform(event.platform)]
# The goofy name is to disambiguate generator settings from framework settings.
def get_generator_setting(self, key, default=None):
return self._settings.get(key, default)
def generate_license(self):
return Template(Templates.CopyrightBlock).substitute(None, inputFilename=os.path.basename(self._input_filepath))
# These methods are overridden by subclasses.
def non_supplemental_domains(self):
return filter(lambda domain: not domain.is_supplemental, self.model().domains)
def domains_to_generate(self):
return self.non_supplemental_domains()
def generate_output(self):
pass
def output_filename(self):
pass
def encoding_for_enum_value(self, enum_value):
if not hasattr(self, "_assigned_enum_values"):
self._traverse_and_assign_enum_values()
return self._enum_value_encodings[enum_value]
def assigned_enum_values(self):
if not hasattr(self, "_assigned_enum_values"):
self._traverse_and_assign_enum_values()
return self._assigned_enum_values[:] # Slice.
@staticmethod
def type_needs_runtime_casts(_type):
return _type.qualified_name() in _TYPES_NEEDING_RUNTIME_CASTS
@staticmethod
def type_has_open_fields(_type):
return _type.qualified_name() in _TYPES_WITH_OPEN_FIELDS
def type_needs_shape_assertions(self, _type):
if not hasattr(self, "_types_needing_shape_assertions"):
self.calculate_types_requiring_shape_assertions(self.model().domains)
return _type in self._types_needing_shape_assertions
# To restrict the domains over which we compute types needing assertions, call this method
# before generating any output with the desired domains parameter. The computed
# set of types will not be automatically regenerated on subsequent calls to
# Generator.types_needing_shape_assertions().
def calculate_types_requiring_shape_assertions(self, domains):
domain_names = map(lambda domain: domain.domain_name, domains)
log.debug("> Calculating types that need shape assertions (eligible domains: %s)" % ", ".join(domain_names))
# Mutates the passed-in set; this simplifies checks to prevent infinite recursion.
def gather_transitively_referenced_types(_type, gathered_types):
if _type in gathered_types:
return
if isinstance(_type, ObjectType):
log.debug("> Adding type %s to list of types needing shape assertions." % _type.qualified_name())
gathered_types.add(_type)
for type_member in _type.members:
gather_transitively_referenced_types(type_member.type, gathered_types)
elif isinstance(_type, EnumType):
log.debug("> Adding type %s to list of types needing shape assertions." % _type.qualified_name())
gathered_types.add(_type)
elif isinstance(_type, AliasedType):
gather_transitively_referenced_types(_type.aliased_type, gathered_types)
elif isinstance(_type, ArrayType):
gather_transitively_referenced_types(_type.element_type, gathered_types)
found_types = set()
for domain in domains:
for declaration in self.type_declarations_for_domain(domain):
if declaration.type.qualified_name() in _TYPES_NEEDING_RUNTIME_CASTS:
log.debug("> Gathering types referenced by %s to generate shape assertions." % declaration.type.qualified_name())
gather_transitively_referenced_types(declaration.type, found_types)
self._types_needing_shape_assertions = found_types
# Private helper instance methods.
def _traverse_and_assign_enum_values(self):
self._enum_value_encodings = {}
self._assigned_enum_values = []
all_types = []
domains = self.non_supplemental_domains()
for domain in domains:
for type_declaration in self.type_declarations_for_domain(domain):
all_types.append(type_declaration.type)
for type_member in type_declaration.type_members:
all_types.append(type_member.type)
for domain in domains:
for event in self.events_for_domain(domain):
all_types.extend([parameter.type for parameter in event.event_parameters])
for domain in domains:
for command in self.commands_for_domain(domain):
all_types.extend([parameter.type for parameter in command.call_parameters])
all_types.extend([parameter.type for parameter in command.return_parameters])
for _type in all_types:
if not isinstance(_type, EnumType):
continue
map(self._assign_encoding_for_enum_value, _type.enum_values())
def _assign_encoding_for_enum_value(self, enum_value):
if enum_value in self._enum_value_encodings:
return
self._enum_value_encodings[enum_value] = len(self._assigned_enum_values)
self._assigned_enum_values.append(enum_value)
# Miscellaneous text manipulation routines.
def wrap_with_guard_for_domain(self, domain, text):
if self.model().framework is Frameworks.WebInspector:
return text
guard = domain.feature_guard
if guard:
return Generator.wrap_with_guard(guard, text)
return text
@staticmethod
def wrap_with_guard(guard, text):
return '\n'.join([
'#if %s' % guard,
text,
'#endif // %s' % guard,
])
@staticmethod
def stylized_name_for_enum_value(enum_value):
regex = '(%s)' % "|".join(_ALWAYS_SPECIALCASED_ENUM_VALUE_SUBSTRINGS)
def replaceCallback(match):
return _ALWAYS_SPECIALCASED_ENUM_VALUE_LOOKUP_TABLE[match.group(1).upper()]
# Split on hyphen, introduce camelcase, and force uppercasing of acronyms.
subwords = map(ucfirst, enum_value.split('-'))
return re.sub(re.compile(regex, re.IGNORECASE), replaceCallback, "".join(subwords))
@staticmethod
def js_name_for_parameter_type(_type):
_type = _type
if isinstance(_type, AliasedType):
_type = _type.aliased_type # Fall through.
if isinstance(_type, EnumType):
_type = _type.primitive_type # Fall through.
if isinstance(_type, (ArrayType, ObjectType)):
return 'object'
if isinstance(_type, PrimitiveType):
if _type.qualified_name() in ['object', 'any']:
return 'object'
elif _type.qualified_name() in ['integer', 'number']:
return 'number'
else:
return _type.qualified_name()
@staticmethod
def string_for_file_include(filename, file_framework, target_framework):
if file_framework is target_framework:
return '"%s"' % filename
else:
return '<%s/%s>' % (file_framework.name, filename)
|