blob: a87092f96cd103e51e982738cfd59a698beb2456 [file] [log] [blame]
Rico Wind62d03202018-11-30 13:43:49 +01001# 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 Zernydaac9c52020-03-03 10:57:17 +01005from os import path
Morten Krogh-Jespersenf9977862021-09-14 12:36:28 +02006import datetime
Christoffer Quist Adamsen4411f072020-03-05 13:28:31 +01007from subprocess import check_output, Popen, PIPE, STDOUT
Morten Krogh-Jespersen145c0ea2023-06-27 13:43:49 +02008import inspect
Rico Wind141383f2023-07-03 13:25:50 +02009import os
10import 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-Jespersen145c0ea2023-06-27 13:43:49 +020013sys.path.append(path.dirname(inspect.getfile(lambda: None)))
Rico Wind141383f2023-07-03 13:25:50 +020014sys.path.append(os.path.join(
15 path.dirname(inspect.getfile(lambda: None)), 'tools'))
Morten Krogh-Jespersen145c0ea2023-06-27 13:43:49 +020016from tools.utils import EnsureDepFromGoogleCloudStorage
Søren Gjesseb5ae53d2025-02-19 09:31:52 +010017from tools.jdk import GetJavaExecutable
18
19
20KOTLIN_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
27KOTLIN_FMT_SHA1 = path.join(
28 'third_party', 'google', 'google-kotlin-format', '0.54.tar.gz.sha1')
29KOTLIN_FMT_TGZ = path.join(
30 'third_party', 'google', 'google-kotlin-format', '0.54.tar.gz.sha1')
Søren Gjesseae696a12025-02-19 11:48:28 +010031KOTLIN_FMT_IGNORE = {
32 'src/test/java/com/android/tools/r8/kotlin/metadata/inline_class_fun_descriptor_classes_app/main.kt'
33}
Søren Gjesse853e8632025-02-19 12:37:50 +010034KOTLIN_FMT_BATCH_SIZE = 100
Ian Zernydaac9c52020-03-03 10:57:17 +010035
36FMT_CMD = path.join(
37 'third_party',
Christoffer Quist Adamsenbfe52fd2022-02-15 14:32:52 +010038 'google',
Ian Zernydaac9c52020-03-03 10:57:17 +010039 'google-java-format',
Søren Gjesseb557f922024-11-22 09:31:01 +010040 '1.24.0',
41 'google-java-format-1.24.0',
Ian Zernydaac9c52020-03-03 10:57:17 +010042 'scripts',
43 'google-java-format-diff.py')
44
Søren Gjesseffc06192022-06-03 11:11:27 +020045FMT_CMD_JDK17 = path.join('tools','google-java-format-diff.py')
Morten Krogh-Jespersen145c0ea2023-06-27 13:43:49 +020046FMT_SHA1 = path.join(
Søren Gjesseb557f922024-11-22 09:31:01 +010047 'third_party', 'google', 'google-java-format', '1.24.0.tar.gz.sha1')
Morten Krogh-Jespersen145c0ea2023-06-27 13:43:49 +020048FMT_TGZ = path.join(
Søren Gjesseb557f922024-11-22 09:31:01 +010049 'third_party', 'google', 'google-java-format', '1.24.0.tar.gz')
Søren Gjesseffc06192022-06-03 11:11:27 +020050
Rico Wind62d03202018-11-30 13:43:49 +010051def 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-Jespersenebc876f2020-04-01 10:58:02 +020058def CheckFormatting(input_api, output_api, branch):
Søren Gjesse853e8632025-02-19 12:37:50 +010059 seen_kotlin_error = False
60 seen_java_error = False
61 pending_kotlin_files = []
Søren Gjesseb5ae53d2025-02-19 09:31:52 +010062 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 Wind62d03202018-11-30 13:43:49 +010066 results = []
Ian Zernydaac9c52020-03-03 10:57:17 +010067 for f in input_api.AffectedFiles():
68 path = f.LocalPath()
Søren Gjesseb5ae53d2025-02-19 09:31:52 +010069 if not path.endswith('.java') and not path.endswith('.kt'):
Ian Zernydaac9c52020-03-03 10:57:17 +010070 continue
Søren Gjesse853e8632025-02-19 12:37:50 +010071 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
88def 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
97def KotlinFormatPresubmitMessage():
98 return """Please fix the Kotlin formatting by running:
Ian Zerny67f49452023-05-25 13:12:45 +020099
Søren Gjesseb5ae53d2025-02-19 09:31:52 +0100100 git diff $(git cl upstream) --name-only "*.kt" | xargs {java} -jar {fmt_jar} --google-style
101
102or 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
106or bypass the checks with:
107
108 git cl upload --bypass-hooks
Søren Gjesse853e8632025-02-19 12:37:50 +0100109 """.format(java=GetJavaExecutable(), fmt_jar=KOTLIN_FMT_JAR)
Søren Gjesseb5ae53d2025-02-19 09:31:52 +0100110
Søren Gjesse853e8632025-02-19 12:37:50 +0100111
112def 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
124def JavaFormatPresubMessage():
125 return """Please fix the Java formatting by running:
Ian Zernydaac9c52020-03-03 10:57:17 +0100126
127 git diff -U0 $(git cl upstream) | %s -p1 -i
128
Søren Gjesse641b9ab2020-10-08 13:28:37 +0200129or 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 Zernydaac9c52020-03-03 10:57:17 +0100133or bypass the checks with:
134
Søren Gjesse641b9ab2020-10-08 13:28:37 +0200135 git cl upload --bypass-hooks
Søren Gjesseffc06192022-06-03 11:11:27 +0200136
137If 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 Gjesse853e8632025-02-19 12:37:50 +0100145 'third_party/google/google-java-format/1.24.0/google-java-format-1.24.0-all-deps.jar')
146
Ian Zernydaac9c52020-03-03 10:57:17 +0100147
Morten Krogh-Jespersenebc876f2020-04-01 10:58:02 +0200148def CheckDeterministicDebuggingChanged(input_api, output_api, branch):
Morten Krogh-Jespersen30d1f1b2020-03-26 11:39:19 +0100149 for f in input_api.AffectedFiles():
150 path = f.LocalPath()
151 if not path.endswith('InternalOptions.java'):
152 continue
Morten Krogh-Jespersen30d1f1b2020-03-26 11:39:19 +0100153 diff = check_output(
Ian Zerny67f49452023-05-25 13:12:45 +0200154 ['git', 'diff', '--no-prefix', '-U0', branch, '--', path]).decode('utf-8')
Morten Krogh-Jespersen30d1f1b2020-03-26 11:39:19 +0100155 if 'DETERMINISTIC_DEBUGGING' in diff:
156 return [output_api.PresubmitError(diff)]
157 return []
158
Morten Krogh-Jespersen3285e462020-04-01 13:10:46 +0200159def CheckForAddedDisassemble(input_api, output_api):
Ian Zernydaac9c52020-03-03 10:57:17 +0100160 results = []
Morten Krogh-Jespersen3285e462020-04-01 13:10:46 +0200161 for (file, line_nr, line) in input_api.RightHandSideLines():
Ian Zernya84bc1b2020-08-11 09:47:00 +0200162 if file.LocalPath().endswith('.java') and '.disassemble()' in line:
Morten Krogh-Jespersen3285e462020-04-01 13:10:46 +0200163 results.append(
164 output_api.PresubmitError(
Ian Zernya84bc1b2020-08-11 09:47:00 +0200165 'Test call to disassemble\n%s:%s %s' % (file.LocalPath(), line_nr, line)))
Morten Krogh-Jespersenebc876f2020-04-01 10:58:02 +0200166 return results
167
Morten Krogh-Jespersen3285e462020-04-01 13:10:46 +0200168def 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 Adamsenc1e18d62020-04-15 08:45:01 +0200177 if not CopyRightInContents(f, contents):
Morten Krogh-Jespersen3285e462020-04-01 13:10:46 +0200178 results.append(
Morten Krogh-Jespersenf9977862021-09-14 12:36:28 +0200179 output_api.PresubmitError('Could not find correctly formatted '
180 'copyright in file: %s' % f))
Morten Krogh-Jespersen3285e462020-04-01 13:10:46 +0200181 return results
182
Christoffer Quist Adamsenc1e18d62020-04-15 08:45:01 +0200183def CopyRightInContents(f, contents):
Søren Gjesse09c3dd02021-06-17 08:21:51 +0200184 expected = '//'
185 if f.LocalPath().endswith('.py') or f.LocalPath().endswith('.sh'):
186 expected = '#'
Morten Krogh-Jespersenf9977862021-09-14 12:36:28 +0200187 expected = expected + ' Copyright (c) ' + str(datetime.datetime.now().year)
Morten Krogh-Jespersen3285e462020-04-01 13:10:46 +0200188 for content_line in contents:
Christoffer Quist Adamsenc1e18d62020-04-15 08:45:01 +0200189 if expected in content_line:
Morten Krogh-Jespersen3285e462020-04-01 13:10:46 +0200190 return True
191 return False
192
Morten Krogh-Jespersenebc876f2020-04-01 10:58:02 +0200193def CheckChange(input_api, output_api):
194 branch = (
195 check_output(['git', 'cl', 'upstream'])
Ian Zerny4eff3b62023-05-15 17:09:03 +0200196 .decode('utf-8')
Morten Krogh-Jespersenebc876f2020-04-01 10:58:02 +0200197 .strip()
198 .replace('refs/heads/', ''))
199 results = []
Rico Wind62d03202018-11-30 13:43:49 +0100200 results.extend(CheckDoNotMerge(input_api, output_api))
Morten Krogh-Jespersenebc876f2020-04-01 10:58:02 +0200201 results.extend(CheckFormatting(input_api, output_api, branch))
202 results.extend(
203 CheckDeterministicDebuggingChanged(input_api, output_api, branch))
Morten Krogh-Jespersen3285e462020-04-01 13:10:46 +0200204 results.extend(CheckForAddedDisassemble(input_api, output_api))
205 results.extend(CheckForCopyRight(input_api, output_api, branch))
Rico Wind62d03202018-11-30 13:43:49 +0100206 return results
Ian Zernydaac9c52020-03-03 10:57:17 +0100207
208def CheckChangeOnCommit(input_api, output_api):
209 return CheckChange(input_api, output_api)
210
211def CheckChangeOnUpload(input_api, output_api):
212 return CheckChange(input_api, output_api)