andrew@webrtc.org | 2442de1 | 2012-01-23 17:45:41 | [diff] [blame] | 1 | # 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.com | da159d6 | 2011-05-30 11:51:34 | [diff] [blame] | 8 | |
kjellander | 7439f97 | 2016-12-06 06:47:46 | [diff] [blame] | 9 | import json |
kjellander@webrtc.org | aefe61a | 2014-12-08 13:00:30 | [diff] [blame] | 10 | import os |
kjellander@webrtc.org | 8575980 | 2013-10-22 16:47:40 | [diff] [blame] | 11 | import re |
kjellander@webrtc.org | 3bd4156 | 2014-09-01 11:06:37 | [diff] [blame] | 12 | import sys |
Mirko Bonadei | 4dc4e25 | 2017-09-19 11:49:16 | [diff] [blame] | 13 | from collections import defaultdict |
Oleh Prypin | 2f33a56 | 2017-10-04 18:17:54 | [diff] [blame] | 14 | from contextlib import contextmanager |
kjellander@webrtc.org | 8575980 | 2013-10-22 16:47:40 | [diff] [blame] | 15 | |
oprypin | 2aa463f | 2017-03-23 10:17:02 | [diff] [blame] | 16 | # Files and directories that are *skipped* by cpplint in the presubmit script. |
| 17 | CPPLINT_BLACKLIST = [ |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 18 | 'api/video_codecs/video_decoder.h', |
| 19 | 'common_types.cc', |
| 20 | 'common_types.h', |
| 21 | 'examples/objc', |
Amit Hilbuch | ce7032b | 2019-01-23 00:19:35 | [diff] [blame] | 22 | 'media/base/stream_params.h', |
| 23 | 'media/base/video_common.h', |
| 24 | 'media/sctp/sctp_transport.cc', |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 25 | 'modules/audio_coding', |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 26 | 'modules/audio_device', |
| 27 | 'modules/audio_processing', |
| 28 | 'modules/desktop_capture', |
| 29 | 'modules/include/module_common_types.h', |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 30 | 'modules/utility', |
| 31 | 'modules/video_capture', |
Amit Hilbuch | ce7032b | 2019-01-23 00:19:35 | [diff] [blame] | 32 | 'p2p/base/pseudo_tcp.cc', |
| 33 | 'p2p/base/pseudo_tcp.h', |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 34 | 'rtc_base', |
| 35 | 'sdk/android/src/jni', |
| 36 | 'sdk/objc', |
| 37 | 'system_wrappers', |
| 38 | 'test', |
Henrik Kjellander | 90fd7d8 | 2017-05-09 06:30:10 | [diff] [blame] | 39 | 'tools_webrtc', |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 40 | 'voice_engine', |
kjellander@webrtc.org | 0fcaf99 | 2015-11-26 14:24:52 | [diff] [blame] | 41 | ] |
| 42 | |
jbauch | c4e3ead | 2016-02-19 08:25:55 | [diff] [blame] | 43 | # 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. |
kjellander | e5a87a5 | 2016-04-27 09:32:12 | [diff] [blame] | 50 | # - whitespace/operators: Same as above (doesn't seem sufficient to eliminate |
| 51 | # all move-related errors). |
jbauch | c4e3ead | 2016-02-19 08:25:55 | [diff] [blame] | 52 | BLACKLIST_LINT_FILTERS = [ |
| 53 | '-build/c++11', |
kjellander | e5a87a5 | 2016-04-27 09:32:12 | [diff] [blame] | 54 | '-whitespace/operators', |
jbauch | c4e3ead | 2016-02-19 08:25:55 | [diff] [blame] | 55 | ] |
| 56 | |
kjellander | fd59523 | 2015-12-04 10:44:09 | [diff] [blame] | 57 | # 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. |
kjellander | 53047c9 | 2015-12-03 07:56:14 | [diff] [blame] | 64 | NATIVE_API_DIRS = ( |
Karl Wiberg | ef52d8b8 | 2017-10-25 11:20:03 | [diff] [blame] | 65 | 'api', # All subdirectories of api/ are included as well. |
Mirko Bonadei | a4eeeff | 2018-01-11 12:16:52 | [diff] [blame] | 66 | 'media/base', |
| 67 | 'media/engine', |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 68 | 'modules/audio_device/include', |
| 69 | 'pc', |
kjellander | dd70547 | 2016-06-09 18:17:27 | [diff] [blame] | 70 | ) |
Mirko Bonadei | 4dc4e25 | 2017-09-19 11:49:16 | [diff] [blame] | 71 | |
kjellander | dd70547 | 2016-06-09 18:17:27 | [diff] [blame] | 72 | # These directories should not be used but are maintained only to avoid breaking |
| 73 | # some legacy downstream code. |
| 74 | LEGACY_API_DIRS = ( |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 75 | 'common_audio/include', |
| 76 | 'modules/audio_coding/include', |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 77 | 'modules/audio_processing/include', |
| 78 | 'modules/bitrate_controller/include', |
| 79 | 'modules/congestion_controller/include', |
| 80 | 'modules/include', |
| 81 | 'modules/remote_bitrate_estimator/include', |
| 82 | 'modules/rtp_rtcp/include', |
| 83 | 'modules/rtp_rtcp/source', |
| 84 | 'modules/utility/include', |
| 85 | 'modules/video_coding/codecs/h264/include', |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 86 | 'modules/video_coding/codecs/vp8/include', |
| 87 | 'modules/video_coding/codecs/vp9/include', |
| 88 | 'modules/video_coding/include', |
| 89 | 'rtc_base', |
| 90 | 'system_wrappers/include', |
kjellander | 53047c9 | 2015-12-03 07:56:14 | [diff] [blame] | 91 | ) |
Mirko Bonadei | 4dc4e25 | 2017-09-19 11:49:16 | [diff] [blame] | 92 | |
Karl Wiberg | d4f01c1 | 2017-11-10 09:55:45 | [diff] [blame] | 93 | # NOTE: The set of directories in API_DIRS should be the same as those |
| 94 | # listed in the table in native-api.md. |
kjellander | dd70547 | 2016-06-09 18:17:27 | [diff] [blame] | 95 | API_DIRS = NATIVE_API_DIRS[:] + LEGACY_API_DIRS[:] |
kjellander | 53047c9 | 2015-12-03 07:56:14 | [diff] [blame] | 96 | |
Mirko Bonadei | 4dc4e25 | 2017-09-19 11:49:16 | [diff] [blame] | 97 | # TARGET_RE matches a GN target, and extracts the target name and the contents. |
| 98 | TARGET_RE = re.compile(r'(?P<indent>\s*)\w+\("(?P<target_name>\w+)"\) {' |
| 99 | r'(?P<target_contents>.*?)' |
| 100 | r'(?P=indent)}', |
| 101 | re.MULTILINE | re.DOTALL) |
| 102 | |
| 103 | # SOURCES_RE matches a block of sources inside a GN target. |
| 104 | SOURCES_RE = re.compile(r'sources \+?= \[(?P<sources>.*?)\]', |
| 105 | re.MULTILINE | re.DOTALL) |
| 106 | |
| 107 | # FILE_PATH_RE matchies a file path. |
| 108 | FILE_PATH_RE = re.compile(r'"(?P<file_path>(\w|\/)+)(?P<extension>\.\w+)"') |
| 109 | |
kjellander | 53047c9 | 2015-12-03 07:56:14 | [diff] [blame] | 110 | |
Mirko Bonadei | d866544 | 2018-09-04 10:17:27 | [diff] [blame] | 111 | def FindSrcDirPath(starting_dir): |
| 112 | """Returns the abs path to the src/ dir of the project.""" |
| 113 | src_dir = starting_dir |
| 114 | while os.path.basename(src_dir) != 'src': |
| 115 | src_dir = os.path.normpath(os.path.join(src_dir, os.pardir)) |
| 116 | return src_dir |
| 117 | |
| 118 | |
Oleh Prypin | 2f33a56 | 2017-10-04 18:17:54 | [diff] [blame] | 119 | @contextmanager |
| 120 | def _AddToPath(*paths): |
| 121 | original_sys_path = sys.path |
| 122 | sys.path.extend(paths) |
| 123 | try: |
| 124 | yield |
| 125 | finally: |
| 126 | # Restore sys.path to what it was before. |
| 127 | sys.path = original_sys_path |
ehmaldonado | 4fb9746 | 2017-01-30 13:27:22 | [diff] [blame] | 128 | |
| 129 | |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 130 | def VerifyNativeApiHeadersListIsValid(input_api, output_api): |
kjellander | 53047c9 | 2015-12-03 07:56:14 | [diff] [blame] | 131 | """Ensures the list of native API header directories is up to date.""" |
| 132 | non_existing_paths = [] |
| 133 | native_api_full_paths = [ |
| 134 | input_api.os_path.join(input_api.PresubmitLocalPath(), |
kjellander | dd70547 | 2016-06-09 18:17:27 | [diff] [blame] | 135 | *path.split('/')) for path in API_DIRS] |
kjellander | 53047c9 | 2015-12-03 07:56:14 | [diff] [blame] | 136 | for path in native_api_full_paths: |
| 137 | if not os.path.isdir(path): |
| 138 | non_existing_paths.append(path) |
| 139 | if non_existing_paths: |
| 140 | return [output_api.PresubmitError( |
| 141 | 'Directories to native API headers have changed which has made the ' |
| 142 | 'list in PRESUBMIT.py outdated.\nPlease update it to the current ' |
| 143 | 'location of our native APIs.', |
| 144 | non_existing_paths)] |
| 145 | return [] |
| 146 | |
Artem Titov | e92675b | 2018-05-22 08:21:27 | [diff] [blame] | 147 | |
kjellander | c88b5d5 | 2017-04-05 13:42:43 | [diff] [blame] | 148 | API_CHANGE_MSG = """ |
kwiberg | eb13302 | 2016-04-07 14:41:48 | [diff] [blame] | 149 | You seem to be changing native API header files. Please make sure that you: |
oprypin | 375b9ac | 2017-02-13 12:13:23 | [diff] [blame] | 150 | 1. Make compatible changes that don't break existing clients. Usually |
| 151 | this is done by keeping the existing method signatures unchanged. |
| 152 | 2. Mark the old stuff as deprecated (see RTC_DEPRECATED macro). |
kwiberg | eb13302 | 2016-04-07 14:41:48 | [diff] [blame] | 153 | 3. Create a timeline and plan for when the deprecated stuff will be |
| 154 | removed. (The amount of time we give users to change their code |
| 155 | should be informed by how much work it is for them. If they just |
| 156 | need to replace one name with another or something equally |
| 157 | simple, 1-2 weeks might be good; if they need to do serious work, |
| 158 | up to 3 months may be called for.) |
| 159 | 4. Update/inform existing downstream code owners to stop using the |
| 160 | deprecated stuff. (Send announcements to |
| 161 | discuss-webrtc@googlegroups.com and webrtc-users@google.com.) |
| 162 | 5. Remove the deprecated stuff, once the agreed-upon amount of time |
| 163 | has passed. |
| 164 | Related files: |
| 165 | """ |
kjellander | 53047c9 | 2015-12-03 07:56:14 | [diff] [blame] | 166 | |
Artem Titov | e92675b | 2018-05-22 08:21:27 | [diff] [blame] | 167 | |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 168 | def CheckNativeApiHeaderChanges(input_api, output_api): |
kjellander | 53047c9 | 2015-12-03 07:56:14 | [diff] [blame] | 169 | """Checks to remind proper changing of native APIs.""" |
| 170 | files = [] |
Karl Wiberg | 6bfac03 | 2017-10-27 13:14:20 | [diff] [blame] | 171 | source_file_filter = lambda x: input_api.FilterSourceFile( |
| 172 | x, white_list=[r'.+\.(gn|gni|h)$']) |
| 173 | for f in input_api.AffectedSourceFiles(source_file_filter): |
| 174 | for path in API_DIRS: |
| 175 | dn = os.path.dirname(f.LocalPath()) |
| 176 | if path == 'api': |
| 177 | # Special case: Subdirectories included. |
| 178 | if dn == 'api' or dn.startswith('api/'): |
| 179 | files.append(f) |
| 180 | else: |
| 181 | # Normal case: Subdirectories not included. |
| 182 | if dn == path: |
| 183 | files.append(f) |
kjellander | 53047c9 | 2015-12-03 07:56:14 | [diff] [blame] | 184 | |
| 185 | if files: |
kjellander | c88b5d5 | 2017-04-05 13:42:43 | [diff] [blame] | 186 | return [output_api.PresubmitNotifyResult(API_CHANGE_MSG, files)] |
kjellander | 53047c9 | 2015-12-03 07:56:14 | [diff] [blame] | 187 | return [] |
| 188 | |
kjellander@webrtc.org | 0fcaf99 | 2015-11-26 14:24:52 | [diff] [blame] | 189 | |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 190 | def CheckNoIOStreamInHeaders(input_api, output_api, |
| 191 | source_file_filter): |
kjellander@webrtc.org | 51198f1 | 2012-02-21 17:53:46 | [diff] [blame] | 192 | """Checks to make sure no .h files include <iostream>.""" |
| 193 | files = [] |
| 194 | pattern = input_api.re.compile(r'^#include\s*<iostream>', |
| 195 | input_api.re.MULTILINE) |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 196 | file_filter = lambda x: (input_api.FilterSourceFile(x) |
| 197 | and source_file_filter(x)) |
| 198 | for f in input_api.AffectedSourceFiles(file_filter): |
kjellander@webrtc.org | 51198f1 | 2012-02-21 17:53:46 | [diff] [blame] | 199 | if not f.LocalPath().endswith('.h'): |
| 200 | continue |
| 201 | contents = input_api.ReadFile(f) |
| 202 | if pattern.search(contents): |
| 203 | files.append(f) |
| 204 | |
| 205 | if len(files): |
Henrik Kjellander | 57e5fd2 | 2015-05-25 10:55:39 | [diff] [blame] | 206 | return [output_api.PresubmitError( |
kjellander@webrtc.org | 51198f1 | 2012-02-21 17:53:46 | [diff] [blame] | 207 | 'Do not #include <iostream> in header files, since it inserts static ' + |
| 208 | 'initialization into every file including the header. Instead, ' + |
| 209 | '#include <ostream>. See http://crbug.com/94794', |
Henrik Kjellander | 57e5fd2 | 2015-05-25 10:55:39 | [diff] [blame] | 210 | files)] |
kjellander@webrtc.org | 51198f1 | 2012-02-21 17:53:46 | [diff] [blame] | 211 | return [] |
| 212 | |
kjellander@webrtc.org | e415864 | 2014-08-06 09:11:18 | [diff] [blame] | 213 | |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 214 | def CheckNoPragmaOnce(input_api, output_api, |
| 215 | source_file_filter): |
kjellander | 6aeef74 | 2017-02-20 09:13:18 | [diff] [blame] | 216 | """Make sure that banned functions are not used.""" |
| 217 | files = [] |
| 218 | pattern = input_api.re.compile(r'^#pragma\s+once', |
| 219 | input_api.re.MULTILINE) |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 220 | file_filter = lambda x: (input_api.FilterSourceFile(x) |
| 221 | and source_file_filter(x)) |
| 222 | for f in input_api.AffectedSourceFiles(file_filter): |
kjellander | 6aeef74 | 2017-02-20 09:13:18 | [diff] [blame] | 223 | if not f.LocalPath().endswith('.h'): |
| 224 | continue |
| 225 | contents = input_api.ReadFile(f) |
| 226 | if pattern.search(contents): |
| 227 | files.append(f) |
| 228 | |
| 229 | if files: |
| 230 | return [output_api.PresubmitError( |
| 231 | 'Do not use #pragma once in header files.\n' |
| 232 | 'See http://www.chromium.org/developers/coding-style#TOC-File-headers', |
| 233 | files)] |
| 234 | return [] |
| 235 | |
| 236 | |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 237 | def CheckNoFRIEND_TEST(input_api, output_api, # pylint: disable=invalid-name |
| 238 | source_file_filter): |
kjellander@webrtc.org | 51198f1 | 2012-02-21 17:53:46 | [diff] [blame] | 239 | """Make sure that gtest's FRIEND_TEST() macro is not used, the |
| 240 | FRIEND_TEST_ALL_PREFIXES() macro from testsupport/gtest_prod_util.h should be |
| 241 | used instead since that allows for FLAKY_, FAILS_ and DISABLED_ prefixes.""" |
| 242 | problems = [] |
| 243 | |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 244 | file_filter = lambda f: (f.LocalPath().endswith(('.cc', '.h')) |
| 245 | and source_file_filter(f)) |
kjellander@webrtc.org | 51198f1 | 2012-02-21 17:53:46 | [diff] [blame] | 246 | for f in input_api.AffectedFiles(file_filter=file_filter): |
| 247 | for line_num, line in f.ChangedContents(): |
| 248 | if 'FRIEND_TEST(' in line: |
| 249 | problems.append(' %s:%d' % (f.LocalPath(), line_num)) |
| 250 | |
| 251 | if not problems: |
| 252 | return [] |
| 253 | return [output_api.PresubmitPromptWarning('WebRTC\'s code should not use ' |
| 254 | 'gtest\'s FRIEND_TEST() macro. Include testsupport/gtest_prod_util.h and ' |
| 255 | 'use FRIEND_TEST_ALL_PREFIXES() instead.\n' + '\n'.join(problems))] |
| 256 | |
kjellander@webrtc.org | e415864 | 2014-08-06 09:11:18 | [diff] [blame] | 257 | |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 258 | def IsLintBlacklisted(blacklist_paths, file_path): |
oprypin | 2aa463f | 2017-03-23 10:17:02 | [diff] [blame] | 259 | """ Checks if a file is blacklisted for lint check.""" |
| 260 | for path in blacklist_paths: |
| 261 | if file_path == path or os.path.dirname(file_path).startswith(path): |
kjellander@webrtc.org | 0fcaf99 | 2015-11-26 14:24:52 | [diff] [blame] | 262 | return True |
| 263 | return False |
| 264 | |
| 265 | |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 266 | def CheckApprovedFilesLintClean(input_api, output_api, |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 267 | source_file_filter=None): |
oprypin | 2aa463f | 2017-03-23 10:17:02 | [diff] [blame] | 268 | """Checks that all new or non-blacklisted .cc and .h files pass cpplint.py. |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 269 | This check is based on CheckChangeLintsClean in |
kjellander@webrtc.org | 51198f1 | 2012-02-21 17:53:46 | [diff] [blame] | 270 | depot_tools/presubmit_canned_checks.py but has less filters and only checks |
| 271 | added files.""" |
| 272 | result = [] |
| 273 | |
| 274 | # Initialize cpplint. |
| 275 | import cpplint |
| 276 | # Access to a protected member _XX of a client class |
| 277 | # pylint: disable=W0212 |
| 278 | cpplint._cpplint_state.ResetErrorCounts() |
| 279 | |
jbauch | c4e3ead | 2016-02-19 08:25:55 | [diff] [blame] | 280 | lint_filters = cpplint._Filters() |
| 281 | lint_filters.extend(BLACKLIST_LINT_FILTERS) |
| 282 | cpplint._SetFilters(','.join(lint_filters)) |
| 283 | |
oprypin | 2aa463f | 2017-03-23 10:17:02 | [diff] [blame] | 284 | # Create a platform independent blacklist for cpplint. |
| 285 | blacklist_paths = [input_api.os_path.join(*path.split('/')) |
| 286 | for path in CPPLINT_BLACKLIST] |
kjellander@webrtc.org | 0fcaf99 | 2015-11-26 14:24:52 | [diff] [blame] | 287 | |
kjellander@webrtc.org | 51198f1 | 2012-02-21 17:53:46 | [diff] [blame] | 288 | # Use the strictest verbosity level for cpplint.py (level 1) which is the |
oprypin | 2aa463f | 2017-03-23 10:17:02 | [diff] [blame] | 289 | # default when running cpplint.py from command line. To make it possible to |
| 290 | # work with not-yet-converted code, we're only applying it to new (or |
| 291 | # moved/renamed) files and files not listed in CPPLINT_BLACKLIST. |
kjellander@webrtc.org | 51198f1 | 2012-02-21 17:53:46 | [diff] [blame] | 292 | verbosity_level = 1 |
| 293 | files = [] |
| 294 | for f in input_api.AffectedSourceFiles(source_file_filter): |
Henrik Kjellander | 57e5fd2 | 2015-05-25 10:55:39 | [diff] [blame] | 295 | # Note that moved/renamed files also count as added. |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 296 | if f.Action() == 'A' or not IsLintBlacklisted(blacklist_paths, |
Artem Titov | e92675b | 2018-05-22 08:21:27 | [diff] [blame] | 297 | f.LocalPath()): |
kjellander@webrtc.org | 51198f1 | 2012-02-21 17:53:46 | [diff] [blame] | 298 | files.append(f.AbsoluteLocalPath()) |
mflodman@webrtc.org | 2a45209 | 2012-07-01 05:55:23 | [diff] [blame] | 299 | |
kjellander@webrtc.org | 51198f1 | 2012-02-21 17:53:46 | [diff] [blame] | 300 | for file_name in files: |
| 301 | cpplint.ProcessFile(file_name, verbosity_level) |
| 302 | |
| 303 | if cpplint._cpplint_state.error_count > 0: |
| 304 | if input_api.is_committing: |
oprypin | 8e58d65 | 2017-03-21 14:52:41 | [diff] [blame] | 305 | res_type = output_api.PresubmitError |
kjellander@webrtc.org | 51198f1 | 2012-02-21 17:53:46 | [diff] [blame] | 306 | else: |
| 307 | res_type = output_api.PresubmitPromptWarning |
| 308 | result = [res_type('Changelist failed cpplint.py check.')] |
| 309 | |
| 310 | return result |
| 311 | |
Artem Titov | e92675b | 2018-05-22 08:21:27 | [diff] [blame] | 312 | |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 313 | def CheckNoSourcesAbove(input_api, gn_files, output_api): |
ehmaldonado | 5b1ba08 | 2016-09-02 12:51:08 | [diff] [blame] | 314 | # Disallow referencing source files with paths above the GN file location. |
| 315 | source_pattern = input_api.re.compile(r' +sources \+?= \[(.*?)\]', |
| 316 | re.MULTILINE | re.DOTALL) |
| 317 | file_pattern = input_api.re.compile(r'"((\.\./.*?)|(//.*?))"') |
| 318 | violating_gn_files = set() |
| 319 | violating_source_entries = [] |
| 320 | for gn_file in gn_files: |
| 321 | contents = input_api.ReadFile(gn_file) |
| 322 | for source_block_match in source_pattern.finditer(contents): |
| 323 | # Find all source list entries starting with ../ in the source block |
| 324 | # (exclude overrides entries). |
| 325 | for file_list_match in file_pattern.finditer(source_block_match.group(1)): |
| 326 | source_file = file_list_match.group(1) |
| 327 | if 'overrides/' not in source_file: |
| 328 | violating_source_entries.append(source_file) |
| 329 | violating_gn_files.add(gn_file) |
| 330 | if violating_gn_files: |
| 331 | return [output_api.PresubmitError( |
| 332 | 'Referencing source files above the directory of the GN file is not ' |
Henrik Kjellander | b4af3d6 | 2016-11-16 19:11:29 | [diff] [blame] | 333 | 'allowed. Please introduce new GN targets in the proper location ' |
| 334 | 'instead.\n' |
ehmaldonado | 5b1ba08 | 2016-09-02 12:51:08 | [diff] [blame] | 335 | 'Invalid source entries:\n' |
| 336 | '%s\n' |
| 337 | 'Violating GN files:' % '\n'.join(violating_source_entries), |
| 338 | items=violating_gn_files)] |
| 339 | return [] |
| 340 | |
Artem Titov | e92675b | 2018-05-22 08:21:27 | [diff] [blame] | 341 | |
Mirko Bonadei | 4dc4e25 | 2017-09-19 11:49:16 | [diff] [blame] | 342 | def CheckNoMixingSources(input_api, gn_files, output_api): |
| 343 | """Disallow mixing C, C++ and Obj-C/Obj-C++ in the same target. |
| 344 | |
| 345 | See bugs.webrtc.org/7743 for more context. |
| 346 | """ |
Artem Titov | e92675b | 2018-05-22 08:21:27 | [diff] [blame] | 347 | |
Mirko Bonadei | 4dc4e25 | 2017-09-19 11:49:16 | [diff] [blame] | 348 | def _MoreThanOneSourceUsed(*sources_lists): |
| 349 | sources_used = 0 |
| 350 | for source_list in sources_lists: |
| 351 | if len(source_list): |
| 352 | sources_used += 1 |
| 353 | return sources_used > 1 |
| 354 | |
| 355 | errors = defaultdict(lambda: []) |
kjellander | 7439f97 | 2016-12-06 06:47:46 | [diff] [blame] | 356 | for gn_file in gn_files: |
Mirko Bonadei | 4dc4e25 | 2017-09-19 11:49:16 | [diff] [blame] | 357 | gn_file_content = input_api.ReadFile(gn_file) |
| 358 | for target_match in TARGET_RE.finditer(gn_file_content): |
| 359 | # list_of_sources is a list of tuples of the form |
| 360 | # (c_files, cc_files, objc_files) that keeps track of all the sources |
| 361 | # defined in a target. A GN target can have more that on definition of |
| 362 | # sources (since it supports if/else statements). |
| 363 | # E.g.: |
| 364 | # rtc_static_library("foo") { |
| 365 | # if (is_win) { |
| 366 | # sources = [ "foo.cc" ] |
| 367 | # } else { |
| 368 | # sources = [ "foo.mm" ] |
| 369 | # } |
| 370 | # } |
| 371 | # This is allowed and the presubmit check should support this case. |
| 372 | list_of_sources = [] |
kjellander | 7439f97 | 2016-12-06 06:47:46 | [diff] [blame] | 373 | c_files = [] |
| 374 | cc_files = [] |
Mirko Bonadei | 4dc4e25 | 2017-09-19 11:49:16 | [diff] [blame] | 375 | objc_files = [] |
| 376 | target_name = target_match.group('target_name') |
| 377 | target_contents = target_match.group('target_contents') |
| 378 | for sources_match in SOURCES_RE.finditer(target_contents): |
| 379 | if '+=' not in sources_match.group(0): |
| 380 | if c_files or cc_files or objc_files: |
| 381 | list_of_sources.append((c_files, cc_files, objc_files)) |
| 382 | c_files = [] |
| 383 | cc_files = [] |
| 384 | objc_files = [] |
| 385 | for file_match in FILE_PATH_RE.finditer(sources_match.group(1)): |
| 386 | file_path = file_match.group('file_path') |
| 387 | extension = file_match.group('extension') |
| 388 | if extension == '.c': |
| 389 | c_files.append(file_path + extension) |
| 390 | if extension == '.cc': |
| 391 | cc_files.append(file_path + extension) |
| 392 | if extension in ['.m', '.mm']: |
| 393 | objc_files.append(file_path + extension) |
| 394 | list_of_sources.append((c_files, cc_files, objc_files)) |
| 395 | for c_files_list, cc_files_list, objc_files_list in list_of_sources: |
| 396 | if _MoreThanOneSourceUsed(c_files_list, cc_files_list, objc_files_list): |
| 397 | all_sources = sorted(c_files_list + cc_files_list + objc_files_list) |
| 398 | errors[gn_file.LocalPath()].append((target_name, all_sources)) |
| 399 | if errors: |
kjellander | 7439f97 | 2016-12-06 06:47:46 | [diff] [blame] | 400 | return [output_api.PresubmitError( |
Mirko Bonadei | 4dc4e25 | 2017-09-19 11:49:16 | [diff] [blame] | 401 | 'GN targets cannot mix .c, .cc and .m (or .mm) source files.\n' |
| 402 | 'Please create a separate target for each collection of sources.\n' |
kjellander | 7439f97 | 2016-12-06 06:47:46 | [diff] [blame] | 403 | 'Mixed sources: \n' |
| 404 | '%s\n' |
Mirko Bonadei | 4dc4e25 | 2017-09-19 11:49:16 | [diff] [blame] | 405 | 'Violating GN files:\n%s\n' % (json.dumps(errors, indent=2), |
| 406 | '\n'.join(errors.keys())))] |
kjellander | 7439f97 | 2016-12-06 06:47:46 | [diff] [blame] | 407 | return [] |
| 408 | |
Artem Titov | e92675b | 2018-05-22 08:21:27 | [diff] [blame] | 409 | |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 410 | def CheckNoPackageBoundaryViolations(input_api, gn_files, output_api): |
ehmaldonado | 4fb9746 | 2017-01-30 13:27:22 | [diff] [blame] | 411 | cwd = input_api.PresubmitLocalPath() |
Oleh Prypin | 2f33a56 | 2017-10-04 18:17:54 | [diff] [blame] | 412 | with _AddToPath(input_api.os_path.join( |
| 413 | cwd, 'tools_webrtc', 'presubmit_checks_lib')): |
| 414 | from check_package_boundaries import CheckPackageBoundaries |
| 415 | build_files = [os.path.join(cwd, gn_file.LocalPath()) for gn_file in gn_files] |
| 416 | errors = CheckPackageBoundaries(cwd, build_files)[:5] |
| 417 | if errors: |
ehmaldonado | 4fb9746 | 2017-01-30 13:27:22 | [diff] [blame] | 418 | return [output_api.PresubmitError( |
Oleh Prypin | 2f33a56 | 2017-10-04 18:17:54 | [diff] [blame] | 419 | 'There are package boundary violations in the following GN files:', |
| 420 | long_text='\n\n'.join(str(err) for err in errors))] |
ehmaldonado | 4fb9746 | 2017-01-30 13:27:22 | [diff] [blame] | 421 | return [] |
| 422 | |
Mirko Bonadei | a51bbd8 | 2018-03-08 15:15:45 | [diff] [blame] | 423 | |
Mirko Bonadei | f0e0d75 | 2018-07-04 06:48:18 | [diff] [blame] | 424 | def _ReportFileAndLine(filename, line_num): |
Mirko Bonadei | a51bbd8 | 2018-03-08 15:15:45 | [diff] [blame] | 425 | """Default error formatter for _FindNewViolationsOfRule.""" |
| 426 | return '%s (line %s)' % (filename, line_num) |
| 427 | |
| 428 | |
Mirko Bonadei | f0e0d75 | 2018-07-04 06:48:18 | [diff] [blame] | 429 | def CheckNoWarningSuppressionFlagsAreAdded(gn_files, input_api, output_api, |
| 430 | error_formatter=_ReportFileAndLine): |
| 431 | """Make sure that warning suppression flags are not added wihtout a reason.""" |
| 432 | msg = ('Usage of //build/config/clang:extra_warnings is discouraged ' |
| 433 | 'in WebRTC.\n' |
| 434 | 'If you are not adding this code (e.g. you are just moving ' |
| 435 | 'existing code) or you want to add an exception,\n' |
| 436 | 'you can add a comment on the line that causes the problem:\n\n' |
| 437 | '"-Wno-odr" # no-presubmit-check TODO(bugs.webrtc.org/BUG_ID)\n' |
| 438 | '\n' |
| 439 | 'Affected files:\n') |
| 440 | errors = [] # 2-element tuples with (file, line number) |
| 441 | clang_warn_re = input_api.re.compile(r'//build/config/clang:extra_warnings') |
| 442 | no_presubmit_re = input_api.re.compile( |
| 443 | r'# no-presubmit-check TODO\(bugs\.webrtc\.org/\d+\)') |
| 444 | for f in gn_files: |
| 445 | for line_num, line in f.ChangedContents(): |
| 446 | if clang_warn_re.search(line) and not no_presubmit_re.search(line): |
| 447 | errors.append(error_formatter(f.LocalPath(), line_num)) |
| 448 | if errors: |
| 449 | return [output_api.PresubmitError(msg, errors)] |
| 450 | return [] |
| 451 | |
Mirko Bonadei | 9ce800d | 2019-02-05 15:48:13 | [diff] [blame] | 452 | |
| 453 | def CheckNoTestCaseUsageIsAdded(input_api, output_api, source_file_filter, |
| 454 | error_formatter=_ReportFileAndLine): |
| 455 | error_msg = ('Usage of legacy GoogleTest API detected!\nPlease use the ' |
| 456 | 'new API: https://github.com/google/googletest/blob/master/' |
| 457 | 'googletest/docs/primer.md#beware-of-the-nomenclature.\n' |
| 458 | 'Affected files:\n') |
| 459 | errors = [] # 2-element tuples with (file, line number) |
| 460 | test_case_re = input_api.re.compile(r'TEST_CASE') |
| 461 | file_filter = lambda f: (source_file_filter(f) |
| 462 | and f.LocalPath().endswith('.cc')) |
| 463 | for f in input_api.AffectedSourceFiles(file_filter): |
| 464 | for line_num, line in f.ChangedContents(): |
| 465 | if test_case_re.search(line): |
| 466 | errors.append(error_formatter(f.LocalPath(), line_num)) |
| 467 | if errors: |
| 468 | return [output_api.PresubmitError(error_msg, errors)] |
| 469 | return [] |
| 470 | |
| 471 | |
Mirko Bonadei | a51bbd8 | 2018-03-08 15:15:45 | [diff] [blame] | 472 | def CheckNoStreamUsageIsAdded(input_api, output_api, |
Artem Titov | 739351d | 2018-05-11 10:21:36 | [diff] [blame] | 473 | source_file_filter, |
Mirko Bonadei | f0e0d75 | 2018-07-04 06:48:18 | [diff] [blame] | 474 | error_formatter=_ReportFileAndLine): |
Mirko Bonadei | a51bbd8 | 2018-03-08 15:15:45 | [diff] [blame] | 475 | """Make sure that no more dependencies on stringstream are added.""" |
| 476 | error_msg = ('Usage of <sstream>, <istream> and <ostream> in WebRTC is ' |
| 477 | 'deprecated.\n' |
| 478 | 'This includes the following types:\n' |
| 479 | 'std::istringstream, std::ostringstream, std::wistringstream, ' |
| 480 | 'std::wostringstream,\n' |
| 481 | 'std::wstringstream, std::ostream, std::wostream, std::istream,' |
| 482 | 'std::wistream,\n' |
| 483 | 'std::iostream, std::wiostream.\n' |
| 484 | 'If you are not adding this code (e.g. you are just moving ' |
| 485 | 'existing code),\n' |
| 486 | 'you can add a comment on the line that causes the problem:\n\n' |
| 487 | '#include <sstream> // no-presubmit-check TODO(webrtc:8982)\n' |
| 488 | 'std::ostream& F() { // no-presubmit-check TODO(webrtc:8982)\n' |
| 489 | '\n' |
Karl Wiberg | ebd01e8 | 2018-03-14 14:08:39 | [diff] [blame] | 490 | 'If you are adding new code, consider using ' |
| 491 | 'rtc::SimpleStringBuilder\n' |
| 492 | '(in rtc_base/strings/string_builder.h).\n' |
Mirko Bonadei | a51bbd8 | 2018-03-08 15:15:45 | [diff] [blame] | 493 | 'Affected files:\n') |
| 494 | errors = [] # 2-element tuples with (file, line number) |
| 495 | include_re = input_api.re.compile(r'#include <(i|o|s)stream>') |
| 496 | usage_re = input_api.re.compile(r'std::(w|i|o|io|wi|wo|wio)(string)*stream') |
| 497 | no_presubmit_re = input_api.re.compile( |
Jonas Olsson | 7439534 | 2018-04-03 10:22:07 | [diff] [blame] | 498 | r'// no-presubmit-check TODO\(webrtc:8982\)') |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 499 | file_filter = lambda x: (input_api.FilterSourceFile(x) |
| 500 | and source_file_filter(x)) |
| 501 | for f in input_api.AffectedSourceFiles(file_filter): |
Mirko Bonadei | 44ca9a3 | 2018-11-13 10:16:40 | [diff] [blame] | 502 | # Usage of stringstream is allowed under examples/. |
| 503 | if f.LocalPath() == 'PRESUBMIT.py' or f.LocalPath().startswith('examples'): |
Mirko Bonadei | d2c8332 | 2018-03-19 10:31:47 | [diff] [blame] | 504 | continue |
| 505 | for line_num, line in f.ChangedContents(): |
| 506 | if ((include_re.search(line) or usage_re.search(line)) |
| 507 | and not no_presubmit_re.search(line)): |
| 508 | errors.append(error_formatter(f.LocalPath(), line_num)) |
Mirko Bonadei | a51bbd8 | 2018-03-08 15:15:45 | [diff] [blame] | 509 | if errors: |
| 510 | return [output_api.PresubmitError(error_msg, errors)] |
| 511 | return [] |
| 512 | |
Artem Titov | e92675b | 2018-05-22 08:21:27 | [diff] [blame] | 513 | |
Mirko Bonadei | a05d47e | 2018-05-09 09:03:38 | [diff] [blame] | 514 | def CheckPublicDepsIsNotUsed(gn_files, input_api, output_api): |
| 515 | """Checks that public_deps is not used without a good reason.""" |
Mirko Bonadei | 5c1ad59 | 2017-12-12 10:52:27 | [diff] [blame] | 516 | result = [] |
Mirko Bonadei | a05d47e | 2018-05-09 09:03:38 | [diff] [blame] | 517 | no_presubmit_check_re = input_api.re.compile( |
| 518 | r'# no-presubmit-check TODO\(webrtc:8603\)') |
| 519 | error_msg = ('public_deps is not recommended in WebRTC BUILD.gn files ' |
| 520 | 'because it doesn\'t map well to downstream build systems.\n' |
| 521 | 'Used in: %s (line %d).\n' |
| 522 | 'If you are not adding this code (e.g. you are just moving ' |
| 523 | 'existing code) or you have a good reason, you can add a ' |
| 524 | 'comment on the line that causes the problem:\n\n' |
| 525 | 'public_deps = [ # no-presubmit-check TODO(webrtc:8603)\n') |
Mirko Bonadei | 5c1ad59 | 2017-12-12 10:52:27 | [diff] [blame] | 526 | for affected_file in gn_files: |
| 527 | for (line_number, affected_line) in affected_file.ChangedContents(): |
Mirko Bonadei | a05d47e | 2018-05-09 09:03:38 | [diff] [blame] | 528 | if ('public_deps' in affected_line |
| 529 | and not no_presubmit_check_re.search(affected_line)): |
Mirko Bonadei | 5c1ad59 | 2017-12-12 10:52:27 | [diff] [blame] | 530 | result.append( |
| 531 | output_api.PresubmitError(error_msg % (affected_file.LocalPath(), |
| 532 | line_number))) |
| 533 | return result |
| 534 | |
Artem Titov | e92675b | 2018-05-22 08:21:27 | [diff] [blame] | 535 | |
Patrik Höglund | 6f49106 | 2018-01-11 11:04:23 | [diff] [blame] | 536 | def CheckCheckIncludesIsNotUsed(gn_files, output_api): |
| 537 | result = [] |
| 538 | error_msg = ('check_includes overrides are not allowed since it can cause ' |
| 539 | 'incorrect dependencies to form. It effectively means that your ' |
| 540 | 'module can include any .h file without depending on its ' |
| 541 | 'corresponding target. There are some exceptional cases when ' |
| 542 | 'this is allowed: if so, get approval from a .gn owner in the' |
| 543 | 'root OWNERS file.\n' |
| 544 | 'Used in: %s (line %d).') |
| 545 | for affected_file in gn_files: |
| 546 | for (line_number, affected_line) in affected_file.ChangedContents(): |
| 547 | if 'check_includes' in affected_line: |
| 548 | result.append( |
| 549 | output_api.PresubmitError(error_msg % (affected_file.LocalPath(), |
| 550 | line_number))) |
| 551 | return result |
| 552 | |
Artem Titov | e92675b | 2018-05-22 08:21:27 | [diff] [blame] | 553 | |
Mirko Bonadei | f0e0d75 | 2018-07-04 06:48:18 | [diff] [blame] | 554 | def CheckGnChanges(input_api, output_api): |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 555 | file_filter = lambda x: (input_api.FilterSourceFile( |
Oleh Prypin | afe0165 | 2017-10-04 13:56:08 | [diff] [blame] | 556 | x, white_list=(r'.+\.(gn|gni)$',), |
Mirko Bonadei | f0e0d75 | 2018-07-04 06:48:18 | [diff] [blame] | 557 | black_list=(r'.*/presubmit_checks_lib/testdata/.*',))) |
ehmaldonado | 5b1ba08 | 2016-09-02 12:51:08 | [diff] [blame] | 558 | |
| 559 | gn_files = [] |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 560 | for f in input_api.AffectedSourceFiles(file_filter): |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 561 | gn_files.append(f) |
ehmaldonado | 5b1ba08 | 2016-09-02 12:51:08 | [diff] [blame] | 562 | |
| 563 | result = [] |
| 564 | if gn_files: |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 565 | result.extend(CheckNoSourcesAbove(input_api, gn_files, output_api)) |
Mirko Bonadei | 4dc4e25 | 2017-09-19 11:49:16 | [diff] [blame] | 566 | result.extend(CheckNoMixingSources(input_api, gn_files, output_api)) |
| 567 | result.extend(CheckNoPackageBoundaryViolations(input_api, gn_files, |
| 568 | output_api)) |
Mirko Bonadei | a05d47e | 2018-05-09 09:03:38 | [diff] [blame] | 569 | result.extend(CheckPublicDepsIsNotUsed(gn_files, input_api, output_api)) |
Patrik Höglund | 6f49106 | 2018-01-11 11:04:23 | [diff] [blame] | 570 | result.extend(CheckCheckIncludesIsNotUsed(gn_files, output_api)) |
Mirko Bonadei | f0e0d75 | 2018-07-04 06:48:18 | [diff] [blame] | 571 | result.extend(CheckNoWarningSuppressionFlagsAreAdded(gn_files, input_api, |
| 572 | output_api)) |
ehmaldonado | 5b1ba08 | 2016-09-02 12:51:08 | [diff] [blame] | 573 | return result |
| 574 | |
Artem Titov | e92675b | 2018-05-22 08:21:27 | [diff] [blame] | 575 | |
Oleh Prypin | 920b653 | 2017-10-05 09:28:51 | [diff] [blame] | 576 | def CheckGnGen(input_api, output_api): |
| 577 | """Runs `gn gen --check` with default args to detect mismatches between |
| 578 | #includes and dependencies in the BUILD.gn files, as well as general build |
| 579 | errors. |
| 580 | """ |
| 581 | with _AddToPath(input_api.os_path.join( |
| 582 | input_api.PresubmitLocalPath(), 'tools_webrtc', 'presubmit_checks_lib')): |
Yves Gerey | 546ee61 | 2019-02-26 16:04:16 | [diff] [blame] | 583 | from build_helpers import RunGnCheck |
Mirko Bonadei | d866544 | 2018-09-04 10:17:27 | [diff] [blame] | 584 | errors = RunGnCheck(FindSrcDirPath(input_api.PresubmitLocalPath()))[:5] |
Oleh Prypin | 920b653 | 2017-10-05 09:28:51 | [diff] [blame] | 585 | if errors: |
| 586 | return [output_api.PresubmitPromptWarning( |
| 587 | 'Some #includes do not match the build dependency graph. Please run:\n' |
| 588 | ' gn gen --check <out_dir>', |
| 589 | long_text='\n\n'.join(errors))] |
| 590 | return [] |
| 591 | |
Artem Titov | e92675b | 2018-05-22 08:21:27 | [diff] [blame] | 592 | |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 593 | def CheckUnwantedDependencies(input_api, output_api, source_file_filter): |
kjellander@webrtc.org | 3bd4156 | 2014-09-01 11:06:37 | [diff] [blame] | 594 | """Runs checkdeps on #include statements added in this |
| 595 | change. Breaking - rules is an error, breaking ! rules is a |
| 596 | warning. |
| 597 | """ |
| 598 | # Copied from Chromium's src/PRESUBMIT.py. |
| 599 | |
| 600 | # We need to wait until we have an input_api object and use this |
| 601 | # roundabout construct to import checkdeps because this file is |
| 602 | # eval-ed and thus doesn't have __file__. |
Mirko Bonadei | d866544 | 2018-09-04 10:17:27 | [diff] [blame] | 603 | src_path = FindSrcDirPath(input_api.PresubmitLocalPath()) |
| 604 | checkdeps_path = input_api.os_path.join(src_path, 'buildtools', 'checkdeps') |
Oleh Prypin | 2f33a56 | 2017-10-04 18:17:54 | [diff] [blame] | 605 | if not os.path.exists(checkdeps_path): |
| 606 | return [output_api.PresubmitError( |
| 607 | 'Cannot find checkdeps at %s\nHave you run "gclient sync" to ' |
| 608 | 'download all the DEPS entries?' % checkdeps_path)] |
| 609 | with _AddToPath(checkdeps_path): |
kjellander@webrtc.org | 3bd4156 | 2014-09-01 11:06:37 | [diff] [blame] | 610 | import checkdeps |
| 611 | from cpp_checker import CppChecker |
| 612 | from rules import Rule |
kjellander@webrtc.org | 3bd4156 | 2014-09-01 11:06:37 | [diff] [blame] | 613 | |
| 614 | added_includes = [] |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 615 | for f in input_api.AffectedFiles(file_filter=source_file_filter): |
kjellander@webrtc.org | 3bd4156 | 2014-09-01 11:06:37 | [diff] [blame] | 616 | if not CppChecker.IsCppFile(f.LocalPath()): |
| 617 | continue |
| 618 | |
Henrik Kjellander | 57e5fd2 | 2015-05-25 10:55:39 | [diff] [blame] | 619 | changed_lines = [line for _, line in f.ChangedContents()] |
kjellander@webrtc.org | 3bd4156 | 2014-09-01 11:06:37 | [diff] [blame] | 620 | added_includes.append([f.LocalPath(), changed_lines]) |
| 621 | |
| 622 | deps_checker = checkdeps.DepsChecker(input_api.PresubmitLocalPath()) |
| 623 | |
| 624 | error_descriptions = [] |
| 625 | warning_descriptions = [] |
| 626 | for path, rule_type, rule_description in deps_checker.CheckAddedCppIncludes( |
| 627 | added_includes): |
| 628 | description_with_path = '%s\n %s' % (path, rule_description) |
| 629 | if rule_type == Rule.DISALLOW: |
| 630 | error_descriptions.append(description_with_path) |
| 631 | else: |
| 632 | warning_descriptions.append(description_with_path) |
| 633 | |
| 634 | results = [] |
| 635 | if error_descriptions: |
| 636 | results.append(output_api.PresubmitError( |
kjellander | a7066a3 | 2017-03-23 10:47:05 | [diff] [blame] | 637 | 'You added one or more #includes that violate checkdeps rules.\n' |
| 638 | 'Check that the DEPS files in these locations contain valid rules.\n' |
| 639 | 'See https://cs.chromium.org/chromium/src/buildtools/checkdeps/ for ' |
| 640 | 'more details about checkdeps.', |
kjellander@webrtc.org | 3bd4156 | 2014-09-01 11:06:37 | [diff] [blame] | 641 | error_descriptions)) |
| 642 | if warning_descriptions: |
| 643 | results.append(output_api.PresubmitPromptOrNotify( |
| 644 | 'You added one or more #includes of files that are temporarily\n' |
| 645 | 'allowed but being removed. Can you avoid introducing the\n' |
kjellander | a7066a3 | 2017-03-23 10:47:05 | [diff] [blame] | 646 | '#include? See relevant DEPS file(s) for details and contacts.\n' |
| 647 | 'See https://cs.chromium.org/chromium/src/buildtools/checkdeps/ for ' |
| 648 | 'more details about checkdeps.', |
kjellander@webrtc.org | 3bd4156 | 2014-09-01 11:06:37 | [diff] [blame] | 649 | warning_descriptions)) |
| 650 | return results |
| 651 | |
Artem Titov | e92675b | 2018-05-22 08:21:27 | [diff] [blame] | 652 | |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 653 | def CheckCommitMessageBugEntry(input_api, output_api): |
| 654 | """Check that bug entries are well-formed in commit message.""" |
| 655 | bogus_bug_msg = ( |
Mirko Bonadei | 6188018 | 2017-10-12 13:12:35 | [diff] [blame] | 656 | 'Bogus Bug entry: %s. Please specify the issue tracker prefix and the ' |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 657 | 'issue number, separated by a colon, e.g. webrtc:123 or chromium:12345.') |
| 658 | results = [] |
Mirko Bonadei | 6188018 | 2017-10-12 13:12:35 | [diff] [blame] | 659 | for bug in input_api.change.BugsFromDescription(): |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 660 | bug = bug.strip() |
| 661 | if bug.lower() == 'none': |
| 662 | continue |
charujain | 81a58c7 | 2017-09-25 11:25:45 | [diff] [blame] | 663 | if 'b/' not in bug and ':' not in bug: |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 664 | try: |
| 665 | if int(bug) > 100000: |
| 666 | # Rough indicator for current chromium bugs. |
| 667 | prefix_guess = 'chromium' |
| 668 | else: |
| 669 | prefix_guess = 'webrtc' |
Mirko Bonadei | 6188018 | 2017-10-12 13:12:35 | [diff] [blame] | 670 | results.append('Bug entry requires issue tracker prefix, e.g. %s:%s' % |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 671 | (prefix_guess, bug)) |
| 672 | except ValueError: |
| 673 | results.append(bogus_bug_msg % bug) |
charujain | 81a58c7 | 2017-09-25 11:25:45 | [diff] [blame] | 674 | elif not (re.match(r'\w+:\d+', bug) or re.match(r'b/\d+', bug)): |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 675 | results.append(bogus_bug_msg % bug) |
| 676 | return [output_api.PresubmitError(r) for r in results] |
| 677 | |
Artem Titov | e92675b | 2018-05-22 08:21:27 | [diff] [blame] | 678 | |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 679 | def CheckChangeHasBugField(input_api, output_api): |
Mirko Bonadei | 6188018 | 2017-10-12 13:12:35 | [diff] [blame] | 680 | """Requires that the changelist is associated with a bug. |
kjellander | d1e26a9 | 2016-09-19 15:11:16 | [diff] [blame] | 681 | |
| 682 | This check is stricter than the one in depot_tools/presubmit_canned_checks.py |
Mirko Bonadei | 6188018 | 2017-10-12 13:12:35 | [diff] [blame] | 683 | since it fails the presubmit if the bug field is missing or doesn't contain |
kjellander | d1e26a9 | 2016-09-19 15:11:16 | [diff] [blame] | 684 | a bug reference. |
Mirko Bonadei | 6188018 | 2017-10-12 13:12:35 | [diff] [blame] | 685 | |
| 686 | This supports both 'BUG=' and 'Bug:' since we are in the process of migrating |
| 687 | to Gerrit and it encourages the usage of 'Bug:'. |
kjellander | d1e26a9 | 2016-09-19 15:11:16 | [diff] [blame] | 688 | """ |
Mirko Bonadei | 6188018 | 2017-10-12 13:12:35 | [diff] [blame] | 689 | if input_api.change.BugsFromDescription(): |
kjellander | d1e26a9 | 2016-09-19 15:11:16 | [diff] [blame] | 690 | return [] |
| 691 | else: |
| 692 | return [output_api.PresubmitError( |
Mirko Bonadei | 6188018 | 2017-10-12 13:12:35 | [diff] [blame] | 693 | 'The "Bug: [bug number]" footer is mandatory. Please create a bug and ' |
kjellander | d1e26a9 | 2016-09-19 15:11:16 | [diff] [blame] | 694 | 'reference it using either of:\n' |
Mirko Bonadei | 6188018 | 2017-10-12 13:12:35 | [diff] [blame] | 695 | ' * https://bugs.webrtc.org - reference it using Bug: webrtc:XXXX\n' |
| 696 | ' * https://crbug.com - reference it using Bug: chromium:XXXXXX')] |
kjellander@webrtc.org | e415864 | 2014-08-06 09:11:18 | [diff] [blame] | 697 | |
Artem Titov | e92675b | 2018-05-22 08:21:27 | [diff] [blame] | 698 | |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 699 | def CheckJSONParseErrors(input_api, output_api, source_file_filter): |
kjellander | 569cf94 | 2016-02-11 13:02:59 | [diff] [blame] | 700 | """Check that JSON files do not contain syntax errors.""" |
| 701 | |
| 702 | def FilterFile(affected_file): |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 703 | return (input_api.os_path.splitext(affected_file.LocalPath())[1] == '.json' |
| 704 | and source_file_filter(affected_file)) |
kjellander | 569cf94 | 2016-02-11 13:02:59 | [diff] [blame] | 705 | |
| 706 | def GetJSONParseError(input_api, filename): |
| 707 | try: |
| 708 | contents = input_api.ReadFile(filename) |
| 709 | input_api.json.loads(contents) |
| 710 | except ValueError as e: |
| 711 | return e |
| 712 | return None |
| 713 | |
| 714 | results = [] |
| 715 | for affected_file in input_api.AffectedFiles( |
| 716 | file_filter=FilterFile, include_deletes=False): |
| 717 | parse_error = GetJSONParseError(input_api, |
| 718 | affected_file.AbsoluteLocalPath()) |
| 719 | if parse_error: |
| 720 | results.append(output_api.PresubmitError('%s could not be parsed: %s' % |
Artem Titov | e92675b | 2018-05-22 08:21:27 | [diff] [blame] | 721 | (affected_file.LocalPath(), |
| 722 | parse_error))) |
kjellander | 569cf94 | 2016-02-11 13:02:59 | [diff] [blame] | 723 | return results |
| 724 | |
| 725 | |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 726 | def RunPythonTests(input_api, output_api): |
kjellander | c88b5d5 | 2017-04-05 13:42:43 | [diff] [blame] | 727 | def Join(*args): |
Henrik Kjellander | 8d3ad82 | 2015-05-26 17:52:05 | [diff] [blame] | 728 | return input_api.os_path.join(input_api.PresubmitLocalPath(), *args) |
| 729 | |
| 730 | test_directories = [ |
Edward Lemur | 6d01f6d | 2017-09-14 15:02:01 | [diff] [blame] | 731 | input_api.PresubmitLocalPath(), |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 732 | Join('rtc_tools', 'py_event_log_analyzer'), |
| 733 | Join('rtc_tools'), |
| 734 | Join('audio', 'test', 'unittests'), |
ehmaldonado | 4fb9746 | 2017-01-30 13:27:22 | [diff] [blame] | 735 | ] + [ |
Henrik Kjellander | 90fd7d8 | 2017-05-09 06:30:10 | [diff] [blame] | 736 | root for root, _, files in os.walk(Join('tools_webrtc')) |
ehmaldonado | 4fb9746 | 2017-01-30 13:27:22 | [diff] [blame] | 737 | if any(f.endswith('_test.py') for f in files) |
Henrik Kjellander | 8d3ad82 | 2015-05-26 17:52:05 | [diff] [blame] | 738 | ] |
| 739 | |
| 740 | tests = [] |
| 741 | for directory in test_directories: |
| 742 | tests.extend( |
| 743 | input_api.canned_checks.GetUnitTestsInDirectory( |
| 744 | input_api, |
| 745 | output_api, |
| 746 | directory, |
| 747 | whitelist=[r'.+_test\.py$'])) |
| 748 | return input_api.RunTests(tests, parallel=True) |
| 749 | |
| 750 | |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 751 | def CheckUsageOfGoogleProtobufNamespace(input_api, output_api, |
| 752 | source_file_filter): |
mbonadei | 38415b2 | 2017-04-07 12:38:01 | [diff] [blame] | 753 | """Checks that the namespace google::protobuf has not been used.""" |
| 754 | files = [] |
| 755 | pattern = input_api.re.compile(r'google::protobuf') |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 756 | proto_utils_path = os.path.join('rtc_base', 'protobuf_utils.h') |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 757 | file_filter = lambda x: (input_api.FilterSourceFile(x) |
| 758 | and source_file_filter(x)) |
| 759 | for f in input_api.AffectedSourceFiles(file_filter): |
mbonadei | 38415b2 | 2017-04-07 12:38:01 | [diff] [blame] | 760 | if f.LocalPath() in [proto_utils_path, 'PRESUBMIT.py']: |
| 761 | continue |
| 762 | contents = input_api.ReadFile(f) |
| 763 | if pattern.search(contents): |
| 764 | files.append(f) |
| 765 | |
| 766 | if files: |
| 767 | return [output_api.PresubmitError( |
| 768 | 'Please avoid to use namespace `google::protobuf` directly.\n' |
| 769 | 'Add a using directive in `%s` and include that header instead.' |
| 770 | % proto_utils_path, files)] |
| 771 | return [] |
| 772 | |
| 773 | |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 774 | def _LicenseHeader(input_api): |
| 775 | """Returns the license header regexp.""" |
| 776 | # Accept any year number from 2003 to the current year |
| 777 | current_year = int(input_api.time.strftime('%Y')) |
| 778 | allowed_years = (str(s) for s in reversed(xrange(2003, current_year + 1))) |
| 779 | years_re = '(' + '|'.join(allowed_years) + ')' |
| 780 | license_header = ( |
| 781 | r'.*? Copyright( \(c\))? %(year)s The WebRTC [Pp]roject [Aa]uthors\. ' |
| 782 | r'All [Rr]ights [Rr]eserved\.\n' |
| 783 | r'.*?\n' |
| 784 | r'.*? Use of this source code is governed by a BSD-style license\n' |
| 785 | r'.*? that can be found in the LICENSE file in the root of the source\n' |
| 786 | r'.*? tree\. An additional intellectual property rights grant can be ' |
| 787 | r'found\n' |
| 788 | r'.*? in the file PATENTS\. All contributing project authors may\n' |
| 789 | r'.*? be found in the AUTHORS file in the root of the source tree\.\n' |
| 790 | ) % { |
| 791 | 'year': years_re, |
| 792 | } |
| 793 | return license_header |
| 794 | |
| 795 | |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 796 | def CommonChecks(input_api, output_api): |
andrew@webrtc.org | 53df136 | 2012-01-26 21:24:23 | [diff] [blame] | 797 | """Checks common to both upload and commit.""" |
niklase@google.com | da159d6 | 2011-05-30 11:51:34 | [diff] [blame] | 798 | results = [] |
tkchin | 42f580e | 2015-11-27 07:18:23 | [diff] [blame] | 799 | # Filter out files that are in objc or ios dirs from being cpplint-ed since |
| 800 | # they do not follow C++ lint rules. |
| 801 | black_list = input_api.DEFAULT_BLACK_LIST + ( |
| 802 | r".*\bobjc[\\\/].*", |
Kári Tristan Helgason | 3fa3517 | 2016-09-09 08:55:05 | [diff] [blame] | 803 | r".*objc\.[hcm]+$", |
tkchin | 42f580e | 2015-11-27 07:18:23 | [diff] [blame] | 804 | ) |
| 805 | source_file_filter = lambda x: input_api.FilterSourceFile(x, None, black_list) |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 806 | results.extend(CheckApprovedFilesLintClean( |
tkchin | 42f580e | 2015-11-27 07:18:23 | [diff] [blame] | 807 | input_api, output_api, source_file_filter)) |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 808 | results.extend(input_api.canned_checks.CheckLicense( |
| 809 | input_api, output_api, _LicenseHeader(input_api))) |
phoglund@webrtc.org | 5d371393 | 2013-03-07 09:59:43 | [diff] [blame] | 810 | results.extend(input_api.canned_checks.RunPylint(input_api, output_api, |
kjellander@webrtc.org | 177567c | 2016-12-22 09:40:28 | [diff] [blame] | 811 | black_list=(r'^base[\\\/].*\.py$', |
Henrik Kjellander | 14771ac | 2015-06-02 11:10:04 | [diff] [blame] | 812 | r'^build[\\\/].*\.py$', |
| 813 | r'^buildtools[\\\/].*\.py$', |
kjellander | 38c65c8 | 2017-04-13 05:43:38 | [diff] [blame] | 814 | r'^infra[\\\/].*\.py$', |
Henrik Kjellander | 0779e8f | 2016-12-22 11:01:17 | [diff] [blame] | 815 | r'^ios[\\\/].*\.py$', |
Henrik Kjellander | 14771ac | 2015-06-02 11:10:04 | [diff] [blame] | 816 | r'^out.*[\\\/].*\.py$', |
| 817 | r'^testing[\\\/].*\.py$', |
| 818 | r'^third_party[\\\/].*\.py$', |
kjellander@webrtc.org | 177567c | 2016-12-22 09:40:28 | [diff] [blame] | 819 | r'^tools[\\\/].*\.py$', |
kjellander | afd5494 | 2016-12-17 20:21:39 | [diff] [blame] | 820 | # TODO(phoglund): should arguably be checked. |
Henrik Kjellander | 90fd7d8 | 2017-05-09 06:30:10 | [diff] [blame] | 821 | r'^tools_webrtc[\\\/]mb[\\\/].*\.py$', |
Henrik Kjellander | 14771ac | 2015-06-02 11:10:04 | [diff] [blame] | 822 | r'^xcodebuild.*[\\\/].*\.py$',), |
Henrik Kjellander | 57e5fd2 | 2015-05-25 10:55:39 | [diff] [blame] | 823 | pylintrc='pylintrc')) |
kjellander | 569cf94 | 2016-02-11 13:02:59 | [diff] [blame] | 824 | |
nisse | 3d21e23 | 2016-09-02 10:07:06 | [diff] [blame] | 825 | # TODO(nisse): talk/ is no more, so make below checks simpler? |
Henrik Kjellander | 57e5fd2 | 2015-05-25 10:55:39 | [diff] [blame] | 826 | # WebRTC can't use the presubmit_canned_checks.PanProjectChecks function since |
| 827 | # we need to have different license checks in talk/ and webrtc/ directories. |
| 828 | # Instead, hand-picked checks are included below. |
Henrik Kjellander | 6322467 | 2015-09-08 06:03:56 | [diff] [blame] | 829 | |
tkchin | 3cd9a30 | 2016-06-08 19:40:28 | [diff] [blame] | 830 | # .m and .mm files are ObjC files. For simplicity we will consider .h files in |
| 831 | # ObjC subdirectories ObjC headers. |
| 832 | objc_filter_list = (r'.+\.m$', r'.+\.mm$', r'.+objc\/.+\.h$') |
Henrik Kjellander | b4af3d6 | 2016-11-16 19:11:29 | [diff] [blame] | 833 | # Skip long-lines check for DEPS and GN files. |
| 834 | build_file_filter_list = (r'.+\.gn$', r'.+\.gni$', 'DEPS') |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 835 | # Also we will skip most checks for third_party directory. |
Artem Titov | 42f0d78 | 2018-06-27 11:23:17 | [diff] [blame] | 836 | third_party_filter_list = (r'^third_party[\\\/].+',) |
tkchin | 3cd9a30 | 2016-06-08 19:40:28 | [diff] [blame] | 837 | eighty_char_sources = lambda x: input_api.FilterSourceFile(x, |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 838 | black_list=build_file_filter_list + objc_filter_list + |
| 839 | third_party_filter_list) |
tkchin | 3cd9a30 | 2016-06-08 19:40:28 | [diff] [blame] | 840 | hundred_char_sources = lambda x: input_api.FilterSourceFile(x, |
| 841 | white_list=objc_filter_list) |
Artem Titov | e92675b | 2018-05-22 08:21:27 | [diff] [blame] | 842 | non_third_party_sources = lambda x: input_api.FilterSourceFile(x, |
| 843 | black_list=third_party_filter_list) |
| 844 | |
andrew@webrtc.org | 2442de1 | 2012-01-23 17:45:41 | [diff] [blame] | 845 | results.extend(input_api.canned_checks.CheckLongLines( |
tkchin | 3cd9a30 | 2016-06-08 19:40:28 | [diff] [blame] | 846 | input_api, output_api, maxlen=80, source_file_filter=eighty_char_sources)) |
| 847 | results.extend(input_api.canned_checks.CheckLongLines( |
| 848 | input_api, output_api, maxlen=100, |
| 849 | source_file_filter=hundred_char_sources)) |
andrew@webrtc.org | 2442de1 | 2012-01-23 17:45:41 | [diff] [blame] | 850 | results.extend(input_api.canned_checks.CheckChangeHasNoTabs( |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 851 | input_api, output_api, source_file_filter=non_third_party_sources)) |
andrew@webrtc.org | 53df136 | 2012-01-26 21:24:23 | [diff] [blame] | 852 | results.extend(input_api.canned_checks.CheckChangeHasNoStrayWhitespace( |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 853 | input_api, output_api, source_file_filter=non_third_party_sources)) |
kjellander | e5dc62a | 2016-12-14 08:16:21 | [diff] [blame] | 854 | results.extend(input_api.canned_checks.CheckAuthorizedAuthor( |
Oleh Prypin | e073514 | 2018-10-04 09:15:54 | [diff] [blame] | 855 | input_api, output_api, bot_whitelist=[ |
| 856 | 'chromium-webrtc-autoroll@webrtc-ci.iam.gserviceaccount.com' |
| 857 | ])) |
andrew@webrtc.org | 53df136 | 2012-01-26 21:24:23 | [diff] [blame] | 858 | results.extend(input_api.canned_checks.CheckChangeTodoHasOwner( |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 859 | input_api, output_api, source_file_filter=non_third_party_sources)) |
Yves Gerey | 87a9353 | 2018-06-20 13:51:49 | [diff] [blame] | 860 | results.extend(input_api.canned_checks.CheckPatchFormatted( |
| 861 | input_api, output_api)) |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 862 | results.extend(CheckNativeApiHeaderChanges(input_api, output_api)) |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 863 | results.extend(CheckNoIOStreamInHeaders( |
| 864 | input_api, output_api, source_file_filter=non_third_party_sources)) |
| 865 | results.extend(CheckNoPragmaOnce( |
| 866 | input_api, output_api, source_file_filter=non_third_party_sources)) |
| 867 | results.extend(CheckNoFRIEND_TEST( |
| 868 | input_api, output_api, source_file_filter=non_third_party_sources)) |
Mirko Bonadei | f0e0d75 | 2018-07-04 06:48:18 | [diff] [blame] | 869 | results.extend(CheckGnChanges(input_api, output_api)) |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 870 | results.extend(CheckUnwantedDependencies( |
| 871 | input_api, output_api, source_file_filter=non_third_party_sources)) |
| 872 | results.extend(CheckJSONParseErrors( |
| 873 | input_api, output_api, source_file_filter=non_third_party_sources)) |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 874 | results.extend(RunPythonTests(input_api, output_api)) |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 875 | results.extend(CheckUsageOfGoogleProtobufNamespace( |
| 876 | input_api, output_api, source_file_filter=non_third_party_sources)) |
| 877 | results.extend(CheckOrphanHeaders( |
| 878 | input_api, output_api, source_file_filter=non_third_party_sources)) |
| 879 | results.extend(CheckNewlineAtTheEndOfProtoFiles( |
| 880 | input_api, output_api, source_file_filter=non_third_party_sources)) |
| 881 | results.extend(CheckNoStreamUsageIsAdded( |
Artem Titov | 739351d | 2018-05-11 10:21:36 | [diff] [blame] | 882 | input_api, output_api, non_third_party_sources)) |
Mirko Bonadei | 9ce800d | 2019-02-05 15:48:13 | [diff] [blame] | 883 | results.extend(CheckNoTestCaseUsageIsAdded( |
| 884 | input_api, output_api, non_third_party_sources)) |
Mirko Bonadei | 7e4ee6e | 2018-09-28 09:45:23 | [diff] [blame] | 885 | results.extend(CheckAddedDepsHaveTargetApprovals(input_api, output_api)) |
Mirko Bonadei | a418e67 | 2018-10-24 11:57:25 | [diff] [blame] | 886 | results.extend(CheckApiDepsFileIsUpToDate(input_api, output_api)) |
tzik | a06bf85 | 2018-11-15 11:37:35 | [diff] [blame] | 887 | results.extend(CheckAbslMemoryInclude( |
| 888 | input_api, output_api, non_third_party_sources)) |
Mirko Bonadei | a418e67 | 2018-10-24 11:57:25 | [diff] [blame] | 889 | return results |
| 890 | |
| 891 | |
| 892 | def CheckApiDepsFileIsUpToDate(input_api, output_api): |
Mirko Bonadei | 9049037 | 2018-10-26 11:17:47 | [diff] [blame] | 893 | """Check that 'include_rules' in api/DEPS is up to date. |
| 894 | |
| 895 | The file api/DEPS must be kept up to date in order to avoid to avoid to |
| 896 | include internal header from WebRTC's api/ headers. |
| 897 | |
| 898 | This check is focused on ensuring that 'include_rules' contains a deny |
| 899 | rule for each root level directory. More focused allow rules can be |
| 900 | added to 'specific_include_rules'. |
| 901 | """ |
Mirko Bonadei | a418e67 | 2018-10-24 11:57:25 | [diff] [blame] | 902 | results = [] |
| 903 | api_deps = os.path.join(input_api.PresubmitLocalPath(), 'api', 'DEPS') |
| 904 | with open(api_deps) as f: |
| 905 | deps_content = _ParseDeps(f.read()) |
| 906 | |
| 907 | include_rules = deps_content.get('include_rules', []) |
Mirko Bonadei | a418e67 | 2018-10-24 11:57:25 | [diff] [blame] | 908 | |
Mirko Bonadei | 9049037 | 2018-10-26 11:17:47 | [diff] [blame] | 909 | # Only check top level directories affected by the current CL. |
| 910 | dirs_to_check = set() |
| 911 | for f in input_api.AffectedFiles(): |
| 912 | path_tokens = [t for t in f.LocalPath().split(os.sep) if t] |
| 913 | if len(path_tokens) > 1: |
| 914 | if (path_tokens[0] != 'api' and |
| 915 | os.path.isdir(os.path.join(input_api.PresubmitLocalPath(), |
| 916 | path_tokens[0]))): |
| 917 | dirs_to_check.add(path_tokens[0]) |
Mirko Bonadei | a418e67 | 2018-10-24 11:57:25 | [diff] [blame] | 918 | |
Mirko Bonadei | 9049037 | 2018-10-26 11:17:47 | [diff] [blame] | 919 | missing_include_rules = set() |
| 920 | for p in dirs_to_check: |
Mirko Bonadei | a418e67 | 2018-10-24 11:57:25 | [diff] [blame] | 921 | rule = '-%s' % p |
| 922 | if rule not in include_rules: |
Mirko Bonadei | 9049037 | 2018-10-26 11:17:47 | [diff] [blame] | 923 | missing_include_rules.add(rule) |
| 924 | |
Mirko Bonadei | a418e67 | 2018-10-24 11:57:25 | [diff] [blame] | 925 | if missing_include_rules: |
Mirko Bonadei | 9049037 | 2018-10-26 11:17:47 | [diff] [blame] | 926 | error_msg = [ |
| 927 | 'include_rules = [\n', |
| 928 | ' ...\n', |
| 929 | ] |
Mirko Bonadei | a418e67 | 2018-10-24 11:57:25 | [diff] [blame] | 930 | |
Mirko Bonadei | 9049037 | 2018-10-26 11:17:47 | [diff] [blame] | 931 | for r in sorted(missing_include_rules): |
| 932 | error_msg.append(' "%s",\n' % str(r)) |
Mirko Bonadei | a418e67 | 2018-10-24 11:57:25 | [diff] [blame] | 933 | |
Mirko Bonadei | 9049037 | 2018-10-26 11:17:47 | [diff] [blame] | 934 | error_msg.append(' ...\n') |
| 935 | error_msg.append(']\n') |
| 936 | |
Mirko Bonadei | a418e67 | 2018-10-24 11:57:25 | [diff] [blame] | 937 | results.append(output_api.PresubmitError( |
Mirko Bonadei | 9049037 | 2018-10-26 11:17:47 | [diff] [blame] | 938 | 'New root level directory detected! WebRTC api/ headers should ' |
| 939 | 'not #include headers from \n' |
| 940 | 'the new directory, so please update "include_rules" in file\n' |
| 941 | '"%s". Example:\n%s\n' % (api_deps, ''.join(error_msg)))) |
| 942 | |
andrew@webrtc.org | 53df136 | 2012-01-26 21:24:23 | [diff] [blame] | 943 | return results |
andrew@webrtc.org | 2442de1 | 2012-01-23 17:45:41 | [diff] [blame] | 944 | |
tzik | a06bf85 | 2018-11-15 11:37:35 | [diff] [blame] | 945 | def CheckAbslMemoryInclude(input_api, output_api, source_file_filter): |
| 946 | pattern = input_api.re.compile( |
| 947 | r'^#include\s*"absl/memory/memory.h"', input_api.re.MULTILINE) |
| 948 | file_filter = lambda f: (f.LocalPath().endswith(('.cc', '.h')) |
| 949 | and source_file_filter(f)) |
| 950 | |
| 951 | files = [] |
| 952 | for f in input_api.AffectedFiles( |
| 953 | include_deletes=False, file_filter=file_filter): |
| 954 | contents = input_api.ReadFile(f) |
| 955 | if pattern.search(contents): |
| 956 | continue |
| 957 | for _, line in f.ChangedContents(): |
tzik | 6b7bf6a | 2019-02-28 13:09:59 | [diff] [blame] | 958 | if 'absl::make_unique' in line or 'absl::WrapUnique' in line: |
tzik | a06bf85 | 2018-11-15 11:37:35 | [diff] [blame] | 959 | files.append(f) |
| 960 | break |
| 961 | |
| 962 | if len(files): |
| 963 | return [output_api.PresubmitError( |
| 964 | 'Please include "absl/memory/memory.h" header for' |
tzik | 6b7bf6a | 2019-02-28 13:09:59 | [diff] [blame] | 965 | ' absl::make_unique or absl::WrapUnique.\nThis header may or' |
| 966 | ' may not be included transitively depending on the C++ standard' |
| 967 | ' version.', |
tzik | a06bf85 | 2018-11-15 11:37:35 | [diff] [blame] | 968 | files)] |
| 969 | return [] |
kjellander@webrtc.org | e415864 | 2014-08-06 09:11:18 | [diff] [blame] | 970 | |
andrew@webrtc.org | 53df136 | 2012-01-26 21:24:23 | [diff] [blame] | 971 | def CheckChangeOnUpload(input_api, output_api): |
| 972 | results = [] |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 973 | results.extend(CommonChecks(input_api, output_api)) |
Oleh Prypin | 920b653 | 2017-10-05 09:28:51 | [diff] [blame] | 974 | results.extend(CheckGnGen(input_api, output_api)) |
Henrik Kjellander | 57e5fd2 | 2015-05-25 10:55:39 | [diff] [blame] | 975 | results.extend( |
| 976 | input_api.canned_checks.CheckGNFormatted(input_api, output_api)) |
niklase@google.com | da159d6 | 2011-05-30 11:51:34 | [diff] [blame] | 977 | return results |
| 978 | |
kjellander@webrtc.org | e415864 | 2014-08-06 09:11:18 | [diff] [blame] | 979 | |
andrew@webrtc.org | 2442de1 | 2012-01-23 17:45:41 | [diff] [blame] | 980 | def CheckChangeOnCommit(input_api, output_api): |
niklase@google.com | 1198db9 | 2011-06-09 07:07:24 | [diff] [blame] | 981 | results = [] |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 982 | results.extend(CommonChecks(input_api, output_api)) |
| 983 | results.extend(VerifyNativeApiHeadersListIsValid(input_api, output_api)) |
Artem Titov | 42f0d78 | 2018-06-27 11:23:17 | [diff] [blame] | 984 | results.extend(input_api.canned_checks.CheckOwners(input_api, output_api)) |
andrew@webrtc.org | 53df136 | 2012-01-26 21:24:23 | [diff] [blame] | 985 | results.extend(input_api.canned_checks.CheckChangeWasUploaded( |
| 986 | input_api, output_api)) |
| 987 | results.extend(input_api.canned_checks.CheckChangeHasDescription( |
| 988 | input_api, output_api)) |
charujain | 9893e25 | 2017-09-14 11:33:22 | [diff] [blame] | 989 | results.extend(CheckChangeHasBugField(input_api, output_api)) |
| 990 | results.extend(CheckCommitMessageBugEntry(input_api, output_api)) |
kjellander@webrtc.org | 12cb88c | 2014-02-13 11:53:43 | [diff] [blame] | 991 | results.extend(input_api.canned_checks.CheckTreeIsOpen( |
| 992 | input_api, output_api, |
| 993 | json_url='http://webrtc-status.appspot.com/current?format=json')) |
niklase@google.com | 1198db9 | 2011-06-09 07:07:24 | [diff] [blame] | 994 | return results |
mbonadei | 74973ed | 2017-05-09 14:58:05 | [diff] [blame] | 995 | |
| 996 | |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 997 | def CheckOrphanHeaders(input_api, output_api, source_file_filter): |
mbonadei | 74973ed | 2017-05-09 14:58:05 | [diff] [blame] | 998 | # We need to wait until we have an input_api object and use this |
| 999 | # roundabout construct to import prebubmit_checks_lib because this file is |
| 1000 | # eval-ed and thus doesn't have __file__. |
Patrik Höglund | 2f3f722 | 2017-12-19 10:08:56 | [diff] [blame] | 1001 | error_msg = """{} should be listed in {}.""" |
mbonadei | 74973ed | 2017-05-09 14:58:05 | [diff] [blame] | 1002 | results = [] |
Patrik Höglund | 7e60de2 | 2018-01-09 13:22:00 | [diff] [blame] | 1003 | orphan_blacklist = [ |
| 1004 | os.path.join('tools_webrtc', 'ios', 'SDK'), |
| 1005 | ] |
Oleh Prypin | 2f33a56 | 2017-10-04 18:17:54 | [diff] [blame] | 1006 | with _AddToPath(input_api.os_path.join( |
| 1007 | input_api.PresubmitLocalPath(), 'tools_webrtc', 'presubmit_checks_lib')): |
mbonadei | 74973ed | 2017-05-09 14:58:05 | [diff] [blame] | 1008 | from check_orphan_headers import GetBuildGnPathFromFilePath |
| 1009 | from check_orphan_headers import IsHeaderInBuildGn |
mbonadei | 74973ed | 2017-05-09 14:58:05 | [diff] [blame] | 1010 | |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 1011 | file_filter = lambda x: input_api.FilterSourceFile( |
| 1012 | x, black_list=orphan_blacklist) and source_file_filter(x) |
| 1013 | for f in input_api.AffectedSourceFiles(file_filter): |
Patrik Höglund | 7e60de2 | 2018-01-09 13:22:00 | [diff] [blame] | 1014 | if f.LocalPath().endswith('.h'): |
mbonadei | 74973ed | 2017-05-09 14:58:05 | [diff] [blame] | 1015 | file_path = os.path.abspath(f.LocalPath()) |
| 1016 | root_dir = os.getcwd() |
| 1017 | gn_file_path = GetBuildGnPathFromFilePath(file_path, os.path.exists, |
| 1018 | root_dir) |
| 1019 | in_build_gn = IsHeaderInBuildGn(file_path, gn_file_path) |
| 1020 | if not in_build_gn: |
| 1021 | results.append(output_api.PresubmitError(error_msg.format( |
Patrik Höglund | 2f3f722 | 2017-12-19 10:08:56 | [diff] [blame] | 1022 | f.LocalPath(), os.path.relpath(gn_file_path)))) |
mbonadei | 74973ed | 2017-05-09 14:58:05 | [diff] [blame] | 1023 | return results |
Mirko Bonadei | 960fd5b | 2017-06-29 12:59:36 | [diff] [blame] | 1024 | |
| 1025 | |
Artem Titov | e92675b | 2018-05-22 08:21:27 | [diff] [blame] | 1026 | def CheckNewlineAtTheEndOfProtoFiles(input_api, output_api, source_file_filter): |
Mirko Bonadei | 960fd5b | 2017-06-29 12:59:36 | [diff] [blame] | 1027 | """Checks that all .proto files are terminated with a newline.""" |
| 1028 | error_msg = 'File {} must end with exactly one newline.' |
| 1029 | results = [] |
Artem Titov | a04d140 | 2018-05-11 09:23:00 | [diff] [blame] | 1030 | file_filter = lambda x: input_api.FilterSourceFile( |
| 1031 | x, white_list=(r'.+\.proto$',)) and source_file_filter(x) |
| 1032 | for f in input_api.AffectedSourceFiles(file_filter): |
Mirko Bonadei | 960fd5b | 2017-06-29 12:59:36 | [diff] [blame] | 1033 | file_path = f.LocalPath() |
| 1034 | with open(file_path) as f: |
| 1035 | lines = f.readlines() |
Mirko Bonadei | a730c1c | 2017-09-18 09:33:13 | [diff] [blame] | 1036 | if len(lines) > 0 and not lines[-1].endswith('\n'): |
Mirko Bonadei | 960fd5b | 2017-06-29 12:59:36 | [diff] [blame] | 1037 | results.append(output_api.PresubmitError(error_msg.format(file_path))) |
| 1038 | return results |
Mirko Bonadei | 7e4ee6e | 2018-09-28 09:45:23 | [diff] [blame] | 1039 | |
| 1040 | |
| 1041 | def _ExtractAddRulesFromParsedDeps(parsed_deps): |
| 1042 | """Extract the rules that add dependencies from a parsed DEPS file. |
| 1043 | |
| 1044 | Args: |
| 1045 | parsed_deps: the locals dictionary from evaluating the DEPS file.""" |
| 1046 | add_rules = set() |
| 1047 | add_rules.update([ |
| 1048 | rule[1:] for rule in parsed_deps.get('include_rules', []) |
| 1049 | if rule.startswith('+') or rule.startswith('!') |
| 1050 | ]) |
| 1051 | for _, rules in parsed_deps.get('specific_include_rules', |
| 1052 | {}).iteritems(): |
| 1053 | add_rules.update([ |
| 1054 | rule[1:] for rule in rules |
| 1055 | if rule.startswith('+') or rule.startswith('!') |
| 1056 | ]) |
| 1057 | return add_rules |
| 1058 | |
| 1059 | |
| 1060 | def _ParseDeps(contents): |
| 1061 | """Simple helper for parsing DEPS files.""" |
| 1062 | # Stubs for handling special syntax in the root DEPS file. |
| 1063 | class VarImpl(object): |
| 1064 | |
| 1065 | def __init__(self, local_scope): |
| 1066 | self._local_scope = local_scope |
| 1067 | |
| 1068 | def Lookup(self, var_name): |
| 1069 | """Implements the Var syntax.""" |
| 1070 | try: |
| 1071 | return self._local_scope['vars'][var_name] |
| 1072 | except KeyError: |
| 1073 | raise Exception('Var is not defined: %s' % var_name) |
| 1074 | |
| 1075 | local_scope = {} |
| 1076 | global_scope = { |
| 1077 | 'Var': VarImpl(local_scope).Lookup, |
| 1078 | } |
| 1079 | exec contents in global_scope, local_scope |
| 1080 | return local_scope |
| 1081 | |
| 1082 | |
| 1083 | def _CalculateAddedDeps(os_path, old_contents, new_contents): |
| 1084 | """Helper method for _CheckAddedDepsHaveTargetApprovals. Returns |
| 1085 | a set of DEPS entries that we should look up. |
| 1086 | |
| 1087 | For a directory (rather than a specific filename) we fake a path to |
| 1088 | a specific filename by adding /DEPS. This is chosen as a file that |
| 1089 | will seldom or never be subject to per-file include_rules. |
| 1090 | """ |
| 1091 | # We ignore deps entries on auto-generated directories. |
| 1092 | auto_generated_dirs = ['grit', 'jni'] |
| 1093 | |
| 1094 | old_deps = _ExtractAddRulesFromParsedDeps(_ParseDeps(old_contents)) |
| 1095 | new_deps = _ExtractAddRulesFromParsedDeps(_ParseDeps(new_contents)) |
| 1096 | |
| 1097 | added_deps = new_deps.difference(old_deps) |
| 1098 | |
| 1099 | results = set() |
| 1100 | for added_dep in added_deps: |
| 1101 | if added_dep.split('/')[0] in auto_generated_dirs: |
| 1102 | continue |
| 1103 | # Assume that a rule that ends in .h is a rule for a specific file. |
| 1104 | if added_dep.endswith('.h'): |
| 1105 | results.add(added_dep) |
| 1106 | else: |
| 1107 | results.add(os_path.join(added_dep, 'DEPS')) |
| 1108 | return results |
| 1109 | |
| 1110 | |
| 1111 | def CheckAddedDepsHaveTargetApprovals(input_api, output_api): |
| 1112 | """When a dependency prefixed with + is added to a DEPS file, we |
| 1113 | want to make sure that the change is reviewed by an OWNER of the |
| 1114 | target file or directory, to avoid layering violations from being |
| 1115 | introduced. This check verifies that this happens. |
| 1116 | """ |
| 1117 | virtual_depended_on_files = set() |
| 1118 | |
| 1119 | file_filter = lambda f: not input_api.re.match( |
| 1120 | r"^third_party[\\\/](WebKit|blink)[\\\/].*", f.LocalPath()) |
| 1121 | for f in input_api.AffectedFiles(include_deletes=False, |
| 1122 | file_filter=file_filter): |
| 1123 | filename = input_api.os_path.basename(f.LocalPath()) |
| 1124 | if filename == 'DEPS': |
| 1125 | virtual_depended_on_files.update(_CalculateAddedDeps( |
| 1126 | input_api.os_path, |
| 1127 | '\n'.join(f.OldContents()), |
| 1128 | '\n'.join(f.NewContents()))) |
| 1129 | |
| 1130 | if not virtual_depended_on_files: |
| 1131 | return [] |
| 1132 | |
| 1133 | if input_api.is_committing: |
| 1134 | if input_api.tbr: |
| 1135 | return [output_api.PresubmitNotifyResult( |
| 1136 | '--tbr was specified, skipping OWNERS check for DEPS additions')] |
| 1137 | if input_api.dry_run: |
| 1138 | return [output_api.PresubmitNotifyResult( |
| 1139 | 'This is a dry run, skipping OWNERS check for DEPS additions')] |
| 1140 | if not input_api.change.issue: |
| 1141 | return [output_api.PresubmitError( |
| 1142 | "DEPS approval by OWNERS check failed: this change has " |
| 1143 | "no change number, so we can't check it for approvals.")] |
| 1144 | output = output_api.PresubmitError |
| 1145 | else: |
| 1146 | output = output_api.PresubmitNotifyResult |
| 1147 | |
| 1148 | owners_db = input_api.owners_db |
| 1149 | owner_email, reviewers = ( |
| 1150 | input_api.canned_checks.GetCodereviewOwnerAndReviewers( |
| 1151 | input_api, |
| 1152 | owners_db.email_regexp, |
| 1153 | approval_needed=input_api.is_committing)) |
| 1154 | |
| 1155 | owner_email = owner_email or input_api.change.author_email |
| 1156 | |
| 1157 | reviewers_plus_owner = set(reviewers) |
| 1158 | if owner_email: |
| 1159 | reviewers_plus_owner.add(owner_email) |
| 1160 | missing_files = owners_db.files_not_covered_by(virtual_depended_on_files, |
| 1161 | reviewers_plus_owner) |
| 1162 | |
| 1163 | # We strip the /DEPS part that was added by |
| 1164 | # _FilesToCheckForIncomingDeps to fake a path to a file in a |
| 1165 | # directory. |
| 1166 | def StripDeps(path): |
| 1167 | start_deps = path.rfind('/DEPS') |
| 1168 | if start_deps != -1: |
| 1169 | return path[:start_deps] |
| 1170 | else: |
| 1171 | return path |
| 1172 | unapproved_dependencies = ["'+%s'," % StripDeps(path) |
| 1173 | for path in missing_files] |
| 1174 | |
| 1175 | if unapproved_dependencies: |
| 1176 | output_list = [ |
| 1177 | output('You need LGTM from owners of depends-on paths in DEPS that were ' |
| 1178 | 'modified in this CL:\n %s' % |
| 1179 | '\n '.join(sorted(unapproved_dependencies)))] |
| 1180 | suggested_owners = owners_db.reviewers_for(missing_files, owner_email) |
| 1181 | output_list.append(output( |
| 1182 | 'Suggested missing target path OWNERS:\n %s' % |
| 1183 | '\n '.join(suggested_owners or []))) |
| 1184 | return output_list |
| 1185 | |
| 1186 | return [] |