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

Unified Diff: Source/bindings/scripts/interface_to_json.py

Issue 1323493002: Collect IDL files and exract interface node object's information (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add explanation of each function Created 5 years, 3 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 | « Source/bindings/scripts/interface_node_path.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/scripts/interface_to_json.py
diff --git a/Source/bindings/scripts/interface_to_json.py b/Source/bindings/scripts/interface_to_json.py
new file mode 100644
index 0000000000000000000000000000000000000000..0c216a2f289ceea36ec8d507009e8b38418cb58a
--- /dev/null
+++ b/Source/bindings/scripts/interface_to_json.py
@@ -0,0 +1,326 @@
+#!/usr/bin/env python
+
Yuki 2015/09/04 10:07:57 Need copyright notice.
natsukoa 2015/09/07 08:37:55 Done.
+"""Usage: interface_to_json.py path_file.txt json_file.json
Yuki 2015/09/04 10:07:57 filename: "collect_idls_into_json.py"
natsukoa 2015/09/07 08:37:55 Done.
+
+path_textfile: output of interface_nodo_path.py
+
+The goal of this script is to integrate and dump interface node information to json file.
+"""
+
+import os
+import sys
+import json
+
+from blink_idl_parser import parse_file, BlinkIDLParser
+
+
+def load_filepaths(path_file):
+ """Returns a generator which yields absolute path of IDL files written in text file.
Yuki 2015/09/04 10:07:57 written in |path_file|.
natsukoa 2015/09/07 08:37:55 Done.
+ Args:
+ path_file: text file
+ Return:
Yuki 2015/09/04 10:07:57 s/Return/Returns/
natsukoa 2015/09/07 08:37:55 Done.
+ path: generator, absolute file path
+ """
+ for line in open(path_file, 'r'):
+ path = line.strip()
+ yield path
+
+
+def get_interfaces(path_file):
Yuki 2015/09/04 10:07:57 s/path_file/idl_paths/
natsukoa 2015/09/07 08:37:55 Done.
+ """Returns generator which yields interface IDL nodes.
+ Args:
+ path_file: text file
+ Return:
+ definition: generator, interface node objects
+ """
+ parser = BlinkIDLParser(debug=False)
+ class_name = 'Interface'
+ for node_path in load_filepaths(path_file):
Yuki 2015/09/04 10:07:57 s/load_file_paths(path_file)/idl_paths/
natsukoa 2015/09/07 08:37:55 Done.
+ definitions = parse_file(parser, node_path)
+ for definition in definitions.GetChildren():
+ if definition.GetClass() == class_name:
+ yield definition
+
+
+def get_filepath(interface_node):
+ """Returns relative path which is contained in interface_node.
+ Args:
+ interface_node: interface node class object
+ Return:
+ os.path.relpath(filename): str, interface_node's file path
+ """
+ filename = interface_node.GetProperty('FILENAME')
+ return os.path.relpath(filename)
+
+
+def get_partial(interface_node_list):
+ """Returns generator which yields partial interface node.
+ Args:
+ interface_node_list: generator, interface node class object
+ Return:
+ interface_node: generator, interface node class object
+ """
+ for interface_node in interface_node_list:
+ if interface_node.GetProperty('Partial', default=False):
+ yield interface_node
+
+
+def get_non_partial(interface_node_list):
+ """Returns generator which yields interface node.
+ Args:
+ interface_node_list: generator interface node class object
+ Return:
+ interface_node: generator, interface node class object
+ """
+ for interface_node in interface_node_list:
+ if not interface_node.GetProperty('Partial', default=False):
+ yield interface_node
+
+
+def get_attributes(interface_node):
+ """Returns list of Attribute object.
+ Args:
+ interface_node: interface node object
+ Return:
+ interface_node.GetListOf('Attribute'): list, Attribute object list
+ """
+ return interface_node.GetListOf('Attribute')
+
+
+def get_type(node):
+ """Returns type of attribute or operation's type.
+ Args:
+ node: interface node object
+ """
+ return node.GetListOf('Type')[0].GetChildren()[0].GetName()
Yuki 2015/09/04 10:07:57 def get_attribute_type(attribute_node): ....
natsukoa 2015/09/07 08:37:55 Done.
+
+
+def get_extattirbutes(node):
+ """Returns generator which yields list of Extattribute object.
+ Args:
+ node: interface node object
+ Return:
+ extattribute_list: generator, extattribute object list
+ """
+ for extattributes in node.GetListOf('ExtAttributes'):
+ for extattribute_list in extattributes.GetChildren():
+ yield extattribute_list
+
+
+def extattr_dict(node):
+ """Returns generator which yields Extattribute's information dictionary.
+ Args:
+ node: interface node object
+ Return:
+ {'Name': extattribute.GetName()}: generator, extattribute dictionary
+ """
Yuki 2015/09/04 10:07:57 def get_extattrs(node): def get_extattr_nodes(
natsukoa 2015/09/07 08:37:55 Done.
+ for extattribute in get_extattirbutes(node):
+ yield {
+ 'Name': extattribute.GetName()
+ }
+
+
+def attributes_dict(interface_node):
+ """Returns generator which yields dictioary of Extattribute object information.
+ Args:
+ interface_node: interface node object
+ Return:
+ attr_dict: generator, dictionary of attribite information
+ """
+ for attribute in get_attributes(interface_node):
+ attr_dict = {}
+ attr_dict['Name'] = attribute.GetName()
+ attr_dict['Type'] = get_type(attribute)
+ attr_dict['ExtAttributes'] = [extattr for extattr in extattr_dict(attribute)]
+ yield attr_dict
+
+
+def get_operations(interface_node):
+ """Returns list of Operations object under the interface_node.
+ Args:
+ interface_node: interface node object
+ Return:
+ interface_node.GetListOf('Operation'): list, list of oparation object
+ """
+ return interface_node.GetListOf('Operation')
+
+
+def get_arguments(operation):
+ """Returns list of Arguments object under the operation object.
+ Args:
+ operation: interface node object
+ Return:
+ argument_node.GetListOf('Argument'): list, list of argument object
+ """
+ argument_node = operation.GetListOf('Arguments')[0]
+ return argument_node.GetListOf('Argument')
+
+
+def argument_dict(argument):
+ """Returns generator which yields dictionary of Argument object information.
+ Args:
+ argument: interface node object
+ Return:
+ arg_dict: dict, generator of argument information's dictionary
+ """
+ for arg_name in get_arguments(argument):
+ arg_dict = {}
+ arg_dict['Name'] = arg_name.GetName()
+ arg_dict['Type'] = get_type(arg_name)
+ yield arg_dict
+
+
+def get_operation_name(operation):
+ """Returns openration object name.
+ Args:
+ operation: operation object in interface node object
+ Return:
+ str, operation's name
+ """
+ if operation.GetProperty('GETTER', default=None):
+ return '__getter__'
+ elif operation.GetProperty('SETTER', default=None):
+ return '__setter__'
+ elif operation.GetProperty('DELETER', default=None):
+ return '__deleter__'
+ else:
+ return operation.GetName()
+
+
+def operation_dict(interface_node):
+ """Returns generator which yields dictionary of Operation object information.
+ Args:
+ interface_node: interface node object
+ Return:
+ operate_dict: generator of operation dictionary
+ """
+ for operation in get_operations(interface_node):
+ operate_dict = {}
+ operate_dict['Name'] = get_operation_name(operation)
+ operate_dict['Argument'] = [args for args in argument_dict(operation)]
+ operate_dict['Type'] = get_type(operation)
+ operate_dict['ExtAttributes'] = [extattr for extattr in extattr_dict(operation)]
+ yield operate_dict
+
+
+def get_consts(interface_node):
+ """Returns list of Constant object.
+ Args:
+ interface_node: interface node object
+ Return:
+ interface_node.GetListOf('Const'): list, list of constant object
+ """
+ return interface_node.GetListOf('Const')
+
+
+def get_const_type(node):
+ """Returns constant's type.
+ Args:
+ node: interface node's attribute or operation object
+ Return:
+ node.GetChildren()[0].GetName(): str, constant object's name
+ """
+ return node.GetChildren()[0].GetName()
+
+
+def get_const_value(node):
+ """Returns constant's value.
+ Args:
+ node: interface node's attribute or operation object
+ Return:
+ node.GetChildren()[1].GetName(): list, list of oparation object
+ """
+ return node.GetChildren()[1].GetName()
+
+
+def const_dict(interface_node):
+ """Returns generator which yields dictionary of constant object information.
+ Args:
+ interface_node: interface node object
+ Return:
+ {}: generator, dict of constant object information
+ """
+ for const in get_consts(interface_node):
+ yield {
+ 'Name': const.GetName(),
+ 'Type': get_const_type(const),
+ 'Value': get_const_value(const)
+ }
+
+
+def format_interface_dict(interface_node):
+ """Returns dictioanry of each interface_node information.
+ Args:
+ interface_node: interface node object
+ Return:
+ interface_dict: dict, dictionary of interface node information
+ """
+ interface_dict = {}
+ interface_dict['Name'] = interface_node.GetName()
+ interface_dict['FilePath'] = get_filepath(interface_node)
+ interface_dict['Attribute'] = [attr for attr in attributes_dict(interface_node)]
+ interface_dict['Operation'] = [operation for operation in operation_dict(interface_node)]
+ interface_dict['ExtAttributes'] = [extattr for extattr in extattr_dict(interface_node)]
+ interface_dict['Constant'] = [const for const in const_dict(interface_node) if const]
+ return interface_dict
+
+
+def merge_partial_interface(interface_dict_list, partial_dict_list):
+ """Returns list of interface_node information dictioary.
+ Args:
+ interface_dict_list: list
+ partial_dict_list: list
+ Return:
+ interface_dict_list: list, list of interface node's dictionry merged with partial interface node
+ """
+ for partial in partial_dict_list:
+ for interface in interface_dict_list:
+ if interface['Name'] == partial['Name']:
+ interface['Attribute'].append(partial['Attribute'])
+ interface['Operation'].append(partial['Operation'])
+ interface['ExtAttributes'].append(partial['ExtAttributes'])
+ interface.setdefault('Partial_FilePath', []).append(partial['FilePath'])
+ if interface['Constant']:
+ interface.setdefault('Constant', []).append(partial['Constant'])
+ return interface_dict_list
+
+
+def format_dictionary(dictionary_list):
+ """Returns dictioary which is changed structure of interface_dict_list.
+ Args:
+ dictirary_list: list, list of interface node dictionary
+ Return:
+ dictionary: dict, {interface_node name: interface node dictionary}
+ """
+ dictionary = {}
+ for interface_dict in dictionary_list:
+ dictionary.setdefault(interface_dict['Name'], interface_dict)
+ return dictionary
+
+
+def export_jsonfile(dictionary, json_file):
Yuki 2015/09/04 10:07:57 path = "foo/bar/baz.ext" filepath = "foo/bar/baz.e
natsukoa 2015/09/07 08:37:55 Done.
+ """Returns jsonfile which is dumped each interface_node information dictionary to json.
+ Args:
+ dictioary: dict, output of format_dictinatry
+ json_file: json file for output
+ Return:
+ json file which is contained each interface node dictionary
+ """
+ filename = json_file
+ indent_size = None
+ with open(filename, 'w') as f:
+ json.dump(dictionary, f, sort_keys=True, indent=indent_size)
+
+
+def main(args):
+ path_file = args[0]
+ json_file = args[1]
+ interface_dict_list = [format_interface_dict(interface_node) for interface_node in get_non_partial(get_interfaces(path_file))]
+ partial_dict_list = [format_interface_dict(interface_node) for interface_node in get_partial(get_interfaces(path_file))]
+ dictionary_list = merge_partial_interface(interface_dict_list, partial_dict_list)
+ dictionary = format_dictionary(dictionary_list)
+ export_jsonfile(dictionary, json_file)
+
+
+if __name__ == '__main__':
+ main(sys.argv[1:])
« no previous file with comments | « Source/bindings/scripts/interface_node_path.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698