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

Unified Diff: Source/devtools/scripts/compile_frontend.py

Issue 573453004: DevTools: Get rid of frontend_modules.json (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address comments 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 | « Source/devtools/front_end/workspace/module.json ('k') | Source/devtools/scripts/frontend_modules.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/scripts/compile_frontend.py
diff --git a/Source/devtools/scripts/compile_frontend.py b/Source/devtools/scripts/compile_frontend.py
index c240c1be766fdf7752e275795eedc81ed7ba811a..a448f27bffa02c30abe3b54abbfe272d139e1f35 100755
--- a/Source/devtools/scripts/compile_frontend.py
+++ b/Source/devtools/scripts/compile_frontend.py
@@ -27,9 +27,11 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+from modular_build import read_file, write_file
import os
import os.path as path
import generate_protocol_externs
+import modular_build
import re
import shutil
import subprocess
@@ -42,52 +44,49 @@ except ImportError:
scripts_path = path.dirname(path.abspath(__file__))
devtools_path = path.dirname(scripts_path)
-inspector_path = path.join(path.dirname(devtools_path), "core", "inspector")
-devtools_frontend_path = path.join(devtools_path, "front_end")
-global_externs_file = path.join(devtools_frontend_path, "externs.js")
-protocol_externs_file = path.join(devtools_frontend_path, "protocol_externs.js")
-webgl_rendering_context_idl_path = path.join(path.dirname(devtools_path), "core", "html", "canvas", "WebGLRenderingContextBase.idl")
-injected_script_source_name = path.join(inspector_path, "InjectedScriptSource.js")
-canvas_injected_script_source_name = path.join(inspector_path, "InjectedScriptCanvasModuleSource.js")
-closure_compiler_jar = path.join(scripts_path, "closure", "compiler.jar")
-closure_runner_jar = path.join(scripts_path, "compiler-runner", "closure-runner.jar")
-jsdoc_validator_jar = path.join(scripts_path, "jsdoc-validator", "jsdoc-validator.jar")
-java_exec = "java -Xms1024m -server -XX:+TieredCompilation"
-
-generate_protocol_externs.generate_protocol_externs(protocol_externs_file, path.join(devtools_path, "protocol.json"))
-
-jsmodule_name_prefix = "jsmodule_"
-frontend_modules_name = "frontend_modules.json"
-runtime_module_name = "_runtime"
-module_initializer_name = "_module.js"
+inspector_path = path.join(path.dirname(devtools_path), 'core', 'inspector')
+devtools_frontend_path = path.join(devtools_path, 'front_end')
+global_externs_file = path.join(devtools_frontend_path, 'externs.js')
+protocol_externs_file = path.join(devtools_frontend_path, 'protocol_externs.js')
+webgl_rendering_context_idl_path = path.join(path.dirname(devtools_path), 'core', 'html', 'canvas', 'WebGLRenderingContextBase.idl')
+injected_script_source_name = path.join(inspector_path, 'InjectedScriptSource.js')
+canvas_injected_script_source_name = path.join(inspector_path, 'InjectedScriptCanvasModuleSource.js')
+closure_compiler_jar = path.join(scripts_path, 'closure', 'compiler.jar')
+closure_runner_jar = path.join(scripts_path, 'compiler-runner', 'closure-runner.jar')
+jsdoc_validator_jar = path.join(scripts_path, 'jsdoc-validator', 'jsdoc-validator.jar')
+java_exec = 'java -Xms1024m -server -XX:+TieredCompilation'
+
+generate_protocol_externs.generate_protocol_externs(protocol_externs_file, path.join(devtools_path, 'protocol.json'))
+
+jsmodule_name_prefix = 'jsmodule_'
+runtime_module_name = '_runtime'
+module_initializer_name = '_module.js'
def log_error(message):
- print "ERROR: " + message
+ print 'ERROR: ' + message
def error_excepthook(exctype, value, traceback):
- print "ERROR:"
+ print 'ERROR:'
sys.__excepthook__(exctype, value, traceback)
sys.excepthook = error_excepthook
-try:
- with open(path.join(scripts_path, frontend_modules_name), "rt") as js_modules_file:
- modules = json.loads(js_modules_file.read())
-except:
- log_error("Failed to read %s" % frontend_modules_name)
- raise
-type_checked_jsdoc_tags_list = ["param", "return", "type", "enum"]
+loader = modular_build.DescriptorLoader(devtools_frontend_path)
+descriptors = loader.load_application('devtools.json')
+modules_by_name = descriptors.modules
-type_checked_jsdoc_tags_or = "|".join(type_checked_jsdoc_tags_list)
+type_checked_jsdoc_tags_list = ['param', 'return', 'type', 'enum']
+
+type_checked_jsdoc_tags_or = '|'.join(type_checked_jsdoc_tags_list)
# Basic regex for invalid JsDoc types: an object type name ([A-Z][A-Za-z0-9.]+[A-Za-z0-9]) not preceded by '!', '?', ':' (this, new), or '.' (object property).
-invalid_type_regex = re.compile(r"@(?:" + type_checked_jsdoc_tags_or + r")\s*\{.*(?<![!?:.A-Za-z0-9])([A-Z][A-Za-z0-9.]+[A-Za-z0-9])[^/]*\}")
+invalid_type_regex = re.compile(r'@(?:' + type_checked_jsdoc_tags_or + r')\s*\{.*(?<![!?:.A-Za-z0-9])([A-Z][A-Za-z0-9.]+[A-Za-z0-9])[^/]*\}')
-invalid_type_designator_regex = re.compile(r"@(?:" + type_checked_jsdoc_tags_or + r")\s*.*(?<![{: ])([?!])=?\}")
+invalid_type_designator_regex = re.compile(r'@(?:' + type_checked_jsdoc_tags_or + r')\s*.*(?<![{: ])([?!])=?\}')
-error_warning_regex = re.compile(r"(?:WARNING|ERROR)")
+error_warning_regex = re.compile(r'(?:WARNING|ERROR)')
errors_found = False
@@ -100,32 +99,18 @@ def hasErrors(output):
return re.search(error_warning_regex, output) != None
-def dump_all_checked_files():
- files = {}
- for module in modules:
- for source in module["sources"]:
- files[path.join(devtools_frontend_path, source)] = True
- return files.keys()
-
-
def verify_jsdoc_extra(additional_files):
- return run_in_shell("%s -jar %s %s" % (java_exec, jsdoc_validator_jar, " ".join(dump_all_checked_files() + additional_files)))
+ return run_in_shell('%s -jar %s %s' % (java_exec, jsdoc_validator_jar, ' '.join(descriptors.all_compiled_files() + additional_files)))
def verify_jsdoc(additional_files):
def file_list():
- result = []
- for module in modules:
- for file_name in module["sources"]:
- result.append(path.join(devtools_frontend_path, file_name))
- for file in additional_files:
- result.append(file)
- return result
+ return descriptors.all_compiled_files() + additional_files
errors_found = False
for full_file_name in file_list():
lineIndex = 0
- with open(full_file_name, "r") as sourceFile:
+ with open(full_file_name, 'r') as sourceFile:
for line in sourceFile:
line = line.rstrip()
lineIndex += 1
@@ -138,47 +123,45 @@ def verify_jsdoc(additional_files):
def verify_jsdoc_line(fileName, lineIndex, line):
def print_error(message, errorPosition):
- print "%s:%s: ERROR - %s\n%s\n%s\n" % (fileName, lineIndex, message, line, " " * errorPosition + "^")
+ print '%s:%s: ERROR - %s\n%s\n%s\n' % (fileName, lineIndex, message, line, ' ' * errorPosition + '^')
errors_found = False
match = re.search(invalid_type_regex, line)
if match:
- print_error("Type '%s' nullability not marked explicitly with '?' (nullable) or '!' (non-nullable)" % match.group(1), match.start(1))
+ print_error('Type "%s" nullability not marked explicitly with "?" (nullable) or "!" (non-nullable)' % match.group(1), match.start(1))
errors_found = True
match = re.search(invalid_type_designator_regex, line)
if (match):
- print_error("Type nullability indicator misplaced, should precede type", match.start(1))
+ print_error('Type nullability indicator misplaced, should precede type', match.start(1))
errors_found = True
return errors_found
def check_java_path():
- proc = subprocess.Popen("which java", stdout=subprocess.PIPE, shell=True)
+ proc = subprocess.Popen('which java', stdout=subprocess.PIPE, shell=True)
(javaPath, _) = proc.communicate()
if proc.returncode != 0:
- print "Cannot find java ('which java' return code = %d, should be 0)" % proc.returncode
+ print 'Cannot find java ("which java" return code = %d, should be 0)' % proc.returncode
sys.exit(1)
- print "Java executable: " + re.sub(r"\n$", "", javaPath)
+ print 'Java executable: ' + re.sub(r'\n$', '', javaPath)
check_java_path()
modules_dir = tempfile.mkdtemp()
-common_closure_args = " --summary_detail_level 3 --jscomp_error visibility --compilation_level SIMPLE_OPTIMIZATIONS --warning_level VERBOSE --language_in ECMASCRIPT5 --accept_const_keyword --module_output_path_prefix %s/" % modules_dir
+common_closure_args = ' --summary_detail_level 3 --jscomp_error visibility --compilation_level SIMPLE_OPTIMIZATIONS --warning_level VERBOSE --language_in ECMASCRIPT5 --accept_const_keyword --module_output_path_prefix %s/' % modules_dir
-spawned_compiler_command = "%s -jar %s %s \\\n" % (java_exec, closure_compiler_jar, common_closure_args)
+spawned_compiler_command = '%s -jar %s %s \\\n' % (java_exec, closure_compiler_jar, common_closure_args)
-modules_by_name = {}
standalone_modules_by_name = {}
dependents_by_module_name = {}
-for module in modules:
- name = module["name"]
- modules_by_name[name] = module
- if "standalone" in module:
+for name in modules_by_name:
+ module = modules_by_name[name]
+ if 'standalone' in module:
standalone_modules_by_name[name] = module
- for dep in module["dependencies"]:
+ for dep in module.get('dependencies', []):
list = dependents_by_module_name.get(dep)
if not list:
list = []
@@ -187,10 +170,10 @@ for module in modules:
def verify_standalone_modules():
- for module in modules:
- for dependency in module["dependencies"]:
+ for name in modules_by_name:
+ for dependency in modules_by_name[name].get('dependencies', []):
if dependency in standalone_modules_by_name:
- log_error("Standalone module '%s' may not be present among the dependencies of '%s'" % (dependency, module["name"]))
+ log_error('Standalone module "%s" may not be present among the dependencies of "%s"' % (dependency, name))
errors_found = True
verify_standalone_modules()
@@ -199,130 +182,135 @@ verify_standalone_modules()
def check_duplicate_files():
def check_module(module, seen_files, seen_modules):
- name = module["name"]
+ name = module['name']
seen_modules[name] = True
- for dep_name in module["dependencies"]:
+ for dep_name in module.get('dependencies', []):
if not dep_name in seen_modules:
check_module(modules_by_name[dep_name], seen_files, seen_modules)
- for source in module["sources"]:
+ for source in module.get('scripts', []):
referencing_module = seen_files.get(source)
if referencing_module:
- log_error("Duplicate use of %s in '%s' (previously seen in '%s')" % (source, name, referencing_module))
+ log_error('Duplicate use of %s in "%s" (previously seen in "%s")' % (source, name, referencing_module))
seen_files[source] = name
for module_name in standalone_modules_by_name:
check_module(standalone_modules_by_name[module_name], {}, {})
-print "Checking duplicate files across modules..."
+print 'Checking duplicate files across modules...'
check_duplicate_files()
def module_arg(module_name):
- return " --module " + jsmodule_name_prefix + module_name
+ return ' --module ' + jsmodule_name_prefix + module_name
def dump_module(name, recursively, processed_modules):
if name in processed_modules:
- return ""
+ return ''
processed_modules[name] = True
module = modules_by_name[name]
- command = ""
+ skipped_scripts = set(module.get('skip_compilation', []))
+
+ command = ''
+ dependencies = module.get('dependencies', [])
if recursively:
- for dependency in module["dependencies"]:
+ for dependency in dependencies:
command += dump_module(dependency, recursively, processed_modules)
- command += module_arg(module["name"]) + ":"
- command += str(len(module["sources"]))
+ command += module_arg(name) + ':'
+ filtered_scripts = descriptors.module_compiled_files(name)
+ command += str(len(filtered_scripts))
firstDependency = True
- for dependency in module["dependencies"] + [runtime_module_name]:
+ for dependency in dependencies + [runtime_module_name]:
if firstDependency:
- command += ":"
+ command += ':'
else:
- command += ","
+ command += ','
firstDependency = False
command += jsmodule_name_prefix + dependency
- for script in module["sources"]:
- command += " --js " + path.join(devtools_frontend_path, script)
+ for script in filtered_scripts:
+ command += ' --js ' + path.join(devtools_frontend_path, name, script)
return command
-print "Compiling frontend..."
+print 'Compiling frontend...'
compiler_args_file = tempfile.NamedTemporaryFile(mode='wt', delete=False)
-closure_runner_command = "%s -jar %s --compiler-args-file %s" % (java_exec, closure_runner_jar, compiler_args_file.name)
-
-for module in modules:
- closure_args = common_closure_args
- closure_args += " --externs " + global_externs_file
- closure_args += " --externs " + protocol_externs_file
- runtime_module = module_arg(runtime_module_name) + ":1 --js " + path.join(devtools_frontend_path, "Runtime.js")
- closure_args += runtime_module + dump_module(module["name"], True, {})
- compiler_args_file.write("%s %s\n" % (module["name"], closure_args))
+try:
+ closure_runner_command = '%s -jar %s --compiler-args-file %s' % (java_exec, closure_runner_jar, compiler_args_file.name)
+
+ for name in descriptors.sorted_modules():
+ closure_args = common_closure_args
+ closure_args += ' --externs ' + global_externs_file
+ closure_args += ' --externs ' + protocol_externs_file
+ runtime_module = module_arg(runtime_module_name) + ':1 --js ' + path.join(devtools_frontend_path, 'Runtime.js')
+ closure_args += runtime_module + dump_module(name, True, {})
+ compiler_args_file.write('%s %s\n' % (name, closure_args))
+finally:
+ compiler_args_file.close()
-compiler_args_file.close()
modular_compiler_proc = run_in_shell(closure_runner_command)
def unclosure_injected_script(sourceFileName, outFileName):
- with open(sourceFileName, "r") as sourceFile:
- source = sourceFile.read()
+
+ source = read_file(sourceFileName)
def replace_function(matchobj):
- return re.sub(r"@param", "param", matchobj.group(1) or "") + "\n//" + matchobj.group(2)
+ return re.sub(r'@param', 'param', matchobj.group(1) or '') + '\n//' + matchobj.group(2)
# Comment out the closure function and its jsdocs
- source = re.sub(r"(/\*\*(?:[\s\n]*\*\s*@param[^\n]+\n)+\s*\*/\s*)?\n(\(function)", replace_function, source, count=1)
+ source = re.sub(r'(/\*\*(?:[\s\n]*\*\s*@param[^\n]+\n)+\s*\*/\s*)?\n(\(function)', replace_function, source, count=1)
# Comment out its return statement
- source = re.sub(r"\n(\s*return\s+[^;]+;\s*\n\}\)\s*)$", "\n/*\\1*/", source)
+ source = re.sub(r'\n(\s*return\s+[^;]+;\s*\n\}\)\s*)$', '\n/*\\1*/', source)
# Replace the "var Object" override with a "self.Object" one
- source = re.sub(r"\nvar Object =", "\nself.Object =", source, count=1)
+ source = re.sub(r'\nvar Object =', '\nself.Object =', source, count=1)
- with open(outFileName, "w") as outFileName:
- outFileName.write(source)
+ write_file(outFileName, source)
-injectedScriptSourceTmpFile = path.join(inspector_path, "InjectedScriptSourceTmp.js")
-injectedScriptCanvasModuleSourceTmpFile = path.join(inspector_path, "InjectedScriptCanvasModuleSourceTmp.js")
+injectedScriptSourceTmpFile = path.join(inspector_path, 'InjectedScriptSourceTmp.js')
+injectedScriptCanvasModuleSourceTmpFile = path.join(inspector_path, 'InjectedScriptCanvasModuleSourceTmp.js')
unclosure_injected_script(injected_script_source_name, injectedScriptSourceTmpFile)
unclosure_injected_script(canvas_injected_script_source_name, injectedScriptCanvasModuleSourceTmpFile)
-print "Compiling InjectedScriptSource.js and InjectedScriptCanvasModuleSource.js..."
+print 'Compiling InjectedScriptSource.js and InjectedScriptCanvasModuleSource.js...'
command = spawned_compiler_command
-command += " --externs " + path.join(inspector_path, "InjectedScriptExterns.js") + " \\\n"
-command += " --externs " + protocol_externs_file + " \\\n"
-command += " --module " + jsmodule_name_prefix + "injected_script" + ":1" + " \\\n"
-command += " --js " + injectedScriptSourceTmpFile + " \\\n"
-command += " --module " + jsmodule_name_prefix + "injected_canvas_script" + ":1:" + jsmodule_name_prefix + "injected_script" + " \\\n"
-command += " --js " + injectedScriptCanvasModuleSourceTmpFile + " \\\n"
-command += "\n"
+command += ' --externs ' + path.join(inspector_path, 'InjectedScriptExterns.js') + ' \\\n'
+command += ' --externs ' + protocol_externs_file + ' \\\n'
+command += ' --module ' + jsmodule_name_prefix + 'injected_script' + ':1' + ' \\\n'
+command += ' --js ' + injectedScriptSourceTmpFile + ' \\\n'
+command += ' --module ' + jsmodule_name_prefix + 'injected_canvas_script' + ':1:' + jsmodule_name_prefix + 'injected_script' + ' \\\n'
+command += ' --js ' + injectedScriptCanvasModuleSourceTmpFile + ' \\\n'
+command += '\n'
injectedScriptCompileProc = run_in_shell(command)
-print "Verifying JSDoc comments..."
+print 'Verifying JSDoc comments...'
additional_jsdoc_check_files = [injectedScriptSourceTmpFile, injectedScriptCanvasModuleSourceTmpFile]
errors_found |= verify_jsdoc(additional_jsdoc_check_files)
jsdocValidatorProc = verify_jsdoc_extra(additional_jsdoc_check_files)
-print "Checking generated code in InjectedScriptCanvasModuleSource.js..."
-check_injected_webgl_calls_command = "%s/check_injected_webgl_calls_info.py %s %s" % (scripts_path, webgl_rendering_context_idl_path, canvas_injected_script_source_name)
+print 'Checking generated code in InjectedScriptCanvasModuleSource.js...'
+check_injected_webgl_calls_command = '%s/check_injected_webgl_calls_info.py %s %s' % (scripts_path, webgl_rendering_context_idl_path, canvas_injected_script_source_name)
canvasModuleCompileProc = run_in_shell(check_injected_webgl_calls_command)
-print "Validating InjectedScriptSource.js..."
-check_injected_script_command = "%s/check_injected_script_source.py %s" % (scripts_path, injected_script_source_name)
+print 'Validating InjectedScriptSource.js...'
+check_injected_script_command = '%s/check_injected_script_source.py %s' % (scripts_path, injected_script_source_name)
validateInjectedScriptProc = run_in_shell(check_injected_script_command)
print
(jsdocValidatorOut, _) = jsdocValidatorProc.communicate()
if jsdocValidatorOut:
- print ("JSDoc validator output:\n%s" % jsdocValidatorOut)
+ print ('JSDoc validator output:\n%s' % jsdocValidatorOut)
errors_found = True
(moduleCompileOut, _) = modular_compiler_proc.communicate()
-print "Modular compilation output:"
+print 'Modular compilation output:'
-start_module_regex = re.compile(r"^@@ START_MODULE:(.+) @@$")
-end_module_regex = re.compile(r"^@@ END_MODULE @@$")
+start_module_regex = re.compile(r'^@@ START_MODULE:(.+) @@$')
+end_module_regex = re.compile(r'^@@ END_MODULE @@$')
in_module = False
skipped_modules = {}
@@ -358,31 +346,31 @@ for line in moduleCompileOut.splitlines():
in_module = False
if skip_module:
- print "Skipping module %s..." % module_name
+ print 'Skipping module %s...' % module_name
elif not module_error_count:
- print "Module %s compiled successfully: %s" % (module_name, module_output[0])
+ print 'Module %s compiled successfully: %s' % (module_name, module_output[0])
else:
- print "Module %s compile failed: %s errors\n" % (module_name, module_error_count)
+ print 'Module %s compile failed: %s errors\n' % (module_name, module_error_count)
print os.linesep.join(module_output)
if error_count:
- print "Total Closure errors: %d\n" % error_count
+ print 'Total Closure errors: %d\n' % error_count
errors_found = True
(injectedScriptCompileOut, _) = injectedScriptCompileProc.communicate()
-print "InjectedScriptSource.js and InjectedScriptCanvasModuleSource.js compilation output:\n", injectedScriptCompileOut
+print 'InjectedScriptSource.js and InjectedScriptCanvasModuleSource.js compilation output:\n', injectedScriptCompileOut
errors_found |= hasErrors(injectedScriptCompileOut)
(canvasModuleCompileOut, _) = canvasModuleCompileProc.communicate()
-print "InjectedScriptCanvasModuleSource.js generated code check output:\n", canvasModuleCompileOut
+print 'InjectedScriptCanvasModuleSource.js generated code check output:\n', canvasModuleCompileOut
errors_found |= hasErrors(canvasModuleCompileOut)
(validateInjectedScriptOut, _) = validateInjectedScriptProc.communicate()
-print "Validate InjectedScriptSource.js output:\n", (validateInjectedScriptOut if validateInjectedScriptOut else "<empty>")
+print 'Validate InjectedScriptSource.js output:\n', (validateInjectedScriptOut if validateInjectedScriptOut else '<empty>')
errors_found |= hasErrors(validateInjectedScriptOut)
if errors_found:
- print "ERRORS DETECTED"
+ print 'ERRORS DETECTED'
os.remove(injectedScriptSourceTmpFile)
os.remove(injectedScriptCanvasModuleSourceTmpFile)
« no previous file with comments | « Source/devtools/front_end/workspace/module.json ('k') | Source/devtools/scripts/frontend_modules.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698