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 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
|
#!/usr/bin/env python3
#
# 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
try:
from .generator_templates import GeneratorTemplates as Templates
from .models import PrimitiveType, ObjectType, ArrayType, EnumType, AliasedType, Frameworks
except ImportError:
from generator_templates import GeneratorTemplates as Templates
from models import PrimitiveType, ObjectType, ArrayType, EnumType, AliasedType, Frameworks
log = logging.getLogger('global')
def ucfirst(str):
if str == 'webkit':
return 'WebKit'
return str[:1].upper() + str[1:]
_ALWAYS_SPECIALCASED_ENUM_VALUE_SUBSTRINGS = set(['2D', 'API', 'CSS', 'DOM', 'HTML', 'JIT', 'SRGB', 'XHR', 'XML', 'IOS', 'MacOS', 'JavaScript', 'ServiceWorker'])
_ALWAYS_SPECIALCASED_ENUM_VALUE_LOOKUP_TABLE = dict([(s.upper(), s) for s in _ALWAYS_SPECIALCASED_ENUM_VALUE_SUBSTRINGS])
_ENUM_IDENTIFIER_RENAME_MAP = {
# Recording.Type
'canvas-bitmaprenderer': 'CanvasBitmapRenderer',
'offscreen-canvas-bitmaprenderer': 'OffscreenCanvasBitmapRenderer',
'canvas-webgl': 'CanvasWebGL',
'offscreen-canvas-webgl': 'OffscreenCanvasWebGL',
'canvas-webgl2': 'CanvasWebGL2',
'offscreen-canvas-webgl2': 'OffscreenCanvasWebGL2',
# Canvas.ContextType
'bitmaprenderer': 'BitmapRenderer',
'offscreen-bitmaprenderer': 'OffscreenBitmapRenderer',
'webgl': 'WebGL',
'offscreen-webgl': 'OffscreenWebGL',
'webgl2': 'WebGL2',
'offscreen-webgl2': 'OffscreenWebGL2',
'webgpu': 'WebGPU',
# Console.ChannelSource
'mediasource': 'MediaSource',
'webrtc': 'WebRTC',
'itp-debug': 'ITPDebug'
}
# These objects are built manually by creating and setting JSON::Value instances.
# 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",
# 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.
# These exist for ONLY for legacy code.
# DO NOT ADD TO THIS LIST!!!
_TYPES_WITH_OPEN_FIELDS = {
"Timeline.TimelineEvent": [],
"CSS.CSSProperty": ["priority", "parsedOk", "status"],
"Network.Response": ["status", "statusText", "mimeType", "source"],
# For testing purposes only.
"Test.OpenParameters": ["alpha"],
}
class Generator:
def __init__(self, model, input_filepath):
self._model = model
self._input_filepath = input_filepath
self._settings = {}
def model(self):
return self._model
def set_generator_setting(self, key, value):
self._settings[key] = value
def version_for_domain(self, domain):
return domain.version()
def type_declarations_for_domain(self, domain):
return domain.all_type_declarations()
def commands_for_domain(self, domain):
return domain.all_commands()
def events_for_domain(self, domain):
return domain.all_events()
# 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))
def generate_includes_from_entries(self, entries):
includes = set()
for entry in entries:
(allowed_framework_names, data) = entry
(framework_name, header_path) = data
allowed_frameworks = allowed_framework_names + ["Test"]
if self.model().framework.name not in allowed_frameworks:
continue
if framework_name == "WTF" or framework_name == "std":
includes.add("#include <%s>" % header_path)
elif self.model().framework.name != framework_name:
includes.add("#include <%s/%s>" % (framework_name, os.path.basename(header_path)))
else:
includes.add("#include \"%s\"" % os.path.basename(header_path))
return sorted(list(includes))
# These methods are overridden by subclasses.
def non_supplemental_domains(self):
return [domain for domain in self.model().domains if not domain.is_supplemental]
def domains_to_generate(self):
return self.non_supplemental_domains()
def generate_output(self):
pass
def needs_preprocess(self):
return False
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
@staticmethod
def open_fields(type_declaration):
fields = set(_TYPES_WITH_OPEN_FIELDS.get(type_declaration.type.qualified_name(), []))
if not fields:
return type_declaration.type_members
return [member for member in type_declaration.type_members if member.member_name in 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 = [domain.domain_name for domain in 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
list(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_condition(self, condition, text):
if condition:
return '\n'.join([
'#if %s' % condition,
text,
'#endif // %s' % condition,
])
return text
@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 = list(map(ucfirst, _ENUM_IDENTIFIER_RENAME_MAP.get(enum_value, enum_value).split('-')))
return re.sub(re.compile(regex, re.IGNORECASE), replaceCallback, "".join(subwords))
@staticmethod
def js_name_for_parameter_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)
|