Rico Wind | 62d0320 | 2018-11-30 13:43:49 +0100 | [diff] [blame] | 1 | # Copyright (c) 2018, the R8 project authors. Please see the AUTHORS file |
| 2 | # for details. All rights reserved. Use of this source code is governed by a |
| 3 | # BSD-style license that can be found in the LICENSE file. |
| 4 | |
Ian Zerny | daac9c5 | 2020-03-03 10:57:17 +0100 | [diff] [blame] | 5 | from os import path |
Morten Krogh-Jespersen | f997786 | 2021-09-14 12:36:28 +0200 | [diff] [blame] | 6 | import datetime |
Christoffer Quist Adamsen | 4411f07 | 2020-03-05 13:28:31 +0100 | [diff] [blame] | 7 | from subprocess import check_output, Popen, PIPE, STDOUT |
Morten Krogh-Jespersen | 145c0ea | 2023-06-27 13:43:49 +0200 | [diff] [blame] | 8 | import inspect |
Rico Wind | 141383f | 2023-07-03 13:25:50 +0200 | [diff] [blame] | 9 | import os |
| 10 | import sys |
| 11 | # Add both current path to allow us to package import utils and the tools |
| 12 | # dir to allow transitive (for utils) dependendies to be loaded. |
Morten Krogh-Jespersen | 145c0ea | 2023-06-27 13:43:49 +0200 | [diff] [blame] | 13 | sys.path.append(path.dirname(inspect.getfile(lambda: None))) |
Rico Wind | 141383f | 2023-07-03 13:25:50 +0200 | [diff] [blame] | 14 | sys.path.append(os.path.join( |
| 15 | path.dirname(inspect.getfile(lambda: None)), 'tools')) |
Morten Krogh-Jespersen | 145c0ea | 2023-06-27 13:43:49 +0200 | [diff] [blame] | 16 | from tools.utils import EnsureDepFromGoogleCloudStorage |
Søren Gjesse | b5ae53d | 2025-02-19 09:31:52 +0100 | [diff] [blame] | 17 | from tools.jdk import GetJavaExecutable |
| 18 | |
| 19 | |
| 20 | KOTLIN_FMT_JAR = path.join( |
| 21 | 'third_party', |
| 22 | 'google', |
| 23 | 'google-kotlin-format', |
| 24 | '0.54', |
| 25 | 'ktfmt-0.54-jar-with-dependencies.jar') |
| 26 | |
| 27 | KOTLIN_FMT_SHA1 = path.join( |
| 28 | 'third_party', 'google', 'google-kotlin-format', '0.54.tar.gz.sha1') |
| 29 | KOTLIN_FMT_TGZ = path.join( |
| 30 | 'third_party', 'google', 'google-kotlin-format', '0.54.tar.gz.sha1') |
Søren Gjesse | ae696a1 | 2025-02-19 11:48:28 +0100 | [diff] [blame] | 31 | KOTLIN_FMT_IGNORE = { |
| 32 | 'src/test/java/com/android/tools/r8/kotlin/metadata/inline_class_fun_descriptor_classes_app/main.kt' |
| 33 | } |
Søren Gjesse | 853e863 | 2025-02-19 12:37:50 +0100 | [diff] [blame^] | 34 | KOTLIN_FMT_BATCH_SIZE = 100 |
Ian Zerny | daac9c5 | 2020-03-03 10:57:17 +0100 | [diff] [blame] | 35 | |
| 36 | FMT_CMD = path.join( |
| 37 | 'third_party', |
Christoffer Quist Adamsen | bfe52fd | 2022-02-15 14:32:52 +0100 | [diff] [blame] | 38 | 'google', |
Ian Zerny | daac9c5 | 2020-03-03 10:57:17 +0100 | [diff] [blame] | 39 | 'google-java-format', |
Søren Gjesse | b557f92 | 2024-11-22 09:31:01 +0100 | [diff] [blame] | 40 | '1.24.0', |
| 41 | 'google-java-format-1.24.0', |
Ian Zerny | daac9c5 | 2020-03-03 10:57:17 +0100 | [diff] [blame] | 42 | 'scripts', |
| 43 | 'google-java-format-diff.py') |
| 44 | |
Søren Gjesse | ffc0619 | 2022-06-03 11:11:27 +0200 | [diff] [blame] | 45 | FMT_CMD_JDK17 = path.join('tools','google-java-format-diff.py') |
Morten Krogh-Jespersen | 145c0ea | 2023-06-27 13:43:49 +0200 | [diff] [blame] | 46 | FMT_SHA1 = path.join( |
Søren Gjesse | b557f92 | 2024-11-22 09:31:01 +0100 | [diff] [blame] | 47 | 'third_party', 'google', 'google-java-format', '1.24.0.tar.gz.sha1') |
Morten Krogh-Jespersen | 145c0ea | 2023-06-27 13:43:49 +0200 | [diff] [blame] | 48 | FMT_TGZ = path.join( |
Søren Gjesse | b557f92 | 2024-11-22 09:31:01 +0100 | [diff] [blame] | 49 | 'third_party', 'google', 'google-java-format', '1.24.0.tar.gz') |
Søren Gjesse | ffc0619 | 2022-06-03 11:11:27 +0200 | [diff] [blame] | 50 | |
Rico Wind | 62d0320 | 2018-11-30 13:43:49 +0100 | [diff] [blame] | 51 | def CheckDoNotMerge(input_api, output_api): |
| 52 | for l in input_api.change.FullDescriptionText().splitlines(): |
| 53 | if l.lower().startswith('do not merge'): |
| 54 | msg = 'Your cl contains: \'Do not merge\' - this will break WIP bots' |
| 55 | return [output_api.PresubmitPromptWarning(msg, [])] |
| 56 | return [] |
| 57 | |
Morten Krogh-Jespersen | ebc876f | 2020-04-01 10:58:02 +0200 | [diff] [blame] | 58 | def CheckFormatting(input_api, output_api, branch): |
Søren Gjesse | 853e863 | 2025-02-19 12:37:50 +0100 | [diff] [blame^] | 59 | seen_kotlin_error = False |
| 60 | seen_java_error = False |
| 61 | pending_kotlin_files = [] |
Søren Gjesse | b5ae53d | 2025-02-19 09:31:52 +0100 | [diff] [blame] | 62 | EnsureDepFromGoogleCloudStorage( |
| 63 | KOTLIN_FMT_JAR, KOTLIN_FMT_TGZ, KOTLIN_FMT_SHA1, 'google-kotlin-format') |
| 64 | EnsureDepFromGoogleCloudStorage( |
| 65 | FMT_CMD, FMT_TGZ, FMT_SHA1, 'google-java-format') |
Rico Wind | 62d0320 | 2018-11-30 13:43:49 +0100 | [diff] [blame] | 66 | results = [] |
Ian Zerny | daac9c5 | 2020-03-03 10:57:17 +0100 | [diff] [blame] | 67 | for f in input_api.AffectedFiles(): |
| 68 | path = f.LocalPath() |
Søren Gjesse | b5ae53d | 2025-02-19 09:31:52 +0100 | [diff] [blame] | 69 | if not path.endswith('.java') and not path.endswith('.kt'): |
Ian Zerny | daac9c5 | 2020-03-03 10:57:17 +0100 | [diff] [blame] | 70 | continue |
Søren Gjesse | 853e863 | 2025-02-19 12:37:50 +0100 | [diff] [blame^] | 71 | if path in KOTLIN_FMT_IGNORE: |
| 72 | continue |
| 73 | if path.endswith('.kt') and not seen_kotlin_error: |
| 74 | pending_kotlin_files.append(path) |
| 75 | if len(pending_kotlin_files) == KOTLIN_FMT_BATCH_SIZE: |
| 76 | seen_kotlin_error = CheckKotlinFormatting(pending_kotlin_files, output_api, results) |
| 77 | pending_kotlin_files = [] |
| 78 | elif not seen_java_error: |
| 79 | seen_java_error = CheckJavaFormatting(path, branch, output_api, results) |
| 80 | |
| 81 | if len(pending_kotlin_files) > 0: |
| 82 | CheckKotlinFormatting(pending_kotlin_files, output_api, results) |
| 83 | # Comment this out to easily presumbit changes |
| 84 | # results.append(output_api.PresubmitError("TESTING")) |
| 85 | return results |
| 86 | |
| 87 | |
| 88 | def CheckKotlinFormatting(paths, output_api, results): |
| 89 | cmd = [GetJavaExecutable(), '-jar', KOTLIN_FMT_JAR, '--google-style', '-n'] |
| 90 | cmd.extend(paths) |
| 91 | result = check_output(cmd) |
| 92 | if len(result) > 0: |
| 93 | results.append(output_api.PresubmitError(KotlinFormatPresubmitMessage())) |
| 94 | return len(result) > 0 |
| 95 | |
| 96 | |
| 97 | def KotlinFormatPresubmitMessage(): |
| 98 | return """Please fix the Kotlin formatting by running: |
Ian Zerny | 67f4945 | 2023-05-25 13:12:45 +0200 | [diff] [blame] | 99 | |
Søren Gjesse | b5ae53d | 2025-02-19 09:31:52 +0100 | [diff] [blame] | 100 | git diff $(git cl upstream) --name-only "*.kt" | xargs {java} -jar {fmt_jar} --google-style |
| 101 | |
| 102 | or fix formatting, commit and upload: |
| 103 | |
| 104 | git diff $(git cl upstream) --name-only "*.kt" | xargs {java} -jar {fmt_jar} --google-style && git commit -a --amend --no-edit && git cl upload |
| 105 | |
| 106 | or bypass the checks with: |
| 107 | |
| 108 | git cl upload --bypass-hooks |
Søren Gjesse | 853e863 | 2025-02-19 12:37:50 +0100 | [diff] [blame^] | 109 | """.format(java=GetJavaExecutable(), fmt_jar=KOTLIN_FMT_JAR) |
Søren Gjesse | b5ae53d | 2025-02-19 09:31:52 +0100 | [diff] [blame] | 110 | |
Søren Gjesse | 853e863 | 2025-02-19 12:37:50 +0100 | [diff] [blame^] | 111 | |
| 112 | def CheckJavaFormatting(path, branch, output_api, results): |
| 113 | diff = check_output( |
| 114 | ['git', 'diff', '--no-prefix', '-U0', branch, '--', path]) |
| 115 | |
| 116 | proc = Popen(FMT_CMD, stdin=PIPE, stdout=PIPE, stderr=STDOUT) |
| 117 | (stdout, stderr) = proc.communicate(input=diff) |
| 118 | if len(stdout) > 0: |
| 119 | results.append(output_api.PresubmitError(stdout.decode('utf-8'))) |
| 120 | results.append(output_api.PresubmitError(JavaFormatPresubMessage())) |
| 121 | return len(stdout) > 0 |
| 122 | |
| 123 | |
| 124 | def JavaFormatPresubMessage(): |
| 125 | return """Please fix the Java formatting by running: |
Ian Zerny | daac9c5 | 2020-03-03 10:57:17 +0100 | [diff] [blame] | 126 | |
| 127 | git diff -U0 $(git cl upstream) | %s -p1 -i |
| 128 | |
Søren Gjesse | 641b9ab | 2020-10-08 13:28:37 +0200 | [diff] [blame] | 129 | or fix formatting, commit and upload: |
| 130 | |
| 131 | git diff -U0 $(git cl upstream) | %s -p1 -i && git commit -a --amend --no-edit && git cl upload |
| 132 | |
Ian Zerny | daac9c5 | 2020-03-03 10:57:17 +0100 | [diff] [blame] | 133 | or bypass the checks with: |
| 134 | |
Søren Gjesse | 641b9ab | 2020-10-08 13:28:37 +0200 | [diff] [blame] | 135 | git cl upload --bypass-hooks |
Søren Gjesse | ffc0619 | 2022-06-03 11:11:27 +0200 | [diff] [blame] | 136 | |
| 137 | If formatting fails with 'No enum constant javax.lang.model.element.Modifier.SEALED' try |
| 138 | |
| 139 | git diff -U0 $(git cl upstream) | %s %s %s -p1 -i && git commit -a --amend --no-edit && git cl upload |
| 140 | """ % ( |
| 141 | FMT_CMD, |
| 142 | FMT_CMD, |
| 143 | FMT_CMD_JDK17, |
| 144 | '--google-java-format-jar', |
Søren Gjesse | 853e863 | 2025-02-19 12:37:50 +0100 | [diff] [blame^] | 145 | 'third_party/google/google-java-format/1.24.0/google-java-format-1.24.0-all-deps.jar') |
| 146 | |
Ian Zerny | daac9c5 | 2020-03-03 10:57:17 +0100 | [diff] [blame] | 147 | |
Morten Krogh-Jespersen | ebc876f | 2020-04-01 10:58:02 +0200 | [diff] [blame] | 148 | def CheckDeterministicDebuggingChanged(input_api, output_api, branch): |
Morten Krogh-Jespersen | 30d1f1b | 2020-03-26 11:39:19 +0100 | [diff] [blame] | 149 | for f in input_api.AffectedFiles(): |
| 150 | path = f.LocalPath() |
| 151 | if not path.endswith('InternalOptions.java'): |
| 152 | continue |
Morten Krogh-Jespersen | 30d1f1b | 2020-03-26 11:39:19 +0100 | [diff] [blame] | 153 | diff = check_output( |
Ian Zerny | 67f4945 | 2023-05-25 13:12:45 +0200 | [diff] [blame] | 154 | ['git', 'diff', '--no-prefix', '-U0', branch, '--', path]).decode('utf-8') |
Morten Krogh-Jespersen | 30d1f1b | 2020-03-26 11:39:19 +0100 | [diff] [blame] | 155 | if 'DETERMINISTIC_DEBUGGING' in diff: |
| 156 | return [output_api.PresubmitError(diff)] |
| 157 | return [] |
| 158 | |
Morten Krogh-Jespersen | 3285e46 | 2020-04-01 13:10:46 +0200 | [diff] [blame] | 159 | def CheckForAddedDisassemble(input_api, output_api): |
Ian Zerny | daac9c5 | 2020-03-03 10:57:17 +0100 | [diff] [blame] | 160 | results = [] |
Morten Krogh-Jespersen | 3285e46 | 2020-04-01 13:10:46 +0200 | [diff] [blame] | 161 | for (file, line_nr, line) in input_api.RightHandSideLines(): |
Ian Zerny | a84bc1b | 2020-08-11 09:47:00 +0200 | [diff] [blame] | 162 | if file.LocalPath().endswith('.java') and '.disassemble()' in line: |
Morten Krogh-Jespersen | 3285e46 | 2020-04-01 13:10:46 +0200 | [diff] [blame] | 163 | results.append( |
| 164 | output_api.PresubmitError( |
Ian Zerny | a84bc1b | 2020-08-11 09:47:00 +0200 | [diff] [blame] | 165 | 'Test call to disassemble\n%s:%s %s' % (file.LocalPath(), line_nr, line))) |
Morten Krogh-Jespersen | ebc876f | 2020-04-01 10:58:02 +0200 | [diff] [blame] | 166 | return results |
| 167 | |
Morten Krogh-Jespersen | 3285e46 | 2020-04-01 13:10:46 +0200 | [diff] [blame] | 168 | def CheckForCopyRight(input_api, output_api, branch): |
| 169 | results = [] |
| 170 | for f in input_api.AffectedSourceFiles(None): |
| 171 | # Check if it is a new file. |
| 172 | if f.OldContents(): |
| 173 | continue |
| 174 | contents = f.NewContents() |
| 175 | if (not contents) or (len(contents) == 0): |
| 176 | continue |
Christoffer Quist Adamsen | c1e18d6 | 2020-04-15 08:45:01 +0200 | [diff] [blame] | 177 | if not CopyRightInContents(f, contents): |
Morten Krogh-Jespersen | 3285e46 | 2020-04-01 13:10:46 +0200 | [diff] [blame] | 178 | results.append( |
Morten Krogh-Jespersen | f997786 | 2021-09-14 12:36:28 +0200 | [diff] [blame] | 179 | output_api.PresubmitError('Could not find correctly formatted ' |
| 180 | 'copyright in file: %s' % f)) |
Morten Krogh-Jespersen | 3285e46 | 2020-04-01 13:10:46 +0200 | [diff] [blame] | 181 | return results |
| 182 | |
Christoffer Quist Adamsen | c1e18d6 | 2020-04-15 08:45:01 +0200 | [diff] [blame] | 183 | def CopyRightInContents(f, contents): |
Søren Gjesse | 09c3dd0 | 2021-06-17 08:21:51 +0200 | [diff] [blame] | 184 | expected = '//' |
| 185 | if f.LocalPath().endswith('.py') or f.LocalPath().endswith('.sh'): |
| 186 | expected = '#' |
Morten Krogh-Jespersen | f997786 | 2021-09-14 12:36:28 +0200 | [diff] [blame] | 187 | expected = expected + ' Copyright (c) ' + str(datetime.datetime.now().year) |
Morten Krogh-Jespersen | 3285e46 | 2020-04-01 13:10:46 +0200 | [diff] [blame] | 188 | for content_line in contents: |
Christoffer Quist Adamsen | c1e18d6 | 2020-04-15 08:45:01 +0200 | [diff] [blame] | 189 | if expected in content_line: |
Morten Krogh-Jespersen | 3285e46 | 2020-04-01 13:10:46 +0200 | [diff] [blame] | 190 | return True |
| 191 | return False |
| 192 | |
Morten Krogh-Jespersen | ebc876f | 2020-04-01 10:58:02 +0200 | [diff] [blame] | 193 | def CheckChange(input_api, output_api): |
| 194 | branch = ( |
| 195 | check_output(['git', 'cl', 'upstream']) |
Ian Zerny | 4eff3b6 | 2023-05-15 17:09:03 +0200 | [diff] [blame] | 196 | .decode('utf-8') |
Morten Krogh-Jespersen | ebc876f | 2020-04-01 10:58:02 +0200 | [diff] [blame] | 197 | .strip() |
| 198 | .replace('refs/heads/', '')) |
| 199 | results = [] |
Rico Wind | 62d0320 | 2018-11-30 13:43:49 +0100 | [diff] [blame] | 200 | results.extend(CheckDoNotMerge(input_api, output_api)) |
Morten Krogh-Jespersen | ebc876f | 2020-04-01 10:58:02 +0200 | [diff] [blame] | 201 | results.extend(CheckFormatting(input_api, output_api, branch)) |
| 202 | results.extend( |
| 203 | CheckDeterministicDebuggingChanged(input_api, output_api, branch)) |
Morten Krogh-Jespersen | 3285e46 | 2020-04-01 13:10:46 +0200 | [diff] [blame] | 204 | results.extend(CheckForAddedDisassemble(input_api, output_api)) |
| 205 | results.extend(CheckForCopyRight(input_api, output_api, branch)) |
Rico Wind | 62d0320 | 2018-11-30 13:43:49 +0100 | [diff] [blame] | 206 | return results |
Ian Zerny | daac9c5 | 2020-03-03 10:57:17 +0100 | [diff] [blame] | 207 | |
| 208 | def CheckChangeOnCommit(input_api, output_api): |
| 209 | return CheckChange(input_api, output_api) |
| 210 | |
| 211 | def CheckChangeOnUpload(input_api, output_api): |
| 212 | return CheckChange(input_api, output_api) |