OLD | NEW |
---|---|
1 #!/usr/bin/python | 1 #!/usr/bin/python |
2 # Copyright 2014 The Chromium Authors. All rights reserved. | 2 # Copyright 2014 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 """Runs Closure compiler on a JavaScript file to check for errors.""" | 6 """Runs Closure compiler on a JavaScript file to check for errors.""" |
7 | 7 |
8 import argparse | 8 import argparse |
9 import os | 9 import os |
10 import re | 10 import re |
(...skipping 26 matching lines...) Expand all Loading... | |
37 "--jscomp_error=missingReturn", | 37 "--jscomp_error=missingReturn", |
38 "--jscomp_error=nonStandardJsDocs", | 38 "--jscomp_error=nonStandardJsDocs", |
39 "--jscomp_error=suspiciousCode", | 39 "--jscomp_error=suspiciousCode", |
40 "--jscomp_error=undefinedNames", | 40 "--jscomp_error=undefinedNames", |
41 "--jscomp_error=undefinedVars", | 41 "--jscomp_error=undefinedVars", |
42 "--jscomp_error=unknownDefines", | 42 "--jscomp_error=unknownDefines", |
43 "--jscomp_error=uselessCode", | 43 "--jscomp_error=uselessCode", |
44 "--jscomp_error=visibility", | 44 "--jscomp_error=visibility", |
45 "--language_in=ECMASCRIPT5_STRICT", | 45 "--language_in=ECMASCRIPT5_STRICT", |
46 "--summary_detail_level=3", | 46 "--summary_detail_level=3", |
47 "--compilation_level=WHITESPACE_ONLY", | |
48 "--source_map_format=V3", | |
47 ] | 49 ] |
48 | 50 |
49 # These are the extra flags used when compiling in 'strict' mode. | 51 # These are the extra flags used when compiling in 'strict' mode. |
50 # Flags that are normally disabled are turned on for strict mode. | 52 # Flags that are normally disabled are turned on for strict mode. |
51 _STRICT_CLOSURE_ARGS = [ | 53 _STRICT_CLOSURE_ARGS = [ |
52 "--jscomp_error=reportUnknownTypes", | 54 "--jscomp_error=reportUnknownTypes", |
53 "--jscomp_error=duplicate", | 55 "--jscomp_error=duplicate", |
54 "--jscomp_error=misplacedTypeAnnotation", | 56 "--jscomp_error=misplacedTypeAnnotation", |
55 ] | 57 ] |
56 | 58 |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
170 errors = filter(None, errors) | 172 errors = filter(None, errors) |
171 contents = "\n## ".join("\n\n".join(errors).splitlines()) | 173 contents = "\n## ".join("\n\n".join(errors).splitlines()) |
172 return "## %s" % contents if contents else "" | 174 return "## %s" % contents if contents else "" |
173 | 175 |
174 def _create_temp_file(self, contents): | 176 def _create_temp_file(self, contents): |
175 with tempfile.NamedTemporaryFile(mode="wt", delete=False) as tmp_file: | 177 with tempfile.NamedTemporaryFile(mode="wt", delete=False) as tmp_file: |
176 self._temp_files.append(tmp_file.name) | 178 self._temp_files.append(tmp_file.name) |
177 tmp_file.write(contents) | 179 tmp_file.write(contents) |
178 return tmp_file.name | 180 return tmp_file.name |
179 | 181 |
180 def run_js_check(self, sources, externs=None): | 182 def run_js_check(self, sources, out_file, externs=None): |
181 if not self._check_java_path(): | 183 if not self._check_java_path(): |
182 return 1, "" | 184 return 1, "" |
183 | 185 |
184 args = ["--js=%s" % s for s in sources] | 186 args = ["--js=%s" % s for s in sources] |
187 args += ["--js_output_file=%s" % out_file] | |
188 args += ["--create_source_map=%s.map" % out_file] | |
189 | |
185 if externs: | 190 if externs: |
186 args += ["--externs=%s" % e for e in externs] | 191 args += ["--externs=%s" % e for e in externs] |
187 args_file_content = " %s" % " ".join(self._common_args() + args) | 192 args_file_content = " %s" % " ".join(self._common_args() + args) |
188 self._debug("Args: %s" % args_file_content.strip()) | 193 self._debug("Args: %s" % args_file_content.strip()) |
189 | 194 |
190 args_file = self._create_temp_file(args_file_content) | 195 args_file = self._create_temp_file(args_file_content) |
191 self._debug("Args file: %s" % args_file) | 196 self._debug("Args file: %s" % args_file) |
192 | 197 |
193 runner_args = ["--compiler-args-file=%s" % args_file] | 198 runner_args = ["--compiler-args-file=%s" % args_file] |
194 runner_cmd = self._run_jar(self._runner_jar, args=runner_args) | 199 runner_cmd = self._run_jar(self._runner_jar, args=runner_args) |
195 _, stderr = runner_cmd.communicate() | 200 _, stderr = runner_cmd.communicate() |
196 | 201 |
197 errors = stderr.strip().split("\n\n") | 202 errors = stderr.strip().split("\n\n") |
198 self._debug("Summary: %s" % errors.pop()) | 203 self._debug("Summary: %s" % errors.pop()) |
199 | 204 |
200 self._clean_up() | 205 self._clean_up() |
201 | 206 |
202 return errors, stderr | 207 return errors, stderr |
203 | 208 |
204 def check(self, source_file, depends=None, externs=None): | 209 def check(self, source_file, out_file, depends=None, externs=None): |
205 """Closure compile a file and check for errors. | 210 """Closure compile a file and check for errors. |
206 | 211 |
207 Args: | 212 Args: |
208 source_file: A file to check. | 213 source_file: A file to check. |
209 depends: Other files that would be included with a <script> earlier in | 214 depends: Other files that would be included with a <script> earlier in |
210 the page. | 215 the page. |
211 externs: @extern files that inform the compiler about custom globals. | 216 externs: @extern files that inform the compiler about custom globals. |
212 | 217 |
213 Returns: | 218 Returns: |
214 (has_errors, output) A boolean indicating if there were errors and the | 219 (has_errors, output) A boolean indicating if there were errors and the |
(...skipping 18 matching lines...) Expand all Loading... | |
233 | 238 |
234 includes = [rel_path(f) for f in depends + [source_file]] | 239 includes = [rel_path(f) for f in depends + [source_file]] |
235 contents = ['<include src="%s">' % i for i in includes] | 240 contents = ['<include src="%s">' % i for i in includes] |
236 meta_file = self._create_temp_file("\n".join(contents)) | 241 meta_file = self._create_temp_file("\n".join(contents)) |
237 self._debug("Meta file: %s" % meta_file) | 242 self._debug("Meta file: %s" % meta_file) |
238 | 243 |
239 self._processor = processor.Processor(meta_file) | 244 self._processor = processor.Processor(meta_file) |
240 self._expanded_file = self._create_temp_file(self._processor.contents) | 245 self._expanded_file = self._create_temp_file(self._processor.contents) |
241 self._debug("Expanded file: %s" % self._expanded_file) | 246 self._debug("Expanded file: %s" % self._expanded_file) |
242 | 247 |
243 errors, stderr = self.run_js_check([self._expanded_file], externs) | 248 errors, stderr = self.run_js_check([self._expanded_file], out_file, |
249 externs) | |
244 | 250 |
245 # Filter out false-positive promise chain errors. | 251 # Filter out false-positive promise chain errors. |
246 # See https://github.com/google/closure-compiler/issues/715 for details. | 252 # See https://github.com/google/closure-compiler/issues/715 for details. |
247 errors = self._error_filter.filter(errors); | 253 errors = self._error_filter.filter(errors); |
248 | 254 |
249 output = self._format_errors(map(self._fix_up_error, errors)) | 255 output = self._format_errors(map(self._fix_up_error, errors)) |
250 if errors: | 256 if errors: |
251 prefix = "\n" if output else "" | 257 prefix = "\n" if output else "" |
252 self._error("Error in: %s%s%s" % (source_file, prefix, output)) | 258 self._error("Error in: %s%s%s" % (source_file, prefix, output)) |
253 elif output: | 259 elif output: |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
297 depends = opts.depends or [] | 303 depends = opts.depends or [] |
298 externs = opts.externs or set() | 304 externs = opts.externs or set() |
299 | 305 |
300 checker = Checker(verbose=opts.verbose, strict=opts.strict) | 306 checker = Checker(verbose=opts.verbose, strict=opts.strict) |
301 if opts.single_file: | 307 if opts.single_file: |
302 for source in opts.sources: | 308 for source in opts.sources: |
303 depends, externs = build.inputs.resolve_recursive_dependencies( | 309 depends, externs = build.inputs.resolve_recursive_dependencies( |
304 source, | 310 source, |
305 depends, | 311 depends, |
306 externs) | 312 externs) |
307 has_errors, _ = checker.check(source, depends=depends, externs=externs) | 313 has_errors, _ = checker.check(source, opts.out_file, depends=depends, |
314 externs=externs) | |
308 if has_errors: | 315 if has_errors: |
309 sys.exit(1) | 316 sys.exit(1) |
310 | 317 |
311 if opts.out_file: | |
312 out_dir = os.path.dirname(opts.out_file) | |
313 if not os.path.exists(out_dir): | |
314 os.makedirs(out_dir) | |
Dan Beam
2015/03/06 19:58:55
still need to do this somewhere
$ echo 'alert( 1
Theresa
2015/03/06 20:30:30
Done.
| |
315 # TODO(dbeam): write compiled file to |opts.out_file|. | |
316 open(opts.out_file, "w").write("") | |
317 else: | 318 else: |
318 has_errors, errors = checker.check_multiple(opts.sources) | 319 has_errors, errors = checker.check_multiple(opts.sources) |
319 if has_errors: | 320 if has_errors: |
320 print errors | 321 print errors |
321 sys.exit(1) | 322 sys.exit(1) |
322 | 323 |
323 if opts.success_stamp: | 324 if opts.success_stamp: |
324 with open(opts.success_stamp, 'w'): | 325 with open(opts.success_stamp, 'w'): |
325 os.utime(opts.success_stamp, None) | 326 os.utime(opts.success_stamp, None) |
OLD | NEW |