blob: 34f82308912dc3e680cde40ede206933e520149a [file] [log] [blame]
andrew@webrtc.org2442de12012-01-23 17:45:41 +00001# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
2#
3# Use of this source code is governed by a BSD-style license
4# that can be found in the LICENSE file in the root of the source
5# tree. An additional intellectual property rights grant can be found
6# in the file PATENTS. All contributing project authors may
7# be found in the AUTHORS file in the root of the source tree.
niklase@google.comda159d62011-05-30 11:51:34 +00008
kjellander7439f972016-12-05 22:47:46 -08009import json
kjellander@webrtc.orgaefe61a2014-12-08 13:00:30 +000010import os
kjellander@webrtc.org85759802013-10-22 16:47:40 +000011import re
kjellander@webrtc.org3bd41562014-09-01 11:06:37 +000012import sys
Mirko Bonadei4dc4e252017-09-19 13:49:16 +020013from collections import defaultdict
Oleh Prypin2f33a562017-10-04 20:17:54 +020014from contextlib import contextmanager
kjellander@webrtc.org85759802013-10-22 16:47:40 +000015
oprypin2aa463f2017-03-23 03:17:02 -070016# Files and directories that are *skipped* by cpplint in the presubmit script.
17CPPLINT_BLACKLIST = [
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020018 'api/video_codecs/video_decoder.h',
19 'common_types.cc',
20 'common_types.h',
21 'examples/objc',
Amit Hilbuchce7032b2019-01-22 16:19:35 -080022 'media/base/stream_params.h',
23 'media/base/video_common.h',
24 'media/sctp/sctp_transport.cc',
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020025 'modules/audio_coding',
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020026 'modules/audio_device',
27 'modules/audio_processing',
28 'modules/desktop_capture',
29 'modules/include/module_common_types.h',
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020030 'modules/utility',
31 'modules/video_capture',
Amit Hilbuchce7032b2019-01-22 16:19:35 -080032 'p2p/base/pseudo_tcp.cc',
33 'p2p/base/pseudo_tcp.h',
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020034 'rtc_base',
35 'sdk/android/src/jni',
36 'sdk/objc',
37 'system_wrappers',
38 'test',
Henrik Kjellander90fd7d82017-05-09 08:30:10 +020039 'tools_webrtc',
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020040 'voice_engine',
kjellander@webrtc.org0fcaf992015-11-26 15:24:52 +010041]
42
jbauchc4e3ead2016-02-19 00:25:55 -080043# These filters will always be removed, even if the caller specifies a filter
44# set, as they are problematic or broken in some way.
45#
46# Justifications for each filter:
47# - build/c++11 : Rvalue ref checks are unreliable (false positives),
48# include file and feature blacklists are
49# google3-specific.
kjellandere5a87a52016-04-27 02:32:12 -070050# - whitespace/operators: Same as above (doesn't seem sufficient to eliminate
51# all move-related errors).
jbauchc4e3ead2016-02-19 00:25:55 -080052BLACKLIST_LINT_FILTERS = [
53 '-build/c++11',
kjellandere5a87a52016-04-27 02:32:12 -070054 '-whitespace/operators',
jbauchc4e3ead2016-02-19 00:25:55 -080055]
56
kjellanderfd595232015-12-04 02:44:09 -080057# List of directories of "supported" native APIs. That means changes to headers
58# will be done in a compatible way following this scheme:
59# 1. Non-breaking changes are made.
60# 2. The old APIs as marked as deprecated (with comments).
61# 3. Deprecation is announced to discuss-webrtc@googlegroups.com and
62# webrtc-users@google.com (internal list).
63# 4. (later) The deprecated APIs are removed.
kjellander53047c92015-12-02 23:56:14 -080064NATIVE_API_DIRS = (
Karl Wibergef52d8b82017-10-25 13:20:03 +020065 'api', # All subdirectories of api/ are included as well.
Mirko Bonadeia4eeeff2018-01-11 13:16:52 +010066 'media/base',
67 'media/engine',
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020068 'modules/audio_device/include',
69 'pc',
kjellanderdd705472016-06-09 11:17:27 -070070)
Mirko Bonadei4dc4e252017-09-19 13:49:16 +020071
kjellanderdd705472016-06-09 11:17:27 -070072# These directories should not be used but are maintained only to avoid breaking
73# some legacy downstream code.
74LEGACY_API_DIRS = (
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020075 'common_audio/include',
76 'modules/audio_coding/include',
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020077 'modules/audio_processing/include',
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020078 'modules/congestion_controller/include',
79 'modules/include',
80 'modules/remote_bitrate_estimator/include',
81 'modules/rtp_rtcp/include',
82 'modules/rtp_rtcp/source',
83 'modules/utility/include',
84 'modules/video_coding/codecs/h264/include',
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020085 'modules/video_coding/codecs/vp8/include',
86 'modules/video_coding/codecs/vp9/include',
87 'modules/video_coding/include',
88 'rtc_base',
89 'system_wrappers/include',
kjellander53047c92015-12-02 23:56:14 -080090)
Mirko Bonadei4dc4e252017-09-19 13:49:16 +020091
Karl Wibergd4f01c12017-11-10 10:55:45 +010092# NOTE: The set of directories in API_DIRS should be the same as those
93# listed in the table in native-api.md.
kjellanderdd705472016-06-09 11:17:27 -070094API_DIRS = NATIVE_API_DIRS[:] + LEGACY_API_DIRS[:]
kjellander53047c92015-12-02 23:56:14 -080095
Mirko Bonadei4dc4e252017-09-19 13:49:16 +020096# TARGET_RE matches a GN target, and extracts the target name and the contents.
97TARGET_RE = re.compile(r'(?P<indent>\s*)\w+\("(?P<target_name>\w+)"\) {'
98 r'(?P<target_contents>.*?)'
99 r'(?P=indent)}',
100 re.MULTILINE | re.DOTALL)
101
102# SOURCES_RE matches a block of sources inside a GN target.
103SOURCES_RE = re.compile(r'sources \+?= \[(?P<sources>.*?)\]',
104 re.MULTILINE | re.DOTALL)
105
106# FILE_PATH_RE matchies a file path.
107FILE_PATH_RE = re.compile(r'"(?P<file_path>(\w|\/)+)(?P<extension>\.\w+)"')
108
kjellander53047c92015-12-02 23:56:14 -0800109
Mirko Bonadeid8665442018-09-04 12:17:27 +0200110def FindSrcDirPath(starting_dir):
111 """Returns the abs path to the src/ dir of the project."""
112 src_dir = starting_dir
113 while os.path.basename(src_dir) != 'src':
114 src_dir = os.path.normpath(os.path.join(src_dir, os.pardir))
115 return src_dir
116
117
Oleh Prypin2f33a562017-10-04 20:17:54 +0200118@contextmanager
119def _AddToPath(*paths):
120 original_sys_path = sys.path
121 sys.path.extend(paths)
122 try:
123 yield
124 finally:
125 # Restore sys.path to what it was before.
126 sys.path = original_sys_path
ehmaldonado4fb97462017-01-30 05:27:22 -0800127
128
charujain9893e252017-09-14 13:33:22 +0200129def VerifyNativeApiHeadersListIsValid(input_api, output_api):
kjellander53047c92015-12-02 23:56:14 -0800130 """Ensures the list of native API header directories is up to date."""
131 non_existing_paths = []
132 native_api_full_paths = [
133 input_api.os_path.join(input_api.PresubmitLocalPath(),
kjellanderdd705472016-06-09 11:17:27 -0700134 *path.split('/')) for path in API_DIRS]
kjellander53047c92015-12-02 23:56:14 -0800135 for path in native_api_full_paths:
136 if not os.path.isdir(path):
137 non_existing_paths.append(path)
138 if non_existing_paths:
139 return [output_api.PresubmitError(
140 'Directories to native API headers have changed which has made the '
141 'list in PRESUBMIT.py outdated.\nPlease update it to the current '
142 'location of our native APIs.',
143 non_existing_paths)]
144 return []
145
Artem Titove92675b2018-05-22 10:21:27 +0200146
kjellanderc88b5d52017-04-05 06:42:43 -0700147API_CHANGE_MSG = """
kwibergeb133022016-04-07 07:41:48 -0700148You seem to be changing native API header files. Please make sure that you:
oprypin375b9ac2017-02-13 04:13:23 -0800149 1. Make compatible changes that don't break existing clients. Usually
150 this is done by keeping the existing method signatures unchanged.
151 2. Mark the old stuff as deprecated (see RTC_DEPRECATED macro).
kwibergeb133022016-04-07 07:41:48 -0700152 3. Create a timeline and plan for when the deprecated stuff will be
153 removed. (The amount of time we give users to change their code
154 should be informed by how much work it is for them. If they just
155 need to replace one name with another or something equally
156 simple, 1-2 weeks might be good; if they need to do serious work,
157 up to 3 months may be called for.)
158 4. Update/inform existing downstream code owners to stop using the
159 deprecated stuff. (Send announcements to
160 discuss-webrtc@googlegroups.com and webrtc-users@google.com.)
161 5. Remove the deprecated stuff, once the agreed-upon amount of time
162 has passed.
163Related files:
164"""
kjellander53047c92015-12-02 23:56:14 -0800165
Artem Titove92675b2018-05-22 10:21:27 +0200166
charujain9893e252017-09-14 13:33:22 +0200167def CheckNativeApiHeaderChanges(input_api, output_api):
kjellander53047c92015-12-02 23:56:14 -0800168 """Checks to remind proper changing of native APIs."""
169 files = []
Karl Wiberg6bfac032017-10-27 15:14:20 +0200170 source_file_filter = lambda x: input_api.FilterSourceFile(
171 x, white_list=[r'.+\.(gn|gni|h)$'])
172 for f in input_api.AffectedSourceFiles(source_file_filter):
173 for path in API_DIRS:
174 dn = os.path.dirname(f.LocalPath())
175 if path == 'api':
176 # Special case: Subdirectories included.
177 if dn == 'api' or dn.startswith('api/'):
Niels Möller1d201852019-06-26 12:58:27 +0200178 files.append(f.LocalPath())
Karl Wiberg6bfac032017-10-27 15:14:20 +0200179 else:
180 # Normal case: Subdirectories not included.
181 if dn == path:
Niels Möller1d201852019-06-26 12:58:27 +0200182 files.append(f.LocalPath())
kjellander53047c92015-12-02 23:56:14 -0800183
184 if files:
kjellanderc88b5d52017-04-05 06:42:43 -0700185 return [output_api.PresubmitNotifyResult(API_CHANGE_MSG, files)]
kjellander53047c92015-12-02 23:56:14 -0800186 return []
187
kjellander@webrtc.org0fcaf992015-11-26 15:24:52 +0100188
Artem Titova04d1402018-05-11 11:23:00 +0200189def CheckNoIOStreamInHeaders(input_api, output_api,
190 source_file_filter):
kjellander@webrtc.org51198f12012-02-21 17:53:46 +0000191 """Checks to make sure no .h files include <iostream>."""
192 files = []
193 pattern = input_api.re.compile(r'^#include\s*<iostream>',
194 input_api.re.MULTILINE)
Artem Titova04d1402018-05-11 11:23:00 +0200195 file_filter = lambda x: (input_api.FilterSourceFile(x)
196 and source_file_filter(x))
197 for f in input_api.AffectedSourceFiles(file_filter):
kjellander@webrtc.org51198f12012-02-21 17:53:46 +0000198 if not f.LocalPath().endswith('.h'):
199 continue
200 contents = input_api.ReadFile(f)
201 if pattern.search(contents):
202 files.append(f)
203
204 if len(files):
Henrik Kjellander57e5fd22015-05-25 12:55:39 +0200205 return [output_api.PresubmitError(
kjellander@webrtc.org51198f12012-02-21 17:53:46 +0000206 'Do not #include <iostream> in header files, since it inserts static ' +
207 'initialization into every file including the header. Instead, ' +
208 '#include <ostream>. See http://crbug.com/94794',
Henrik Kjellander57e5fd22015-05-25 12:55:39 +0200209 files)]
kjellander@webrtc.org51198f12012-02-21 17:53:46 +0000210 return []
211
kjellander@webrtc.orge4158642014-08-06 09:11:18 +0000212
Artem Titova04d1402018-05-11 11:23:00 +0200213def CheckNoPragmaOnce(input_api, output_api,
214 source_file_filter):
kjellander6aeef742017-02-20 01:13:18 -0800215 """Make sure that banned functions are not used."""
216 files = []
217 pattern = input_api.re.compile(r'^#pragma\s+once',
218 input_api.re.MULTILINE)
Artem Titova04d1402018-05-11 11:23:00 +0200219 file_filter = lambda x: (input_api.FilterSourceFile(x)
220 and source_file_filter(x))
221 for f in input_api.AffectedSourceFiles(file_filter):
kjellander6aeef742017-02-20 01:13:18 -0800222 if not f.LocalPath().endswith('.h'):
223 continue
224 contents = input_api.ReadFile(f)
225 if pattern.search(contents):
226 files.append(f)
227
228 if files:
229 return [output_api.PresubmitError(
230 'Do not use #pragma once in header files.\n'
231 'See http://www.chromium.org/developers/coding-style#TOC-File-headers',
232 files)]
233 return []
234
235
Artem Titova04d1402018-05-11 11:23:00 +0200236def CheckNoFRIEND_TEST(input_api, output_api, # pylint: disable=invalid-name
237 source_file_filter):
kjellander@webrtc.org51198f12012-02-21 17:53:46 +0000238 """Make sure that gtest's FRIEND_TEST() macro is not used, the
239 FRIEND_TEST_ALL_PREFIXES() macro from testsupport/gtest_prod_util.h should be
240 used instead since that allows for FLAKY_, FAILS_ and DISABLED_ prefixes."""
241 problems = []
242
Artem Titova04d1402018-05-11 11:23:00 +0200243 file_filter = lambda f: (f.LocalPath().endswith(('.cc', '.h'))
244 and source_file_filter(f))
kjellander@webrtc.org51198f12012-02-21 17:53:46 +0000245 for f in input_api.AffectedFiles(file_filter=file_filter):
246 for line_num, line in f.ChangedContents():
247 if 'FRIEND_TEST(' in line:
248 problems.append(' %s:%d' % (f.LocalPath(), line_num))
249
250 if not problems:
251 return []
252 return [output_api.PresubmitPromptWarning('WebRTC\'s code should not use '
253 'gtest\'s FRIEND_TEST() macro. Include testsupport/gtest_prod_util.h and '
254 'use FRIEND_TEST_ALL_PREFIXES() instead.\n' + '\n'.join(problems))]
255
kjellander@webrtc.orge4158642014-08-06 09:11:18 +0000256
charujain9893e252017-09-14 13:33:22 +0200257def IsLintBlacklisted(blacklist_paths, file_path):
oprypin2aa463f2017-03-23 03:17:02 -0700258 """ Checks if a file is blacklisted for lint check."""
259 for path in blacklist_paths:
260 if file_path == path or os.path.dirname(file_path).startswith(path):
kjellander@webrtc.org0fcaf992015-11-26 15:24:52 +0100261 return True
262 return False
263
264
charujain9893e252017-09-14 13:33:22 +0200265def CheckApprovedFilesLintClean(input_api, output_api,
Artem Titova04d1402018-05-11 11:23:00 +0200266 source_file_filter=None):
oprypin2aa463f2017-03-23 03:17:02 -0700267 """Checks that all new or non-blacklisted .cc and .h files pass cpplint.py.
charujain9893e252017-09-14 13:33:22 +0200268 This check is based on CheckChangeLintsClean in
kjellander@webrtc.org51198f12012-02-21 17:53:46 +0000269 depot_tools/presubmit_canned_checks.py but has less filters and only checks
270 added files."""
271 result = []
272
273 # Initialize cpplint.
274 import cpplint
275 # Access to a protected member _XX of a client class
276 # pylint: disable=W0212
277 cpplint._cpplint_state.ResetErrorCounts()
278
jbauchc4e3ead2016-02-19 00:25:55 -0800279 lint_filters = cpplint._Filters()
280 lint_filters.extend(BLACKLIST_LINT_FILTERS)
281 cpplint._SetFilters(','.join(lint_filters))
282
oprypin2aa463f2017-03-23 03:17:02 -0700283 # Create a platform independent blacklist for cpplint.
284 blacklist_paths = [input_api.os_path.join(*path.split('/'))
285 for path in CPPLINT_BLACKLIST]
kjellander@webrtc.org0fcaf992015-11-26 15:24:52 +0100286
kjellander@webrtc.org51198f12012-02-21 17:53:46 +0000287 # Use the strictest verbosity level for cpplint.py (level 1) which is the
oprypin2aa463f2017-03-23 03:17:02 -0700288 # default when running cpplint.py from command line. To make it possible to
289 # work with not-yet-converted code, we're only applying it to new (or
290 # moved/renamed) files and files not listed in CPPLINT_BLACKLIST.
kjellander@webrtc.org51198f12012-02-21 17:53:46 +0000291 verbosity_level = 1
292 files = []
293 for f in input_api.AffectedSourceFiles(source_file_filter):
Henrik Kjellander57e5fd22015-05-25 12:55:39 +0200294 # Note that moved/renamed files also count as added.
charujain9893e252017-09-14 13:33:22 +0200295 if f.Action() == 'A' or not IsLintBlacklisted(blacklist_paths,
Artem Titove92675b2018-05-22 10:21:27 +0200296 f.LocalPath()):
kjellander@webrtc.org51198f12012-02-21 17:53:46 +0000297 files.append(f.AbsoluteLocalPath())
mflodman@webrtc.org2a452092012-07-01 05:55:23 +0000298
kjellander@webrtc.org51198f12012-02-21 17:53:46 +0000299 for file_name in files:
300 cpplint.ProcessFile(file_name, verbosity_level)
301
302 if cpplint._cpplint_state.error_count > 0:
303 if input_api.is_committing:
oprypin8e58d652017-03-21 07:52:41 -0700304 res_type = output_api.PresubmitError
kjellander@webrtc.org51198f12012-02-21 17:53:46 +0000305 else:
306 res_type = output_api.PresubmitPromptWarning
307 result = [res_type('Changelist failed cpplint.py check.')]
308
309 return result
310
Artem Titove92675b2018-05-22 10:21:27 +0200311
charujain9893e252017-09-14 13:33:22 +0200312def CheckNoSourcesAbove(input_api, gn_files, output_api):
ehmaldonado5b1ba082016-09-02 05:51:08 -0700313 # Disallow referencing source files with paths above the GN file location.
314 source_pattern = input_api.re.compile(r' +sources \+?= \[(.*?)\]',
315 re.MULTILINE | re.DOTALL)
316 file_pattern = input_api.re.compile(r'"((\.\./.*?)|(//.*?))"')
317 violating_gn_files = set()
318 violating_source_entries = []
319 for gn_file in gn_files:
320 contents = input_api.ReadFile(gn_file)
321 for source_block_match in source_pattern.finditer(contents):
322 # Find all source list entries starting with ../ in the source block
323 # (exclude overrides entries).
324 for file_list_match in file_pattern.finditer(source_block_match.group(1)):
325 source_file = file_list_match.group(1)
326 if 'overrides/' not in source_file:
327 violating_source_entries.append(source_file)
328 violating_gn_files.add(gn_file)
329 if violating_gn_files:
330 return [output_api.PresubmitError(
331 'Referencing source files above the directory of the GN file is not '
Henrik Kjellanderb4af3d62016-11-16 20:11:29 +0100332 'allowed. Please introduce new GN targets in the proper location '
333 'instead.\n'
ehmaldonado5b1ba082016-09-02 05:51:08 -0700334 'Invalid source entries:\n'
335 '%s\n'
336 'Violating GN files:' % '\n'.join(violating_source_entries),
337 items=violating_gn_files)]
338 return []
339
Artem Titove92675b2018-05-22 10:21:27 +0200340
Mirko Bonadei4dc4e252017-09-19 13:49:16 +0200341def CheckNoMixingSources(input_api, gn_files, output_api):
342 """Disallow mixing C, C++ and Obj-C/Obj-C++ in the same target.
343
344 See bugs.webrtc.org/7743 for more context.
345 """
Artem Titove92675b2018-05-22 10:21:27 +0200346
Mirko Bonadei4dc4e252017-09-19 13:49:16 +0200347 def _MoreThanOneSourceUsed(*sources_lists):
348 sources_used = 0
349 for source_list in sources_lists:
350 if len(source_list):
351 sources_used += 1
352 return sources_used > 1
353
354 errors = defaultdict(lambda: [])
kjellander7439f972016-12-05 22:47:46 -0800355 for gn_file in gn_files:
Mirko Bonadei4dc4e252017-09-19 13:49:16 +0200356 gn_file_content = input_api.ReadFile(gn_file)
357 for target_match in TARGET_RE.finditer(gn_file_content):
358 # list_of_sources is a list of tuples of the form
359 # (c_files, cc_files, objc_files) that keeps track of all the sources
360 # defined in a target. A GN target can have more that on definition of
361 # sources (since it supports if/else statements).
362 # E.g.:
363 # rtc_static_library("foo") {
364 # if (is_win) {
365 # sources = [ "foo.cc" ]
366 # } else {
367 # sources = [ "foo.mm" ]
368 # }
369 # }
370 # This is allowed and the presubmit check should support this case.
371 list_of_sources = []
kjellander7439f972016-12-05 22:47:46 -0800372 c_files = []
373 cc_files = []
Mirko Bonadei4dc4e252017-09-19 13:49:16 +0200374 objc_files = []
375 target_name = target_match.group('target_name')
376 target_contents = target_match.group('target_contents')
377 for sources_match in SOURCES_RE.finditer(target_contents):
378 if '+=' not in sources_match.group(0):
379 if c_files or cc_files or objc_files:
380 list_of_sources.append((c_files, cc_files, objc_files))
381 c_files = []
382 cc_files = []
383 objc_files = []
384 for file_match in FILE_PATH_RE.finditer(sources_match.group(1)):
385 file_path = file_match.group('file_path')
386 extension = file_match.group('extension')
387 if extension == '.c':
388 c_files.append(file_path + extension)
389 if extension == '.cc':
390 cc_files.append(file_path + extension)
391 if extension in ['.m', '.mm']:
392 objc_files.append(file_path + extension)
393 list_of_sources.append((c_files, cc_files, objc_files))
394 for c_files_list, cc_files_list, objc_files_list in list_of_sources:
395 if _MoreThanOneSourceUsed(c_files_list, cc_files_list, objc_files_list):
396 all_sources = sorted(c_files_list + cc_files_list + objc_files_list)
397 errors[gn_file.LocalPath()].append((target_name, all_sources))
398 if errors:
kjellander7439f972016-12-05 22:47:46 -0800399 return [output_api.PresubmitError(
Mirko Bonadei4dc4e252017-09-19 13:49:16 +0200400 'GN targets cannot mix .c, .cc and .m (or .mm) source files.\n'
401 'Please create a separate target for each collection of sources.\n'
kjellander7439f972016-12-05 22:47:46 -0800402 'Mixed sources: \n'
403 '%s\n'
Mirko Bonadei4dc4e252017-09-19 13:49:16 +0200404 'Violating GN files:\n%s\n' % (json.dumps(errors, indent=2),
405 '\n'.join(errors.keys())))]
kjellander7439f972016-12-05 22:47:46 -0800406 return []
407
Artem Titove92675b2018-05-22 10:21:27 +0200408
charujain9893e252017-09-14 13:33:22 +0200409def CheckNoPackageBoundaryViolations(input_api, gn_files, output_api):
ehmaldonado4fb97462017-01-30 05:27:22 -0800410 cwd = input_api.PresubmitLocalPath()
Oleh Prypin2f33a562017-10-04 20:17:54 +0200411 with _AddToPath(input_api.os_path.join(
412 cwd, 'tools_webrtc', 'presubmit_checks_lib')):
413 from check_package_boundaries import CheckPackageBoundaries
414 build_files = [os.path.join(cwd, gn_file.LocalPath()) for gn_file in gn_files]
415 errors = CheckPackageBoundaries(cwd, build_files)[:5]
416 if errors:
ehmaldonado4fb97462017-01-30 05:27:22 -0800417 return [output_api.PresubmitError(
Oleh Prypin2f33a562017-10-04 20:17:54 +0200418 'There are package boundary violations in the following GN files:',
419 long_text='\n\n'.join(str(err) for err in errors))]
ehmaldonado4fb97462017-01-30 05:27:22 -0800420 return []
421
Mirko Bonadeia51bbd82018-03-08 16:15:45 +0100422
Mirko Bonadeif0e0d752018-07-04 08:48:18 +0200423def _ReportFileAndLine(filename, line_num):
Mirko Bonadeia51bbd82018-03-08 16:15:45 +0100424 """Default error formatter for _FindNewViolationsOfRule."""
425 return '%s (line %s)' % (filename, line_num)
426
427
Mirko Bonadeif0e0d752018-07-04 08:48:18 +0200428def CheckNoWarningSuppressionFlagsAreAdded(gn_files, input_api, output_api,
429 error_formatter=_ReportFileAndLine):
430 """Make sure that warning suppression flags are not added wihtout a reason."""
431 msg = ('Usage of //build/config/clang:extra_warnings is discouraged '
432 'in WebRTC.\n'
433 'If you are not adding this code (e.g. you are just moving '
434 'existing code) or you want to add an exception,\n'
435 'you can add a comment on the line that causes the problem:\n\n'
436 '"-Wno-odr" # no-presubmit-check TODO(bugs.webrtc.org/BUG_ID)\n'
437 '\n'
438 'Affected files:\n')
439 errors = [] # 2-element tuples with (file, line number)
440 clang_warn_re = input_api.re.compile(r'//build/config/clang:extra_warnings')
441 no_presubmit_re = input_api.re.compile(
442 r'# no-presubmit-check TODO\(bugs\.webrtc\.org/\d+\)')
443 for f in gn_files:
444 for line_num, line in f.ChangedContents():
445 if clang_warn_re.search(line) and not no_presubmit_re.search(line):
446 errors.append(error_formatter(f.LocalPath(), line_num))
447 if errors:
448 return [output_api.PresubmitError(msg, errors)]
449 return []
450
Mirko Bonadei9ce800d2019-02-05 16:48:13 +0100451
452def CheckNoTestCaseUsageIsAdded(input_api, output_api, source_file_filter,
453 error_formatter=_ReportFileAndLine):
454 error_msg = ('Usage of legacy GoogleTest API detected!\nPlease use the '
455 'new API: https://github.com/google/googletest/blob/master/'
456 'googletest/docs/primer.md#beware-of-the-nomenclature.\n'
457 'Affected files:\n')
458 errors = [] # 2-element tuples with (file, line number)
459 test_case_re = input_api.re.compile(r'TEST_CASE')
460 file_filter = lambda f: (source_file_filter(f)
461 and f.LocalPath().endswith('.cc'))
462 for f in input_api.AffectedSourceFiles(file_filter):
463 for line_num, line in f.ChangedContents():
464 if test_case_re.search(line):
465 errors.append(error_formatter(f.LocalPath(), line_num))
466 if errors:
467 return [output_api.PresubmitError(error_msg, errors)]
468 return []
469
470
Mirko Bonadeia51bbd82018-03-08 16:15:45 +0100471def CheckNoStreamUsageIsAdded(input_api, output_api,
Artem Titov739351d2018-05-11 12:21:36 +0200472 source_file_filter,
Mirko Bonadeif0e0d752018-07-04 08:48:18 +0200473 error_formatter=_ReportFileAndLine):
Mirko Bonadeia51bbd82018-03-08 16:15:45 +0100474 """Make sure that no more dependencies on stringstream are added."""
475 error_msg = ('Usage of <sstream>, <istream> and <ostream> in WebRTC is '
476 'deprecated.\n'
477 'This includes the following types:\n'
478 'std::istringstream, std::ostringstream, std::wistringstream, '
479 'std::wostringstream,\n'
480 'std::wstringstream, std::ostream, std::wostream, std::istream,'
481 'std::wistream,\n'
482 'std::iostream, std::wiostream.\n'
483 'If you are not adding this code (e.g. you are just moving '
484 'existing code),\n'
485 'you can add a comment on the line that causes the problem:\n\n'
486 '#include <sstream> // no-presubmit-check TODO(webrtc:8982)\n'
487 'std::ostream& F() { // no-presubmit-check TODO(webrtc:8982)\n'
488 '\n'
Karl Wibergebd01e82018-03-14 15:08:39 +0100489 'If you are adding new code, consider using '
490 'rtc::SimpleStringBuilder\n'
491 '(in rtc_base/strings/string_builder.h).\n'
Mirko Bonadeia51bbd82018-03-08 16:15:45 +0100492 'Affected files:\n')
493 errors = [] # 2-element tuples with (file, line number)
494 include_re = input_api.re.compile(r'#include <(i|o|s)stream>')
495 usage_re = input_api.re.compile(r'std::(w|i|o|io|wi|wo|wio)(string)*stream')
496 no_presubmit_re = input_api.re.compile(
Jonas Olsson74395342018-04-03 12:22:07 +0200497 r'// no-presubmit-check TODO\(webrtc:8982\)')
Artem Titova04d1402018-05-11 11:23:00 +0200498 file_filter = lambda x: (input_api.FilterSourceFile(x)
499 and source_file_filter(x))
Mirko Bonadei571791a2019-05-07 14:08:05 +0200500
501 def _IsException(file_path):
502 is_test = any(file_path.endswith(x) for x in ['_test.cc', '_tests.cc',
503 '_unittest.cc',
504 '_unittests.cc'])
505 return file_path.startswith('examples') or is_test
506
Artem Titova04d1402018-05-11 11:23:00 +0200507 for f in input_api.AffectedSourceFiles(file_filter):
Mirko Bonadei571791a2019-05-07 14:08:05 +0200508 # Usage of stringstream is allowed under examples/ and in tests.
509 if f.LocalPath() == 'PRESUBMIT.py' or _IsException(f.LocalPath()):
Mirko Bonadeid2c83322018-03-19 10:31:47 +0000510 continue
511 for line_num, line in f.ChangedContents():
512 if ((include_re.search(line) or usage_re.search(line))
513 and not no_presubmit_re.search(line)):
514 errors.append(error_formatter(f.LocalPath(), line_num))
Mirko Bonadeia51bbd82018-03-08 16:15:45 +0100515 if errors:
516 return [output_api.PresubmitError(error_msg, errors)]
517 return []
518
Artem Titove92675b2018-05-22 10:21:27 +0200519
Mirko Bonadeia05d47e2018-05-09 11:03:38 +0200520def CheckPublicDepsIsNotUsed(gn_files, input_api, output_api):
521 """Checks that public_deps is not used without a good reason."""
Mirko Bonadei5c1ad592017-12-12 11:52:27 +0100522 result = []
Mirko Bonadeia05d47e2018-05-09 11:03:38 +0200523 no_presubmit_check_re = input_api.re.compile(
524 r'# no-presubmit-check TODO\(webrtc:8603\)')
525 error_msg = ('public_deps is not recommended in WebRTC BUILD.gn files '
526 'because it doesn\'t map well to downstream build systems.\n'
527 'Used in: %s (line %d).\n'
528 'If you are not adding this code (e.g. you are just moving '
529 'existing code) or you have a good reason, you can add a '
530 'comment on the line that causes the problem:\n\n'
531 'public_deps = [ # no-presubmit-check TODO(webrtc:8603)\n')
Mirko Bonadei5c1ad592017-12-12 11:52:27 +0100532 for affected_file in gn_files:
533 for (line_number, affected_line) in affected_file.ChangedContents():
Mirko Bonadeia05d47e2018-05-09 11:03:38 +0200534 if ('public_deps' in affected_line
535 and not no_presubmit_check_re.search(affected_line)):
Mirko Bonadei5c1ad592017-12-12 11:52:27 +0100536 result.append(
537 output_api.PresubmitError(error_msg % (affected_file.LocalPath(),
538 line_number)))
539 return result
540
Artem Titove92675b2018-05-22 10:21:27 +0200541
Mirko Bonadei05691dd2019-10-22 07:34:24 -0700542def CheckCheckIncludesIsNotUsed(gn_files, input_api, output_api):
Patrik Höglund6f491062018-01-11 12:04:23 +0100543 result = []
544 error_msg = ('check_includes overrides are not allowed since it can cause '
545 'incorrect dependencies to form. It effectively means that your '
546 'module can include any .h file without depending on its '
547 'corresponding target. There are some exceptional cases when '
Mirko Bonadei05691dd2019-10-22 07:34:24 -0700548 'this is allowed: if so, get approval from a .gn owner in the '
Patrik Höglund6f491062018-01-11 12:04:23 +0100549 'root OWNERS file.\n'
550 'Used in: %s (line %d).')
Mirko Bonadei05691dd2019-10-22 07:34:24 -0700551 no_presubmit_re = input_api.re.compile(
552 r'# no-presubmit-check TODO\(bugs\.webrtc\.org/\d+\)')
Patrik Höglund6f491062018-01-11 12:04:23 +0100553 for affected_file in gn_files:
554 for (line_number, affected_line) in affected_file.ChangedContents():
Mirko Bonadei05691dd2019-10-22 07:34:24 -0700555 if ('check_includes' in affected_line
556 and not no_presubmit_re.search(affected_line)):
Patrik Höglund6f491062018-01-11 12:04:23 +0100557 result.append(
558 output_api.PresubmitError(error_msg % (affected_file.LocalPath(),
559 line_number)))
560 return result
561
Artem Titove92675b2018-05-22 10:21:27 +0200562
Mirko Bonadeif0e0d752018-07-04 08:48:18 +0200563def CheckGnChanges(input_api, output_api):
Artem Titova04d1402018-05-11 11:23:00 +0200564 file_filter = lambda x: (input_api.FilterSourceFile(
Oleh Prypinafe01652017-10-04 15:56:08 +0200565 x, white_list=(r'.+\.(gn|gni)$',),
Mirko Bonadeif0e0d752018-07-04 08:48:18 +0200566 black_list=(r'.*/presubmit_checks_lib/testdata/.*',)))
ehmaldonado5b1ba082016-09-02 05:51:08 -0700567
568 gn_files = []
Artem Titova04d1402018-05-11 11:23:00 +0200569 for f in input_api.AffectedSourceFiles(file_filter):
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200570 gn_files.append(f)
ehmaldonado5b1ba082016-09-02 05:51:08 -0700571
572 result = []
573 if gn_files:
charujain9893e252017-09-14 13:33:22 +0200574 result.extend(CheckNoSourcesAbove(input_api, gn_files, output_api))
Mirko Bonadei4dc4e252017-09-19 13:49:16 +0200575 result.extend(CheckNoMixingSources(input_api, gn_files, output_api))
576 result.extend(CheckNoPackageBoundaryViolations(input_api, gn_files,
577 output_api))
Mirko Bonadeia05d47e2018-05-09 11:03:38 +0200578 result.extend(CheckPublicDepsIsNotUsed(gn_files, input_api, output_api))
Mirko Bonadei05691dd2019-10-22 07:34:24 -0700579 result.extend(CheckCheckIncludesIsNotUsed(gn_files, input_api, output_api))
Mirko Bonadeif0e0d752018-07-04 08:48:18 +0200580 result.extend(CheckNoWarningSuppressionFlagsAreAdded(gn_files, input_api,
581 output_api))
ehmaldonado5b1ba082016-09-02 05:51:08 -0700582 return result
583
Artem Titove92675b2018-05-22 10:21:27 +0200584
Oleh Prypin920b6532017-10-05 11:28:51 +0200585def CheckGnGen(input_api, output_api):
586 """Runs `gn gen --check` with default args to detect mismatches between
587 #includes and dependencies in the BUILD.gn files, as well as general build
588 errors.
589 """
590 with _AddToPath(input_api.os_path.join(
591 input_api.PresubmitLocalPath(), 'tools_webrtc', 'presubmit_checks_lib')):
Yves Gerey546ee612019-02-26 17:04:16 +0100592 from build_helpers import RunGnCheck
Mirko Bonadeid8665442018-09-04 12:17:27 +0200593 errors = RunGnCheck(FindSrcDirPath(input_api.PresubmitLocalPath()))[:5]
Oleh Prypin920b6532017-10-05 11:28:51 +0200594 if errors:
595 return [output_api.PresubmitPromptWarning(
596 'Some #includes do not match the build dependency graph. Please run:\n'
597 ' gn gen --check <out_dir>',
598 long_text='\n\n'.join(errors))]
599 return []
600
Artem Titove92675b2018-05-22 10:21:27 +0200601
Artem Titova04d1402018-05-11 11:23:00 +0200602def CheckUnwantedDependencies(input_api, output_api, source_file_filter):
kjellander@webrtc.org3bd41562014-09-01 11:06:37 +0000603 """Runs checkdeps on #include statements added in this
604 change. Breaking - rules is an error, breaking ! rules is a
605 warning.
606 """
607 # Copied from Chromium's src/PRESUBMIT.py.
608
609 # We need to wait until we have an input_api object and use this
610 # roundabout construct to import checkdeps because this file is
611 # eval-ed and thus doesn't have __file__.
Mirko Bonadeid8665442018-09-04 12:17:27 +0200612 src_path = FindSrcDirPath(input_api.PresubmitLocalPath())
613 checkdeps_path = input_api.os_path.join(src_path, 'buildtools', 'checkdeps')
Oleh Prypin2f33a562017-10-04 20:17:54 +0200614 if not os.path.exists(checkdeps_path):
615 return [output_api.PresubmitError(
616 'Cannot find checkdeps at %s\nHave you run "gclient sync" to '
617 'download all the DEPS entries?' % checkdeps_path)]
618 with _AddToPath(checkdeps_path):
kjellander@webrtc.org3bd41562014-09-01 11:06:37 +0000619 import checkdeps
620 from cpp_checker import CppChecker
621 from rules import Rule
kjellander@webrtc.org3bd41562014-09-01 11:06:37 +0000622
623 added_includes = []
Artem Titova04d1402018-05-11 11:23:00 +0200624 for f in input_api.AffectedFiles(file_filter=source_file_filter):
kjellander@webrtc.org3bd41562014-09-01 11:06:37 +0000625 if not CppChecker.IsCppFile(f.LocalPath()):
626 continue
627
Henrik Kjellander57e5fd22015-05-25 12:55:39 +0200628 changed_lines = [line for _, line in f.ChangedContents()]
kjellander@webrtc.org3bd41562014-09-01 11:06:37 +0000629 added_includes.append([f.LocalPath(), changed_lines])
630
631 deps_checker = checkdeps.DepsChecker(input_api.PresubmitLocalPath())
632
633 error_descriptions = []
634 warning_descriptions = []
635 for path, rule_type, rule_description in deps_checker.CheckAddedCppIncludes(
636 added_includes):
637 description_with_path = '%s\n %s' % (path, rule_description)
638 if rule_type == Rule.DISALLOW:
639 error_descriptions.append(description_with_path)
640 else:
641 warning_descriptions.append(description_with_path)
642
643 results = []
644 if error_descriptions:
645 results.append(output_api.PresubmitError(
kjellandera7066a32017-03-23 03:47:05 -0700646 'You added one or more #includes that violate checkdeps rules.\n'
647 'Check that the DEPS files in these locations contain valid rules.\n'
648 'See https://cs.chromium.org/chromium/src/buildtools/checkdeps/ for '
649 'more details about checkdeps.',
kjellander@webrtc.org3bd41562014-09-01 11:06:37 +0000650 error_descriptions))
651 if warning_descriptions:
652 results.append(output_api.PresubmitPromptOrNotify(
653 'You added one or more #includes of files that are temporarily\n'
654 'allowed but being removed. Can you avoid introducing the\n'
kjellandera7066a32017-03-23 03:47:05 -0700655 '#include? See relevant DEPS file(s) for details and contacts.\n'
656 'See https://cs.chromium.org/chromium/src/buildtools/checkdeps/ for '
657 'more details about checkdeps.',
kjellander@webrtc.org3bd41562014-09-01 11:06:37 +0000658 warning_descriptions))
659 return results
660
Artem Titove92675b2018-05-22 10:21:27 +0200661
charujain9893e252017-09-14 13:33:22 +0200662def CheckCommitMessageBugEntry(input_api, output_api):
663 """Check that bug entries are well-formed in commit message."""
664 bogus_bug_msg = (
Mirko Bonadei61880182017-10-12 15:12:35 +0200665 'Bogus Bug entry: %s. Please specify the issue tracker prefix and the '
charujain9893e252017-09-14 13:33:22 +0200666 'issue number, separated by a colon, e.g. webrtc:123 or chromium:12345.')
667 results = []
Mirko Bonadei61880182017-10-12 15:12:35 +0200668 for bug in input_api.change.BugsFromDescription():
charujain9893e252017-09-14 13:33:22 +0200669 bug = bug.strip()
670 if bug.lower() == 'none':
671 continue
charujain81a58c72017-09-25 13:25:45 +0200672 if 'b/' not in bug and ':' not in bug:
charujain9893e252017-09-14 13:33:22 +0200673 try:
674 if int(bug) > 100000:
675 # Rough indicator for current chromium bugs.
676 prefix_guess = 'chromium'
677 else:
678 prefix_guess = 'webrtc'
Mirko Bonadei61880182017-10-12 15:12:35 +0200679 results.append('Bug entry requires issue tracker prefix, e.g. %s:%s' %
charujain9893e252017-09-14 13:33:22 +0200680 (prefix_guess, bug))
681 except ValueError:
682 results.append(bogus_bug_msg % bug)
charujain81a58c72017-09-25 13:25:45 +0200683 elif not (re.match(r'\w+:\d+', bug) or re.match(r'b/\d+', bug)):
charujain9893e252017-09-14 13:33:22 +0200684 results.append(bogus_bug_msg % bug)
685 return [output_api.PresubmitError(r) for r in results]
686
Artem Titove92675b2018-05-22 10:21:27 +0200687
charujain9893e252017-09-14 13:33:22 +0200688def CheckChangeHasBugField(input_api, output_api):
Mirko Bonadei61880182017-10-12 15:12:35 +0200689 """Requires that the changelist is associated with a bug.
kjellanderd1e26a92016-09-19 08:11:16 -0700690
691 This check is stricter than the one in depot_tools/presubmit_canned_checks.py
Mirko Bonadei61880182017-10-12 15:12:35 +0200692 since it fails the presubmit if the bug field is missing or doesn't contain
kjellanderd1e26a92016-09-19 08:11:16 -0700693 a bug reference.
Mirko Bonadei61880182017-10-12 15:12:35 +0200694
695 This supports both 'BUG=' and 'Bug:' since we are in the process of migrating
696 to Gerrit and it encourages the usage of 'Bug:'.
kjellanderd1e26a92016-09-19 08:11:16 -0700697 """
Mirko Bonadei61880182017-10-12 15:12:35 +0200698 if input_api.change.BugsFromDescription():
kjellanderd1e26a92016-09-19 08:11:16 -0700699 return []
700 else:
701 return [output_api.PresubmitError(
Mirko Bonadei61880182017-10-12 15:12:35 +0200702 'The "Bug: [bug number]" footer is mandatory. Please create a bug and '
kjellanderd1e26a92016-09-19 08:11:16 -0700703 'reference it using either of:\n'
Mirko Bonadei61880182017-10-12 15:12:35 +0200704 ' * https://bugs.webrtc.org - reference it using Bug: webrtc:XXXX\n'
705 ' * https://crbug.com - reference it using Bug: chromium:XXXXXX')]
kjellander@webrtc.orge4158642014-08-06 09:11:18 +0000706
Artem Titove92675b2018-05-22 10:21:27 +0200707
Artem Titova04d1402018-05-11 11:23:00 +0200708def CheckJSONParseErrors(input_api, output_api, source_file_filter):
kjellander569cf942016-02-11 05:02:59 -0800709 """Check that JSON files do not contain syntax errors."""
710
711 def FilterFile(affected_file):
Artem Titova04d1402018-05-11 11:23:00 +0200712 return (input_api.os_path.splitext(affected_file.LocalPath())[1] == '.json'
713 and source_file_filter(affected_file))
kjellander569cf942016-02-11 05:02:59 -0800714
715 def GetJSONParseError(input_api, filename):
716 try:
717 contents = input_api.ReadFile(filename)
718 input_api.json.loads(contents)
719 except ValueError as e:
720 return e
721 return None
722
723 results = []
724 for affected_file in input_api.AffectedFiles(
725 file_filter=FilterFile, include_deletes=False):
726 parse_error = GetJSONParseError(input_api,
727 affected_file.AbsoluteLocalPath())
728 if parse_error:
729 results.append(output_api.PresubmitError('%s could not be parsed: %s' %
Artem Titove92675b2018-05-22 10:21:27 +0200730 (affected_file.LocalPath(),
731 parse_error)))
kjellander569cf942016-02-11 05:02:59 -0800732 return results
733
734
charujain9893e252017-09-14 13:33:22 +0200735def RunPythonTests(input_api, output_api):
kjellanderc88b5d52017-04-05 06:42:43 -0700736 def Join(*args):
Henrik Kjellander8d3ad822015-05-26 19:52:05 +0200737 return input_api.os_path.join(input_api.PresubmitLocalPath(), *args)
738
739 test_directories = [
Edward Lemur6d01f6d2017-09-14 17:02:01 +0200740 input_api.PresubmitLocalPath(),
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200741 Join('rtc_tools', 'py_event_log_analyzer'),
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200742 Join('audio', 'test', 'unittests'),
ehmaldonado4fb97462017-01-30 05:27:22 -0800743 ] + [
Henrik Kjellander90fd7d82017-05-09 08:30:10 +0200744 root for root, _, files in os.walk(Join('tools_webrtc'))
ehmaldonado4fb97462017-01-30 05:27:22 -0800745 if any(f.endswith('_test.py') for f in files)
Henrik Kjellander8d3ad822015-05-26 19:52:05 +0200746 ]
747
748 tests = []
749 for directory in test_directories:
750 tests.extend(
751 input_api.canned_checks.GetUnitTestsInDirectory(
752 input_api,
753 output_api,
754 directory,
755 whitelist=[r'.+_test\.py$']))
756 return input_api.RunTests(tests, parallel=True)
757
758
Artem Titova04d1402018-05-11 11:23:00 +0200759def CheckUsageOfGoogleProtobufNamespace(input_api, output_api,
760 source_file_filter):
mbonadei38415b22017-04-07 05:38:01 -0700761 """Checks that the namespace google::protobuf has not been used."""
762 files = []
763 pattern = input_api.re.compile(r'google::protobuf')
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200764 proto_utils_path = os.path.join('rtc_base', 'protobuf_utils.h')
Artem Titova04d1402018-05-11 11:23:00 +0200765 file_filter = lambda x: (input_api.FilterSourceFile(x)
766 and source_file_filter(x))
767 for f in input_api.AffectedSourceFiles(file_filter):
mbonadei38415b22017-04-07 05:38:01 -0700768 if f.LocalPath() in [proto_utils_path, 'PRESUBMIT.py']:
769 continue
770 contents = input_api.ReadFile(f)
771 if pattern.search(contents):
772 files.append(f)
773
774 if files:
775 return [output_api.PresubmitError(
776 'Please avoid to use namespace `google::protobuf` directly.\n'
777 'Add a using directive in `%s` and include that header instead.'
778 % proto_utils_path, files)]
779 return []
780
781
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200782def _LicenseHeader(input_api):
783 """Returns the license header regexp."""
784 # Accept any year number from 2003 to the current year
785 current_year = int(input_api.time.strftime('%Y'))
786 allowed_years = (str(s) for s in reversed(xrange(2003, current_year + 1)))
787 years_re = '(' + '|'.join(allowed_years) + ')'
788 license_header = (
789 r'.*? Copyright( \(c\))? %(year)s The WebRTC [Pp]roject [Aa]uthors\. '
790 r'All [Rr]ights [Rr]eserved\.\n'
791 r'.*?\n'
792 r'.*? Use of this source code is governed by a BSD-style license\n'
793 r'.*? that can be found in the LICENSE file in the root of the source\n'
794 r'.*? tree\. An additional intellectual property rights grant can be '
795 r'found\n'
796 r'.*? in the file PATENTS\. All contributing project authors may\n'
797 r'.*? be found in the AUTHORS file in the root of the source tree\.\n'
798 ) % {
799 'year': years_re,
800 }
801 return license_header
802
803
charujain9893e252017-09-14 13:33:22 +0200804def CommonChecks(input_api, output_api):
andrew@webrtc.org53df1362012-01-26 21:24:23 +0000805 """Checks common to both upload and commit."""
niklase@google.comda159d62011-05-30 11:51:34 +0000806 results = []
tkchin42f580e2015-11-26 23:18:23 -0800807 # Filter out files that are in objc or ios dirs from being cpplint-ed since
808 # they do not follow C++ lint rules.
809 black_list = input_api.DEFAULT_BLACK_LIST + (
810 r".*\bobjc[\\\/].*",
Kári Tristan Helgason3fa35172016-09-09 08:55:05 +0000811 r".*objc\.[hcm]+$",
tkchin42f580e2015-11-26 23:18:23 -0800812 )
813 source_file_filter = lambda x: input_api.FilterSourceFile(x, None, black_list)
charujain9893e252017-09-14 13:33:22 +0200814 results.extend(CheckApprovedFilesLintClean(
tkchin42f580e2015-11-26 23:18:23 -0800815 input_api, output_api, source_file_filter))
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200816 results.extend(input_api.canned_checks.CheckLicense(
817 input_api, output_api, _LicenseHeader(input_api)))
phoglund@webrtc.org5d3713932013-03-07 09:59:43 +0000818 results.extend(input_api.canned_checks.RunPylint(input_api, output_api,
kjellander@webrtc.org177567c2016-12-22 10:40:28 +0100819 black_list=(r'^base[\\\/].*\.py$',
Henrik Kjellander14771ac2015-06-02 13:10:04 +0200820 r'^build[\\\/].*\.py$',
821 r'^buildtools[\\\/].*\.py$',
kjellander38c65c82017-04-12 22:43:38 -0700822 r'^infra[\\\/].*\.py$',
Henrik Kjellander0779e8f2016-12-22 12:01:17 +0100823 r'^ios[\\\/].*\.py$',
Henrik Kjellander14771ac2015-06-02 13:10:04 +0200824 r'^out.*[\\\/].*\.py$',
825 r'^testing[\\\/].*\.py$',
826 r'^third_party[\\\/].*\.py$',
kjellander@webrtc.org177567c2016-12-22 10:40:28 +0100827 r'^tools[\\\/].*\.py$',
kjellanderafd54942016-12-17 12:21:39 -0800828 # TODO(phoglund): should arguably be checked.
Henrik Kjellander90fd7d82017-05-09 08:30:10 +0200829 r'^tools_webrtc[\\\/]mb[\\\/].*\.py$',
Henrik Kjellander14771ac2015-06-02 13:10:04 +0200830 r'^xcodebuild.*[\\\/].*\.py$',),
Henrik Kjellander57e5fd22015-05-25 12:55:39 +0200831 pylintrc='pylintrc'))
kjellander569cf942016-02-11 05:02:59 -0800832
nisse3d21e232016-09-02 03:07:06 -0700833 # TODO(nisse): talk/ is no more, so make below checks simpler?
Henrik Kjellander57e5fd22015-05-25 12:55:39 +0200834 # WebRTC can't use the presubmit_canned_checks.PanProjectChecks function since
835 # we need to have different license checks in talk/ and webrtc/ directories.
836 # Instead, hand-picked checks are included below.
Henrik Kjellander63224672015-09-08 08:03:56 +0200837
tkchin3cd9a302016-06-08 12:40:28 -0700838 # .m and .mm files are ObjC files. For simplicity we will consider .h files in
839 # ObjC subdirectories ObjC headers.
840 objc_filter_list = (r'.+\.m$', r'.+\.mm$', r'.+objc\/.+\.h$')
Henrik Kjellanderb4af3d62016-11-16 20:11:29 +0100841 # Skip long-lines check for DEPS and GN files.
842 build_file_filter_list = (r'.+\.gn$', r'.+\.gni$', 'DEPS')
Artem Titova04d1402018-05-11 11:23:00 +0200843 # Also we will skip most checks for third_party directory.
Artem Titov42f0d782018-06-27 13:23:17 +0200844 third_party_filter_list = (r'^third_party[\\\/].+',)
tkchin3cd9a302016-06-08 12:40:28 -0700845 eighty_char_sources = lambda x: input_api.FilterSourceFile(x,
Artem Titova04d1402018-05-11 11:23:00 +0200846 black_list=build_file_filter_list + objc_filter_list +
847 third_party_filter_list)
tkchin3cd9a302016-06-08 12:40:28 -0700848 hundred_char_sources = lambda x: input_api.FilterSourceFile(x,
849 white_list=objc_filter_list)
Artem Titove92675b2018-05-22 10:21:27 +0200850 non_third_party_sources = lambda x: input_api.FilterSourceFile(x,
851 black_list=third_party_filter_list)
852
andrew@webrtc.org2442de12012-01-23 17:45:41 +0000853 results.extend(input_api.canned_checks.CheckLongLines(
tkchin3cd9a302016-06-08 12:40:28 -0700854 input_api, output_api, maxlen=80, source_file_filter=eighty_char_sources))
855 results.extend(input_api.canned_checks.CheckLongLines(
856 input_api, output_api, maxlen=100,
857 source_file_filter=hundred_char_sources))
andrew@webrtc.org2442de12012-01-23 17:45:41 +0000858 results.extend(input_api.canned_checks.CheckChangeHasNoTabs(
Artem Titova04d1402018-05-11 11:23:00 +0200859 input_api, output_api, source_file_filter=non_third_party_sources))
andrew@webrtc.org53df1362012-01-26 21:24:23 +0000860 results.extend(input_api.canned_checks.CheckChangeHasNoStrayWhitespace(
Artem Titova04d1402018-05-11 11:23:00 +0200861 input_api, output_api, source_file_filter=non_third_party_sources))
kjellandere5dc62a2016-12-14 00:16:21 -0800862 results.extend(input_api.canned_checks.CheckAuthorizedAuthor(
Oleh Prypine0735142018-10-04 11:15:54 +0200863 input_api, output_api, bot_whitelist=[
864 'chromium-webrtc-autoroll@webrtc-ci.iam.gserviceaccount.com'
865 ]))
andrew@webrtc.org53df1362012-01-26 21:24:23 +0000866 results.extend(input_api.canned_checks.CheckChangeTodoHasOwner(
Artem Titova04d1402018-05-11 11:23:00 +0200867 input_api, output_api, source_file_filter=non_third_party_sources))
Yves Gerey87a93532018-06-20 15:51:49 +0200868 results.extend(input_api.canned_checks.CheckPatchFormatted(
869 input_api, output_api))
charujain9893e252017-09-14 13:33:22 +0200870 results.extend(CheckNativeApiHeaderChanges(input_api, output_api))
Artem Titova04d1402018-05-11 11:23:00 +0200871 results.extend(CheckNoIOStreamInHeaders(
872 input_api, output_api, source_file_filter=non_third_party_sources))
873 results.extend(CheckNoPragmaOnce(
874 input_api, output_api, source_file_filter=non_third_party_sources))
875 results.extend(CheckNoFRIEND_TEST(
876 input_api, output_api, source_file_filter=non_third_party_sources))
Mirko Bonadeif0e0d752018-07-04 08:48:18 +0200877 results.extend(CheckGnChanges(input_api, output_api))
Artem Titova04d1402018-05-11 11:23:00 +0200878 results.extend(CheckUnwantedDependencies(
879 input_api, output_api, source_file_filter=non_third_party_sources))
880 results.extend(CheckJSONParseErrors(
881 input_api, output_api, source_file_filter=non_third_party_sources))
charujain9893e252017-09-14 13:33:22 +0200882 results.extend(RunPythonTests(input_api, output_api))
Artem Titova04d1402018-05-11 11:23:00 +0200883 results.extend(CheckUsageOfGoogleProtobufNamespace(
884 input_api, output_api, source_file_filter=non_third_party_sources))
885 results.extend(CheckOrphanHeaders(
886 input_api, output_api, source_file_filter=non_third_party_sources))
887 results.extend(CheckNewlineAtTheEndOfProtoFiles(
888 input_api, output_api, source_file_filter=non_third_party_sources))
889 results.extend(CheckNoStreamUsageIsAdded(
Artem Titov739351d2018-05-11 12:21:36 +0200890 input_api, output_api, non_third_party_sources))
Mirko Bonadei9ce800d2019-02-05 16:48:13 +0100891 results.extend(CheckNoTestCaseUsageIsAdded(
892 input_api, output_api, non_third_party_sources))
Mirko Bonadei7e4ee6e2018-09-28 11:45:23 +0200893 results.extend(CheckAddedDepsHaveTargetApprovals(input_api, output_api))
Mirko Bonadeia418e672018-10-24 13:57:25 +0200894 results.extend(CheckApiDepsFileIsUpToDate(input_api, output_api))
tzika06bf852018-11-15 20:37:35 +0900895 results.extend(CheckAbslMemoryInclude(
896 input_api, output_api, non_third_party_sources))
Mirko Bonadei9fa8ef12019-09-17 19:14:13 +0200897 results.extend(CheckBannedAbslMakeUnique(
898 input_api, output_api, non_third_party_sources))
Mirko Bonadeia418e672018-10-24 13:57:25 +0200899 return results
900
901
902def CheckApiDepsFileIsUpToDate(input_api, output_api):
Mirko Bonadei90490372018-10-26 13:17:47 +0200903 """Check that 'include_rules' in api/DEPS is up to date.
904
905 The file api/DEPS must be kept up to date in order to avoid to avoid to
906 include internal header from WebRTC's api/ headers.
907
908 This check is focused on ensuring that 'include_rules' contains a deny
909 rule for each root level directory. More focused allow rules can be
910 added to 'specific_include_rules'.
911 """
Mirko Bonadeia418e672018-10-24 13:57:25 +0200912 results = []
913 api_deps = os.path.join(input_api.PresubmitLocalPath(), 'api', 'DEPS')
914 with open(api_deps) as f:
915 deps_content = _ParseDeps(f.read())
916
917 include_rules = deps_content.get('include_rules', [])
Mirko Bonadei01e97ae2019-09-05 14:36:42 +0200918 dirs_to_skip = set(['api', 'docs'])
Mirko Bonadeia418e672018-10-24 13:57:25 +0200919
Mirko Bonadei90490372018-10-26 13:17:47 +0200920 # Only check top level directories affected by the current CL.
921 dirs_to_check = set()
922 for f in input_api.AffectedFiles():
923 path_tokens = [t for t in f.LocalPath().split(os.sep) if t]
924 if len(path_tokens) > 1:
Mirko Bonadei01e97ae2019-09-05 14:36:42 +0200925 if (path_tokens[0] not in dirs_to_skip and
Mirko Bonadei90490372018-10-26 13:17:47 +0200926 os.path.isdir(os.path.join(input_api.PresubmitLocalPath(),
927 path_tokens[0]))):
928 dirs_to_check.add(path_tokens[0])
Mirko Bonadeia418e672018-10-24 13:57:25 +0200929
Mirko Bonadei90490372018-10-26 13:17:47 +0200930 missing_include_rules = set()
931 for p in dirs_to_check:
Mirko Bonadeia418e672018-10-24 13:57:25 +0200932 rule = '-%s' % p
933 if rule not in include_rules:
Mirko Bonadei90490372018-10-26 13:17:47 +0200934 missing_include_rules.add(rule)
935
Mirko Bonadeia418e672018-10-24 13:57:25 +0200936 if missing_include_rules:
Mirko Bonadei90490372018-10-26 13:17:47 +0200937 error_msg = [
938 'include_rules = [\n',
939 ' ...\n',
940 ]
Mirko Bonadeia418e672018-10-24 13:57:25 +0200941
Mirko Bonadei90490372018-10-26 13:17:47 +0200942 for r in sorted(missing_include_rules):
943 error_msg.append(' "%s",\n' % str(r))
Mirko Bonadeia418e672018-10-24 13:57:25 +0200944
Mirko Bonadei90490372018-10-26 13:17:47 +0200945 error_msg.append(' ...\n')
946 error_msg.append(']\n')
947
Mirko Bonadeia418e672018-10-24 13:57:25 +0200948 results.append(output_api.PresubmitError(
Mirko Bonadei90490372018-10-26 13:17:47 +0200949 'New root level directory detected! WebRTC api/ headers should '
950 'not #include headers from \n'
951 'the new directory, so please update "include_rules" in file\n'
952 '"%s". Example:\n%s\n' % (api_deps, ''.join(error_msg))))
953
andrew@webrtc.org53df1362012-01-26 21:24:23 +0000954 return results
andrew@webrtc.org2442de12012-01-23 17:45:41 +0000955
Mirko Bonadei9fa8ef12019-09-17 19:14:13 +0200956def CheckBannedAbslMakeUnique(input_api, output_api, source_file_filter):
957 file_filter = lambda f: (f.LocalPath().endswith(('.cc', '.h'))
958 and source_file_filter(f))
959
960 files = []
961 for f in input_api.AffectedFiles(
962 include_deletes=False, file_filter=file_filter):
963 for _, line in f.ChangedContents():
964 if 'absl::make_unique' in line:
965 files.append(f)
966 break
967
968 if len(files):
969 return [output_api.PresubmitError(
970 'Please use std::make_unique instead of absl::make_unique.\n'
971 'Affected files:',
972 files)]
973 return []
974
tzika06bf852018-11-15 20:37:35 +0900975def CheckAbslMemoryInclude(input_api, output_api, source_file_filter):
976 pattern = input_api.re.compile(
977 r'^#include\s*"absl/memory/memory.h"', input_api.re.MULTILINE)
978 file_filter = lambda f: (f.LocalPath().endswith(('.cc', '.h'))
979 and source_file_filter(f))
980
981 files = []
982 for f in input_api.AffectedFiles(
983 include_deletes=False, file_filter=file_filter):
984 contents = input_api.ReadFile(f)
985 if pattern.search(contents):
986 continue
987 for _, line in f.ChangedContents():
Mirko Bonadei9fa8ef12019-09-17 19:14:13 +0200988 if 'absl::WrapUnique' in line:
tzika06bf852018-11-15 20:37:35 +0900989 files.append(f)
990 break
991
992 if len(files):
993 return [output_api.PresubmitError(
Mirko Bonadei9fa8ef12019-09-17 19:14:13 +0200994 'Please include "absl/memory/memory.h" header for absl::WrapUnique.\n'
995 'This header may or may not be included transitively depending on the '
996 'C++ standard version.',
tzika06bf852018-11-15 20:37:35 +0900997 files)]
998 return []
kjellander@webrtc.orge4158642014-08-06 09:11:18 +0000999
andrew@webrtc.org53df1362012-01-26 21:24:23 +00001000def CheckChangeOnUpload(input_api, output_api):
1001 results = []
charujain9893e252017-09-14 13:33:22 +02001002 results.extend(CommonChecks(input_api, output_api))
Oleh Prypin920b6532017-10-05 11:28:51 +02001003 results.extend(CheckGnGen(input_api, output_api))
Henrik Kjellander57e5fd22015-05-25 12:55:39 +02001004 results.extend(
1005 input_api.canned_checks.CheckGNFormatted(input_api, output_api))
niklase@google.comda159d62011-05-30 11:51:34 +00001006 return results
1007
kjellander@webrtc.orge4158642014-08-06 09:11:18 +00001008
andrew@webrtc.org2442de12012-01-23 17:45:41 +00001009def CheckChangeOnCommit(input_api, output_api):
niklase@google.com1198db92011-06-09 07:07:24 +00001010 results = []
charujain9893e252017-09-14 13:33:22 +02001011 results.extend(CommonChecks(input_api, output_api))
1012 results.extend(VerifyNativeApiHeadersListIsValid(input_api, output_api))
Artem Titov42f0d782018-06-27 13:23:17 +02001013 results.extend(input_api.canned_checks.CheckOwners(input_api, output_api))
andrew@webrtc.org53df1362012-01-26 21:24:23 +00001014 results.extend(input_api.canned_checks.CheckChangeWasUploaded(
1015 input_api, output_api))
1016 results.extend(input_api.canned_checks.CheckChangeHasDescription(
1017 input_api, output_api))
charujain9893e252017-09-14 13:33:22 +02001018 results.extend(CheckChangeHasBugField(input_api, output_api))
1019 results.extend(CheckCommitMessageBugEntry(input_api, output_api))
kjellander@webrtc.org12cb88c2014-02-13 11:53:43 +00001020 results.extend(input_api.canned_checks.CheckTreeIsOpen(
1021 input_api, output_api,
1022 json_url='http://webrtc-status.appspot.com/current?format=json'))
niklase@google.com1198db92011-06-09 07:07:24 +00001023 return results
mbonadei74973ed2017-05-09 07:58:05 -07001024
1025
Artem Titova04d1402018-05-11 11:23:00 +02001026def CheckOrphanHeaders(input_api, output_api, source_file_filter):
mbonadei74973ed2017-05-09 07:58:05 -07001027 # We need to wait until we have an input_api object and use this
1028 # roundabout construct to import prebubmit_checks_lib because this file is
1029 # eval-ed and thus doesn't have __file__.
Patrik Höglund2f3f7222017-12-19 11:08:56 +01001030 error_msg = """{} should be listed in {}."""
mbonadei74973ed2017-05-09 07:58:05 -07001031 results = []
Patrik Höglund7e60de22018-01-09 14:22:00 +01001032 orphan_blacklist = [
1033 os.path.join('tools_webrtc', 'ios', 'SDK'),
1034 ]
Oleh Prypin2f33a562017-10-04 20:17:54 +02001035 with _AddToPath(input_api.os_path.join(
1036 input_api.PresubmitLocalPath(), 'tools_webrtc', 'presubmit_checks_lib')):
mbonadei74973ed2017-05-09 07:58:05 -07001037 from check_orphan_headers import GetBuildGnPathFromFilePath
1038 from check_orphan_headers import IsHeaderInBuildGn
mbonadei74973ed2017-05-09 07:58:05 -07001039
Artem Titova04d1402018-05-11 11:23:00 +02001040 file_filter = lambda x: input_api.FilterSourceFile(
1041 x, black_list=orphan_blacklist) and source_file_filter(x)
1042 for f in input_api.AffectedSourceFiles(file_filter):
Patrik Höglund7e60de22018-01-09 14:22:00 +01001043 if f.LocalPath().endswith('.h'):
mbonadei74973ed2017-05-09 07:58:05 -07001044 file_path = os.path.abspath(f.LocalPath())
1045 root_dir = os.getcwd()
1046 gn_file_path = GetBuildGnPathFromFilePath(file_path, os.path.exists,
1047 root_dir)
1048 in_build_gn = IsHeaderInBuildGn(file_path, gn_file_path)
1049 if not in_build_gn:
1050 results.append(output_api.PresubmitError(error_msg.format(
Patrik Höglund2f3f7222017-12-19 11:08:56 +01001051 f.LocalPath(), os.path.relpath(gn_file_path))))
mbonadei74973ed2017-05-09 07:58:05 -07001052 return results
Mirko Bonadei960fd5b2017-06-29 14:59:36 +02001053
1054
Artem Titove92675b2018-05-22 10:21:27 +02001055def CheckNewlineAtTheEndOfProtoFiles(input_api, output_api, source_file_filter):
Mirko Bonadei960fd5b2017-06-29 14:59:36 +02001056 """Checks that all .proto files are terminated with a newline."""
1057 error_msg = 'File {} must end with exactly one newline.'
1058 results = []
Artem Titova04d1402018-05-11 11:23:00 +02001059 file_filter = lambda x: input_api.FilterSourceFile(
1060 x, white_list=(r'.+\.proto$',)) and source_file_filter(x)
1061 for f in input_api.AffectedSourceFiles(file_filter):
Mirko Bonadei960fd5b2017-06-29 14:59:36 +02001062 file_path = f.LocalPath()
1063 with open(file_path) as f:
1064 lines = f.readlines()
Mirko Bonadeia730c1c2017-09-18 11:33:13 +02001065 if len(lines) > 0 and not lines[-1].endswith('\n'):
Mirko Bonadei960fd5b2017-06-29 14:59:36 +02001066 results.append(output_api.PresubmitError(error_msg.format(file_path)))
1067 return results
Mirko Bonadei7e4ee6e2018-09-28 11:45:23 +02001068
1069
1070def _ExtractAddRulesFromParsedDeps(parsed_deps):
1071 """Extract the rules that add dependencies from a parsed DEPS file.
1072
1073 Args:
1074 parsed_deps: the locals dictionary from evaluating the DEPS file."""
1075 add_rules = set()
1076 add_rules.update([
1077 rule[1:] for rule in parsed_deps.get('include_rules', [])
1078 if rule.startswith('+') or rule.startswith('!')
1079 ])
1080 for _, rules in parsed_deps.get('specific_include_rules',
1081 {}).iteritems():
1082 add_rules.update([
1083 rule[1:] for rule in rules
1084 if rule.startswith('+') or rule.startswith('!')
1085 ])
1086 return add_rules
1087
1088
1089def _ParseDeps(contents):
1090 """Simple helper for parsing DEPS files."""
1091 # Stubs for handling special syntax in the root DEPS file.
1092 class VarImpl(object):
1093
1094 def __init__(self, local_scope):
1095 self._local_scope = local_scope
1096
1097 def Lookup(self, var_name):
1098 """Implements the Var syntax."""
1099 try:
1100 return self._local_scope['vars'][var_name]
1101 except KeyError:
1102 raise Exception('Var is not defined: %s' % var_name)
1103
1104 local_scope = {}
1105 global_scope = {
1106 'Var': VarImpl(local_scope).Lookup,
1107 }
1108 exec contents in global_scope, local_scope
1109 return local_scope
1110
1111
1112def _CalculateAddedDeps(os_path, old_contents, new_contents):
1113 """Helper method for _CheckAddedDepsHaveTargetApprovals. Returns
1114 a set of DEPS entries that we should look up.
1115
1116 For a directory (rather than a specific filename) we fake a path to
1117 a specific filename by adding /DEPS. This is chosen as a file that
1118 will seldom or never be subject to per-file include_rules.
1119 """
1120 # We ignore deps entries on auto-generated directories.
1121 auto_generated_dirs = ['grit', 'jni']
1122
1123 old_deps = _ExtractAddRulesFromParsedDeps(_ParseDeps(old_contents))
1124 new_deps = _ExtractAddRulesFromParsedDeps(_ParseDeps(new_contents))
1125
1126 added_deps = new_deps.difference(old_deps)
1127
1128 results = set()
1129 for added_dep in added_deps:
1130 if added_dep.split('/')[0] in auto_generated_dirs:
1131 continue
1132 # Assume that a rule that ends in .h is a rule for a specific file.
1133 if added_dep.endswith('.h'):
1134 results.add(added_dep)
1135 else:
1136 results.add(os_path.join(added_dep, 'DEPS'))
1137 return results
1138
1139
1140def CheckAddedDepsHaveTargetApprovals(input_api, output_api):
1141 """When a dependency prefixed with + is added to a DEPS file, we
1142 want to make sure that the change is reviewed by an OWNER of the
1143 target file or directory, to avoid layering violations from being
1144 introduced. This check verifies that this happens.
1145 """
1146 virtual_depended_on_files = set()
1147
1148 file_filter = lambda f: not input_api.re.match(
1149 r"^third_party[\\\/](WebKit|blink)[\\\/].*", f.LocalPath())
1150 for f in input_api.AffectedFiles(include_deletes=False,
1151 file_filter=file_filter):
1152 filename = input_api.os_path.basename(f.LocalPath())
1153 if filename == 'DEPS':
1154 virtual_depended_on_files.update(_CalculateAddedDeps(
1155 input_api.os_path,
1156 '\n'.join(f.OldContents()),
1157 '\n'.join(f.NewContents())))
1158
1159 if not virtual_depended_on_files:
1160 return []
1161
1162 if input_api.is_committing:
1163 if input_api.tbr:
1164 return [output_api.PresubmitNotifyResult(
1165 '--tbr was specified, skipping OWNERS check for DEPS additions')]
1166 if input_api.dry_run:
1167 return [output_api.PresubmitNotifyResult(
1168 'This is a dry run, skipping OWNERS check for DEPS additions')]
1169 if not input_api.change.issue:
1170 return [output_api.PresubmitError(
1171 "DEPS approval by OWNERS check failed: this change has "
1172 "no change number, so we can't check it for approvals.")]
1173 output = output_api.PresubmitError
1174 else:
1175 output = output_api.PresubmitNotifyResult
1176
1177 owners_db = input_api.owners_db
1178 owner_email, reviewers = (
1179 input_api.canned_checks.GetCodereviewOwnerAndReviewers(
1180 input_api,
1181 owners_db.email_regexp,
1182 approval_needed=input_api.is_committing))
1183
1184 owner_email = owner_email or input_api.change.author_email
1185
1186 reviewers_plus_owner = set(reviewers)
1187 if owner_email:
1188 reviewers_plus_owner.add(owner_email)
1189 missing_files = owners_db.files_not_covered_by(virtual_depended_on_files,
1190 reviewers_plus_owner)
1191
1192 # We strip the /DEPS part that was added by
1193 # _FilesToCheckForIncomingDeps to fake a path to a file in a
1194 # directory.
1195 def StripDeps(path):
1196 start_deps = path.rfind('/DEPS')
1197 if start_deps != -1:
1198 return path[:start_deps]
1199 else:
1200 return path
1201 unapproved_dependencies = ["'+%s'," % StripDeps(path)
1202 for path in missing_files]
1203
1204 if unapproved_dependencies:
1205 output_list = [
1206 output('You need LGTM from owners of depends-on paths in DEPS that were '
1207 'modified in this CL:\n %s' %
1208 '\n '.join(sorted(unapproved_dependencies)))]
1209 suggested_owners = owners_db.reviewers_for(missing_files, owner_email)
1210 output_list.append(output(
1211 'Suggested missing target path OWNERS:\n %s' %
1212 '\n '.join(suggested_owners or [])))
1213 return output_list
1214
1215 return []