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

Unified Diff: tools/dom/scripts/fremontcutbuilder.py

Issue 444743002: Use Blink IDL parser for dart libraries. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merged Created 6 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 | « tools/dom/scripts/databasebuilder.py ('k') | tools/dom/scripts/go.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/scripts/fremontcutbuilder.py
diff --git a/tools/dom/scripts/fremontcutbuilder.py b/tools/dom/scripts/fremontcutbuilder.py
index 085e01bfcc25582cc4d59f21f485115300992009..0bd307b5f4fefa5416ff22d5a4bb652f74e9766e 100755
--- a/tools/dom/scripts/fremontcutbuilder.py
+++ b/tools/dom/scripts/fremontcutbuilder.py
@@ -9,6 +9,7 @@ import idlparser
import logging.config
import os.path
import sys
+import time
_logger = logging.getLogger('fremontcutbuilder')
@@ -34,12 +35,15 @@ FEATURE_DEFINES = [
'ENABLE_WEB_AUDIO', # Not on Android
]
-def build_database(idl_files, database_dir, feature_defines=None, parallel=False):
+def build_database(idl_files, database_dir, feature_defines=None, parallel=False,
+ blink_parser=False, logging_level=logging.WARNING):
"""This code reconstructs the FremontCut IDL database from W3C,
WebKit and Dart IDL files."""
current_dir = os.path.dirname(__file__)
logging.config.fileConfig(os.path.join(current_dir, "logging.conf"))
+ _logger.setLevel(logging_level)
+
db = database.Database(database_dir)
# Delete all existing IDLs in the DB.
@@ -63,24 +67,27 @@ def build_database(idl_files, database_dir, feature_defines=None, parallel=False
# TODO(vsm): What else should we define as on when processing IDL?
idl_defines=webkit_defines + feature_defines,
source='WebKit',
- source_attributes={'revision': webkit_revision})
+ source_attributes={'revision': webkit_revision},
+ logging_level=logging_level)
# Import WebKit IDLs.
- builder.import_idl_files(idl_files, webkit_options, parallel)
+ builder.import_idl_files(idl_files, webkit_options, parallel, blink_parser, False)
# Import Dart idl:
dart_options = databasebuilder.DatabaseBuilderOptions(
idl_syntax=idlparser.FREMONTCUT_SYNTAX,
source='Dart',
- rename_operation_arguments_on_merge=True)
+ rename_operation_arguments_on_merge=True,
+ logging_level=logging_level)
builder.import_idl_files(
[ os.path.join(current_dir, '..', 'idl', 'dart', 'dart.idl') ],
- dart_options,
- parallel)
+ dart_options, parallel, blink_parser, True)
+
+ start_time = time.time()
# Merging:
- builder.merge_imported_interfaces()
+ builder.merge_imported_interfaces(blink_parser)
builder.fetch_constructor_data(webkit_options)
builder.fix_displacements('WebKit')
@@ -104,10 +111,14 @@ def build_database(idl_files, database_dir, feature_defines=None, parallel=False
sorted(unknown_conditionals))
_logger.warning('Please update fremontcutbuilder.py')
- db.Save()
+ print 'Merging interfaces %s seconds' % round(time.time() - start_time, 2)
+
+# TODO(terry): Don't generate the database cache.
+# db.Save()
+
return db
-def main(parallel=False):
+def main(parallel=False, blink_parser=False, logging_level=logging.WARNING):
current_dir = os.path.dirname(__file__)
idl_files = []
@@ -132,19 +143,29 @@ def main(parallel=False):
'inspector',
]
+ # TODO(terry): Integrate this into the htmlrenamer's _removed_html_interfaces
+ # (if possible).
+ FILES_TO_IGNORE = [
+ 'InspectorFrontendHostFileSystem.idl', # Uses interfaces in inspector dir (which is ignored)
+ 'WebKitGamepad.idl', # Gamepad.idl is the new one.
+ 'WebKitGamepadList.idl', # GamepadList is the new one.
+ ]
+
def visitor(arg, dir_name, names):
if os.path.basename(dir_name) in DIRS_TO_IGNORE:
names[:] = [] # Do not go underneath
for name in names:
file_name = os.path.join(dir_name, name)
(interface, ext) = os.path.splitext(file_name)
- if ext == '.idl':
+ if ext == '.idl' and not(name in FILES_TO_IGNORE):
idl_files.append(file_name)
os.path.walk(webcore_dir, visitor, webcore_dir)
database_dir = os.path.join(current_dir, '..', 'database')
- return build_database(idl_files, database_dir, parallel=parallel)
+
+ return build_database(idl_files, database_dir, parallel=parallel,
+ blink_parser=blink_parser, logging_level=logging_level)
if __name__ == '__main__':
sys.exit(main())
« no previous file with comments | « tools/dom/scripts/databasebuilder.py ('k') | tools/dom/scripts/go.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698