OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 """Generic presubmit checks that can be reused by other presubmit checks.""" | 5 """Generic presubmit checks that can be reused by other presubmit checks.""" |
6 | 6 |
7 import os as _os | 7 import os as _os |
8 _HERE = _os.path.dirname(_os.path.abspath(__file__)) | 8 _HERE = _os.path.dirname(_os.path.abspath(__file__)) |
9 | 9 |
10 # Justifications for each filter: | 10 # Justifications for each filter: |
(...skipping 981 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
992 """ | 992 """ |
993 issue = input_api.change.issue | 993 issue = input_api.change.issue |
994 if not issue: | 994 if not issue: |
995 return None, (set() if approval_needed else | 995 return None, (set() if approval_needed else |
996 _ReviewersFromChange(input_api.change)) | 996 _ReviewersFromChange(input_api.change)) |
997 | 997 |
998 owner_email = input_api.gerrit.GetChangeOwner(issue) | 998 owner_email = input_api.gerrit.GetChangeOwner(issue) |
999 reviewers = set( | 999 reviewers = set( |
1000 r for r in input_api.gerrit.GetChangeReviewers(issue, approval_needed) | 1000 r for r in input_api.gerrit.GetChangeReviewers(issue, approval_needed) |
1001 if _match_reviewer_email(r, owner_email, email_regexp)) | 1001 if _match_reviewer_email(r, owner_email, email_regexp)) |
| 1002 input_api.logging.debug('owner: %s; approvals given by: %s', |
| 1003 owner_email, ', '.join(sorted(reviewers))) |
1002 return owner_email, reviewers | 1004 return owner_email, reviewers |
1003 | 1005 |
1004 | 1006 |
1005 def _CheckConstNSObject(input_api, output_api, source_file_filter): | 1007 def _CheckConstNSObject(input_api, output_api, source_file_filter): |
1006 """Checks to make sure no objective-c files have |const NSSomeClass*|.""" | 1008 """Checks to make sure no objective-c files have |const NSSomeClass*|.""" |
1007 pattern = input_api.re.compile( | 1009 pattern = input_api.re.compile( |
1008 r'(?<!reinterpret_cast<)' | 1010 r'(?<!reinterpret_cast<)' |
1009 r'const\s+NS(?!(Point|Range|Rect|Size)\s*\*)\w*\s*\*') | 1011 r'const\s+NS(?!(Point|Range|Rect|Size)\s*\*)\w*\s*\*') |
1010 | 1012 |
1011 def objective_c_filter(f): | 1013 def objective_c_filter(f): |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1176 for f in affected_files: | 1178 for f in affected_files: |
1177 cmd = ['gn', 'format', '--dry-run', f.AbsoluteLocalPath()] | 1179 cmd = ['gn', 'format', '--dry-run', f.AbsoluteLocalPath()] |
1178 rc = gn.main(cmd) | 1180 rc = gn.main(cmd) |
1179 if rc == 2: | 1181 if rc == 2: |
1180 warnings.append(output_api.PresubmitPromptWarning( | 1182 warnings.append(output_api.PresubmitPromptWarning( |
1181 '%s requires formatting. Please run:\n gn format %s' % ( | 1183 '%s requires formatting. Please run:\n gn format %s' % ( |
1182 f.AbsoluteLocalPath(), f.LocalPath()))) | 1184 f.AbsoluteLocalPath(), f.LocalPath()))) |
1183 # It's just a warning, so ignore other types of failures assuming they'll be | 1185 # It's just a warning, so ignore other types of failures assuming they'll be |
1184 # caught elsewhere. | 1186 # caught elsewhere. |
1185 return warnings | 1187 return warnings |
OLD | NEW |