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 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907
|
# Copyright 2012 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import os.path
from json_parse import OrderedDict
from memoize import memoize
def _IsTypeFromManifestKeys(namespace, typename, fallback):
# type(Namespace, str, bool) -> bool
"""Computes whether 'from_manifest_keys' is true for the given type.
"""
if typename in namespace._manifest_referenced_types:
return True
return fallback
class ParseException(Exception):
"""Thrown when data in the model is invalid.
"""
def __init__(self, parent, message):
hierarchy = _GetModelHierarchy(parent)
hierarchy.append(message)
Exception.__init__(
self, 'Model parse exception at:\n' + '\n'.join(hierarchy))
class Model(object):
"""Model of all namespaces that comprise an API.
Properties:
- |namespaces| a map of a namespace name to its model.Namespace
"""
def __init__(self, allow_inline_enums=True):
self._allow_inline_enums = allow_inline_enums
self.namespaces = {}
def AddNamespace(self,
json,
source_file,
include_compiler_options=False,
environment=None):
"""Add a namespace's json to the model and returns the namespace.
"""
namespace = Namespace(json,
source_file,
include_compiler_options=include_compiler_options,
environment=environment,
allow_inline_enums=self._allow_inline_enums)
self.namespaces[namespace.name] = namespace
return namespace
def CreateFeature(name, model):
if isinstance(model, dict):
return SimpleFeature(name, model)
return ComplexFeature(name, [SimpleFeature(name, child) for child in model])
class ComplexFeature(object):
"""A complex feature which may be made of several simple features.
Properties:
- |name| the name of the feature
- |unix_name| the unix_name of the feature
- |feature_list| a list of simple features which make up the feature
"""
def __init__(self, feature_name, features):
self.name = feature_name
self.unix_name = UnixName(self.name)
self.feature_list = features
class SimpleFeature(object):
"""A simple feature, which can make up a complex feature, as specified in
files such as chrome/common/extensions/api/_permission_features.json.
Properties:
- |name| the name of the feature
- |unix_name| the unix_name of the feature
- |channel| the channel where the feature is released
- |extension_types| the types which can use the feature
- |allowlist| a list of extensions allowed to use the feature
"""
def __init__(self, feature_name, feature_def):
self.name = feature_name
self.unix_name = UnixName(self.name)
self.channel = feature_def['channel']
self.extension_types = feature_def['extension_types']
self.allowlist = feature_def.get('allowlist')
class Namespace(object):
"""An API namespace.
Properties:
- |name| the name of the namespace
- |description| the description of the namespace
- |deprecated| a reason and possible alternative for a deprecated api
- |unix_name| the unix_name of the namespace
- |source_file| the file that contained the namespace definition
- |source_file_dir| the directory component of |source_file|
- |source_file_filename| the filename component of |source_file|
- |platforms| if not None, the list of platforms that the namespace is
available to
- |types| a map of type names to their model.Type
- |functions| a map of function names to their model.Function
- |events| a map of event names to their model.Function
- |properties| a map of property names to their model.Property
- |compiler_options| the compiler_options dict, only not empty if
|include_compiler_options| is True
- |manifest_keys| is a Type representing the manifest keys for this namespace.
"""
def __init__(self,
json,
source_file,
include_compiler_options=False,
environment=None,
allow_inline_enums=True):
self.name = json['namespace']
if 'description' not in json:
# TODO(kalman): Go back to throwing an error here.
print('%s must have a "description" field. This will appear '
'on the API summary page.' % self.name)
json['description'] = ''
self.description = json['description']
self.nodoc = json.get('nodoc', False)
self.deprecated = json.get('deprecated', None)
self.unix_name = UnixName(self.name)
self.source_file = source_file
self.source_file_dir, self.source_file_filename = os.path.split(source_file)
self.short_filename = os.path.basename(source_file).split('.')[0]
self.parent = None
self.allow_inline_enums = allow_inline_enums
self.platforms = _GetPlatforms(json)
toplevel_origin = Origin(from_client=True, from_json=True)
# While parsing manifest keys, we store all the types referenced by manifest
# keys. This is useful for computing the correct Origin for types in the
# namespace. This also necessitates parsing manifest keys before types.
self._manifest_referenced_types = set()
self.manifest_keys = _GetManifestKeysType(self, json)
self.types = _GetTypes(self, json, self, toplevel_origin)
self.functions = _GetFunctions(self, json, self)
self.events = _GetEvents(self, json, self)
self.properties = _GetProperties(self, json, self, toplevel_origin)
if include_compiler_options:
self.compiler_options = json.get('compiler_options', {})
else:
self.compiler_options = {}
self.environment = environment
self.documentation_options = json.get('documentation_options', {})
class Origin(object):
"""Stores the possible origin of model object as a pair of bools. These are:
|from_client| indicating that instances can originate from users of
generated code (for example, function results), or
|from_json| indicating that instances can originate from the JSON (for
example, function parameters)
|from_manifest_keys| indicating that instances for this type can be parsed
from manifest keys.
It is possible for model objects to originate from both the client and json,
for example Types defined in the top-level schema, in which case both
|from_client| and |from_json| would be True.
"""
def __init__(self,
from_client=False,
from_json=False,
from_manifest_keys=False):
if not from_client and not from_json and not from_manifest_keys:
raise ValueError(
'One of (from_client, from_json, from_manifest_keys) must be true')
self.from_client = from_client
self.from_json = from_json
self.from_manifest_keys = from_manifest_keys
class Type(object):
"""A Type defined in the json.
Properties:
- |name| the type name
- |namespace| the Type's namespace
- |description| the description of the type (if provided)
- |properties| a map of property unix_names to their model.Property
- |functions| a map of function names to their model.Function
- |events| a map of event names to their model.Event
- |origin| the Origin of the type
- |property_type| the PropertyType of this Type
- |item_type| if this is an array, the type of items in the array
- |simple_name| the name of this Type without a namespace
- |additional_properties| the type of the additional properties, if any is
specified
"""
def __init__(self,
parent,
name,
json,
namespace,
input_origin):
self.name = name
# The typename "ManifestKeys" is reserved.
if name == 'ManifestKeys':
assert parent == namespace and input_origin.from_manifest_keys, \
'ManifestKeys type is reserved'
self.namespace = namespace
self.simple_name = _StripNamespace(self.name, namespace)
self.unix_name = UnixName(self.name)
self.description = json.get('description', None)
self.jsexterns = json.get('jsexterns', None)
self.nodoc = json.get('nodoc', False)
# Copy the Origin and override the |from_manifest_keys| value as necessary.
# We need to do this to ensure types reference by manifest types have the
# correct value for |origin.from_manifest_keys|.
self.origin = Origin(
input_origin.from_client, input_origin.from_json,
_IsTypeFromManifestKeys(namespace, name, input_origin.from_manifest_keys))
self.parent = parent
self.instance_of = json.get('isInstanceOf', None)
self.is_serializable_function = json.get('serializableFunction', False)
# TODO(kalman): Only objects need functions/events/properties, but callers
# assume that all types have them. Fix this.
self.functions = _GetFunctions(self, json, namespace)
self.events = _GetEvents(self, json, namespace)
self.properties = _GetProperties(self, json, namespace, self.origin)
json_type = json.get('type', None)
if json_type == 'array':
self.property_type = PropertyType.ARRAY
self.item_type = Type(self, '%sType' % name, json['items'], namespace,
self.origin)
elif '$ref' in json:
self.property_type = PropertyType.REF
self.ref_type = json['$ref']
# Record all types referenced by manifest types so that the proper Origin
# can be set for them during type parsing.
if self.origin.from_manifest_keys:
namespace._manifest_referenced_types.add(self.ref_type)
elif 'enum' in json and json_type == 'string':
if not namespace.allow_inline_enums and not isinstance(parent, Namespace):
raise ParseException(
self,
'Inline enum "%s" found in namespace "%s". These are not allowed. '
'See crbug.com/472279' % (name, namespace.name))
self.property_type = PropertyType.ENUM
self.enum_values = [EnumValue(value, namespace) for value in json['enum']]
self.cpp_enum_prefix_override = json.get('cpp_enum_prefix_override', None)
elif json_type == 'any':
self.property_type = PropertyType.ANY
elif json_type == 'binary':
self.property_type = PropertyType.BINARY
elif json_type == 'boolean':
self.property_type = PropertyType.BOOLEAN
elif json_type == 'integer':
self.property_type = PropertyType.INTEGER
elif (json_type == 'double' or
json_type == 'number'):
self.property_type = PropertyType.DOUBLE
elif json_type == 'string':
self.property_type = PropertyType.STRING
elif 'choices' in json:
self.property_type = PropertyType.CHOICES
def generate_type_name(type_json):
if 'items' in type_json:
return '%ss' % generate_type_name(type_json['items'])
if '$ref' in type_json:
return type_json['$ref']
if 'type' in type_json:
return type_json['type']
return None
self.choices = [
Type(self,
generate_type_name(choice) or 'choice%s' % i,
choice,
namespace,
self.origin)
for i, choice in enumerate(json['choices'])]
elif json_type == 'object':
if not (
'isInstanceOf' in json or
'properties' in json or
'additionalProperties' in json or
'functions' in json or
'events' in json):
raise ParseException(self, name + " has no properties or functions")
self.property_type = PropertyType.OBJECT
additional_properties_json = json.get('additionalProperties', None)
if additional_properties_json is not None:
self.additional_properties = Type(self,
'additionalProperties',
additional_properties_json,
namespace,
self.origin)
else:
self.additional_properties = None
elif json_type == 'function':
self.property_type = PropertyType.FUNCTION
# Sometimes we might have an unnamed function, e.g. if it's a property
# of an object. Use the name of the property in that case.
function_name = json.get('name', name)
self.function = Function(
self, function_name, json, namespace, self.origin)
else:
raise ParseException(self, 'Unsupported JSON type %s' % json_type)
def IsRootManifestKeyType(self):
# type: () -> boolean
''' Returns true if this type corresponds to the top level ManifestKeys
type.
'''
return self.name == 'ManifestKeys'
class Function(object):
"""A Function defined in the API.
Properties:
- |name| the function name
- |platforms| if not None, the list of platforms that the function is
available to
- |params| a list of parameters to the function (order matters). A separate
parameter is used for each choice of a 'choices' parameter
- |deprecated| a reason and possible alternative for a deprecated function
- |description| a description of the function (if provided)
- |returns_async| an asynchronous return for the function. This may be
specified either though the returns_async field or a
callback function at the end of the parameters, but not both
- |optional| whether the Function is "optional"; this only makes sense to be
present when the Function is representing a callback property
- |simple_name| the name of this Function without a namespace
- |returns| the return type of the function; None if the function does not
return a value
"""
def __init__(self,
parent,
name,
json,
namespace,
origin):
self.name = name
self.simple_name = _StripNamespace(self.name, namespace)
self.platforms = _GetPlatforms(json)
self.params = []
self.description = json.get('description')
self.deprecated = json.get('deprecated')
self.returns_async = None
self.optional = _GetWithDefaultChecked(parent, json, 'optional', False)
self.parent = parent
self.nocompile = json.get('nocompile')
options = json.get('options', {})
self.conditions = options.get('conditions', [])
self.actions = options.get('actions', [])
self.supports_listeners = options.get('supportsListeners', True)
self.supports_rules = options.get('supportsRules', False)
self.supports_dom = options.get('supportsDom', False)
self.nodoc = json.get('nodoc', False)
def GeneratePropertyFromParam(p):
return Property(self, p['name'], p, namespace, origin)
self.filters = [GeneratePropertyFromParam(filter_instance)
for filter_instance in json.get('filters', [])]
returns_async = json.get('returns_async', None)
if returns_async:
returns_async_params = returns_async.get('parameters')
if (returns_async_params is None):
raise ValueError(
'parameters key not specified on returns_async: %s.%s in %s' %
(namespace.name, name, namespace.source_file))
if len(returns_async_params) > 1:
raise ValueError('Only a single parameter can be specific on '
'returns_async: %s.%s in %s' %
(namespace.name, name, namespace.source_file))
self.returns_async = ReturnsAsync(self, returns_async, namespace,
Origin(from_client=True), True)
# TODO(https://crbug.com/1143032): Returning a synchronous value is
# incompatible with returning a promise. There are APIs that specify this,
# though. Some appear to be incorrectly specified (i.e., don't return a
# value, but claim to), but others actually do return something. We'll
# need to handle those when converting them to allow promises.
if json.get('returns') is not None:
raise ValueError(
'Cannot specify both returns and returns_async: %s.%s'
% (namespace.name, name))
params = json.get('parameters', [])
callback_param = None
for i, param in enumerate(params):
# We consider the final function argument to the API to be the callback
# parameter if returns_async wasn't specified. Otherwise, we consider all
# function arguments to just be properties.
if i == len(params) - 1 and param.get(
'type') == 'function' and not self.returns_async:
callback_param = param
else:
# Treat all intermediate function arguments as properties. Certain APIs,
# such as the webstore, have these.
self.params.append(GeneratePropertyFromParam(param))
if callback_param:
# Even though we are creating a ReturnsAsync type here, this does not
# support being returned via a Promise, as this is implied by
# "returns_async" being found in the JSON.
# This is just a holder type for the callback.
self.returns_async = ReturnsAsync(self, callback_param, namespace,
Origin(from_client=True), False)
self.returns = None
if 'returns' in json:
self.returns = Type(self,
'%sReturnType' % name,
json['returns'],
namespace,
origin)
class ReturnsAsync(object):
"""A structure documenting asynchronous return values (through a callback or
promise) for an API function.
Properties:
- |name| the name of the asynchronous return, generally 'callback'
- |simple_name| the name of this ReturnsAsync without a namespace
- |description| a description of the ReturnsAsync (if provided)
- |optional| whether specifying the ReturnsAsync is "optional" (in situations
where promises are supported, this will be ignored as promises
inheriently make a callback optional)
- |params| a list of parameters supplied to the function in the case of using
callbacks, or the list of properties on the returned object in the
case of using promises
- |can_return_promise| whether this can be treated as a Promise as well as
callback
"""
def __init__(self, parent, json, namespace, origin, can_return_promise):
self.name = json.get('name')
self.simple_name = _StripNamespace(self.name, namespace)
self.description = json.get('description')
self.optional = _GetWithDefaultChecked(parent, json, 'optional', False)
self.nocompile = json.get('nocompile')
self.parent = parent
self.can_return_promise = can_return_promise
if json.get('returns') is not None:
raise ValueError('Cannot return a value from an asynchronous return: '
'%s.%s' % (namespace.name, self.name))
if json.get('deprecated') is not None:
raise ValueError('Cannot specify deprecated on an asynchronous return: '
'%s.%s' % (namespace.name, self.name))
def GeneratePropertyFromParam(p):
return Property(self, p['name'], p, namespace, origin)
params = json.get('parameters', [])
self.params = []
for _, param in enumerate(params):
self.params.append(GeneratePropertyFromParam(param))
class Property(object):
"""A property of a type OR a parameter to a function.
Properties:
- |name| name of the property as in the json. This shouldn't change since
it is the key used to access Value::Dict
- |unix_name| the unix_style_name of the property. Used as variable name
- |optional| a boolean representing whether the property is optional
- |description| a description of the property (if provided)
- |type_| the model.Type of this property
- |simple_name| the name of this Property without a namespace
- |deprecated| a reason and possible alternative for a deprecated property
"""
def __init__(self, parent, name, json, namespace, origin):
"""Creates a Property from JSON.
"""
self.parent = parent
self.name = name
self._unix_name = UnixName(self.name)
self._unix_name_used = False
self.origin = origin
self.simple_name = _StripNamespace(self.name, namespace)
self.description = json.get('description', None)
self.optional = json.get('optional', None)
self.instance_of = json.get('isInstanceOf', None)
self.deprecated = json.get('deprecated')
self.nodoc = json.get('nodoc', False)
# HACK: only support very specific value types.
is_allowed_value = (
'$ref' not in json and
('type' not in json or json['type'] == 'integer'
or json['type'] == 'number'
or json['type'] == 'string'))
self.value = None
if 'value' in json and is_allowed_value:
self.value = json['value']
if 'type' not in json:
# Sometimes the type of the value is left out, and we need to figure
# it out for ourselves.
if isinstance(self.value, int):
json['type'] = 'integer'
elif isinstance(self.value, float):
json['type'] = 'double'
elif isinstance(self.value, basestring):
json['type'] = 'string'
else:
# TODO(kalman): support more types as necessary.
raise ParseException(
parent,
'"%s" is not a supported type for "value"' % type(self.value))
self.type_ = Type(parent, name, json, namespace, origin)
def GetUnixName(self):
"""Gets the property's unix_name. Raises AttributeError if not set.
"""
if not self._unix_name:
raise AttributeError('No unix_name set on %s' % self.name)
self._unix_name_used = True
return self._unix_name
def SetUnixName(self, unix_name):
"""Set the property's unix_name. Raises AttributeError if the unix_name has
already been used (GetUnixName has been called).
"""
if unix_name == self._unix_name:
return
if self._unix_name_used:
raise AttributeError(
'Cannot set the unix_name on %s; '
'it is already used elsewhere as %s' %
(self.name, self._unix_name))
self._unix_name = unix_name
unix_name = property(GetUnixName, SetUnixName)
class EnumValue(object):
"""A single value from an enum.
Properties:
- |name| name of the property as in the json.
- |description| a description of the property (if provided)
"""
def __init__(self, json, namespace):
if isinstance(json, dict):
self.name = json['name']
self.description = json.get('description')
else:
self.name = json
self.description = None
# Using empty string values as enum key is only allowed in a few namespaces,
# as an exception to the rule, and we should not add more.
if (not self.name and
namespace.name not in ['enums', 'dashboardPrivate', 'webstorePrivate']):
raise ValueError('Enum value cannot be an empty string')
def CamelName(self):
return CamelName(self.name)
class _Enum(object):
"""Superclass for enum types with a "name" field, setting up repr/eq/ne.
Enums need to do this so that equality/non-equality work over pickling.
"""
@staticmethod
def GetAll(cls):
"""Yields all _Enum objects declared in |cls|.
"""
for prop_key in dir(cls):
prop_value = getattr(cls, prop_key)
if isinstance(prop_value, _Enum):
yield prop_value
def __init__(self, name):
self.name = name
def __eq__(self, other):
return type(other) == type(self) and other.name == self.name
def __ne__(self, other):
return not (self == other)
def __repr__(self):
return self.name
def __str__(self):
return repr(self)
def __hash__(self):
return hash(self.name)
class _PropertyTypeInfo(_Enum):
def __init__(self, is_fundamental, name):
_Enum.__init__(self, name)
self.is_fundamental = is_fundamental
def __repr__(self):
return self.name
class PropertyType(object):
"""Enum of different types of properties/parameters.
"""
ANY = _PropertyTypeInfo(False, "any")
ARRAY = _PropertyTypeInfo(False, "array")
BINARY = _PropertyTypeInfo(False, "binary")
BOOLEAN = _PropertyTypeInfo(True, "boolean")
CHOICES = _PropertyTypeInfo(False, "choices")
DOUBLE = _PropertyTypeInfo(True, "double")
ENUM = _PropertyTypeInfo(False, "enum")
FUNCTION = _PropertyTypeInfo(False, "function")
INT64 = _PropertyTypeInfo(True, "int64")
INTEGER = _PropertyTypeInfo(True, "integer")
OBJECT = _PropertyTypeInfo(False, "object")
REF = _PropertyTypeInfo(False, "ref")
STRING = _PropertyTypeInfo(True, "string")
def IsCPlusPlusKeyword(name):
"""Returns true if `name` is a C++ reserved keyword.
"""
# Obtained from https://en.cppreference.com/w/cpp/keyword.
keywords = {
"alignas",
"alignof",
"and",
"and_eq",
"asm",
"atomic_cancel",
"atomic_commit",
"atomic_noexcept",
"auto",
"bitand",
"bitor",
"bool",
"break",
"case",
"catch",
"char",
"char8_t",
"char16_t",
"char32_t",
"class",
"compl",
"concept",
"const",
"consteval",
"constexpr",
"constinit",
"const_cast",
"continue",
"co_await",
"co_return",
"co_yield",
"decltype",
"default",
"delete",
"do",
"double",
"dynamic_cast",
"else",
"enum",
"explicit",
"export",
"extern",
"false",
"float",
"for",
"friend",
"goto",
"if",
"inline",
"int",
"long",
"mutable",
"namespace",
"new",
"noexcept",
"not",
"not_eq",
"nullptr",
"operator",
"or",
"or_eq",
"private",
"protected",
"public",
"reflexpr",
"register",
"reinterpret_cast",
"requires",
"return",
"short",
"signed",
"sizeof",
"static",
"static_assert",
"static_cast",
"struct",
"switch",
"synchronized",
"template",
"this",
"thread_local",
"throw",
"true",
"try",
"typedef",
"typeid",
"typename",
"union",
"unsigned",
"using",
"virtual",
"void",
"volatile",
"wchar_t",
"while",
"xor",
"xor_eq"
}
return name in keywords
@memoize
def UnixName(name):
'''Returns the unix_style name for a given lowerCamelCase string.
'''
# Append an extra underscore to the |name|'s end if it's a reserved C++
# keyword in order to avoid compilation errors in generated code.
# Note: In some cases, this is overly greedy, because the unix name is
# appended to another string (such as in choices, where it becomes
# "as_double_"). We can fix this if this situation becomes common, but for now
# it's only hit in tests, and not worth the complexity.
if IsCPlusPlusKeyword(name):
name = name + '_'
# Prepend an extra underscore to the |name|'s start if it doesn't start with a
# letter or underscore to ensure the generated unix name follows C++
# identifier rules.
assert(name)
if name[0].isdigit():
name = '_' + name
unix_name = []
for i, c in enumerate(name):
if c.isupper() and i > 0 and name[i - 1] != '_':
# Replace lowerUpper with lower_Upper.
if name[i - 1].islower():
unix_name.append('_')
# Replace ACMEWidgets with ACME_Widgets
elif i + 1 < len(name) and name[i + 1].islower():
unix_name.append('_')
if c == '.':
# Replace hello.world with hello_world.
unix_name.append('_')
else:
# Everything is lowercase.
unix_name.append(c.lower())
return ''.join(unix_name)
@memoize
def CamelName(snake):
''' Converts a snake_cased_string to a camelCasedOne. '''
pieces = snake.split('_')
camel = []
for i, piece in enumerate(pieces):
if i == 0:
camel.append(piece)
else:
camel.append(piece.capitalize())
return ''.join(camel)
def _StripNamespace(name, namespace):
if name.startswith(namespace.name + '.'):
return name[len(namespace.name + '.'):]
return name
def _GetModelHierarchy(entity):
"""Returns the hierarchy of the given model entity."""
hierarchy = []
while entity is not None:
hierarchy.append(getattr(entity, 'name', repr(entity)))
if isinstance(entity, Namespace):
hierarchy.insert(0, ' in %s' % entity.source_file)
entity = getattr(entity, 'parent', None)
hierarchy.reverse()
return hierarchy
def _GetTypes(parent, json, namespace, origin):
"""Creates Type objects extracted from |json|.
"""
assert hasattr(namespace, 'manifest_keys'), \
'Types should be parsed after parsing manifest keys.'
types = OrderedDict()
for type_json in json.get('types', []):
type_ = Type(parent, type_json['id'], type_json, namespace, origin)
types[type_.name] = type_
return types
def _GetFunctions(parent, json, namespace):
"""Creates Function objects extracted from |json|.
"""
functions = OrderedDict()
for function_json in json.get('functions', []):
function = Function(parent,
function_json['name'],
function_json,
namespace,
Origin(from_json=True))
functions[function.name] = function
return functions
def _GetEvents(parent, json, namespace):
"""Creates Function objects generated from the events in |json|.
"""
events = OrderedDict()
for event_json in json.get('events', []):
event = Function(parent,
event_json['name'],
event_json,
namespace,
Origin(from_client=True))
events[event.name] = event
return events
def _GetProperties(parent, json, namespace, origin):
"""Generates Property objects extracted from |json|.
"""
properties = OrderedDict()
for name, property_json in json.get('properties', {}).items():
properties[name] = Property(parent, name, property_json, namespace, origin)
return properties
def _GetManifestKeysType(self, json):
# type: (OrderedDict) -> Type
"""Returns the Type for manifest keys parsing, or None if there are no
manifest keys in this namespace.
"""
if not json.get('manifest_keys'):
return None
# Create a dummy object to parse "manifest_keys" as a type.
manifest_keys_type = {
'type': 'object',
'properties': json['manifest_keys'],
}
return Type(self, 'ManifestKeys', manifest_keys_type, self,
Origin(from_manifest_keys=True))
def _GetWithDefaultChecked(self, json, key, default):
if json.get(key) == default:
raise ParseException(
self, 'The attribute "%s" is specified as "%s", but this is the '
'default value if the attribute is not included. It should be removed.'
% (key, default))
return json.get(key, default)
class _PlatformInfo(_Enum):
def __init__(self, name):
_Enum.__init__(self, name)
class Platforms(object):
"""Enum of the possible platforms.
"""
CHROMEOS = _PlatformInfo("chromeos")
FUCHSIA = _PlatformInfo("fuchsia")
LACROS = _PlatformInfo("lacros")
LINUX = _PlatformInfo("linux")
MAC = _PlatformInfo("mac")
WIN = _PlatformInfo("win")
def _GetPlatforms(json):
if 'platforms' not in json or json['platforms'] == None:
return None
# Sanity check: platforms should not be an empty list.
if not json['platforms']:
raise ValueError('"platforms" cannot be an empty list')
platforms = []
for platform_name in json['platforms']:
platform_enum = None
for platform in _Enum.GetAll(Platforms):
if platform_name == platform.name:
platform_enum = platform
break
if not platform_enum:
raise ValueError('Invalid platform specified: ' + platform_name)
platforms.append(platform_enum)
return platforms
|