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

Unified Diff: third_party/WebKit/Source/bindings/scripts/collect_idls_into_json.py

Issue 1376673003: Collect idls and organize interface node (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Change code architecture Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/scripts/interface_node_path.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/bindings/scripts/collect_idls_into_json.py
diff --git a/third_party/WebKit/Source/bindings/scripts/collect_idls_into_json.py b/third_party/WebKit/Source/bindings/scripts/collect_idls_into_json.py
new file mode 100755
index 0000000000000000000000000000000000000000..1a676ca1abc210d628305f8b87dc8a512e0316ea
--- /dev/null
+++ b/third_party/WebKit/Source/bindings/scripts/collect_idls_into_json.py
@@ -0,0 +1,374 @@
+#!/usr/bin/env python
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""Usage: collect_idls_into_json.py path_file.txt json_file.json
+
+This script collects and organizes interface information and that information dumps into json file.
+"""
+
+import json
+import os
+import sys
+import utilities
+
+from blink_idl_parser import parse_file, BlinkIDLParser
+
+_CLASS_NAME = 'Interface'
Yuki 2015/10/05 04:33:43 _CLASS_NAME => _INTERFACE_CLASS_NAME or something
natsukoa 2015/10/05 08:59:04 Done.
+_PARTIAL = 'Partial'
+_STRIP_FILEPATH = '../chromium/src/third_party/WebKit'
+_MEMBERS = ['Attributes', 'Operations', 'Consts']
+
+
+def get_definitions(paths):
+ """Returns IDL node.
+ Args:
+ paths: list of IDL file path
+ Returns:
+ a generator which yields IDL node objects
+ """
+ parser = BlinkIDLParser(debug=False)
+ for path in paths:
+ definitions = parse_file(parser, path)
+ for definition in definitions.GetChildren():
+ yield definition
+
+
+def get_interface_node(definition):
Yuki 2015/10/05 04:33:44 get_interface_node => **is_**interface_node
natsukoa 2015/10/05 08:59:04 I remove get_interface_node(). filter_partial and
+ """Returns interface node.
+ Args:
+ definition: IDL node
+ Returns:
+ interface node
+ """
+ if definition.GetClass() == _CLASS_NAME:
+ return definition
+ else:
+ return None
+
+
+def is_implements(definition):
+ """Returns implement node.
+ Args:
+ definition: IDL node
+ Returns:
+ implement node
+ """
+ if definition.GetClass() == 'Implements':
+ return True
+ else:
+ return False
+
+
+def filter_partial(interface_nodes):
+ """Returns partial interface node.
+ Args:
+ interface_nodes: a generator which is interface IDL
+ Return:
+ a generator which yields partial interface node
+ """
+ for interface_node in interface_nodes:
+ if interface_node.GetProperty(_PARTIAL):
+ yield interface_node
+
+
+def filter_non_partial(interface_nodes):
+ """Returns interface node.
+ Args:
+ interface_nodes: a generator which is interface IDL node
+ Returns:
+ a generator which yields interface node
+ """
+ for interface_node in interface_nodes:
+ if not interface_node.GetProperty(_PARTIAL):
+ yield interface_node
+
+
+def get_filepath(interface_node):
+ """Returns relative path under the WebKit directory which |interface_node| is defined.
+ Args:
+ interface_node: IDL interface
+ Returns:
+ str which is |interface_node| file path
+ """
+ filename = interface_node.GetProperty('FILENAME')
+ return os.path.relpath(filename).strip(_STRIP_FILEPATH)
+
+
+def get_const_node(interface_node):
Yuki 2015/10/05 04:33:43 get_const_node**_list**. Ditto for all other case
natsukoa 2015/10/05 08:59:04 Done.
+ """Returns Constant object.
+ Args:
+ interface_node: interface node object
+ Returns:
+ list which is list of constant object
+ """
+ return interface_node.GetListOf('Const')
+
+
+def get_const_type(const_node):
+ """Returns constant's type.
+ Args:
+ const_node: constant node object
+ Returns:
+ node.GetChildren()[0].GetName(): str, constant object's name
+ """
+ return const_node.GetChildren()[0].GetName()
+
+
+def get_const_value(const_node):
+ """Returns constant's value.
+ Args:
+ const_node: constant node object
+ Returns:
+ node.GetChildren()[1].GetName(): list, list of oparation object
+ """
+ return const_node.GetChildren()[1].GetName()
+
+
+def const_node_to_dict(const_node):
+ """Returns dictionary of constant object information.
+ Args:
+ const_nodes: list of interface node object which has constant
+ Returns:
+ a generator which yields dictionary of constant object information
+ """
+ return {
+ 'Name': const_node.GetName(),
+ 'Type': get_const_type(const_node),
+ 'Value': get_const_value(const_node),
+ 'ExtAttributes': [extattr_node_to_dict(extattr) for extattr in get_extattribute_node(const_node)],
+ }
+
+
+def get_attribute_node(interface_node):
+ """Returns list of Attribute if the interface have one.
+ Args:
+ interface_node: interface node object
+ Returns:
+ a list of attribute
+ """
+ return interface_node.GetListOf('Attribute')
+
+
+def get_attribute_type(attribute_node):
+ """Returns type of attribute.
+ Args:
+ attribute_node: attribute node object
+ Returns:
+ str which is type of Attribute
+ """
+ return attribute_node.GetOneOf('Type').GetChildren()[0].GetName()
+
+
+get_operation_type = get_attribute_type
+get_argument_type = get_attribute_type
+
+
+def attribute_node_to_dict(attribute_node):
+ """Returns dictioary of attribute object information.
+ Args:
+ attribute_nodes: list of attribute node object
+ Returns:
+ a generator which yields dictionary of attribite information
+ """
+ return {
+ 'Name': attribute_node.GetName(),
+ 'Type': get_attribute_type(attribute_node),
+ 'ExtAttributes': [extattr_node_to_dict(extattr) for extattr in get_extattribute_node(attribute_node)],
+ 'Readonly': attribute_node.GetProperty('READONLY', default=False),
+ 'Static': attribute_node.GetProperty('STATIC', default=False),
+ }
+
+
+def get_operation_node(interface_node):
+ """Returns Operations object under the interface.
+ Args:
+ interface: interface node object
+ Returns:
+ list which is list of oparation object
+ """
+ return interface_node.GetListOf('Operation')
+
+
+def get_argument_node(operation_node):
+ """Returns Argument object under the operation object.
+ Args:
+ operation_node: operation node object
+ Returns:
+ list of argument object
+ """
+ return operation_node.GetOneOf('Arguments').GetListOf('Argument')
+
+
+def argument_node_to_dict(argument_node):
+ """Returns generator which yields dictionary of Argument object information.
+ Args:
+ arguments: list of argument node object
+ Returns:
+ a generator which yields dictionary of argument information
+ """
+ return {
+ 'Name': argument_node.GetName(),
+ 'Type': get_argument_type(argument_node),
+ }
+
+
+def get_operation_name(operation_node):
+ """Returns openration object name.
+ Args:
+ operation_node: operation node object
+ Returns:
+ str which is operation's name
+ """
+ if operation_node.GetProperty('GETTER'):
+ return '__getter__'
+ elif operation_node.GetProperty('SETTER'):
+ return '__setter__'
+ elif operation_node.GetProperty('DELETER'):
+ return '__deleter__'
+ else:
+ return operation_node.GetName()
+
+
+def operation_node_to_dict(operation_node):
+ """Returns dictionary of Operation object information.
+ Args:
+ operation_nodes: list of operation node object
+ Returns:
+ dictionary of operation's informantion
+ """
+ return {
+ 'Name': get_operation_name(operation_node),
+ 'Arguments': [argument_node_to_dict(argument) for argument in get_argument_node(operation_node) if argument_node_to_dict(argument)],
+ 'Type': get_operation_type(operation_node),
+ 'ExtAttributes': [extattr_node_to_dict(extattr) for extattr in get_extattribute_node(operation_node)],
+ 'Static': operation_node.GetProperty('STATIC', default=False),
+ }
+
+
+def get_extattribute_node(node):
+ """Returns list of ExtAttribute.
+ Args:
+ IDL node object
+ Returns:
+ a list of ExtAttrbute
+ """
+ if node.GetOneOf('ExtAttributes'):
+ return node.GetOneOf('ExtAttributes').GetListOf('ExtAttribute')
+ else:
+ return []
+
+
+def extattr_node_to_dict(extattr):
+ """Returns a generator which yields Extattribute's object dictionary
+ Args:
+ extattribute_nodes: list of extended attribute
+ Returns:
+ a generator which yields extattribute dictionary
+ """
+ return {
+ 'Name': extattr.GetName(),
+ }
+
+
+def get_inherit_node(interface_node):
+ if interface_node.GetListOf('Inherit'):
+ return interface_node.GetListOf('Inherit')
+ else:
+ return []
+
+
+def inherit_node_to_dict(inherit):
+ return {'Parent': inherit.GetName()}
+
+
+def interface_node_to_dict(interface_node):
+ """Returns dictioary whose key is interface name and value is interface dictioary.
+ Args:
+ interface_node: interface node
+ Returns:
+ dictionary, {interface name: interface node dictionary}
+ """
+ return {
+ 'Name': interface_node.GetName(),
+ 'FilePath': get_filepath(interface_node),
+ 'Consts': [const_node_to_dict(const) for const in get_const_node(interface_node)],
+ 'Attributes': [attribute_node_to_dict(attr) for attr in get_attribute_node(interface_node) if attribute_node_to_dict(attr)],
+ 'Operations': [operation_node_to_dict(operation) for operation in get_operation_node(interface_node) if operation_node_to_dict(operation)],
+ 'ExtAttributes': [extattr_node_to_dict(extattr) for extattr in get_extattribute_node(interface_node)],
+ 'Inherit': [inherit_node_to_dict(inherit) for inherit in get_inherit_node(interface_node)],
+ }
+
+
+def merge_partial_dicts(interfaces_dict, partials_dict):
+ """Returns interface information dictioary.
+ Args:
+ interfaces_dict: interface node dictionary
+ partial_dict: partial interface node dictionary
+ Returns:
+ a dictronary merged with interfaces_dict and partial_dict
+ """
+ for interface_name, partial in partials_dict.iteritems():
+ interface = interfaces_dict.get(interface_name)
+ if not interface:
+ continue
+ else:
+ for member in _MEMBERS:
+ interface[member].extend(partial.get(member))
+ interface.setdefault('Partial_FilePaths', []).append(partial['FilePath'])
+ return interfaces_dict
+
+
+def merge_implement_nodes(interfaces_dict, implement_nodes):
+ """Returns dict of interface information combined with referenced interface information
+ Args:
+ interfaces_dict: dict of interface information
+ implement_nodes: list of implemented interface node
+ Returns:
+ interfaces_dict: dict of interface information combine into implements node
+ """
+ for implement in implement_nodes:
+ reference = implement.GetProperty('REFERENCE')
+ implement = implement.GetName()
+ if not reference:
+ continue
+ else:
+ for member in _MEMBERS:
+ interfaces_dict[implement][member].extend(interfaces_dict[reference].get(member))
+ return interfaces_dict
+
+
+# TODO(natsukoa): Remove indent
+def export_to_jsonfile(dictionary, json_file):
+ """Returns jsonfile which is dumped each interface information dictionary to json.
+ Args:
+ dictioary: interface dictionary
+ json_file: json file for output
+ Returns:
+ json file which is contained each interface node dictionary
+ """
+ with open(json_file, 'w') as f:
+ json.dump(dictionary, f, sort_keys=True, indent=4)
+
+
+def main(args):
+ path_file = args[0]
+ json_file = args[1]
+ file_to_list = utilities.read_file_to_list(path_file)
Yuki 2015/10/05 04:33:43 file_to_list => file_list or path_list
natsukoa 2015/10/05 08:59:04 Done.
+ implement_nodes = [definition
+ for definition in get_definitions(file_to_list)
+ if is_implements(definition)]
+ interfaces_dict = {get_interface_node(definition).GetName(): interface_node_to_dict(get_interface_node(definition))
+ for definition in filter_non_partial(get_definitions(file_to_list))
+ if get_interface_node(definition)}
+ partials_dict = {get_interface_node(definition).GetName(): interface_node_to_dict(get_interface_node(definition))
+ for definition in filter_partial(get_definitions(file_to_list))
+ if get_interface_node(definition)}
+ dictionary = merge_partial_dicts(interfaces_dict, partials_dict)
+ interfaces_dict = merge_implement_nodes(interfaces_dict, implement_nodes)
+ export_to_jsonfile(dictionary, json_file)
+
+
+if __name__ == '__main__':
+ main(sys.argv[1:])
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/scripts/interface_node_path.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698