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 """Top-level presubmit script for Chromium. | 5 """Top-level presubmit script for Chromium. |
6 | 6 |
7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts | 7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts |
8 for more details about the presubmit API built into gcl. | 8 for more details about the presubmit API built into gcl. |
9 """ | 9 """ |
10 | 10 |
(...skipping 996 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1007 | 1007 |
1008 if cygwin_shell: | 1008 if cygwin_shell: |
1009 return [output_api.PresubmitError( | 1009 return [output_api.PresubmitError( |
1010 'These files should not use msvs_cygwin_shell (the default is 0):', | 1010 'These files should not use msvs_cygwin_shell (the default is 0):', |
1011 items=cygwin_shell)] | 1011 items=cygwin_shell)] |
1012 return [] | 1012 return [] |
1013 | 1013 |
1014 | 1014 |
1015 def _CheckUserActionUpdate(input_api, output_api): | 1015 def _CheckUserActionUpdate(input_api, output_api): |
1016 """Checks if any new user action has been added.""" | 1016 """Checks if any new user action has been added.""" |
1017 if any('chromeactions.txt' == input_api.os_path.basename(f) for f in | 1017 if any('actions.xml' == input_api.os_path.basename(f) for f in |
1018 input_api.LocalPaths()): | 1018 input_api.LocalPaths()): |
1019 # If chromeactions.txt is already included in the changelist, the PRESUBMIT | 1019 # If actions.xml is already included in the changelist, the PRESUBMIT |
1020 # for chromeactions.txt will do a more complete presubmit check. | 1020 # for actions.xml will do a more complete presubmit check. |
1021 return [] | 1021 return [] |
1022 | 1022 |
1023 with open('tools/metrics/actions/chromeactions.txt') as f: | |
1024 current_actions = f.read() | |
1025 | |
1026 file_filter = lambda f: f.LocalPath().endswith(('.cc', '.mm')) | 1023 file_filter = lambda f: f.LocalPath().endswith(('.cc', '.mm')) |
1027 action_re = r'[^a-zA-Z]UserMetricsAction\("([^"]*)' | 1024 action_re = r'[^a-zA-Z]UserMetricsAction\("([^"]*)' |
1028 for f in input_api.AffectedFiles(file_filter=file_filter): | 1025 for f in input_api.AffectedFiles(file_filter=file_filter): |
1029 for line_num, line in f.ChangedContents(): | 1026 for line_num, line in f.ChangedContents(): |
1030 match = input_api.re.search(action_re, line) | 1027 match = input_api.re.search(action_re, line) |
1031 if match: | 1028 if match: |
1029 # Loads contents in tools/metrics/actions/actions.xml to memory. It's | |
1030 # loaded only once. | |
1031 try: | |
1032 current_actions | |
Alexei Svitkine (slow)
2014/03/05 18:23:36
Instead, can you put this above the loop:
current
Jói
2014/03/06 12:46:49
+1
yiyaoliu
2014/03/06 14:32:46
Done.
| |
1033 except NameError: # Variable current_actions is not defined. | |
1034 with open('tools/metrics/actions/actions.xml') as actions_f: | |
1035 current_actions = actions_f.read() | |
1036 # Search for the matched user action name in |current_actions|. | |
1032 for action_name in match.groups(): | 1037 for action_name in match.groups(): |
1033 name_pattern = r'\t%s\n' % action_name | 1038 action = 'name="{0}"'.format(action_name) |
1034 if name_pattern not in current_actions: | 1039 if action not in current_actions: |
1035 return [output_api.PresubmitPromptWarning( | 1040 return [output_api.PresubmitPromptWarning( |
1036 'File %s line %d: %s is missing in ' | 1041 'File %s line %d: %s is missing in ' |
1037 'tools/metrics/actions/chromeactions.txt. Please run ' | 1042 'tools/metrics/actions/actions.xml. Please run ' |
1038 'tools/metrics/actions/extract_actions.py --hash to update.' | 1043 'tools/metrics/actions/extract_actions.py to update.' |
1039 % (f.LocalPath(), line_num, action_name))] | 1044 % (f.LocalPath(), line_num, action_name))] |
1040 return [] | 1045 return [] |
1041 | 1046 |
1042 | 1047 |
1043 def _CheckJavaStyle(input_api, output_api): | 1048 def _CheckJavaStyle(input_api, output_api): |
1044 """Runs checkstyle on changed java files and returns errors if any exist.""" | 1049 """Runs checkstyle on changed java files and returns errors if any exist.""" |
1045 original_sys_path = sys.path | 1050 original_sys_path = sys.path |
1046 try: | 1051 try: |
1047 sys.path = sys.path + [input_api.os_path.join( | 1052 sys.path = sys.path + [input_api.os_path.join( |
1048 input_api.PresubmitLocalPath(), 'tools', 'android', 'checkstyle')] | 1053 input_api.PresubmitLocalPath(), 'tools', 'android', 'checkstyle')] |
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1451 trybots.extend(GetDefaultTryConfigs(['cros_x86'])) | 1456 trybots.extend(GetDefaultTryConfigs(['cros_x86'])) |
1452 | 1457 |
1453 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it | 1458 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it |
1454 # unless they're .gyp(i) files as changes to those files can break the gyp | 1459 # unless they're .gyp(i) files as changes to those files can break the gyp |
1455 # step on that bot. | 1460 # step on that bot. |
1456 if (not all(re.search('^chrome', f) for f in files) or | 1461 if (not all(re.search('^chrome', f) for f in files) or |
1457 any(re.search('\.gypi?$', f) for f in files)): | 1462 any(re.search('\.gypi?$', f) for f in files)): |
1458 trybots.extend(GetDefaultTryConfigs(['android_aosp'])) | 1463 trybots.extend(GetDefaultTryConfigs(['android_aosp'])) |
1459 | 1464 |
1460 return trybots | 1465 return trybots |
OLD | NEW |