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 |
Ian Zerny | daac9c5 | 2020-03-03 10:57:17 +0100 | [diff] [blame] | 17 | |
| 18 | FMT_CMD = path.join( |
| 19 | 'third_party', |
Christoffer Quist Adamsen | bfe52fd | 2022-02-15 14:32:52 +0100 | [diff] [blame] | 20 | 'google', |
Ian Zerny | daac9c5 | 2020-03-03 10:57:17 +0100 | [diff] [blame] | 21 | 'google-java-format', |
Christoffer Quist Adamsen | bfe52fd | 2022-02-15 14:32:52 +0100 | [diff] [blame] | 22 | '1.14.0', |
| 23 | 'google-java-format-1.14.0', |
Ian Zerny | daac9c5 | 2020-03-03 10:57:17 +0100 | [diff] [blame] | 24 | 'scripts', |
| 25 | 'google-java-format-diff.py') |
| 26 | |
Søren Gjesse | ffc0619 | 2022-06-03 11:11:27 +0200 | [diff] [blame] | 27 | FMT_CMD_JDK17 = path.join('tools','google-java-format-diff.py') |
Morten Krogh-Jespersen | 145c0ea | 2023-06-27 13:43:49 +0200 | [diff] [blame] | 28 | FMT_SHA1 = path.join( |
| 29 | 'third_party', 'google', 'google-java-format', '1.14.0.tar.gz.sha1') |
| 30 | FMT_TGZ = path.join( |
| 31 | 'third_party', 'google', 'google-java-format', '1.14.0.tar.gz') |
Søren Gjesse | ffc0619 | 2022-06-03 11:11:27 +0200 | [diff] [blame] | 32 | |
Rico Wind | 62d0320 | 2018-11-30 13:43:49 +0100 | [diff] [blame] | 33 | def 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-Jespersen | ebc876f | 2020-04-01 10:58:02 +0200 | [diff] [blame] | 40 | def CheckFormatting(input_api, output_api, branch): |
Morten Krogh-Jespersen | 145c0ea | 2023-06-27 13:43:49 +0200 | [diff] [blame] | 41 | EnsureDepFromGoogleCloudStorage(FMT_CMD, FMT_TGZ, FMT_SHA1, 'google-format') |
Rico Wind | 62d0320 | 2018-11-30 13:43:49 +0100 | [diff] [blame] | 42 | results = [] |
Ian Zerny | daac9c5 | 2020-03-03 10:57:17 +0100 | [diff] [blame] | 43 | for f in input_api.AffectedFiles(): |
| 44 | path = f.LocalPath() |
| 45 | if not path.endswith('.java'): |
| 46 | continue |
Christoffer Quist Adamsen | 4411f07 | 2020-03-05 13:28:31 +0100 | [diff] [blame] | 47 | diff = check_output( |
Ian Zerny | 1f91421 | 2023-05-25 13:58:31 +0200 | [diff] [blame] | 48 | ['git', 'diff', '--no-prefix', '-U0', branch, '--', path]) |
Ian Zerny | 67f4945 | 2023-05-25 13:12:45 +0200 | [diff] [blame] | 49 | |
Ian Zerny | daac9c5 | 2020-03-03 10:57:17 +0100 | [diff] [blame] | 50 | proc = Popen(FMT_CMD, stdin=PIPE, stdout=PIPE, stderr=STDOUT) |
Christoffer Quist Adamsen | 4411f07 | 2020-03-05 13:28:31 +0100 | [diff] [blame] | 51 | (stdout, stderr) = proc.communicate(input=diff) |
Ian Zerny | daac9c5 | 2020-03-03 10:57:17 +0100 | [diff] [blame] | 52 | if len(stdout) > 0: |
Ian Zerny | 1f91421 | 2023-05-25 13:58:31 +0200 | [diff] [blame] | 53 | results.append(output_api.PresubmitError(stdout.decode('utf-8'))) |
Ian Zerny | daac9c5 | 2020-03-03 10:57:17 +0100 | [diff] [blame] | 54 | 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 Gjesse | 641b9ab | 2020-10-08 13:28:37 +0200 | [diff] [blame] | 60 | or 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 Zerny | daac9c5 | 2020-03-03 10:57:17 +0100 | [diff] [blame] | 64 | or bypass the checks with: |
| 65 | |
Søren Gjesse | 641b9ab | 2020-10-08 13:28:37 +0200 | [diff] [blame] | 66 | git cl upload --bypass-hooks |
Søren Gjesse | ffc0619 | 2022-06-03 11:11:27 +0200 | [diff] [blame] | 67 | |
| 68 | If 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 Zerny | daac9c5 | 2020-03-03 10:57:17 +0100 | [diff] [blame] | 78 | return results |
| 79 | |
Morten Krogh-Jespersen | ebc876f | 2020-04-01 10:58:02 +0200 | [diff] [blame] | 80 | def CheckDeterministicDebuggingChanged(input_api, output_api, branch): |
Morten Krogh-Jespersen | 30d1f1b | 2020-03-26 11:39:19 +0100 | [diff] [blame] | 81 | for f in input_api.AffectedFiles(): |
| 82 | path = f.LocalPath() |
| 83 | if not path.endswith('InternalOptions.java'): |
| 84 | continue |
Morten Krogh-Jespersen | 30d1f1b | 2020-03-26 11:39:19 +0100 | [diff] [blame] | 85 | diff = check_output( |
Ian Zerny | 67f4945 | 2023-05-25 13:12:45 +0200 | [diff] [blame] | 86 | ['git', 'diff', '--no-prefix', '-U0', branch, '--', path]).decode('utf-8') |
Morten Krogh-Jespersen | 30d1f1b | 2020-03-26 11:39:19 +0100 | [diff] [blame] | 87 | if 'DETERMINISTIC_DEBUGGING' in diff: |
| 88 | return [output_api.PresubmitError(diff)] |
| 89 | return [] |
| 90 | |
Morten Krogh-Jespersen | 3285e46 | 2020-04-01 13:10:46 +0200 | [diff] [blame] | 91 | def CheckForAddedDisassemble(input_api, output_api): |
Ian Zerny | daac9c5 | 2020-03-03 10:57:17 +0100 | [diff] [blame] | 92 | results = [] |
Morten Krogh-Jespersen | 3285e46 | 2020-04-01 13:10:46 +0200 | [diff] [blame] | 93 | for (file, line_nr, line) in input_api.RightHandSideLines(): |
Ian Zerny | a84bc1b | 2020-08-11 09:47:00 +0200 | [diff] [blame] | 94 | if file.LocalPath().endswith('.java') and '.disassemble()' in line: |
Morten Krogh-Jespersen | 3285e46 | 2020-04-01 13:10:46 +0200 | [diff] [blame] | 95 | results.append( |
| 96 | output_api.PresubmitError( |
Ian Zerny | a84bc1b | 2020-08-11 09:47:00 +0200 | [diff] [blame] | 97 | '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] | 98 | return results |
| 99 | |
Morten Krogh-Jespersen | 3285e46 | 2020-04-01 13:10:46 +0200 | [diff] [blame] | 100 | def 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 Adamsen | c1e18d6 | 2020-04-15 08:45:01 +0200 | [diff] [blame] | 109 | if not CopyRightInContents(f, contents): |
Morten Krogh-Jespersen | 3285e46 | 2020-04-01 13:10:46 +0200 | [diff] [blame] | 110 | results.append( |
Morten Krogh-Jespersen | f997786 | 2021-09-14 12:36:28 +0200 | [diff] [blame] | 111 | output_api.PresubmitError('Could not find correctly formatted ' |
| 112 | 'copyright in file: %s' % f)) |
Morten Krogh-Jespersen | 3285e46 | 2020-04-01 13:10:46 +0200 | [diff] [blame] | 113 | return results |
| 114 | |
Christoffer Quist Adamsen | c1e18d6 | 2020-04-15 08:45:01 +0200 | [diff] [blame] | 115 | def CopyRightInContents(f, contents): |
Søren Gjesse | 09c3dd0 | 2021-06-17 08:21:51 +0200 | [diff] [blame] | 116 | expected = '//' |
| 117 | if f.LocalPath().endswith('.py') or f.LocalPath().endswith('.sh'): |
| 118 | expected = '#' |
Morten Krogh-Jespersen | f997786 | 2021-09-14 12:36:28 +0200 | [diff] [blame] | 119 | expected = expected + ' Copyright (c) ' + str(datetime.datetime.now().year) |
Morten Krogh-Jespersen | 3285e46 | 2020-04-01 13:10:46 +0200 | [diff] [blame] | 120 | for content_line in contents: |
Christoffer Quist Adamsen | c1e18d6 | 2020-04-15 08:45:01 +0200 | [diff] [blame] | 121 | if expected in content_line: |
Morten Krogh-Jespersen | 3285e46 | 2020-04-01 13:10:46 +0200 | [diff] [blame] | 122 | return True |
| 123 | return False |
| 124 | |
Morten Krogh-Jespersen | ebc876f | 2020-04-01 10:58:02 +0200 | [diff] [blame] | 125 | def CheckChange(input_api, output_api): |
| 126 | branch = ( |
| 127 | check_output(['git', 'cl', 'upstream']) |
Ian Zerny | 4eff3b6 | 2023-05-15 17:09:03 +0200 | [diff] [blame] | 128 | .decode('utf-8') |
Morten Krogh-Jespersen | ebc876f | 2020-04-01 10:58:02 +0200 | [diff] [blame] | 129 | .strip() |
| 130 | .replace('refs/heads/', '')) |
| 131 | results = [] |
Rico Wind | 62d0320 | 2018-11-30 13:43:49 +0100 | [diff] [blame] | 132 | results.extend(CheckDoNotMerge(input_api, output_api)) |
Morten Krogh-Jespersen | ebc876f | 2020-04-01 10:58:02 +0200 | [diff] [blame] | 133 | results.extend(CheckFormatting(input_api, output_api, branch)) |
| 134 | results.extend( |
| 135 | CheckDeterministicDebuggingChanged(input_api, output_api, branch)) |
Morten Krogh-Jespersen | 3285e46 | 2020-04-01 13:10:46 +0200 | [diff] [blame] | 136 | results.extend(CheckForAddedDisassemble(input_api, output_api)) |
| 137 | results.extend(CheckForCopyRight(input_api, output_api, branch)) |
Rico Wind | 62d0320 | 2018-11-30 13:43:49 +0100 | [diff] [blame] | 138 | return results |
Ian Zerny | daac9c5 | 2020-03-03 10:57:17 +0100 | [diff] [blame] | 139 | |
| 140 | def CheckChangeOnCommit(input_api, output_api): |
| 141 | return CheckChange(input_api, output_api) |
| 142 | |
| 143 | def CheckChangeOnUpload(input_api, output_api): |
| 144 | return CheckChange(input_api, output_api) |