blob: 23123625eb805ddfe6a3176199a289bbf0c81079 [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
Ian Zernydaac9c52020-03-03 10:57:17 +010017
18FMT_CMD = path.join(
19 'third_party',
Christoffer Quist Adamsenbfe52fd2022-02-15 14:32:52 +010020 'google',
Ian Zernydaac9c52020-03-03 10:57:17 +010021 'google-java-format',
Christoffer Quist Adamsenbfe52fd2022-02-15 14:32:52 +010022 '1.14.0',
23 'google-java-format-1.14.0',
Ian Zernydaac9c52020-03-03 10:57:17 +010024 'scripts',
25 'google-java-format-diff.py')
26
Søren Gjesseffc06192022-06-03 11:11:27 +020027FMT_CMD_JDK17 = path.join('tools','google-java-format-diff.py')
Morten Krogh-Jespersen145c0ea2023-06-27 13:43:49 +020028FMT_SHA1 = path.join(
29 'third_party', 'google', 'google-java-format', '1.14.0.tar.gz.sha1')
30FMT_TGZ = path.join(
31 'third_party', 'google', 'google-java-format', '1.14.0.tar.gz')
Søren Gjesseffc06192022-06-03 11:11:27 +020032
Rico Wind62d03202018-11-30 13:43:49 +010033def CheckDoNotMerge(input_api, output_api):
34 for l in input_api.change.FullDescriptionText().splitlines():
35 if l.lower().startswith('do not merge'):
36 msg = 'Your cl contains: \'Do not merge\' - this will break WIP bots'
37 return [output_api.PresubmitPromptWarning(msg, [])]
38 return []
39
Morten Krogh-Jespersenebc876f2020-04-01 10:58:02 +020040def CheckFormatting(input_api, output_api, branch):
Morten Krogh-Jespersen145c0ea2023-06-27 13:43:49 +020041 EnsureDepFromGoogleCloudStorage(FMT_CMD, FMT_TGZ, FMT_SHA1, 'google-format')
Rico Wind62d03202018-11-30 13:43:49 +010042 results = []
Ian Zernydaac9c52020-03-03 10:57:17 +010043 for f in input_api.AffectedFiles():
44 path = f.LocalPath()
45 if not path.endswith('.java'):
46 continue
Christoffer Quist Adamsen4411f072020-03-05 13:28:31 +010047 diff = check_output(
Ian Zerny1f914212023-05-25 13:58:31 +020048 ['git', 'diff', '--no-prefix', '-U0', branch, '--', path])
Ian Zerny67f49452023-05-25 13:12:45 +020049
Ian Zernydaac9c52020-03-03 10:57:17 +010050 proc = Popen(FMT_CMD, stdin=PIPE, stdout=PIPE, stderr=STDOUT)
Christoffer Quist Adamsen4411f072020-03-05 13:28:31 +010051 (stdout, stderr) = proc.communicate(input=diff)
Ian Zernydaac9c52020-03-03 10:57:17 +010052 if len(stdout) > 0:
Ian Zerny1f914212023-05-25 13:58:31 +020053 results.append(output_api.PresubmitError(stdout.decode('utf-8')))
Ian Zernydaac9c52020-03-03 10:57:17 +010054 if len(results) > 0:
55 results.append(output_api.PresubmitError(
56 """Please fix the formatting by running:
57
58 git diff -U0 $(git cl upstream) | %s -p1 -i
59
Søren Gjesse641b9ab2020-10-08 13:28:37 +020060or fix formatting, commit and upload:
61
62 git diff -U0 $(git cl upstream) | %s -p1 -i && git commit -a --amend --no-edit && git cl upload
63
Ian Zernydaac9c52020-03-03 10:57:17 +010064or bypass the checks with:
65
Søren Gjesse641b9ab2020-10-08 13:28:37 +020066 git cl upload --bypass-hooks
Søren Gjesseffc06192022-06-03 11:11:27 +020067
68If formatting fails with 'No enum constant javax.lang.model.element.Modifier.SEALED' try
69
70 git diff -U0 $(git cl upstream) | %s %s %s -p1 -i && git commit -a --amend --no-edit && git cl upload
71 """ % (
72 FMT_CMD,
73 FMT_CMD,
74 FMT_CMD_JDK17,
75 '--google-java-format-jar',
76 'third_party/google/google-java-format/1.14.0/google-java-format-1.14.0-all-deps.jar'
77)))
Ian Zernydaac9c52020-03-03 10:57:17 +010078 return results
79
Morten Krogh-Jespersenebc876f2020-04-01 10:58:02 +020080def CheckDeterministicDebuggingChanged(input_api, output_api, branch):
Morten Krogh-Jespersen30d1f1b2020-03-26 11:39:19 +010081 for f in input_api.AffectedFiles():
82 path = f.LocalPath()
83 if not path.endswith('InternalOptions.java'):
84 continue
Morten Krogh-Jespersen30d1f1b2020-03-26 11:39:19 +010085 diff = check_output(
Ian Zerny67f49452023-05-25 13:12:45 +020086 ['git', 'diff', '--no-prefix', '-U0', branch, '--', path]).decode('utf-8')
Morten Krogh-Jespersen30d1f1b2020-03-26 11:39:19 +010087 if 'DETERMINISTIC_DEBUGGING' in diff:
88 return [output_api.PresubmitError(diff)]
89 return []
90
Morten Krogh-Jespersen3285e462020-04-01 13:10:46 +020091def CheckForAddedDisassemble(input_api, output_api):
Ian Zernydaac9c52020-03-03 10:57:17 +010092 results = []
Morten Krogh-Jespersen3285e462020-04-01 13:10:46 +020093 for (file, line_nr, line) in input_api.RightHandSideLines():
Ian Zernya84bc1b2020-08-11 09:47:00 +020094 if file.LocalPath().endswith('.java') and '.disassemble()' in line:
Morten Krogh-Jespersen3285e462020-04-01 13:10:46 +020095 results.append(
96 output_api.PresubmitError(
Ian Zernya84bc1b2020-08-11 09:47:00 +020097 'Test call to disassemble\n%s:%s %s' % (file.LocalPath(), line_nr, line)))
Morten Krogh-Jespersenebc876f2020-04-01 10:58:02 +020098 return results
99
Morten Krogh-Jespersen3285e462020-04-01 13:10:46 +0200100def CheckForCopyRight(input_api, output_api, branch):
101 results = []
102 for f in input_api.AffectedSourceFiles(None):
103 # Check if it is a new file.
104 if f.OldContents():
105 continue
106 contents = f.NewContents()
107 if (not contents) or (len(contents) == 0):
108 continue
Christoffer Quist Adamsenc1e18d62020-04-15 08:45:01 +0200109 if not CopyRightInContents(f, contents):
Morten Krogh-Jespersen3285e462020-04-01 13:10:46 +0200110 results.append(
Morten Krogh-Jespersenf9977862021-09-14 12:36:28 +0200111 output_api.PresubmitError('Could not find correctly formatted '
112 'copyright in file: %s' % f))
Morten Krogh-Jespersen3285e462020-04-01 13:10:46 +0200113 return results
114
Christoffer Quist Adamsenc1e18d62020-04-15 08:45:01 +0200115def CopyRightInContents(f, contents):
Søren Gjesse09c3dd02021-06-17 08:21:51 +0200116 expected = '//'
117 if f.LocalPath().endswith('.py') or f.LocalPath().endswith('.sh'):
118 expected = '#'
Morten Krogh-Jespersenf9977862021-09-14 12:36:28 +0200119 expected = expected + ' Copyright (c) ' + str(datetime.datetime.now().year)
Morten Krogh-Jespersen3285e462020-04-01 13:10:46 +0200120 for content_line in contents:
Christoffer Quist Adamsenc1e18d62020-04-15 08:45:01 +0200121 if expected in content_line:
Morten Krogh-Jespersen3285e462020-04-01 13:10:46 +0200122 return True
123 return False
124
Morten Krogh-Jespersenebc876f2020-04-01 10:58:02 +0200125def CheckChange(input_api, output_api):
126 branch = (
127 check_output(['git', 'cl', 'upstream'])
Ian Zerny4eff3b62023-05-15 17:09:03 +0200128 .decode('utf-8')
Morten Krogh-Jespersenebc876f2020-04-01 10:58:02 +0200129 .strip()
130 .replace('refs/heads/', ''))
131 results = []
Rico Wind62d03202018-11-30 13:43:49 +0100132 results.extend(CheckDoNotMerge(input_api, output_api))
Morten Krogh-Jespersenebc876f2020-04-01 10:58:02 +0200133 results.extend(CheckFormatting(input_api, output_api, branch))
134 results.extend(
135 CheckDeterministicDebuggingChanged(input_api, output_api, branch))
Morten Krogh-Jespersen3285e462020-04-01 13:10:46 +0200136 results.extend(CheckForAddedDisassemble(input_api, output_api))
137 results.extend(CheckForCopyRight(input_api, output_api, branch))
Rico Wind62d03202018-11-30 13:43:49 +0100138 return results
Ian Zernydaac9c52020-03-03 10:57:17 +0100139
140def CheckChangeOnCommit(input_api, output_api):
141 return CheckChange(input_api, output_api)
142
143def CheckChangeOnUpload(input_api, output_api):
144 return CheckChange(input_api, output_api)