blob: 370bca4241e0c08dc5d846bbf187e6bd8b95e514 [file] [log] [blame]
[email protected]a18130a2012-01-03 17:52:081# Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]ca8d19842009-02-19 16:33:122# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5"""Top-level presubmit script for Chromium.
6
[email protected]f1293792009-07-31 18:09:567See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts
tfarina78bb92f42015-01-31 00:20:488for more details about the presubmit API built into depot_tools.
[email protected]ca8d19842009-02-19 16:33:129"""
10
[email protected]eea609a2011-11-18 13:10:1211
[email protected]379e7dd2010-01-28 17:39:2112_EXCLUDED_PATHS = (
[email protected]3e4eb112011-01-18 03:29:5413 r"^breakpad[\\\/].*",
[email protected]40d1dbb2012-10-26 07:18:0014 r"^native_client_sdk[\\\/]src[\\\/]build_tools[\\\/]make_rules.py",
15 r"^native_client_sdk[\\\/]src[\\\/]build_tools[\\\/]make_simple.py",
[email protected]8886ffcb2013-02-12 04:56:2816 r"^native_client_sdk[\\\/]src[\\\/]tools[\\\/].*.mk",
[email protected]a18130a2012-01-03 17:52:0817 r"^net[\\\/]tools[\\\/]spdyshark[\\\/].*",
[email protected]3e4eb112011-01-18 03:29:5418 r"^skia[\\\/].*",
19 r"^v8[\\\/].*",
20 r".*MakeFile$",
[email protected]1084ccc2012-03-14 03:22:5321 r".+_autogen\.h$",
[email protected]ce145c02012-09-06 09:49:3422 r".+[\\\/]pnacl_shim\.c$",
[email protected]e07b6ac72013-08-20 00:30:4223 r"^gpu[\\\/]config[\\\/].*_list_json\.cc$",
[email protected]d2600602014-02-19 00:09:1924 r"^chrome[\\\/]browser[\\\/]resources[\\\/]pdf[\\\/]index.js"
[email protected]4306417642009-06-11 00:33:4025)
[email protected]ca8d19842009-02-19 16:33:1226
jochen9ea8fdbc2014-09-25 13:21:3527# The NetscapePlugIn library is excluded from pan-project as it will soon
28# be deleted together with the rest of the NPAPI and it's not worthwhile to
29# update the coding style until then.
[email protected]3de922f2013-12-20 13:27:3830_TESTRUNNER_PATHS = (
[email protected]de28fed2e2014-02-01 14:36:3231 r"^content[\\\/]shell[\\\/]tools[\\\/]plugin[\\\/].*",
[email protected]3de922f2013-12-20 13:27:3832)
33
[email protected]06e6d0ff2012-12-11 01:36:4434# Fragment of a regular expression that matches C++ and Objective-C++
35# implementation files.
36_IMPLEMENTATION_EXTENSIONS = r'\.(cc|cpp|cxx|mm)$'
37
38# Regular expression that matches code only used for test binaries
39# (best effort).
40_TEST_CODE_EXCLUDED_PATHS = (
joaodasilva718f87672014-08-30 09:25:4941 r'.*[\\\/](fake_|test_|mock_).+%s' % _IMPLEMENTATION_EXTENSIONS,
[email protected]06e6d0ff2012-12-11 01:36:4442 r'.+_test_(base|support|util)%s' % _IMPLEMENTATION_EXTENSIONS,
[email protected]6e04f8c2014-01-29 18:08:3243 r'.+_(api|browser|kif|perf|pixel|unit|ui)?test(_[a-z]+)?%s' %
[email protected]e2d7e6f2013-04-23 12:57:1244 _IMPLEMENTATION_EXTENSIONS,
[email protected]06e6d0ff2012-12-11 01:36:4445 r'.+profile_sync_service_harness%s' % _IMPLEMENTATION_EXTENSIONS,
joaodasilva718f87672014-08-30 09:25:4946 r'.*[\\\/](test|tool(s)?)[\\\/].*',
[email protected]ef070cc2013-05-03 11:53:0547 # content_shell is used for running layout tests.
joaodasilva718f87672014-08-30 09:25:4948 r'content[\\\/]shell[\\\/].*',
[email protected]06e6d0ff2012-12-11 01:36:4449 # At request of folks maintaining this folder.
joaodasilva718f87672014-08-30 09:25:4950 r'chrome[\\\/]browser[\\\/]automation[\\\/].*',
[email protected]7b054982013-11-27 00:44:4751 # Non-production example code.
joaodasilva718f87672014-08-30 09:25:4952 r'mojo[\\\/]examples[\\\/].*',
[email protected]8176de12014-06-20 19:07:0853 # Launcher for running iOS tests on the simulator.
joaodasilva718f87672014-08-30 09:25:4954 r'testing[\\\/]iossim[\\\/]iossim\.mm$',
[email protected]06e6d0ff2012-12-11 01:36:4455)
[email protected]ca8d19842009-02-19 16:33:1256
[email protected]eea609a2011-11-18 13:10:1257_TEST_ONLY_WARNING = (
58 'You might be calling functions intended only for testing from\n'
59 'production code. It is OK to ignore this warning if you know what\n'
60 'you are doing, as the heuristics used to detect the situation are\n'
[email protected]b0149772014-03-27 16:47:5861 'not perfect. The commit queue will not block on this warning.')
[email protected]eea609a2011-11-18 13:10:1262
63
[email protected]cf9b78f2012-11-14 11:40:2864_INCLUDE_ORDER_WARNING = (
65 'Your #include order seems to be broken. Send mail to\n'
66 '[email protected] if this is not the case.')
67
68
[email protected]127f18ec2012-06-16 05:05:5969_BANNED_OBJC_FUNCTIONS = (
70 (
71 'addTrackingRect:',
[email protected]23e6cbc2012-06-16 18:51:2072 (
73 'The use of -[NSView addTrackingRect:owner:userData:assumeInside:] is'
[email protected]127f18ec2012-06-16 05:05:5974 'prohibited. Please use CrTrackingArea instead.',
75 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
76 ),
77 False,
78 ),
79 (
[email protected]eaae1972014-04-16 04:17:2680 r'/NSTrackingArea\W',
[email protected]23e6cbc2012-06-16 18:51:2081 (
82 'The use of NSTrackingAreas is prohibited. Please use CrTrackingArea',
[email protected]127f18ec2012-06-16 05:05:5983 'instead.',
84 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
85 ),
86 False,
87 ),
88 (
89 'convertPointFromBase:',
[email protected]23e6cbc2012-06-16 18:51:2090 (
91 'The use of -[NSView convertPointFromBase:] is almost certainly wrong.',
[email protected]127f18ec2012-06-16 05:05:5992 'Please use |convertPoint:(point) fromView:nil| instead.',
93 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
94 ),
95 True,
96 ),
97 (
98 'convertPointToBase:',
[email protected]23e6cbc2012-06-16 18:51:2099 (
100 'The use of -[NSView convertPointToBase:] is almost certainly wrong.',
[email protected]127f18ec2012-06-16 05:05:59101 'Please use |convertPoint:(point) toView:nil| instead.',
102 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
103 ),
104 True,
105 ),
106 (
107 'convertRectFromBase:',
[email protected]23e6cbc2012-06-16 18:51:20108 (
109 'The use of -[NSView convertRectFromBase:] is almost certainly wrong.',
[email protected]127f18ec2012-06-16 05:05:59110 'Please use |convertRect:(point) fromView:nil| instead.',
111 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
112 ),
113 True,
114 ),
115 (
116 'convertRectToBase:',
[email protected]23e6cbc2012-06-16 18:51:20117 (
118 'The use of -[NSView convertRectToBase:] is almost certainly wrong.',
[email protected]127f18ec2012-06-16 05:05:59119 'Please use |convertRect:(point) toView:nil| instead.',
120 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
121 ),
122 True,
123 ),
124 (
125 'convertSizeFromBase:',
[email protected]23e6cbc2012-06-16 18:51:20126 (
127 'The use of -[NSView convertSizeFromBase:] is almost certainly wrong.',
[email protected]127f18ec2012-06-16 05:05:59128 'Please use |convertSize:(point) fromView:nil| instead.',
129 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
130 ),
131 True,
132 ),
133 (
134 'convertSizeToBase:',
[email protected]23e6cbc2012-06-16 18:51:20135 (
136 'The use of -[NSView convertSizeToBase:] is almost certainly wrong.',
[email protected]127f18ec2012-06-16 05:05:59137 'Please use |convertSize:(point) toView:nil| instead.',
138 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
139 ),
140 True,
141 ),
142)
143
144
145_BANNED_CPP_FUNCTIONS = (
[email protected]23e6cbc2012-06-16 18:51:20146 # Make sure that gtest's FRIEND_TEST() macro is not used; the
147 # FRIEND_TEST_ALL_PREFIXES() macro from base/gtest_prod_util.h should be
[email protected]e00ccc92012-11-01 17:32:30148 # used instead since that allows for FLAKY_ and DISABLED_ prefixes.
[email protected]23e6cbc2012-06-16 18:51:20149 (
150 'FRIEND_TEST(',
151 (
[email protected]e3c945502012-06-26 20:01:49152 'Chromium code should not use gtest\'s FRIEND_TEST() macro. Include',
[email protected]23e6cbc2012-06-16 18:51:20153 'base/gtest_prod_util.h and use FRIEND_TEST_ALL_PREFIXES() instead.',
154 ),
155 False,
[email protected]7345da02012-11-27 14:31:49156 (),
[email protected]23e6cbc2012-06-16 18:51:20157 ),
158 (
159 'ScopedAllowIO',
160 (
[email protected]e3c945502012-06-26 20:01:49161 'New code should not use ScopedAllowIO. Post a task to the blocking',
162 'pool or the FILE thread instead.',
[email protected]23e6cbc2012-06-16 18:51:20163 ),
[email protected]e3c945502012-06-26 20:01:49164 True,
[email protected]7345da02012-11-27 14:31:49165 (
thestig75844fdb2014-09-09 19:47:10166 r"^base[\\\/]process[\\\/]process_metrics_linux\.cc$",
tfarina0923ac52015-01-07 03:21:22167 r"^chrome[\\\/]browser[\\\/]chromeos[\\\/]boot_times_recorder\.cc$",
alematee4016bb2014-11-12 17:38:51168 r"^chrome[\\\/]browser[\\\/]chromeos[\\\/]"
169 "customization_document_browsertest\.cc$",
philipj3f9d5bde2014-08-28 14:09:09170 r"^components[\\\/]crash[\\\/]app[\\\/]breakpad_mac\.mm$",
[email protected]de7d61ff2013-08-20 11:30:41171 r"^content[\\\/]shell[\\\/]browser[\\\/]shell_browser_main\.cc$",
172 r"^content[\\\/]shell[\\\/]browser[\\\/]shell_message_filter\.cc$",
jamesra03ae492014-10-03 04:26:48173 r"^mojo[\\\/]edk[\\\/]embedder[\\\/]" +
174 r"simple_platform_shared_buffer_posix\.cc$",
[email protected]398ad132013-04-02 15:11:01175 r"^net[\\\/]disk_cache[\\\/]cache_util\.cc$",
[email protected]1f52a572014-05-12 23:21:54176 r"^net[\\\/]url_request[\\\/]test_url_fetcher_factory\.cc$",
Mitsuru Oshima756e484f2015-01-23 21:30:49177 r"^ui[\\\/]ozone[\\\/]platform[\\\/]dri[\\\/]native_display_delegate_proxy\.cc$",
[email protected]7345da02012-11-27 14:31:49178 ),
[email protected]23e6cbc2012-06-16 18:51:20179 ),
[email protected]52657f62013-05-20 05:30:31180 (
181 'SkRefPtr',
182 (
183 'The use of SkRefPtr is prohibited. ',
184 'Please use skia::RefPtr instead.'
185 ),
186 True,
187 (),
188 ),
189 (
190 'SkAutoRef',
191 (
192 'The indirect use of SkRefPtr via SkAutoRef is prohibited. ',
193 'Please use skia::RefPtr instead.'
194 ),
195 True,
196 (),
197 ),
198 (
199 'SkAutoTUnref',
200 (
201 'The use of SkAutoTUnref is dangerous because it implicitly ',
202 'converts to a raw pointer. Please use skia::RefPtr instead.'
203 ),
204 True,
205 (),
206 ),
207 (
208 'SkAutoUnref',
209 (
210 'The indirect use of SkAutoTUnref through SkAutoUnref is dangerous ',
211 'because it implicitly converts to a raw pointer. ',
212 'Please use skia::RefPtr instead.'
213 ),
214 True,
215 (),
216 ),
[email protected]d89eec82013-12-03 14:10:59217 (
218 r'/HANDLE_EINTR\(.*close',
219 (
220 'HANDLE_EINTR(close) is invalid. If close fails with EINTR, the file',
221 'descriptor will be closed, and it is incorrect to retry the close.',
222 'Either call close directly and ignore its return value, or wrap close',
223 'in IGNORE_EINTR to use its return value. See http://crbug.com/269623'
224 ),
225 True,
226 (),
227 ),
228 (
229 r'/IGNORE_EINTR\((?!.*close)',
230 (
231 'IGNORE_EINTR is only valid when wrapping close. To wrap other system',
232 'calls, use HANDLE_EINTR. See http://crbug.com/269623',
233 ),
234 True,
235 (
236 # Files that #define IGNORE_EINTR.
237 r'^base[\\\/]posix[\\\/]eintr_wrapper\.h$',
238 r'^ppapi[\\\/]tests[\\\/]test_broker\.cc$',
239 ),
240 ),
[email protected]ec5b3f02014-04-04 18:43:43241 (
242 r'/v8::Extension\(',
243 (
244 'Do not introduce new v8::Extensions into the code base, use',
245 'gin::Wrappable instead. See http://crbug.com/334679',
246 ),
247 True,
[email protected]f55c90ee62014-04-12 00:50:03248 (
joaodasilva718f87672014-08-30 09:25:49249 r'extensions[\\\/]renderer[\\\/]safe_builtins\.*',
[email protected]f55c90ee62014-04-12 00:50:03250 ),
[email protected]ec5b3f02014-04-04 18:43:43251 ),
[email protected]127f18ec2012-06-16 05:05:59252)
253
mlamouria82272622014-09-16 18:45:04254_IPC_ENUM_TRAITS_DEPRECATED = (
255 'You are using IPC_ENUM_TRAITS() in your code. It has been deprecated.\n'
256 'See http://www.chromium.org/Home/chromium-security/education/security-tips-for-ipc')
257
[email protected]127f18ec2012-06-16 05:05:59258
[email protected]b00342e7f2013-03-26 16:21:54259_VALID_OS_MACROS = (
260 # Please keep sorted.
261 'OS_ANDROID',
[email protected]f4440b42014-03-19 05:47:01262 'OS_ANDROID_HOST',
[email protected]b00342e7f2013-03-26 16:21:54263 'OS_BSD',
264 'OS_CAT', # For testing.
265 'OS_CHROMEOS',
266 'OS_FREEBSD',
267 'OS_IOS',
268 'OS_LINUX',
269 'OS_MACOSX',
270 'OS_NACL',
hidehikof7295f22014-10-28 11:57:21271 'OS_NACL_NONSFI',
272 'OS_NACL_SFI',
[email protected]b00342e7f2013-03-26 16:21:54273 'OS_OPENBSD',
274 'OS_POSIX',
[email protected]eda7afa12014-02-06 12:27:37275 'OS_QNX',
[email protected]b00342e7f2013-03-26 16:21:54276 'OS_SOLARIS',
[email protected]b00342e7f2013-03-26 16:21:54277 'OS_WIN',
278)
279
280
[email protected]55459852011-08-10 15:17:19281def _CheckNoProductionCodeUsingTestOnlyFunctions(input_api, output_api):
282 """Attempts to prevent use of functions intended only for testing in
283 non-testing code. For now this is just a best-effort implementation
284 that ignores header files and may have some false positives. A
285 better implementation would probably need a proper C++ parser.
286 """
287 # We only scan .cc files and the like, as the declaration of
288 # for-testing functions in header files are hard to distinguish from
289 # calls to such functions without a proper C++ parser.
[email protected]06e6d0ff2012-12-11 01:36:44290 file_inclusion_pattern = r'.+%s' % _IMPLEMENTATION_EXTENSIONS
[email protected]55459852011-08-10 15:17:19291
[email protected]23501822014-05-14 02:06:09292 base_function_pattern = r'[ :]test::[^\s]+|ForTest(ing)?|for_test(ing)?'
[email protected]55459852011-08-10 15:17:19293 inclusion_pattern = input_api.re.compile(r'(%s)\s*\(' % base_function_pattern)
[email protected]23501822014-05-14 02:06:09294 comment_pattern = input_api.re.compile(r'//.*(%s)' % base_function_pattern)
[email protected]55459852011-08-10 15:17:19295 exclusion_pattern = input_api.re.compile(
296 r'::[A-Za-z0-9_]+(%s)|(%s)[^;]+\{' % (
297 base_function_pattern, base_function_pattern))
298
299 def FilterFile(affected_file):
[email protected]06e6d0ff2012-12-11 01:36:44300 black_list = (_EXCLUDED_PATHS +
301 _TEST_CODE_EXCLUDED_PATHS +
302 input_api.DEFAULT_BLACK_LIST)
[email protected]55459852011-08-10 15:17:19303 return input_api.FilterSourceFile(
304 affected_file,
305 white_list=(file_inclusion_pattern, ),
306 black_list=black_list)
307
308 problems = []
309 for f in input_api.AffectedSourceFiles(FilterFile):
310 local_path = f.LocalPath()
[email protected]825d27182014-01-02 21:24:24311 for line_number, line in f.ChangedContents():
[email protected]2fdd1f362013-01-16 03:56:03312 if (inclusion_pattern.search(line) and
[email protected]de4f7d22013-05-23 14:27:46313 not comment_pattern.search(line) and
[email protected]2fdd1f362013-01-16 03:56:03314 not exclusion_pattern.search(line)):
[email protected]55459852011-08-10 15:17:19315 problems.append(
[email protected]2fdd1f362013-01-16 03:56:03316 '%s:%d\n %s' % (local_path, line_number, line.strip()))
[email protected]55459852011-08-10 15:17:19317
318 if problems:
[email protected]f7051d52013-04-02 18:31:42319 return [output_api.PresubmitPromptOrNotify(_TEST_ONLY_WARNING, problems)]
[email protected]2fdd1f362013-01-16 03:56:03320 else:
321 return []
[email protected]55459852011-08-10 15:17:19322
323
[email protected]10689ca2011-09-02 02:31:54324def _CheckNoIOStreamInHeaders(input_api, output_api):
325 """Checks to make sure no .h files include <iostream>."""
326 files = []
327 pattern = input_api.re.compile(r'^#include\s*<iostream>',
328 input_api.re.MULTILINE)
329 for f in input_api.AffectedSourceFiles(input_api.FilterSourceFile):
330 if not f.LocalPath().endswith('.h'):
331 continue
332 contents = input_api.ReadFile(f)
333 if pattern.search(contents):
334 files.append(f)
335
336 if len(files):
337 return [ output_api.PresubmitError(
[email protected]6c063c62012-07-11 19:11:06338 'Do not #include <iostream> in header files, since it inserts static '
339 'initialization into every file including the header. Instead, '
[email protected]10689ca2011-09-02 02:31:54340 '#include <ostream>. See http://crbug.com/94794',
341 files) ]
342 return []
343
344
[email protected]72df4e782012-06-21 16:28:18345def _CheckNoUNIT_TESTInSourceFiles(input_api, output_api):
346 """Checks to make sure no source files use UNIT_TEST"""
347 problems = []
348 for f in input_api.AffectedFiles():
349 if (not f.LocalPath().endswith(('.cc', '.mm'))):
350 continue
351
352 for line_num, line in f.ChangedContents():
[email protected]549f86a2013-11-19 13:00:04353 if 'UNIT_TEST ' in line or line.endswith('UNIT_TEST'):
[email protected]72df4e782012-06-21 16:28:18354 problems.append(' %s:%d' % (f.LocalPath(), line_num))
355
356 if not problems:
357 return []
358 return [output_api.PresubmitPromptWarning('UNIT_TEST is only for headers.\n' +
359 '\n'.join(problems))]
360
361
mcasasb7440c282015-02-04 14:52:19362def _FindHistogramNameInLine(histogram_name, line):
363 """Tries to find a histogram name or prefix in a line."""
364 if not "affected-histogram" in line:
365 return histogram_name in line
366 # A histogram_suffixes tag type has an affected-histogram name as a prefix of
367 # the histogram_name.
368 if not '"' in line:
369 return False
370 histogram_prefix = line.split('\"')[1]
371 return histogram_prefix in histogram_name
372
373
374def _CheckUmaHistogramChanges(input_api, output_api):
375 """Check that UMA histogram names in touched lines can still be found in other
376 lines of the patch or in histograms.xml. Note that this check would not catch
377 the reverse: changes in histograms.xml not matched in the code itself."""
378 touched_histograms = []
379 histograms_xml_modifications = []
380 pattern = input_api.re.compile('UMA_HISTOGRAM.*\("(.*)"')
381 for f in input_api.AffectedFiles():
382 # If histograms.xml itself is modified, keep the modified lines for later.
383 if f.LocalPath().endswith(('histograms.xml')):
384 histograms_xml_modifications = f.ChangedContents()
385 continue
386 if not f.LocalPath().endswith(('cc', 'mm', 'cpp')):
387 continue
388 for line_num, line in f.ChangedContents():
389 found = pattern.search(line)
390 if found:
391 touched_histograms.append([found.group(1), f, line_num])
392
393 # Search for the touched histogram names in the local modifications to
394 # histograms.xml, and, if not found, on the base histograms.xml file.
395 unmatched_histograms = []
396 for histogram_info in touched_histograms:
397 histogram_name_found = False
398 for line_num, line in histograms_xml_modifications:
399 histogram_name_found = _FindHistogramNameInLine(histogram_info[0], line)
400 if histogram_name_found:
401 break
402 if not histogram_name_found:
403 unmatched_histograms.append(histogram_info)
404
405 problems = []
406 if unmatched_histograms:
407 with open('tools/metrics/histograms/histograms.xml') as histograms_xml:
408 for histogram_name, f, line_num in unmatched_histograms:
409 histogram_name_found = False
410 for line in histograms_xml:
411 histogram_name_found = _FindHistogramNameInLine(histogram_name, line)
412 if histogram_name_found:
413 break
414 if not histogram_name_found:
415 problems.append(' [%s:%d] %s' %
416 (f.LocalPath(), line_num, histogram_name))
417
418 if not problems:
419 return []
420 return [output_api.PresubmitPromptWarning('Some UMA_HISTOGRAM lines have '
421 'been modified and the associated histogram name has no match in either '
422 'metrics/histograms.xml or the modifications of it:', problems)]
423
424
[email protected]8ea5d4b2011-09-13 21:49:22425def _CheckNoNewWStrings(input_api, output_api):
426 """Checks to make sure we don't introduce use of wstrings."""
[email protected]55463aa62011-10-12 00:48:27427 problems = []
[email protected]8ea5d4b2011-09-13 21:49:22428 for f in input_api.AffectedFiles():
[email protected]b5c24292011-11-28 14:38:20429 if (not f.LocalPath().endswith(('.cc', '.h')) or
scottmge6f04402014-11-05 01:59:57430 f.LocalPath().endswith(('test.cc', '_win.cc', '_win.h')) or
431 '/win/' in f.LocalPath()):
[email protected]b5c24292011-11-28 14:38:20432 continue
[email protected]8ea5d4b2011-09-13 21:49:22433
[email protected]a11dbe9b2012-08-07 01:32:58434 allowWString = False
[email protected]b5c24292011-11-28 14:38:20435 for line_num, line in f.ChangedContents():
[email protected]a11dbe9b2012-08-07 01:32:58436 if 'presubmit: allow wstring' in line:
437 allowWString = True
438 elif not allowWString and 'wstring' in line:
[email protected]55463aa62011-10-12 00:48:27439 problems.append(' %s:%d' % (f.LocalPath(), line_num))
[email protected]a11dbe9b2012-08-07 01:32:58440 allowWString = False
441 else:
442 allowWString = False
[email protected]8ea5d4b2011-09-13 21:49:22443
[email protected]55463aa62011-10-12 00:48:27444 if not problems:
445 return []
446 return [output_api.PresubmitPromptWarning('New code should not use wstrings.'
[email protected]a11dbe9b2012-08-07 01:32:58447 ' If you are calling a cross-platform API that accepts a wstring, '
448 'fix the API.\n' +
[email protected]55463aa62011-10-12 00:48:27449 '\n'.join(problems))]
[email protected]8ea5d4b2011-09-13 21:49:22450
451
[email protected]2a8ac9c2011-10-19 17:20:44452def _CheckNoDEPSGIT(input_api, output_api):
453 """Make sure .DEPS.git is never modified manually."""
454 if any(f.LocalPath().endswith('.DEPS.git') for f in
455 input_api.AffectedFiles()):
456 return [output_api.PresubmitError(
457 'Never commit changes to .DEPS.git. This file is maintained by an\n'
458 'automated system based on what\'s in DEPS and your changes will be\n'
459 'overwritten.\n'
[email protected]cb706912014-06-28 20:46:34460 'See https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code#Rolling_DEPS\n'
[email protected]2a8ac9c2011-10-19 17:20:44461 'for more information')]
462 return []
463
464
tandriief664692014-09-23 14:51:47465def _CheckValidHostsInDEPS(input_api, output_api):
466 """Checks that DEPS file deps are from allowed_hosts."""
467 # Run only if DEPS file has been modified to annoy fewer bystanders.
468 if all(f.LocalPath() != 'DEPS' for f in input_api.AffectedFiles()):
469 return []
470 # Outsource work to gclient verify
471 try:
472 input_api.subprocess.check_output(['gclient', 'verify'])
473 return []
474 except input_api.subprocess.CalledProcessError, error:
475 return [output_api.PresubmitError(
476 'DEPS file must have only git dependencies.',
477 long_text=error.output)]
478
479
[email protected]127f18ec2012-06-16 05:05:59480def _CheckNoBannedFunctions(input_api, output_api):
481 """Make sure that banned functions are not used."""
482 warnings = []
483 errors = []
484
485 file_filter = lambda f: f.LocalPath().endswith(('.mm', '.m', '.h'))
486 for f in input_api.AffectedFiles(file_filter=file_filter):
487 for line_num, line in f.ChangedContents():
488 for func_name, message, error in _BANNED_OBJC_FUNCTIONS:
[email protected]eaae1972014-04-16 04:17:26489 matched = False
490 if func_name[0:1] == '/':
491 regex = func_name[1:]
492 if input_api.re.search(regex, line):
493 matched = True
494 elif func_name in line:
495 matched = True
496 if matched:
[email protected]127f18ec2012-06-16 05:05:59497 problems = warnings;
498 if error:
499 problems = errors;
500 problems.append(' %s:%d:' % (f.LocalPath(), line_num))
501 for message_line in message:
502 problems.append(' %s' % message_line)
503
504 file_filter = lambda f: f.LocalPath().endswith(('.cc', '.mm', '.h'))
505 for f in input_api.AffectedFiles(file_filter=file_filter):
506 for line_num, line in f.ChangedContents():
[email protected]7345da02012-11-27 14:31:49507 for func_name, message, error, excluded_paths in _BANNED_CPP_FUNCTIONS:
508 def IsBlacklisted(affected_file, blacklist):
509 local_path = affected_file.LocalPath()
510 for item in blacklist:
511 if input_api.re.match(item, local_path):
512 return True
513 return False
514 if IsBlacklisted(f, excluded_paths):
515 continue
[email protected]d89eec82013-12-03 14:10:59516 matched = False
517 if func_name[0:1] == '/':
518 regex = func_name[1:]
519 if input_api.re.search(regex, line):
520 matched = True
521 elif func_name in line:
522 matched = True
523 if matched:
[email protected]127f18ec2012-06-16 05:05:59524 problems = warnings;
525 if error:
526 problems = errors;
527 problems.append(' %s:%d:' % (f.LocalPath(), line_num))
528 for message_line in message:
529 problems.append(' %s' % message_line)
530
531 result = []
532 if (warnings):
533 result.append(output_api.PresubmitPromptWarning(
534 'Banned functions were used.\n' + '\n'.join(warnings)))
535 if (errors):
536 result.append(output_api.PresubmitError(
537 'Banned functions were used.\n' + '\n'.join(errors)))
538 return result
539
540
[email protected]6c063c62012-07-11 19:11:06541def _CheckNoPragmaOnce(input_api, output_api):
542 """Make sure that banned functions are not used."""
543 files = []
544 pattern = input_api.re.compile(r'^#pragma\s+once',
545 input_api.re.MULTILINE)
546 for f in input_api.AffectedSourceFiles(input_api.FilterSourceFile):
547 if not f.LocalPath().endswith('.h'):
548 continue
549 contents = input_api.ReadFile(f)
550 if pattern.search(contents):
551 files.append(f)
552
553 if files:
554 return [output_api.PresubmitError(
555 'Do not use #pragma once in header files.\n'
556 'See http://www.chromium.org/developers/coding-style#TOC-File-headers',
557 files)]
558 return []
559
[email protected]127f18ec2012-06-16 05:05:59560
[email protected]e7479052012-09-19 00:26:12561def _CheckNoTrinaryTrueFalse(input_api, output_api):
562 """Checks to make sure we don't introduce use of foo ? true : false."""
563 problems = []
564 pattern = input_api.re.compile(r'\?\s*(true|false)\s*:\s*(true|false)')
565 for f in input_api.AffectedFiles():
566 if not f.LocalPath().endswith(('.cc', '.h', '.inl', '.m', '.mm')):
567 continue
568
569 for line_num, line in f.ChangedContents():
570 if pattern.match(line):
571 problems.append(' %s:%d' % (f.LocalPath(), line_num))
572
573 if not problems:
574 return []
575 return [output_api.PresubmitPromptWarning(
576 'Please consider avoiding the "? true : false" pattern if possible.\n' +
577 '\n'.join(problems))]
578
579
[email protected]55f9f382012-07-31 11:02:18580def _CheckUnwantedDependencies(input_api, output_api):
581 """Runs checkdeps on #include statements added in this
582 change. Breaking - rules is an error, breaking ! rules is a
583 warning.
584 """
mohan.reddyf21db962014-10-16 12:26:47585 import sys
[email protected]55f9f382012-07-31 11:02:18586 # We need to wait until we have an input_api object and use this
587 # roundabout construct to import checkdeps because this file is
588 # eval-ed and thus doesn't have __file__.
589 original_sys_path = sys.path
590 try:
591 sys.path = sys.path + [input_api.os_path.join(
[email protected]5298cc982014-05-29 20:53:47592 input_api.PresubmitLocalPath(), 'buildtools', 'checkdeps')]
[email protected]55f9f382012-07-31 11:02:18593 import checkdeps
594 from cpp_checker import CppChecker
595 from rules import Rule
596 finally:
597 # Restore sys.path to what it was before.
598 sys.path = original_sys_path
599
600 added_includes = []
601 for f in input_api.AffectedFiles():
602 if not CppChecker.IsCppFile(f.LocalPath()):
603 continue
604
605 changed_lines = [line for line_num, line in f.ChangedContents()]
606 added_includes.append([f.LocalPath(), changed_lines])
607
[email protected]26385172013-05-09 23:11:35608 deps_checker = checkdeps.DepsChecker(input_api.PresubmitLocalPath())
[email protected]55f9f382012-07-31 11:02:18609
610 error_descriptions = []
611 warning_descriptions = []
612 for path, rule_type, rule_description in deps_checker.CheckAddedCppIncludes(
613 added_includes):
614 description_with_path = '%s\n %s' % (path, rule_description)
615 if rule_type == Rule.DISALLOW:
616 error_descriptions.append(description_with_path)
617 else:
618 warning_descriptions.append(description_with_path)
619
620 results = []
621 if error_descriptions:
622 results.append(output_api.PresubmitError(
623 'You added one or more #includes that violate checkdeps rules.',
624 error_descriptions))
625 if warning_descriptions:
[email protected]f7051d52013-04-02 18:31:42626 results.append(output_api.PresubmitPromptOrNotify(
[email protected]55f9f382012-07-31 11:02:18627 'You added one or more #includes of files that are temporarily\n'
628 'allowed but being removed. Can you avoid introducing the\n'
629 '#include? See relevant DEPS file(s) for details and contacts.',
630 warning_descriptions))
631 return results
632
633
[email protected]fbcafe5a2012-08-08 15:31:22634def _CheckFilePermissions(input_api, output_api):
635 """Check that all files have their permissions properly set."""
[email protected]791507202014-02-03 23:19:15636 if input_api.platform == 'win32':
637 return []
mohan.reddyf21db962014-10-16 12:26:47638 args = [input_api.python_executable, 'tools/checkperms/checkperms.py',
639 '--root', input_api.change.RepositoryRoot()]
[email protected]fbcafe5a2012-08-08 15:31:22640 for f in input_api.AffectedFiles():
641 args += ['--file', f.LocalPath()]
[email protected]f0d330f2014-01-30 01:44:34642 checkperms = input_api.subprocess.Popen(args,
643 stdout=input_api.subprocess.PIPE)
644 errors = checkperms.communicate()[0].strip()
[email protected]fbcafe5a2012-08-08 15:31:22645 if errors:
[email protected]f0d330f2014-01-30 01:44:34646 return [output_api.PresubmitError('checkperms.py failed.',
647 errors.splitlines())]
648 return []
[email protected]fbcafe5a2012-08-08 15:31:22649
650
[email protected]c8278b32012-10-30 20:35:49651def _CheckNoAuraWindowPropertyHInHeaders(input_api, output_api):
652 """Makes sure we don't include ui/aura/window_property.h
653 in header files.
654 """
655 pattern = input_api.re.compile(r'^#include\s*"ui/aura/window_property.h"')
656 errors = []
657 for f in input_api.AffectedFiles():
658 if not f.LocalPath().endswith('.h'):
659 continue
660 for line_num, line in f.ChangedContents():
661 if pattern.match(line):
662 errors.append(' %s:%d' % (f.LocalPath(), line_num))
663
664 results = []
665 if errors:
666 results.append(output_api.PresubmitError(
667 'Header files should not include ui/aura/window_property.h', errors))
668 return results
669
670
[email protected]cf9b78f2012-11-14 11:40:28671def _CheckIncludeOrderForScope(scope, input_api, file_path, changed_linenums):
672 """Checks that the lines in scope occur in the right order.
673
674 1. C system files in alphabetical order
675 2. C++ system files in alphabetical order
676 3. Project's .h files
677 """
678
679 c_system_include_pattern = input_api.re.compile(r'\s*#include <.*\.h>')
680 cpp_system_include_pattern = input_api.re.compile(r'\s*#include <.*>')
681 custom_include_pattern = input_api.re.compile(r'\s*#include ".*')
682
683 C_SYSTEM_INCLUDES, CPP_SYSTEM_INCLUDES, CUSTOM_INCLUDES = range(3)
684
685 state = C_SYSTEM_INCLUDES
686
687 previous_line = ''
[email protected]728b9bb2012-11-14 20:38:57688 previous_line_num = 0
[email protected]cf9b78f2012-11-14 11:40:28689 problem_linenums = []
690 for line_num, line in scope:
691 if c_system_include_pattern.match(line):
692 if state != C_SYSTEM_INCLUDES:
[email protected]728b9bb2012-11-14 20:38:57693 problem_linenums.append((line_num, previous_line_num))
[email protected]cf9b78f2012-11-14 11:40:28694 elif previous_line and previous_line > line:
[email protected]728b9bb2012-11-14 20:38:57695 problem_linenums.append((line_num, previous_line_num))
[email protected]cf9b78f2012-11-14 11:40:28696 elif cpp_system_include_pattern.match(line):
697 if state == C_SYSTEM_INCLUDES:
698 state = CPP_SYSTEM_INCLUDES
699 elif state == CUSTOM_INCLUDES:
[email protected]728b9bb2012-11-14 20:38:57700 problem_linenums.append((line_num, previous_line_num))
[email protected]cf9b78f2012-11-14 11:40:28701 elif previous_line and previous_line > line:
[email protected]728b9bb2012-11-14 20:38:57702 problem_linenums.append((line_num, previous_line_num))
[email protected]cf9b78f2012-11-14 11:40:28703 elif custom_include_pattern.match(line):
704 if state != CUSTOM_INCLUDES:
705 state = CUSTOM_INCLUDES
706 elif previous_line and previous_line > line:
[email protected]728b9bb2012-11-14 20:38:57707 problem_linenums.append((line_num, previous_line_num))
[email protected]cf9b78f2012-11-14 11:40:28708 else:
709 problem_linenums.append(line_num)
710 previous_line = line
[email protected]728b9bb2012-11-14 20:38:57711 previous_line_num = line_num
[email protected]cf9b78f2012-11-14 11:40:28712
713 warnings = []
[email protected]728b9bb2012-11-14 20:38:57714 for (line_num, previous_line_num) in problem_linenums:
715 if line_num in changed_linenums or previous_line_num in changed_linenums:
[email protected]cf9b78f2012-11-14 11:40:28716 warnings.append(' %s:%d' % (file_path, line_num))
717 return warnings
718
719
[email protected]ac294a12012-12-06 16:38:43720def _CheckIncludeOrderInFile(input_api, f, changed_linenums):
[email protected]cf9b78f2012-11-14 11:40:28721 """Checks the #include order for the given file f."""
722
[email protected]2299dcf2012-11-15 19:56:24723 system_include_pattern = input_api.re.compile(r'\s*#include \<.*')
[email protected]23093b62013-09-20 12:16:30724 # Exclude the following includes from the check:
725 # 1) #include <.../...>, e.g., <sys/...> includes often need to appear in a
726 # specific order.
727 # 2) <atlbase.h>, "build/build_config.h"
728 excluded_include_pattern = input_api.re.compile(
729 r'\s*#include (\<.*/.*|\<atlbase\.h\>|"build/build_config.h")')
[email protected]2299dcf2012-11-15 19:56:24730 custom_include_pattern = input_api.re.compile(r'\s*#include "(?P<FILE>.*)"')
[email protected]3e83618c2013-10-09 22:32:33731 # Match the final or penultimate token if it is xxxtest so we can ignore it
732 # when considering the special first include.
733 test_file_tag_pattern = input_api.re.compile(
734 r'_[a-z]+test(?=(_[a-zA-Z0-9]+)?\.)')
[email protected]0e5c1852012-12-18 20:17:11735 if_pattern = input_api.re.compile(
736 r'\s*#\s*(if|elif|else|endif|define|undef).*')
737 # Some files need specialized order of includes; exclude such files from this
738 # check.
739 uncheckable_includes_pattern = input_api.re.compile(
740 r'\s*#include '
741 '("ipc/.*macros\.h"|<windows\.h>|".*gl.*autogen.h")\s*')
[email protected]cf9b78f2012-11-14 11:40:28742
743 contents = f.NewContents()
744 warnings = []
745 line_num = 0
746
[email protected]ac294a12012-12-06 16:38:43747 # Handle the special first include. If the first include file is
748 # some/path/file.h, the corresponding including file can be some/path/file.cc,
749 # some/other/path/file.cc, some/path/file_platform.cc, some/path/file-suffix.h
750 # etc. It's also possible that no special first include exists.
[email protected]3e83618c2013-10-09 22:32:33751 # If the included file is some/path/file_platform.h the including file could
752 # also be some/path/file_xxxtest_platform.h.
753 including_file_base_name = test_file_tag_pattern.sub(
754 '', input_api.os_path.basename(f.LocalPath()))
755
[email protected]ac294a12012-12-06 16:38:43756 for line in contents:
757 line_num += 1
758 if system_include_pattern.match(line):
759 # No special first include -> process the line again along with normal
760 # includes.
761 line_num -= 1
762 break
763 match = custom_include_pattern.match(line)
764 if match:
765 match_dict = match.groupdict()
[email protected]3e83618c2013-10-09 22:32:33766 header_basename = test_file_tag_pattern.sub(
767 '', input_api.os_path.basename(match_dict['FILE'])).replace('.h', '')
768
769 if header_basename not in including_file_base_name:
[email protected]2299dcf2012-11-15 19:56:24770 # No special first include -> process the line again along with normal
771 # includes.
772 line_num -= 1
[email protected]ac294a12012-12-06 16:38:43773 break
[email protected]cf9b78f2012-11-14 11:40:28774
775 # Split into scopes: Each region between #if and #endif is its own scope.
776 scopes = []
777 current_scope = []
778 for line in contents[line_num:]:
779 line_num += 1
[email protected]0e5c1852012-12-18 20:17:11780 if uncheckable_includes_pattern.match(line):
[email protected]4436c9e2014-01-07 23:19:54781 continue
[email protected]2309b0fa02012-11-16 12:18:27782 if if_pattern.match(line):
[email protected]cf9b78f2012-11-14 11:40:28783 scopes.append(current_scope)
784 current_scope = []
[email protected]962f117e2012-11-22 18:11:56785 elif ((system_include_pattern.match(line) or
786 custom_include_pattern.match(line)) and
787 not excluded_include_pattern.match(line)):
[email protected]cf9b78f2012-11-14 11:40:28788 current_scope.append((line_num, line))
789 scopes.append(current_scope)
790
791 for scope in scopes:
792 warnings.extend(_CheckIncludeOrderForScope(scope, input_api, f.LocalPath(),
793 changed_linenums))
794 return warnings
795
796
797def _CheckIncludeOrder(input_api, output_api):
798 """Checks that the #include order is correct.
799
800 1. The corresponding header for source files.
801 2. C system files in alphabetical order
802 3. C++ system files in alphabetical order
803 4. Project's .h files in alphabetical order
804
[email protected]ac294a12012-12-06 16:38:43805 Each region separated by #if, #elif, #else, #endif, #define and #undef follows
806 these rules separately.
[email protected]cf9b78f2012-11-14 11:40:28807 """
[email protected]e120b012014-08-15 19:08:35808 def FileFilterIncludeOrder(affected_file):
809 black_list = (_EXCLUDED_PATHS + input_api.DEFAULT_BLACK_LIST)
810 return input_api.FilterSourceFile(affected_file, black_list=black_list)
[email protected]cf9b78f2012-11-14 11:40:28811
812 warnings = []
[email protected]e120b012014-08-15 19:08:35813 for f in input_api.AffectedFiles(file_filter=FileFilterIncludeOrder):
[email protected]ac294a12012-12-06 16:38:43814 if f.LocalPath().endswith(('.cc', '.h')):
815 changed_linenums = set(line_num for line_num, _ in f.ChangedContents())
816 warnings.extend(_CheckIncludeOrderInFile(input_api, f, changed_linenums))
[email protected]cf9b78f2012-11-14 11:40:28817
818 results = []
819 if warnings:
[email protected]f7051d52013-04-02 18:31:42820 results.append(output_api.PresubmitPromptOrNotify(_INCLUDE_ORDER_WARNING,
[email protected]120cf540d2012-12-10 17:55:53821 warnings))
[email protected]cf9b78f2012-11-14 11:40:28822 return results
823
824
[email protected]70ca77752012-11-20 03:45:03825def _CheckForVersionControlConflictsInFile(input_api, f):
826 pattern = input_api.re.compile('^(?:<<<<<<<|>>>>>>>) |^=======$')
827 errors = []
828 for line_num, line in f.ChangedContents():
829 if pattern.match(line):
830 errors.append(' %s:%d %s' % (f.LocalPath(), line_num, line))
831 return errors
832
833
834def _CheckForVersionControlConflicts(input_api, output_api):
835 """Usually this is not intentional and will cause a compile failure."""
836 errors = []
837 for f in input_api.AffectedFiles():
838 errors.extend(_CheckForVersionControlConflictsInFile(input_api, f))
839
840 results = []
841 if errors:
842 results.append(output_api.PresubmitError(
843 'Version control conflict markers found, please resolve.', errors))
844 return results
845
846
[email protected]06e6d0ff2012-12-11 01:36:44847def _CheckHardcodedGoogleHostsInLowerLayers(input_api, output_api):
848 def FilterFile(affected_file):
849 """Filter function for use with input_api.AffectedSourceFiles,
850 below. This filters out everything except non-test files from
851 top-level directories that generally speaking should not hard-code
852 service URLs (e.g. src/android_webview/, src/content/ and others).
853 """
854 return input_api.FilterSourceFile(
855 affected_file,
[email protected]78bb39d62012-12-11 15:11:56856 white_list=(r'^(android_webview|base|content|net)[\\\/].*', ),
[email protected]06e6d0ff2012-12-11 01:36:44857 black_list=(_EXCLUDED_PATHS +
858 _TEST_CODE_EXCLUDED_PATHS +
859 input_api.DEFAULT_BLACK_LIST))
860
[email protected]de4f7d22013-05-23 14:27:46861 base_pattern = '"[^"]*google\.com[^"]*"'
862 comment_pattern = input_api.re.compile('//.*%s' % base_pattern)
863 pattern = input_api.re.compile(base_pattern)
[email protected]06e6d0ff2012-12-11 01:36:44864 problems = [] # items are (filename, line_number, line)
865 for f in input_api.AffectedSourceFiles(FilterFile):
866 for line_num, line in f.ChangedContents():
[email protected]de4f7d22013-05-23 14:27:46867 if not comment_pattern.search(line) and pattern.search(line):
[email protected]06e6d0ff2012-12-11 01:36:44868 problems.append((f.LocalPath(), line_num, line))
869
870 if problems:
[email protected]f7051d52013-04-02 18:31:42871 return [output_api.PresubmitPromptOrNotify(
[email protected]06e6d0ff2012-12-11 01:36:44872 'Most layers below src/chrome/ should not hardcode service URLs.\n'
[email protected]b0149772014-03-27 16:47:58873 'Are you sure this is correct?',
[email protected]06e6d0ff2012-12-11 01:36:44874 [' %s:%d: %s' % (
875 problem[0], problem[1], problem[2]) for problem in problems])]
[email protected]2fdd1f362013-01-16 03:56:03876 else:
877 return []
[email protected]06e6d0ff2012-12-11 01:36:44878
879
[email protected]d2530012013-01-25 16:39:27880def _CheckNoAbbreviationInPngFileName(input_api, output_api):
881 """Makes sure there are no abbreviations in the name of PNG files.
binji0dcdf342014-12-12 18:32:31882 The native_client_sdk directory is excluded because it has auto-generated PNG
883 files for documentation.
[email protected]d2530012013-01-25 16:39:27884 """
[email protected]d2530012013-01-25 16:39:27885 errors = []
binji0dcdf342014-12-12 18:32:31886 white_list = (r'.*_[a-z]_.*\.png$|.*_[a-z]\.png$',)
887 black_list = (r'^native_client_sdk[\\\/]',)
888 file_filter = lambda f: input_api.FilterSourceFile(
889 f, white_list=white_list, black_list=black_list)
890 for f in input_api.AffectedFiles(include_deletes=False,
891 file_filter=file_filter):
892 errors.append(' %s' % f.LocalPath())
[email protected]d2530012013-01-25 16:39:27893
894 results = []
895 if errors:
896 results.append(output_api.PresubmitError(
897 'The name of PNG files should not have abbreviations. \n'
898 'Use _hover.png, _center.png, instead of _h.png, _c.png.\n'
899 'Contact [email protected] if you have questions.', errors))
900 return results
901
902
[email protected]14a6131c2014-01-08 01:15:41903def _FilesToCheckForIncomingDeps(re, changed_lines):
[email protected]f32e2d1e2013-07-26 21:39:08904 """Helper method for _CheckAddedDepsHaveTargetApprovals. Returns
[email protected]14a6131c2014-01-08 01:15:41905 a set of DEPS entries that we should look up.
906
907 For a directory (rather than a specific filename) we fake a path to
908 a specific filename by adding /DEPS. This is chosen as a file that
909 will seldom or never be subject to per-file include_rules.
910 """
[email protected]2b438d62013-11-14 17:54:14911 # We ignore deps entries on auto-generated directories.
912 AUTO_GENERATED_DIRS = ['grit', 'jni']
[email protected]f32e2d1e2013-07-26 21:39:08913
914 # This pattern grabs the path without basename in the first
915 # parentheses, and the basename (if present) in the second. It
916 # relies on the simple heuristic that if there is a basename it will
917 # be a header file ending in ".h".
918 pattern = re.compile(
919 r"""['"]\+([^'"]+?)(/[a-zA-Z0-9_]+\.h)?['"].*""")
[email protected]2b438d62013-11-14 17:54:14920 results = set()
[email protected]f32e2d1e2013-07-26 21:39:08921 for changed_line in changed_lines:
922 m = pattern.match(changed_line)
923 if m:
924 path = m.group(1)
[email protected]2b438d62013-11-14 17:54:14925 if path.split('/')[0] not in AUTO_GENERATED_DIRS:
[email protected]14a6131c2014-01-08 01:15:41926 if m.group(2):
927 results.add('%s%s' % (path, m.group(2)))
928 else:
929 results.add('%s/DEPS' % path)
[email protected]f32e2d1e2013-07-26 21:39:08930 return results
931
932
[email protected]e871964c2013-05-13 14:14:55933def _CheckAddedDepsHaveTargetApprovals(input_api, output_api):
934 """When a dependency prefixed with + is added to a DEPS file, we
935 want to make sure that the change is reviewed by an OWNER of the
936 target file or directory, to avoid layering violations from being
937 introduced. This check verifies that this happens.
938 """
939 changed_lines = set()
940 for f in input_api.AffectedFiles():
941 filename = input_api.os_path.basename(f.LocalPath())
942 if filename == 'DEPS':
943 changed_lines |= set(line.strip()
944 for line_num, line
945 in f.ChangedContents())
946 if not changed_lines:
947 return []
948
[email protected]14a6131c2014-01-08 01:15:41949 virtual_depended_on_files = _FilesToCheckForIncomingDeps(input_api.re,
950 changed_lines)
[email protected]e871964c2013-05-13 14:14:55951 if not virtual_depended_on_files:
952 return []
953
954 if input_api.is_committing:
955 if input_api.tbr:
956 return [output_api.PresubmitNotifyResult(
957 '--tbr was specified, skipping OWNERS check for DEPS additions')]
958 if not input_api.change.issue:
959 return [output_api.PresubmitError(
960 "DEPS approval by OWNERS check failed: this change has "
961 "no Rietveld issue number, so we can't check it for approvals.")]
962 output = output_api.PresubmitError
963 else:
964 output = output_api.PresubmitNotifyResult
965
966 owners_db = input_api.owners_db
967 owner_email, reviewers = input_api.canned_checks._RietveldOwnerAndReviewers(
968 input_api,
969 owners_db.email_regexp,
970 approval_needed=input_api.is_committing)
971
972 owner_email = owner_email or input_api.change.author_email
973
[email protected]de4f7d22013-05-23 14:27:46974 reviewers_plus_owner = set(reviewers)
[email protected]e71c6082013-05-22 02:28:51975 if owner_email:
[email protected]de4f7d22013-05-23 14:27:46976 reviewers_plus_owner.add(owner_email)
[email protected]e871964c2013-05-13 14:14:55977 missing_files = owners_db.files_not_covered_by(virtual_depended_on_files,
978 reviewers_plus_owner)
[email protected]14a6131c2014-01-08 01:15:41979
980 # We strip the /DEPS part that was added by
981 # _FilesToCheckForIncomingDeps to fake a path to a file in a
982 # directory.
983 def StripDeps(path):
984 start_deps = path.rfind('/DEPS')
985 if start_deps != -1:
986 return path[:start_deps]
987 else:
988 return path
989 unapproved_dependencies = ["'+%s'," % StripDeps(path)
[email protected]e871964c2013-05-13 14:14:55990 for path in missing_files]
991
992 if unapproved_dependencies:
993 output_list = [
[email protected]14a6131c2014-01-08 01:15:41994 output('Missing LGTM from OWNERS of dependencies added to DEPS:\n %s' %
[email protected]e871964c2013-05-13 14:14:55995 '\n '.join(sorted(unapproved_dependencies)))]
996 if not input_api.is_committing:
997 suggested_owners = owners_db.reviewers_for(missing_files, owner_email)
998 output_list.append(output(
999 'Suggested missing target path OWNERS:\n %s' %
1000 '\n '.join(suggested_owners or [])))
1001 return output_list
1002
1003 return []
1004
1005
[email protected]85218562013-11-22 07:41:401006def _CheckSpamLogging(input_api, output_api):
1007 file_inclusion_pattern = r'.+%s' % _IMPLEMENTATION_EXTENSIONS
1008 black_list = (_EXCLUDED_PATHS +
1009 _TEST_CODE_EXCLUDED_PATHS +
1010 input_api.DEFAULT_BLACK_LIST +
[email protected]6f742dd02013-11-26 23:19:501011 (r"^base[\\\/]logging\.h$",
[email protected]80f360a2014-01-23 01:36:191012 r"^base[\\\/]logging\.cc$",
[email protected]8dc338c2013-12-09 16:28:481013 r"^chrome[\\\/]app[\\\/]chrome_main_delegate\.cc$",
[email protected]6e268db2013-12-04 01:41:461014 r"^chrome[\\\/]browser[\\\/]chrome_browser_main\.cc$",
[email protected]4de75262013-12-18 23:16:121015 r"^chrome[\\\/]browser[\\\/]ui[\\\/]startup[\\\/]"
1016 r"startup_browser_creator\.cc$",
[email protected]fe0e6e12013-12-04 05:52:581017 r"^chrome[\\\/]installer[\\\/]setup[\\\/].*",
[email protected]8cf6f842014-08-08 21:33:161018 r"chrome[\\\/]browser[\\\/]diagnostics[\\\/]" +
[email protected]f5b9a3f342014-08-08 22:06:031019 r"diagnostics_writer\.cc$",
[email protected]9f13b602014-08-07 02:59:151020 r"^chrome_elf[\\\/]dll_hash[\\\/]dll_hash_main\.cc$",
1021 r"^chromecast[\\\/]",
1022 r"^cloud_print[\\\/]",
[email protected]9056e732014-01-08 06:25:251023 r"^content[\\\/]common[\\\/]gpu[\\\/]client[\\\/]"
1024 r"gl_helper_benchmark\.cc$",
thestigc9e38a22014-09-13 01:02:111025 r"^courgette[\\\/]courgette_tool\.cc$",
[email protected]9f13b602014-08-07 02:59:151026 r"^extensions[\\\/]renderer[\\\/]logging_native_handler\.cc$",
prashant.nb0252f62014-11-08 05:02:111027 r"^ipc[\\\/]ipc_logging\.cc$",
[email protected]9c36d922014-03-24 16:47:521028 r"^native_client_sdk[\\\/]",
[email protected]cdbdced2013-11-27 21:35:501029 r"^remoting[\\\/]base[\\\/]logging\.h$",
[email protected]67c96ab2013-12-17 02:05:361030 r"^remoting[\\\/]host[\\\/].*",
[email protected]8232f8fd2013-12-14 00:52:311031 r"^sandbox[\\\/]linux[\\\/].*",
[email protected]0b7a21e2014-02-11 18:38:131032 r"^tools[\\\/]",
thestig22dfc4012014-09-05 08:29:441033 r"^ui[\\\/]aura[\\\/]bench[\\\/]bench_main\.cc$",
vchigrin14251492015-01-12 08:09:021034 r"^storage[\\\/]browser[\\\/]fileapi[\\\/]" +
thestig22dfc4012014-09-05 08:29:441035 r"dump_file_system.cc$",))
[email protected]85218562013-11-22 07:41:401036 source_file_filter = lambda x: input_api.FilterSourceFile(
1037 x, white_list=(file_inclusion_pattern,), black_list=black_list)
1038
1039 log_info = []
1040 printf = []
1041
1042 for f in input_api.AffectedSourceFiles(source_file_filter):
1043 contents = input_api.ReadFile(f, 'rb')
mohan.reddyf21db962014-10-16 12:26:471044 if input_api.re.search(r"\bD?LOG\s*\(\s*INFO\s*\)", contents):
[email protected]85218562013-11-22 07:41:401045 log_info.append(f.LocalPath())
mohan.reddyf21db962014-10-16 12:26:471046 elif input_api.re.search(r"\bD?LOG_IF\s*\(\s*INFO\s*,", contents):
[email protected]85210652013-11-28 05:50:131047 log_info.append(f.LocalPath())
[email protected]18b466b2013-12-02 22:01:371048
mohan.reddyf21db962014-10-16 12:26:471049 if input_api.re.search(r"\bprintf\(", contents):
[email protected]18b466b2013-12-02 22:01:371050 printf.append(f.LocalPath())
mohan.reddyf21db962014-10-16 12:26:471051 elif input_api.re.search(r"\bfprintf\((stdout|stderr)", contents):
[email protected]85218562013-11-22 07:41:401052 printf.append(f.LocalPath())
1053
1054 if log_info:
1055 return [output_api.PresubmitError(
1056 'These files spam the console log with LOG(INFO):',
1057 items=log_info)]
1058 if printf:
1059 return [output_api.PresubmitError(
1060 'These files spam the console log with printf/fprintf:',
1061 items=printf)]
1062 return []
1063
1064
[email protected]49aa76a2013-12-04 06:59:161065def _CheckForAnonymousVariables(input_api, output_api):
1066 """These types are all expected to hold locks while in scope and
1067 so should never be anonymous (which causes them to be immediately
1068 destroyed)."""
1069 they_who_must_be_named = [
1070 'base::AutoLock',
1071 'base::AutoReset',
1072 'base::AutoUnlock',
1073 'SkAutoAlphaRestore',
1074 'SkAutoBitmapShaderInstall',
1075 'SkAutoBlitterChoose',
1076 'SkAutoBounderCommit',
1077 'SkAutoCallProc',
1078 'SkAutoCanvasRestore',
1079 'SkAutoCommentBlock',
1080 'SkAutoDescriptor',
1081 'SkAutoDisableDirectionCheck',
1082 'SkAutoDisableOvalCheck',
1083 'SkAutoFree',
1084 'SkAutoGlyphCache',
1085 'SkAutoHDC',
1086 'SkAutoLockColors',
1087 'SkAutoLockPixels',
1088 'SkAutoMalloc',
1089 'SkAutoMaskFreeImage',
1090 'SkAutoMutexAcquire',
1091 'SkAutoPathBoundsUpdate',
1092 'SkAutoPDFRelease',
1093 'SkAutoRasterClipValidate',
1094 'SkAutoRef',
1095 'SkAutoTime',
1096 'SkAutoTrace',
1097 'SkAutoUnref',
1098 ]
1099 anonymous = r'(%s)\s*[({]' % '|'.join(they_who_must_be_named)
1100 # bad: base::AutoLock(lock.get());
1101 # not bad: base::AutoLock lock(lock.get());
1102 bad_pattern = input_api.re.compile(anonymous)
1103 # good: new base::AutoLock(lock.get())
1104 good_pattern = input_api.re.compile(r'\bnew\s*' + anonymous)
1105 errors = []
1106
1107 for f in input_api.AffectedFiles():
1108 if not f.LocalPath().endswith(('.cc', '.h', '.inl', '.m', '.mm')):
1109 continue
1110 for linenum, line in f.ChangedContents():
1111 if bad_pattern.search(line) and not good_pattern.search(line):
1112 errors.append('%s:%d' % (f.LocalPath(), linenum))
1113
1114 if errors:
1115 return [output_api.PresubmitError(
1116 'These lines create anonymous variables that need to be named:',
1117 items=errors)]
1118 return []
1119
1120
[email protected]5fe0f8742013-11-29 01:04:591121def _CheckCygwinShell(input_api, output_api):
1122 source_file_filter = lambda x: input_api.FilterSourceFile(
1123 x, white_list=(r'.+\.(gyp|gypi)$',))
1124 cygwin_shell = []
1125
1126 for f in input_api.AffectedSourceFiles(source_file_filter):
1127 for linenum, line in f.ChangedContents():
1128 if 'msvs_cygwin_shell' in line:
1129 cygwin_shell.append(f.LocalPath())
1130 break
1131
1132 if cygwin_shell:
1133 return [output_api.PresubmitError(
1134 'These files should not use msvs_cygwin_shell (the default is 0):',
1135 items=cygwin_shell)]
1136 return []
1137
[email protected]85218562013-11-22 07:41:401138
[email protected]999261d2014-03-03 20:08:081139def _CheckUserActionUpdate(input_api, output_api):
1140 """Checks if any new user action has been added."""
[email protected]2f92dec2014-03-07 19:21:521141 if any('actions.xml' == input_api.os_path.basename(f) for f in
[email protected]999261d2014-03-03 20:08:081142 input_api.LocalPaths()):
[email protected]2f92dec2014-03-07 19:21:521143 # If actions.xml is already included in the changelist, the PRESUBMIT
1144 # for actions.xml will do a more complete presubmit check.
[email protected]999261d2014-03-03 20:08:081145 return []
1146
[email protected]999261d2014-03-03 20:08:081147 file_filter = lambda f: f.LocalPath().endswith(('.cc', '.mm'))
1148 action_re = r'[^a-zA-Z]UserMetricsAction\("([^"]*)'
[email protected]2f92dec2014-03-07 19:21:521149 current_actions = None
[email protected]999261d2014-03-03 20:08:081150 for f in input_api.AffectedFiles(file_filter=file_filter):
1151 for line_num, line in f.ChangedContents():
1152 match = input_api.re.search(action_re, line)
1153 if match:
[email protected]2f92dec2014-03-07 19:21:521154 # Loads contents in tools/metrics/actions/actions.xml to memory. It's
1155 # loaded only once.
1156 if not current_actions:
1157 with open('tools/metrics/actions/actions.xml') as actions_f:
1158 current_actions = actions_f.read()
1159 # Search for the matched user action name in |current_actions|.
[email protected]999261d2014-03-03 20:08:081160 for action_name in match.groups():
[email protected]2f92dec2014-03-07 19:21:521161 action = 'name="{0}"'.format(action_name)
1162 if action not in current_actions:
[email protected]999261d2014-03-03 20:08:081163 return [output_api.PresubmitPromptWarning(
1164 'File %s line %d: %s is missing in '
[email protected]2f92dec2014-03-07 19:21:521165 'tools/metrics/actions/actions.xml. Please run '
1166 'tools/metrics/actions/extract_actions.py to update.'
[email protected]999261d2014-03-03 20:08:081167 % (f.LocalPath(), line_num, action_name))]
1168 return []
1169
1170
[email protected]99171a92014-06-03 08:44:471171def _GetJSONParseError(input_api, filename, eat_comments=True):
1172 try:
1173 contents = input_api.ReadFile(filename)
1174 if eat_comments:
1175 json_comment_eater = input_api.os_path.join(
1176 input_api.PresubmitLocalPath(),
1177 'tools', 'json_comment_eater', 'json_comment_eater.py')
1178 process = input_api.subprocess.Popen(
1179 [input_api.python_executable, json_comment_eater],
1180 stdin=input_api.subprocess.PIPE,
1181 stdout=input_api.subprocess.PIPE,
1182 universal_newlines=True)
1183 (contents, _) = process.communicate(input=contents)
1184
1185 input_api.json.loads(contents)
1186 except ValueError as e:
1187 return e
1188 return None
1189
1190
1191def _GetIDLParseError(input_api, filename):
1192 try:
1193 contents = input_api.ReadFile(filename)
1194 idl_schema = input_api.os_path.join(
1195 input_api.PresubmitLocalPath(),
1196 'tools', 'json_schema_compiler', 'idl_schema.py')
1197 process = input_api.subprocess.Popen(
1198 [input_api.python_executable, idl_schema],
1199 stdin=input_api.subprocess.PIPE,
1200 stdout=input_api.subprocess.PIPE,
1201 stderr=input_api.subprocess.PIPE,
1202 universal_newlines=True)
1203 (_, error) = process.communicate(input=contents)
1204 return error or None
1205 except ValueError as e:
1206 return e
1207
1208
1209def _CheckParseErrors(input_api, output_api):
1210 """Check that IDL and JSON files do not contain syntax errors."""
1211 actions = {
1212 '.idl': _GetIDLParseError,
1213 '.json': _GetJSONParseError,
1214 }
1215 # These paths contain test data and other known invalid JSON files.
1216 excluded_patterns = [
joaodasilva718f87672014-08-30 09:25:491217 r'test[\\\/]data[\\\/]',
1218 r'^components[\\\/]policy[\\\/]resources[\\\/]policy_templates\.json$',
[email protected]99171a92014-06-03 08:44:471219 ]
1220 # Most JSON files are preprocessed and support comments, but these do not.
1221 json_no_comments_patterns = [
joaodasilva718f87672014-08-30 09:25:491222 r'^testing[\\\/]',
[email protected]99171a92014-06-03 08:44:471223 ]
1224 # Only run IDL checker on files in these directories.
1225 idl_included_patterns = [
joaodasilva718f87672014-08-30 09:25:491226 r'^chrome[\\\/]common[\\\/]extensions[\\\/]api[\\\/]',
1227 r'^extensions[\\\/]common[\\\/]api[\\\/]',
[email protected]99171a92014-06-03 08:44:471228 ]
1229
1230 def get_action(affected_file):
1231 filename = affected_file.LocalPath()
1232 return actions.get(input_api.os_path.splitext(filename)[1])
1233
1234 def MatchesFile(patterns, path):
1235 for pattern in patterns:
1236 if input_api.re.search(pattern, path):
1237 return True
1238 return False
1239
1240 def FilterFile(affected_file):
1241 action = get_action(affected_file)
1242 if not action:
1243 return False
1244 path = affected_file.LocalPath()
1245
1246 if MatchesFile(excluded_patterns, path):
1247 return False
1248
1249 if (action == _GetIDLParseError and
1250 not MatchesFile(idl_included_patterns, path)):
1251 return False
1252 return True
1253
1254 results = []
1255 for affected_file in input_api.AffectedFiles(
1256 file_filter=FilterFile, include_deletes=False):
1257 action = get_action(affected_file)
1258 kwargs = {}
1259 if (action == _GetJSONParseError and
1260 MatchesFile(json_no_comments_patterns, affected_file.LocalPath())):
1261 kwargs['eat_comments'] = False
1262 parse_error = action(input_api,
1263 affected_file.AbsoluteLocalPath(),
1264 **kwargs)
1265 if parse_error:
1266 results.append(output_api.PresubmitError('%s could not be parsed: %s' %
1267 (affected_file.LocalPath(), parse_error)))
1268 return results
1269
1270
[email protected]760deea2013-12-10 19:33:491271def _CheckJavaStyle(input_api, output_api):
1272 """Runs checkstyle on changed java files and returns errors if any exist."""
mohan.reddyf21db962014-10-16 12:26:471273 import sys
[email protected]760deea2013-12-10 19:33:491274 original_sys_path = sys.path
1275 try:
1276 sys.path = sys.path + [input_api.os_path.join(
1277 input_api.PresubmitLocalPath(), 'tools', 'android', 'checkstyle')]
1278 import checkstyle
1279 finally:
1280 # Restore sys.path to what it was before.
1281 sys.path = original_sys_path
1282
1283 return checkstyle.RunCheckstyle(
davileen72d76532015-01-20 22:30:091284 input_api, output_api, 'tools/android/checkstyle/chromium-style-5.0.xml',
newtd8b7d30e92015-01-23 18:10:511285 black_list=_EXCLUDED_PATHS + input_api.DEFAULT_BLACK_LIST)
[email protected]760deea2013-12-10 19:33:491286
1287
mnaganov9b9b1fe82014-12-11 16:30:361288def _CheckForCopyrightedCode(input_api, output_api):
1289 """Verifies that newly added code doesn't contain copyrighted material
1290 and is properly licensed under the standard Chromium license.
1291
1292 As there can be false positives, we maintain a whitelist file. This check
1293 also verifies that the whitelist file is up to date.
1294 """
1295 import sys
1296 original_sys_path = sys.path
1297 try:
1298 sys.path = sys.path + [input_api.os_path.join(
1299 input_api.PresubmitLocalPath(), 'android_webview', 'tools')]
1300 import copyright_scanner
1301 finally:
1302 # Restore sys.path to what it was before.
1303 sys.path = original_sys_path
1304
1305 return copyright_scanner.ScanAtPresubmit(input_api, output_api)
1306
1307
glidere61efad2015-02-18 17:39:431308def _CheckSingletonInHeaders(input_api, output_api):
1309 """Checks to make sure no header files have |Singleton<|."""
1310 def FileFilter(affected_file):
1311 # It's ok for base/memory/singleton.h to have |Singleton<|.
1312 black_list = (_EXCLUDED_PATHS +
1313 input_api.DEFAULT_BLACK_LIST +
1314 (r"^base[\\\/]memory[\\\/]singleton\.h$",))
1315 return input_api.FilterSourceFile(affected_file, black_list=black_list)
1316
1317 pattern = input_api.re.compile(r'(?<!class\s)Singleton\s*<')
1318 files = []
1319 for f in input_api.AffectedSourceFiles(FileFilter):
1320 if (f.LocalPath().endswith('.h') or f.LocalPath().endswith('.hxx') or
1321 f.LocalPath().endswith('.hpp') or f.LocalPath().endswith('.inl')):
1322 contents = input_api.ReadFile(f)
1323 for line in contents.splitlines(False):
1324 if (not input_api.re.match(r'//', line) and # Strip C++ comment.
1325 pattern.search(line)):
1326 files.append(f)
1327 break
1328
1329 if files:
1330 return [ output_api.PresubmitError(
1331 'Found Singleton<T> in the following header files.\n' +
1332 'Please move them to an appropriate source file so that the ' +
1333 'template gets instantiated in a single compilation unit.',
1334 files) ]
1335 return []
1336
1337
[email protected]fd20b902014-05-09 02:14:531338_DEPRECATED_CSS = [
1339 # Values
1340 ( "-webkit-box", "flex" ),
1341 ( "-webkit-inline-box", "inline-flex" ),
1342 ( "-webkit-flex", "flex" ),
1343 ( "-webkit-inline-flex", "inline-flex" ),
1344 ( "-webkit-min-content", "min-content" ),
1345 ( "-webkit-max-content", "max-content" ),
1346
1347 # Properties
1348 ( "-webkit-background-clip", "background-clip" ),
1349 ( "-webkit-background-origin", "background-origin" ),
1350 ( "-webkit-background-size", "background-size" ),
1351 ( "-webkit-box-shadow", "box-shadow" ),
1352
1353 # Functions
1354 ( "-webkit-gradient", "gradient" ),
1355 ( "-webkit-repeating-gradient", "repeating-gradient" ),
1356 ( "-webkit-linear-gradient", "linear-gradient" ),
1357 ( "-webkit-repeating-linear-gradient", "repeating-linear-gradient" ),
1358 ( "-webkit-radial-gradient", "radial-gradient" ),
1359 ( "-webkit-repeating-radial-gradient", "repeating-radial-gradient" ),
1360]
1361
1362def _CheckNoDeprecatedCSS(input_api, output_api):
1363 """ Make sure that we don't use deprecated CSS
[email protected]9a48e3f82014-05-22 00:06:251364 properties, functions or values. Our external
1365 documentation is ignored by the hooks as it
1366 needs to be consumed by WebKit. """
[email protected]fd20b902014-05-09 02:14:531367 results = []
dbeam070cfe62014-10-22 06:44:021368 file_inclusion_pattern = (r".+\.css$",)
[email protected]9a48e3f82014-05-22 00:06:251369 black_list = (_EXCLUDED_PATHS +
1370 _TEST_CODE_EXCLUDED_PATHS +
1371 input_api.DEFAULT_BLACK_LIST +
1372 (r"^chrome/common/extensions/docs",
1373 r"^chrome/docs",
1374 r"^native_client_sdk"))
1375 file_filter = lambda f: input_api.FilterSourceFile(
1376 f, white_list=file_inclusion_pattern, black_list=black_list)
[email protected]fd20b902014-05-09 02:14:531377 for fpath in input_api.AffectedFiles(file_filter=file_filter):
1378 for line_num, line in fpath.ChangedContents():
1379 for (deprecated_value, value) in _DEPRECATED_CSS:
dbeam070cfe62014-10-22 06:44:021380 if deprecated_value in line:
[email protected]fd20b902014-05-09 02:14:531381 results.append(output_api.PresubmitError(
1382 "%s:%d: Use of deprecated CSS %s, use %s instead" %
1383 (fpath.LocalPath(), line_num, deprecated_value, value)))
1384 return results
1385
mohan.reddyf21db962014-10-16 12:26:471386
dbeam070cfe62014-10-22 06:44:021387_DEPRECATED_JS = [
1388 ( "__lookupGetter__", "Object.getOwnPropertyDescriptor" ),
1389 ( "__defineGetter__", "Object.defineProperty" ),
1390 ( "__defineSetter__", "Object.defineProperty" ),
1391]
1392
1393def _CheckNoDeprecatedJS(input_api, output_api):
1394 """Make sure that we don't use deprecated JS in Chrome code."""
1395 results = []
1396 file_inclusion_pattern = (r".+\.js$",) # TODO(dbeam): .html?
1397 black_list = (_EXCLUDED_PATHS + _TEST_CODE_EXCLUDED_PATHS +
1398 input_api.DEFAULT_BLACK_LIST)
1399 file_filter = lambda f: input_api.FilterSourceFile(
1400 f, white_list=file_inclusion_pattern, black_list=black_list)
1401 for fpath in input_api.AffectedFiles(file_filter=file_filter):
1402 for lnum, line in fpath.ChangedContents():
1403 for (deprecated, replacement) in _DEPRECATED_JS:
1404 if deprecated in line:
1405 results.append(output_api.PresubmitError(
1406 "%s:%d: Use of deprecated JS %s, use %s instead" %
1407 (fpath.LocalPath(), lnum, deprecated, replacement)))
1408 return results
1409
1410
[email protected]22c9bd72011-03-27 16:47:391411def _CommonChecks(input_api, output_api):
1412 """Checks common to both upload and commit."""
1413 results = []
1414 results.extend(input_api.canned_checks.PanProjectChecks(
[email protected]3de922f2013-12-20 13:27:381415 input_api, output_api,
1416 excluded_paths=_EXCLUDED_PATHS + _TESTRUNNER_PATHS))
[email protected]66daa702011-05-28 14:41:461417 results.extend(_CheckAuthorizedAuthor(input_api, output_api))
[email protected]55459852011-08-10 15:17:191418 results.extend(
[email protected]760deea2013-12-10 19:33:491419 _CheckNoProductionCodeUsingTestOnlyFunctions(input_api, output_api))
[email protected]10689ca2011-09-02 02:31:541420 results.extend(_CheckNoIOStreamInHeaders(input_api, output_api))
[email protected]72df4e782012-06-21 16:28:181421 results.extend(_CheckNoUNIT_TESTInSourceFiles(input_api, output_api))
[email protected]8ea5d4b2011-09-13 21:49:221422 results.extend(_CheckNoNewWStrings(input_api, output_api))
[email protected]2a8ac9c2011-10-19 17:20:441423 results.extend(_CheckNoDEPSGIT(input_api, output_api))
[email protected]127f18ec2012-06-16 05:05:591424 results.extend(_CheckNoBannedFunctions(input_api, output_api))
[email protected]6c063c62012-07-11 19:11:061425 results.extend(_CheckNoPragmaOnce(input_api, output_api))
[email protected]e7479052012-09-19 00:26:121426 results.extend(_CheckNoTrinaryTrueFalse(input_api, output_api))
[email protected]55f9f382012-07-31 11:02:181427 results.extend(_CheckUnwantedDependencies(input_api, output_api))
[email protected]fbcafe5a2012-08-08 15:31:221428 results.extend(_CheckFilePermissions(input_api, output_api))
[email protected]c8278b32012-10-30 20:35:491429 results.extend(_CheckNoAuraWindowPropertyHInHeaders(input_api, output_api))
[email protected]2309b0fa02012-11-16 12:18:271430 results.extend(_CheckIncludeOrder(input_api, output_api))
[email protected]70ca77752012-11-20 03:45:031431 results.extend(_CheckForVersionControlConflicts(input_api, output_api))
[email protected]b8079ae4a2012-12-05 19:56:491432 results.extend(_CheckPatchFiles(input_api, output_api))
[email protected]06e6d0ff2012-12-11 01:36:441433 results.extend(_CheckHardcodedGoogleHostsInLowerLayers(input_api, output_api))
[email protected]d2530012013-01-25 16:39:271434 results.extend(_CheckNoAbbreviationInPngFileName(input_api, output_api))
[email protected]b00342e7f2013-03-26 16:21:541435 results.extend(_CheckForInvalidOSMacros(input_api, output_api))
lliabraa35bab3932014-10-01 12:16:441436 results.extend(_CheckForInvalidIfDefinedMacros(input_api, output_api))
danakj3c84d0c2014-10-06 15:35:461437 # TODO(danakj): Remove this when base/move.h is removed.
1438 results.extend(_CheckForUsingSideEffectsOfPass(input_api, output_api))
[email protected]e871964c2013-05-13 14:14:551439 results.extend(_CheckAddedDepsHaveTargetApprovals(input_api, output_api))
[email protected]9f919cc2013-07-31 03:04:041440 results.extend(
1441 input_api.canned_checks.CheckChangeHasNoTabs(
1442 input_api,
1443 output_api,
1444 source_file_filter=lambda x: x.LocalPath().endswith('.grd')))
[email protected]85218562013-11-22 07:41:401445 results.extend(_CheckSpamLogging(input_api, output_api))
[email protected]49aa76a2013-12-04 06:59:161446 results.extend(_CheckForAnonymousVariables(input_api, output_api))
[email protected]5fe0f8742013-11-29 01:04:591447 results.extend(_CheckCygwinShell(input_api, output_api))
[email protected]999261d2014-03-03 20:08:081448 results.extend(_CheckUserActionUpdate(input_api, output_api))
[email protected]fd20b902014-05-09 02:14:531449 results.extend(_CheckNoDeprecatedCSS(input_api, output_api))
dbeam070cfe62014-10-22 06:44:021450 results.extend(_CheckNoDeprecatedJS(input_api, output_api))
[email protected]99171a92014-06-03 08:44:471451 results.extend(_CheckParseErrors(input_api, output_api))
mlamouria82272622014-09-16 18:45:041452 results.extend(_CheckForIPCRules(input_api, output_api))
mnaganov9b9b1fe82014-12-11 16:30:361453 results.extend(_CheckForCopyrightedCode(input_api, output_api))
mostynbb639aca52015-01-07 20:31:231454 results.extend(_CheckForWindowsLineEndings(input_api, output_api))
glidere61efad2015-02-18 17:39:431455 results.extend(_CheckSingletonInHeaders(input_api, output_api))
[email protected]2299dcf2012-11-15 19:56:241456
1457 if any('PRESUBMIT.py' == f.LocalPath() for f in input_api.AffectedFiles()):
1458 results.extend(input_api.canned_checks.RunUnitTestsInDirectory(
1459 input_api, output_api,
1460 input_api.PresubmitLocalPath(),
[email protected]6be63382013-01-21 15:42:381461 whitelist=[r'^PRESUBMIT_test\.py$']))
[email protected]22c9bd72011-03-27 16:47:391462 return results
[email protected]1f7b4172010-01-28 01:17:341463
[email protected]b337cb5b2011-01-23 21:24:051464
[email protected]66daa702011-05-28 14:41:461465def _CheckAuthorizedAuthor(input_api, output_api):
1466 """For non-googler/chromites committers, verify the author's email address is
1467 in AUTHORS.
1468 """
[email protected]9bb9cb82011-06-13 20:43:011469 # TODO(maruel): Add it to input_api?
1470 import fnmatch
1471
[email protected]66daa702011-05-28 14:41:461472 author = input_api.change.author_email
[email protected]9bb9cb82011-06-13 20:43:011473 if not author:
1474 input_api.logging.info('No author, skipping AUTHOR check')
[email protected]66daa702011-05-28 14:41:461475 return []
[email protected]c99663292011-05-31 19:46:081476 authors_path = input_api.os_path.join(
[email protected]66daa702011-05-28 14:41:461477 input_api.PresubmitLocalPath(), 'AUTHORS')
1478 valid_authors = (
1479 input_api.re.match(r'[^#]+\s+\<(.+?)\>\s*$', line)
1480 for line in open(authors_path))
[email protected]ac54b132011-06-06 18:11:181481 valid_authors = [item.group(1).lower() for item in valid_authors if item]
[email protected]d8b50be2011-06-15 14:19:441482 if not any(fnmatch.fnmatch(author.lower(), valid) for valid in valid_authors):
[email protected]5861efb2013-01-07 18:33:231483 input_api.logging.info('Valid authors are %s', ', '.join(valid_authors))
[email protected]66daa702011-05-28 14:41:461484 return [output_api.PresubmitPromptWarning(
1485 ('%s is not in AUTHORS file. If you are a new contributor, please visit'
1486 '\n'
1487 'http://www.chromium.org/developers/contributing-code and read the '
1488 '"Legal" section\n'
1489 'If you are a chromite, verify the contributor signed the CLA.') %
1490 author)]
1491 return []
1492
1493
[email protected]b8079ae4a2012-12-05 19:56:491494def _CheckPatchFiles(input_api, output_api):
1495 problems = [f.LocalPath() for f in input_api.AffectedFiles()
1496 if f.LocalPath().endswith(('.orig', '.rej'))]
1497 if problems:
1498 return [output_api.PresubmitError(
1499 "Don't commit .rej and .orig files.", problems)]
[email protected]2fdd1f362013-01-16 03:56:031500 else:
1501 return []
[email protected]b8079ae4a2012-12-05 19:56:491502
1503
[email protected]b00342e7f2013-03-26 16:21:541504def _DidYouMeanOSMacro(bad_macro):
1505 try:
1506 return {'A': 'OS_ANDROID',
1507 'B': 'OS_BSD',
1508 'C': 'OS_CHROMEOS',
1509 'F': 'OS_FREEBSD',
1510 'L': 'OS_LINUX',
1511 'M': 'OS_MACOSX',
1512 'N': 'OS_NACL',
1513 'O': 'OS_OPENBSD',
1514 'P': 'OS_POSIX',
1515 'S': 'OS_SOLARIS',
1516 'W': 'OS_WIN'}[bad_macro[3].upper()]
1517 except KeyError:
1518 return ''
1519
1520
1521def _CheckForInvalidOSMacrosInFile(input_api, f):
1522 """Check for sensible looking, totally invalid OS macros."""
1523 preprocessor_statement = input_api.re.compile(r'^\s*#')
1524 os_macro = input_api.re.compile(r'defined\((OS_[^)]+)\)')
1525 results = []
1526 for lnum, line in f.ChangedContents():
1527 if preprocessor_statement.search(line):
1528 for match in os_macro.finditer(line):
1529 if not match.group(1) in _VALID_OS_MACROS:
1530 good = _DidYouMeanOSMacro(match.group(1))
1531 did_you_mean = ' (did you mean %s?)' % good if good else ''
1532 results.append(' %s:%d %s%s' % (f.LocalPath(),
1533 lnum,
1534 match.group(1),
1535 did_you_mean))
1536 return results
1537
1538
1539def _CheckForInvalidOSMacros(input_api, output_api):
1540 """Check all affected files for invalid OS macros."""
1541 bad_macros = []
1542 for f in input_api.AffectedFiles():
1543 if not f.LocalPath().endswith(('.py', '.js', '.html', '.css')):
1544 bad_macros.extend(_CheckForInvalidOSMacrosInFile(input_api, f))
1545
1546 if not bad_macros:
1547 return []
1548
1549 return [output_api.PresubmitError(
1550 'Possibly invalid OS macro[s] found. Please fix your code\n'
1551 'or add your macro to src/PRESUBMIT.py.', bad_macros)]
1552
lliabraa35bab3932014-10-01 12:16:441553
1554def _CheckForInvalidIfDefinedMacrosInFile(input_api, f):
1555 """Check all affected files for invalid "if defined" macros."""
1556 ALWAYS_DEFINED_MACROS = (
1557 "TARGET_CPU_PPC",
1558 "TARGET_CPU_PPC64",
1559 "TARGET_CPU_68K",
1560 "TARGET_CPU_X86",
1561 "TARGET_CPU_ARM",
1562 "TARGET_CPU_MIPS",
1563 "TARGET_CPU_SPARC",
1564 "TARGET_CPU_ALPHA",
1565 "TARGET_IPHONE_SIMULATOR",
1566 "TARGET_OS_EMBEDDED",
1567 "TARGET_OS_IPHONE",
1568 "TARGET_OS_MAC",
1569 "TARGET_OS_UNIX",
1570 "TARGET_OS_WIN32",
1571 )
1572 ifdef_macro = input_api.re.compile(r'^\s*#.*(?:ifdef\s|defined\()([^\s\)]+)')
1573 results = []
1574 for lnum, line in f.ChangedContents():
1575 for match in ifdef_macro.finditer(line):
1576 if match.group(1) in ALWAYS_DEFINED_MACROS:
1577 always_defined = ' %s is always defined. ' % match.group(1)
1578 did_you_mean = 'Did you mean \'#if %s\'?' % match.group(1)
1579 results.append(' %s:%d %s\n\t%s' % (f.LocalPath(),
1580 lnum,
1581 always_defined,
1582 did_you_mean))
1583 return results
1584
1585
1586def _CheckForInvalidIfDefinedMacros(input_api, output_api):
1587 """Check all affected files for invalid "if defined" macros."""
1588 bad_macros = []
1589 for f in input_api.AffectedFiles():
1590 if f.LocalPath().endswith(('.h', '.c', '.cc', '.m', '.mm')):
1591 bad_macros.extend(_CheckForInvalidIfDefinedMacrosInFile(input_api, f))
1592
1593 if not bad_macros:
1594 return []
1595
1596 return [output_api.PresubmitError(
1597 'Found ifdef check on always-defined macro[s]. Please fix your code\n'
1598 'or check the list of ALWAYS_DEFINED_MACROS in src/PRESUBMIT.py.',
1599 bad_macros)]
1600
1601
danakj3c84d0c2014-10-06 15:35:461602def _CheckForUsingSideEffectsOfPass(input_api, output_api):
1603 """Check all affected files for using side effects of Pass."""
1604 errors = []
1605 for f in input_api.AffectedFiles():
1606 if f.LocalPath().endswith(('.h', '.c', '.cc', '.m', '.mm')):
1607 for lnum, line in f.ChangedContents():
1608 # Disallow Foo(*my_scoped_thing.Pass()); See crbug.com/418297.
mohan.reddyf21db962014-10-16 12:26:471609 if input_api.re.search(r'\*[a-zA-Z0-9_]+\.Pass\(\)', line):
danakj3c84d0c2014-10-06 15:35:461610 errors.append(output_api.PresubmitError(
1611 ('%s:%d uses *foo.Pass() to delete the contents of scoped_ptr. ' +
1612 'See crbug.com/418297.') % (f.LocalPath(), lnum)))
1613 return errors
1614
1615
mlamouria82272622014-09-16 18:45:041616def _CheckForIPCRules(input_api, output_api):
1617 """Check for same IPC rules described in
1618 http://www.chromium.org/Home/chromium-security/education/security-tips-for-ipc
1619 """
1620 base_pattern = r'IPC_ENUM_TRAITS\('
1621 inclusion_pattern = input_api.re.compile(r'(%s)' % base_pattern)
1622 comment_pattern = input_api.re.compile(r'//.*(%s)' % base_pattern)
1623
1624 problems = []
1625 for f in input_api.AffectedSourceFiles(None):
1626 local_path = f.LocalPath()
1627 if not local_path.endswith('.h'):
1628 continue
1629 for line_number, line in f.ChangedContents():
1630 if inclusion_pattern.search(line) and not comment_pattern.search(line):
1631 problems.append(
1632 '%s:%d\n %s' % (local_path, line_number, line.strip()))
1633
1634 if problems:
1635 return [output_api.PresubmitPromptWarning(
1636 _IPC_ENUM_TRAITS_DEPRECATED, problems)]
1637 else:
1638 return []
1639
[email protected]b00342e7f2013-03-26 16:21:541640
mostynbb639aca52015-01-07 20:31:231641def _CheckForWindowsLineEndings(input_api, output_api):
1642 """Check source code and known ascii text files for Windows style line
1643 endings.
1644 """
1645 known_text_files = r'.*\.(txt|html|htm|mhtml|py)$'
1646
1647 file_inclusion_pattern = (
1648 known_text_files,
1649 r'.+%s' % _IMPLEMENTATION_EXTENSIONS
1650 )
1651
1652 filter = lambda f: input_api.FilterSourceFile(
1653 f, white_list=file_inclusion_pattern, black_list=None)
1654 files = [f.LocalPath() for f in
1655 input_api.AffectedSourceFiles(filter)]
1656
1657 problems = []
1658
1659 for file in files:
1660 fp = open(file, 'r')
1661 for line in fp:
1662 if line.endswith('\r\n'):
1663 problems.append(file)
1664 break
1665 fp.close()
1666
1667 if problems:
1668 return [output_api.PresubmitPromptWarning('Are you sure that you want '
1669 'these files to contain Windows style line endings?\n' +
1670 '\n'.join(problems))]
1671
1672 return []
1673
1674
[email protected]1f7b4172010-01-28 01:17:341675def CheckChangeOnUpload(input_api, output_api):
1676 results = []
1677 results.extend(_CommonChecks(input_api, output_api))
tandriief664692014-09-23 14:51:471678 results.extend(_CheckValidHostsInDEPS(input_api, output_api))
aurimas8d3bc1c52014-10-15 01:02:171679 results.extend(_CheckJavaStyle(input_api, output_api))
scottmg39b29952014-12-08 18:31:281680 results.extend(
1681 input_api.canned_checks.CheckGNFormatted(input_api, output_api))
mcasasb7440c282015-02-04 14:52:191682 results.extend(_CheckUmaHistogramChanges(input_api, output_api))
[email protected]fe5f57c52009-06-05 14:25:541683 return results
[email protected]ca8d19842009-02-19 16:33:121684
1685
[email protected]1bfb8322014-04-23 01:02:411686def GetTryServerMasterForBot(bot):
1687 """Returns the Try Server master for the given bot.
1688
[email protected]0bb112362014-07-26 04:38:321689 It tries to guess the master from the bot name, but may still fail
1690 and return None. There is no longer a default master.
1691 """
1692 # Potentially ambiguous bot names are listed explicitly.
1693 master_map = {
[email protected]d263d5b2014-04-30 01:15:551694 'win_gpu': 'tryserver.chromium.gpu',
[email protected]0bb112362014-07-26 04:38:321695 'chromium_presubmit': 'tryserver.chromium.linux',
1696 'blink_presubmit': 'tryserver.chromium.linux',
1697 'tools_build_presubmit': 'tryserver.chromium.linux',
[email protected]1bfb8322014-04-23 01:02:411698 }
[email protected]0bb112362014-07-26 04:38:321699 master = master_map.get(bot)
1700 if not master:
1701 if 'gpu' in bot:
1702 master = 'tryserver.chromium.gpu'
1703 elif 'linux' in bot or 'android' in bot or 'presubmit' in bot:
1704 master = 'tryserver.chromium.linux'
1705 elif 'win' in bot:
1706 master = 'tryserver.chromium.win'
1707 elif 'mac' in bot or 'ios' in bot:
1708 master = 'tryserver.chromium.mac'
1709 return master
[email protected]1bfb8322014-04-23 01:02:411710
1711
Paweł Hajdan, Jr55083782014-12-19 20:32:561712def GetDefaultTryConfigs(bots):
1713 """Returns a list of ('bot', set(['tests']), filtered by [bots].
[email protected]38c6a512013-12-18 23:48:011714 """
1715
Paweł Hajdan, Jr55083782014-12-19 20:32:561716 builders_and_tests = dict((bot, set(['defaulttests'])) for bot in bots)
[email protected]1bfb8322014-04-23 01:02:411717
1718 # Build up the mapping from tryserver master to bot/test.
1719 out = dict()
Paweł Hajdan, Jr55083782014-12-19 20:32:561720 for bot, tests in builders_and_tests.iteritems():
[email protected]1bfb8322014-04-23 01:02:411721 out.setdefault(GetTryServerMasterForBot(bot), {})[bot] = tests
1722 return out
[email protected]38c6a512013-12-18 23:48:011723
1724
[email protected]ca8d19842009-02-19 16:33:121725def CheckChangeOnCommit(input_api, output_api):
[email protected]fe5f57c52009-06-05 14:25:541726 results = []
[email protected]1f7b4172010-01-28 01:17:341727 results.extend(_CommonChecks(input_api, output_api))
[email protected]dd805fe2009-10-01 08:11:511728 # TODO(thestig) temporarily disabled, doesn't work in third_party/
1729 #results.extend(input_api.canned_checks.CheckSvnModifiedDirectories(
1730 # input_api, output_api, sources))
[email protected]fe5f57c52009-06-05 14:25:541731 # Make sure the tree is 'open'.
[email protected]806e98e2010-03-19 17:49:271732 results.extend(input_api.canned_checks.CheckTreeIsOpen(
[email protected]7f238152009-08-12 19:00:341733 input_api,
1734 output_api,
[email protected]2fdd1f362013-01-16 03:56:031735 json_url='http://chromium-status.appspot.com/current?format=json'))
[email protected]806e98e2010-03-19 17:49:271736
[email protected]3e4eb112011-01-18 03:29:541737 results.extend(input_api.canned_checks.CheckChangeHasBugField(
1738 input_api, output_api))
[email protected]c4b47562011-12-05 23:39:411739 results.extend(input_api.canned_checks.CheckChangeHasDescription(
1740 input_api, output_api))
[email protected]fe5f57c52009-06-05 14:25:541741 return results
[email protected]ca8d19842009-02-19 16:33:121742
1743
[email protected]7468ac522014-03-12 23:35:571744def GetPreferredTryMasters(project, change):
mohan.reddyf21db962014-10-16 12:26:471745 import re
[email protected]4ce995ea2012-06-27 02:13:101746 files = change.LocalPaths()
1747
joaodasilva718f87672014-08-30 09:25:491748 if not files or all(re.search(r'[\\\/]OWNERS$', f) for f in files):
[email protected]7468ac522014-03-12 23:35:571749 return {}
[email protected]3019c902012-06-29 00:09:031750
joaodasilva718f87672014-08-30 09:25:491751 if all(re.search(r'\.(m|mm)$|(^|[\\\/_])mac[\\\/_.]', f) for f in files):
[email protected]d96b1f42014-02-27 19:17:521752 return GetDefaultTryConfigs([
sergeyberezin937b35322014-11-25 21:44:091753 'mac_chromium_compile_dbg_ng',
Paweł Hajdan, Jr60f82282014-10-30 10:55:061754 'mac_chromium_rel_ng',
[email protected]d96b1f42014-02-27 19:17:521755 ])
[email protected]d668899a2012-09-06 18:16:591756 if all(re.search('(^|[/_])win[/_.]', f) for f in files):
[email protected]02a7f6362014-08-13 02:04:161757 return GetDefaultTryConfigs([
scottmg6be3500f2014-12-04 17:08:271758 'win8_chromium_rel',
Paweł Hajdan, Jr847e1fa2014-12-15 16:26:181759 'win_chromium_rel_ng',
1760 'win_chromium_x64_rel_ng',
[email protected]02a7f6362014-08-13 02:04:161761 ])
vkuzkokovda8e8a832014-12-16 16:43:201762 if all(re.search(r'(^|[\\\/_])android[\\\/_.]', f) and
1763 not re.search(r'(^|[\\\/_])devtools[\\\/_.]', f) for f in files):
[email protected]38c6a512013-12-18 23:48:011764 return GetDefaultTryConfigs([
1765 'android_aosp',
thakis167162f2015-02-10 18:59:391766 'android_rel_tests_recipe',
[email protected]38c6a512013-12-18 23:48:011767 ])
joaodasilva718f87672014-08-30 09:25:491768 if all(re.search(r'[\\\/_]ios[\\\/_.]', f) for f in files):
[email protected]38c6a512013-12-18 23:48:011769 return GetDefaultTryConfigs(['ios_rel_device', 'ios_dbg_simulator'])
[email protected]4ce995ea2012-06-27 02:13:101770
Paweł Hajdan, Jref2afd42015-01-07 15:59:521771 import os
1772 import json
1773 with open(os.path.join(
1774 change.RepositoryRoot(), 'testing', 'commit_queue', 'config.json')) as f:
1775 cq_config = json.load(f)
1776 cq_trybots = cq_config.get('trybots', {})
1777 builders = cq_trybots.get('launched', {})
1778 for master, master_config in cq_trybots.get('triggered', {}).iteritems():
1779 for triggered_bot in master_config:
1780 builders.get(master, {}).pop(triggered_bot, None)
[email protected]911753b2012-08-02 12:11:541781
Paweł Hajdan, Jr4026dbc2015-01-14 09:22:321782 # Explicitly iterate over copies of dicts since we mutate them.
1783 for master in builders.keys():
1784 for builder in builders[master].keys():
1785 # Do not trigger presubmit builders, since they're likely to fail
1786 # (e.g. OWNERS checks before finished code review), and we're
1787 # running local presubmit anyway.
1788 if 'presubmit' in builder:
1789 builders[master].pop(builder)
1790
[email protected]911753b2012-08-02 12:11:541791 # Match things like path/aura/file.cc and path/file_aura.cc.
[email protected]95c989162012-11-29 05:58:251792 # Same for chromeos.
joaodasilva718f87672014-08-30 09:25:491793 if any(re.search(r'[\\\/_](aura|chromeos)', f) for f in files):
Paweł Hajdan, Jref2afd42015-01-07 15:59:521794 tryserver_linux = builders.setdefault('tryserver.chromium.linux', {})
1795 tryserver_linux['linux_chromium_chromeos_asan_rel_ng'] = ['defaulttests']
[email protected]4ce995ea2012-06-27 02:13:101796
Paweł Hajdan, Jref2afd42015-01-07 15:59:521797 return builders