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

Side by Side Diff: tools/android/checkstyle/checkstyle.py

Issue 2820583002: Reland "Update third_party/checkstyle to 7.6.1" (Closed)
Patch Set: nit Created 3 years, 8 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 unified diff | Download patch
« no previous file with comments | « third_party/checkstyle/checkstyle-7.6.1-all.jar.sha1 ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Script that is used by PRESUBMIT.py to run style checks on Java files.""" 5 """Script that is used by PRESUBMIT.py to run style checks on Java files."""
6 6
7 import os 7 import os
8 import subprocess 8 import subprocess
9 import xml.dom.minidom 9 import xml.dom.minidom
10 10
11 11
12 CHROMIUM_SRC = os.path.normpath( 12 CHROMIUM_SRC = os.path.normpath(
13 os.path.join(os.path.dirname(__file__), 13 os.path.join(os.path.dirname(__file__),
14 os.pardir, os.pardir, os.pardir)) 14 os.pardir, os.pardir, os.pardir))
15 CHECKSTYLE_ROOT = os.path.join(CHROMIUM_SRC, 'third_party', 'checkstyle', 15 CHECKSTYLE_ROOT = os.path.join(CHROMIUM_SRC, 'third_party', 'checkstyle',
16 'checkstyle-6.5-all.jar') 16 'checkstyle-7.6.1-all.jar')
17
18
19 def FormatCheckstyleOutput(checkstyle_output):
20 lines = checkstyle_output.splitlines(True)
21 if 'Checkstyle ends with' in lines[-1]:
22 return ''.join(lines[:-1])
23 else:
24 return checkstyle_output
17 25
18 26
19 def RunCheckstyle(input_api, output_api, style_file, black_list=None): 27 def RunCheckstyle(input_api, output_api, style_file, black_list=None):
20 if not os.path.exists(style_file): 28 if not os.path.exists(style_file):
21 file_error = (' Java checkstyle configuration file is missing: ' 29 file_error = (' Java checkstyle configuration file is missing: '
22 + style_file) 30 + style_file)
23 return [output_api.PresubmitError(file_error)] 31 return [output_api.PresubmitError(file_error)]
24 32
25 # Filter out non-Java files and files that were deleted. 33 # Filter out non-Java files and files that were deleted.
26 java_files = [x.AbsoluteLocalPath() for x in input_api.AffectedSourceFiles( 34 java_files = [x.AbsoluteLocalPath() for x in input_api.AffectedSourceFiles(
(...skipping 15 matching lines...) Expand all
42 except OSError as e: 50 except OSError as e:
43 import errno 51 import errno
44 if e.errno == errno.ENOENT: 52 if e.errno == errno.ENOENT:
45 install_error = (' checkstyle is not installed. Please run ' 53 install_error = (' checkstyle is not installed. Please run '
46 'build/install-build-deps-android.sh') 54 'build/install-build-deps-android.sh')
47 return [output_api.PresubmitPromptWarning(install_error)] 55 return [output_api.PresubmitPromptWarning(install_error)]
48 56
49 result_errors = [] 57 result_errors = []
50 result_warnings = [] 58 result_warnings = []
51 59
60 formatted_checkstyle_output = FormatCheckstyleOutput(stdout)
61
52 local_path = input_api.PresubmitLocalPath() 62 local_path = input_api.PresubmitLocalPath()
53 root = xml.dom.minidom.parseString(stdout) 63 root = xml.dom.minidom.parseString(formatted_checkstyle_output)
54 for fileElement in root.getElementsByTagName('file'): 64 for fileElement in root.getElementsByTagName('file'):
55 fileName = fileElement.attributes['name'].value 65 fileName = fileElement.attributes['name'].value
56 fileName = os.path.relpath(fileName, local_path) 66 fileName = os.path.relpath(fileName, local_path)
57 errors = fileElement.getElementsByTagName('error') 67 errors = fileElement.getElementsByTagName('error')
58 for error in errors: 68 for error in errors:
59 line = error.attributes['line'].value 69 line = error.attributes['line'].value
60 column = '' 70 column = ''
61 if error.hasAttribute('column'): 71 if error.hasAttribute('column'):
62 column = '%s:' % (error.attributes['column'].value) 72 column = '%s:' % (error.attributes['column'].value)
63 message = error.attributes['message'].value 73 message = error.attributes['message'].value
64 result = ' %s:%s:%s %s' % (fileName, line, column, message) 74 result = ' %s:%s:%s %s' % (fileName, line, column, message)
65 75
66 severity = error.attributes['severity'].value 76 severity = error.attributes['severity'].value
67 if severity == 'error': 77 if severity == 'error':
68 result_errors.append(result) 78 result_errors.append(result)
69 elif severity == 'warning': 79 elif severity == 'warning':
70 result_warnings.append(result) 80 result_warnings.append(result)
71 81
72 result = [] 82 result = []
73 if result_warnings: 83 if result_warnings:
74 result.append(output_api.PresubmitPromptWarning('\n'.join(result_warnings))) 84 result.append(output_api.PresubmitPromptWarning('\n'.join(result_warnings)))
75 if result_errors: 85 if result_errors:
76 result.append(output_api.PresubmitError('\n'.join(result_errors))) 86 result.append(output_api.PresubmitError('\n'.join(result_errors)))
77 return result 87 return result
OLDNEW
« no previous file with comments | « third_party/checkstyle/checkstyle-7.6.1-all.jar.sha1 ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698