Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 2 | # Copyright (c) 2011 The Chromium OS Authors. |
| 3 | # |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 4 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 5 | import os |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 6 | import sys |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 7 | |
Simon Glass | bf77667 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 8 | from patman import settings |
Simon Glass | 4583c00 | 2023-02-23 18:18:04 -0700 | [diff] [blame] | 9 | from u_boot_pylib import command |
| 10 | from u_boot_pylib import terminal |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 11 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 12 | # True to use --no-decorate - we check this in setup() |
Simon Glass | e49f14a | 2014-08-09 15:33:11 -0600 | [diff] [blame] | 13 | use_no_decorate = True |
| 14 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 15 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 16 | def log_cmd(commit_range, git_dir=None, oneline=False, reverse=False, |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 17 | count=None): |
Simon Glass | cda2a61 | 2014-08-09 15:33:10 -0600 | [diff] [blame] | 18 | """Create a command to perform a 'git log' |
| 19 | |
| 20 | Args: |
| 21 | commit_range: Range expression to use for log, None for none |
Anatolij Gustschin | ab4a6ab | 2019-10-27 17:55:04 +0100 | [diff] [blame] | 22 | git_dir: Path to git repository (None to use default) |
Simon Glass | cda2a61 | 2014-08-09 15:33:10 -0600 | [diff] [blame] | 23 | oneline: True to use --oneline, else False |
| 24 | reverse: True to reverse the log (--reverse) |
| 25 | count: Number of commits to list, or None for no limit |
| 26 | Return: |
| 27 | List containing command and arguments to run |
| 28 | """ |
| 29 | cmd = ['git'] |
| 30 | if git_dir: |
| 31 | cmd += ['--git-dir', git_dir] |
Simon Glass | 9447a6b | 2014-08-28 09:43:37 -0600 | [diff] [blame] | 32 | cmd += ['--no-pager', 'log', '--no-color'] |
Simon Glass | cda2a61 | 2014-08-09 15:33:10 -0600 | [diff] [blame] | 33 | if oneline: |
| 34 | cmd.append('--oneline') |
Simon Glass | e49f14a | 2014-08-09 15:33:11 -0600 | [diff] [blame] | 35 | if use_no_decorate: |
| 36 | cmd.append('--no-decorate') |
Simon Glass | 042a732 | 2014-08-14 21:59:11 -0600 | [diff] [blame] | 37 | if reverse: |
| 38 | cmd.append('--reverse') |
Simon Glass | cda2a61 | 2014-08-09 15:33:10 -0600 | [diff] [blame] | 39 | if count is not None: |
| 40 | cmd.append('-n%d' % count) |
| 41 | if commit_range: |
| 42 | cmd.append(commit_range) |
Simon Glass | d4c8572 | 2016-03-12 18:50:31 -0700 | [diff] [blame] | 43 | |
| 44 | # Add this in case we have a branch with the same name as a directory. |
| 45 | # This avoids messages like this, for example: |
| 46 | # fatal: ambiguous argument 'test': both revision and filename |
| 47 | cmd.append('--') |
Simon Glass | cda2a61 | 2014-08-09 15:33:10 -0600 | [diff] [blame] | 48 | return cmd |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 49 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 50 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 51 | def count_commits_to_branch(branch): |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 52 | """Returns number of commits between HEAD and the tracking branch. |
| 53 | |
| 54 | This looks back to the tracking branch and works out the number of commits |
| 55 | since then. |
| 56 | |
Simon Glass | 262130f | 2020-07-05 21:41:51 -0600 | [diff] [blame] | 57 | Args: |
| 58 | branch: Branch to count from (None for current branch) |
| 59 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 60 | Return: |
| 61 | Number of patches that exist on top of the branch |
| 62 | """ |
Simon Glass | 262130f | 2020-07-05 21:41:51 -0600 | [diff] [blame] | 63 | if branch: |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 64 | us, msg = get_upstream('.git', branch) |
Simon Glass | 262130f | 2020-07-05 21:41:51 -0600 | [diff] [blame] | 65 | rev_range = '%s..%s' % (us, branch) |
| 66 | else: |
| 67 | rev_range = '@{upstream}..' |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 68 | pipe = [log_cmd(rev_range, oneline=True)] |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 69 | result = command.run_pipe(pipe, capture=True, capture_stderr=True, |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 70 | oneline=True, raise_on_error=False) |
Simon Glass | be051c0 | 2020-10-29 21:46:34 -0600 | [diff] [blame] | 71 | if result.return_code: |
| 72 | raise ValueError('Failed to determine upstream: %s' % |
| 73 | result.stderr.strip()) |
| 74 | patch_count = len(result.stdout.splitlines()) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 75 | return patch_count |
| 76 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 77 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 78 | def name_revision(commit_hash): |
Simon Glass | 2a9e2c6 | 2014-12-01 17:33:54 -0700 | [diff] [blame] | 79 | """Gets the revision name for a commit |
| 80 | |
| 81 | Args: |
| 82 | commit_hash: Commit hash to look up |
| 83 | |
| 84 | Return: |
| 85 | Name of revision, if any, else None |
| 86 | """ |
| 87 | pipe = ['git', 'name-rev', commit_hash] |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 88 | stdout = command.run_pipe([pipe], capture=True, oneline=True).stdout |
Simon Glass | 2a9e2c6 | 2014-12-01 17:33:54 -0700 | [diff] [blame] | 89 | |
| 90 | # We expect a commit, a space, then a revision name |
| 91 | name = stdout.split(' ')[1].strip() |
| 92 | return name |
| 93 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 94 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 95 | def guess_upstream(git_dir, branch): |
Simon Glass | 2a9e2c6 | 2014-12-01 17:33:54 -0700 | [diff] [blame] | 96 | """Tries to guess the upstream for a branch |
| 97 | |
| 98 | This lists out top commits on a branch and tries to find a suitable |
| 99 | upstream. It does this by looking for the first commit where |
| 100 | 'git name-rev' returns a plain branch name, with no ! or ^ modifiers. |
| 101 | |
| 102 | Args: |
| 103 | git_dir: Git directory containing repo |
| 104 | branch: Name of branch |
| 105 | |
| 106 | Returns: |
| 107 | Tuple: |
| 108 | Name of upstream branch (e.g. 'upstream/master') or None if none |
| 109 | Warning/error message, or None if none |
| 110 | """ |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 111 | pipe = [log_cmd(branch, git_dir=git_dir, oneline=True, count=100)] |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 112 | result = command.run_pipe(pipe, capture=True, capture_stderr=True, |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 113 | raise_on_error=False) |
Simon Glass | 2a9e2c6 | 2014-12-01 17:33:54 -0700 | [diff] [blame] | 114 | if result.return_code: |
| 115 | return None, "Branch '%s' not found" % branch |
| 116 | for line in result.stdout.splitlines()[1:]: |
| 117 | commit_hash = line.split(' ')[0] |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 118 | name = name_revision(commit_hash) |
Simon Glass | 2a9e2c6 | 2014-12-01 17:33:54 -0700 | [diff] [blame] | 119 | if '~' not in name and '^' not in name: |
| 120 | if name.startswith('remotes/'): |
| 121 | name = name[8:] |
| 122 | return name, "Guessing upstream as '%s'" % name |
| 123 | return None, "Cannot find a suitable upstream for branch '%s'" % branch |
| 124 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 125 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 126 | def get_upstream(git_dir, branch): |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 127 | """Returns the name of the upstream for a branch |
| 128 | |
| 129 | Args: |
| 130 | git_dir: Git directory containing repo |
| 131 | branch: Name of branch |
| 132 | |
| 133 | Returns: |
Simon Glass | 2a9e2c6 | 2014-12-01 17:33:54 -0700 | [diff] [blame] | 134 | Tuple: |
| 135 | Name of upstream branch (e.g. 'upstream/master') or None if none |
| 136 | Warning/error message, or None if none |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 137 | """ |
Simon Glass | cce717a | 2013-05-08 08:06:08 +0000 | [diff] [blame] | 138 | try: |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 139 | remote = command.output_one_line('git', '--git-dir', git_dir, 'config', |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 140 | 'branch.%s.remote' % branch) |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 141 | merge = command.output_one_line('git', '--git-dir', git_dir, 'config', |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 142 | 'branch.%s.merge' % branch) |
| 143 | except Exception: |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 144 | upstream, msg = guess_upstream(git_dir, branch) |
Simon Glass | 2a9e2c6 | 2014-12-01 17:33:54 -0700 | [diff] [blame] | 145 | return upstream, msg |
Simon Glass | cce717a | 2013-05-08 08:06:08 +0000 | [diff] [blame] | 146 | |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 147 | if remote == '.': |
Simon Glass | 71edbe5 | 2015-01-29 11:35:16 -0700 | [diff] [blame] | 148 | return merge, None |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 149 | elif remote and merge: |
| 150 | leaf = merge.split('/')[-1] |
Simon Glass | 2a9e2c6 | 2014-12-01 17:33:54 -0700 | [diff] [blame] | 151 | return '%s/%s' % (remote, leaf), None |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 152 | else: |
Paul Burton | ac3fde9 | 2016-09-27 16:03:51 +0100 | [diff] [blame] | 153 | raise ValueError("Cannot determine upstream branch for branch " |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 154 | "'%s' remote='%s', merge='%s'" |
| 155 | % (branch, remote, merge)) |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 156 | |
| 157 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 158 | def get_range_in_branch(git_dir, branch, include_upstream=False): |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 159 | """Returns an expression for the commits in the given branch. |
| 160 | |
| 161 | Args: |
| 162 | git_dir: Directory containing git repo |
| 163 | branch: Name of branch |
| 164 | Return: |
| 165 | Expression in the form 'upstream..branch' which can be used to |
Simon Glass | cce717a | 2013-05-08 08:06:08 +0000 | [diff] [blame] | 166 | access the commits. If the branch does not exist, returns None. |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 167 | """ |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 168 | upstream, msg = get_upstream(git_dir, branch) |
Simon Glass | cce717a | 2013-05-08 08:06:08 +0000 | [diff] [blame] | 169 | if not upstream: |
Simon Glass | 2a9e2c6 | 2014-12-01 17:33:54 -0700 | [diff] [blame] | 170 | return None, msg |
| 171 | rstr = '%s%s..%s' % (upstream, '~' if include_upstream else '', branch) |
| 172 | return rstr, msg |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 173 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 174 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 175 | def count_commits_in_range(git_dir, range_expr): |
Simon Glass | 5abab20 | 2014-12-01 17:33:57 -0700 | [diff] [blame] | 176 | """Returns the number of commits in the given range. |
| 177 | |
| 178 | Args: |
| 179 | git_dir: Directory containing git repo |
| 180 | range_expr: Range to check |
| 181 | Return: |
Anatolij Gustschin | ab4a6ab | 2019-10-27 17:55:04 +0100 | [diff] [blame] | 182 | Number of patches that exist in the supplied range or None if none |
Simon Glass | 5abab20 | 2014-12-01 17:33:57 -0700 | [diff] [blame] | 183 | were found |
| 184 | """ |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 185 | pipe = [log_cmd(range_expr, git_dir=git_dir, oneline=True)] |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 186 | result = command.run_pipe(pipe, capture=True, capture_stderr=True, |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 187 | raise_on_error=False) |
Simon Glass | 5abab20 | 2014-12-01 17:33:57 -0700 | [diff] [blame] | 188 | if result.return_code: |
| 189 | return None, "Range '%s' not found or is invalid" % range_expr |
| 190 | patch_count = len(result.stdout.splitlines()) |
| 191 | return patch_count, None |
| 192 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 193 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 194 | def count_commits_in_branch(git_dir, branch, include_upstream=False): |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 195 | """Returns the number of commits in the given branch. |
| 196 | |
| 197 | Args: |
| 198 | git_dir: Directory containing git repo |
| 199 | branch: Name of branch |
| 200 | Return: |
Simon Glass | cce717a | 2013-05-08 08:06:08 +0000 | [diff] [blame] | 201 | Number of patches that exist on top of the branch, or None if the |
| 202 | branch does not exist. |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 203 | """ |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 204 | range_expr, msg = get_range_in_branch(git_dir, branch, include_upstream) |
Simon Glass | cce717a | 2013-05-08 08:06:08 +0000 | [diff] [blame] | 205 | if not range_expr: |
Simon Glass | 2a9e2c6 | 2014-12-01 17:33:54 -0700 | [diff] [blame] | 206 | return None, msg |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 207 | return count_commits_in_range(git_dir, range_expr) |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 208 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 209 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 210 | def count_commits(commit_range): |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 211 | """Returns the number of commits in the given range. |
| 212 | |
| 213 | Args: |
| 214 | commit_range: Range of commits to count (e.g. 'HEAD..base') |
| 215 | Return: |
| 216 | Number of patches that exist on top of the branch |
| 217 | """ |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 218 | pipe = [log_cmd(commit_range, oneline=True), |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 219 | ['wc', '-l']] |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 220 | stdout = command.run_pipe(pipe, capture=True, oneline=True).stdout |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 221 | patch_count = int(stdout) |
| 222 | return patch_count |
| 223 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 224 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 225 | def checkout(commit_hash, git_dir=None, work_tree=None, force=False): |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 226 | """Checkout the selected commit for this build |
| 227 | |
| 228 | Args: |
| 229 | commit_hash: Commit hash to check out |
| 230 | """ |
| 231 | pipe = ['git'] |
| 232 | if git_dir: |
| 233 | pipe.extend(['--git-dir', git_dir]) |
| 234 | if work_tree: |
| 235 | pipe.extend(['--work-tree', work_tree]) |
| 236 | pipe.append('checkout') |
| 237 | if force: |
| 238 | pipe.append('-f') |
| 239 | pipe.append(commit_hash) |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 240 | result = command.run_pipe([pipe], capture=True, raise_on_error=False, |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 241 | capture_stderr=True) |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 242 | if result.return_code != 0: |
Paul Burton | ac3fde9 | 2016-09-27 16:03:51 +0100 | [diff] [blame] | 243 | raise OSError('git checkout (%s): %s' % (pipe, result.stderr)) |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 244 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 245 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 246 | def clone(git_dir, output_dir): |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 247 | """Checkout the selected commit for this build |
| 248 | |
| 249 | Args: |
| 250 | commit_hash: Commit hash to check out |
| 251 | """ |
| 252 | pipe = ['git', 'clone', git_dir, '.'] |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 253 | result = command.run_pipe([pipe], capture=True, cwd=output_dir, |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 254 | capture_stderr=True) |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 255 | if result.return_code != 0: |
Paul Burton | ac3fde9 | 2016-09-27 16:03:51 +0100 | [diff] [blame] | 256 | raise OSError('git clone: %s' % result.stderr) |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 257 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 258 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 259 | def fetch(git_dir=None, work_tree=None): |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 260 | """Fetch from the origin repo |
| 261 | |
| 262 | Args: |
| 263 | commit_hash: Commit hash to check out |
| 264 | """ |
| 265 | pipe = ['git'] |
| 266 | if git_dir: |
| 267 | pipe.extend(['--git-dir', git_dir]) |
| 268 | if work_tree: |
| 269 | pipe.extend(['--work-tree', work_tree]) |
| 270 | pipe.append('fetch') |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 271 | result = command.run_pipe([pipe], capture=True, capture_stderr=True) |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 272 | if result.return_code != 0: |
Paul Burton | ac3fde9 | 2016-09-27 16:03:51 +0100 | [diff] [blame] | 273 | raise OSError('git fetch: %s' % result.stderr) |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 274 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 275 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 276 | def check_worktree_is_available(git_dir): |
Alper Nebi Yasak | 76de29f | 2020-09-03 15:51:03 +0300 | [diff] [blame] | 277 | """Check if git-worktree functionality is available |
| 278 | |
| 279 | Args: |
| 280 | git_dir: The repository to test in |
| 281 | |
| 282 | Returns: |
| 283 | True if git-worktree commands will work, False otherwise. |
| 284 | """ |
| 285 | pipe = ['git', '--git-dir', git_dir, 'worktree', 'list'] |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 286 | result = command.run_pipe([pipe], capture=True, capture_stderr=True, |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 287 | raise_on_error=False) |
Alper Nebi Yasak | 76de29f | 2020-09-03 15:51:03 +0300 | [diff] [blame] | 288 | return result.return_code == 0 |
| 289 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 290 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 291 | def add_worktree(git_dir, output_dir, commit_hash=None): |
Alper Nebi Yasak | 76de29f | 2020-09-03 15:51:03 +0300 | [diff] [blame] | 292 | """Create and checkout a new git worktree for this build |
| 293 | |
| 294 | Args: |
| 295 | git_dir: The repository to checkout the worktree from |
| 296 | output_dir: Path for the new worktree |
| 297 | commit_hash: Commit hash to checkout |
| 298 | """ |
| 299 | # We need to pass --detach to avoid creating a new branch |
| 300 | pipe = ['git', '--git-dir', git_dir, 'worktree', 'add', '.', '--detach'] |
| 301 | if commit_hash: |
| 302 | pipe.append(commit_hash) |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 303 | result = command.run_pipe([pipe], capture=True, cwd=output_dir, |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 304 | capture_stderr=True) |
Alper Nebi Yasak | 76de29f | 2020-09-03 15:51:03 +0300 | [diff] [blame] | 305 | if result.return_code != 0: |
| 306 | raise OSError('git worktree add: %s' % result.stderr) |
| 307 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 308 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 309 | def prune_worktrees(git_dir): |
Alper Nebi Yasak | 76de29f | 2020-09-03 15:51:03 +0300 | [diff] [blame] | 310 | """Remove administrative files for deleted worktrees |
| 311 | |
| 312 | Args: |
| 313 | git_dir: The repository whose deleted worktrees should be pruned |
| 314 | """ |
| 315 | pipe = ['git', '--git-dir', git_dir, 'worktree', 'prune'] |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 316 | result = command.run_pipe([pipe], capture=True, capture_stderr=True) |
Alper Nebi Yasak | 76de29f | 2020-09-03 15:51:03 +0300 | [diff] [blame] | 317 | if result.return_code != 0: |
| 318 | raise OSError('git worktree prune: %s' % result.stderr) |
| 319 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 320 | |
| 321 | def create_patches(branch, start, count, ignore_binary, series, signoff=True): |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 322 | """Create a series of patches from the top of the current branch. |
| 323 | |
| 324 | The patch files are written to the current directory using |
| 325 | git format-patch. |
| 326 | |
| 327 | Args: |
Simon Glass | 262130f | 2020-07-05 21:41:51 -0600 | [diff] [blame] | 328 | branch: Branch to create patches from (None for current branch) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 329 | start: Commit to start from: 0=HEAD, 1=next one, etc. |
| 330 | count: number of commits to include |
Simon Glass | 7d5b04e | 2020-07-05 21:41:49 -0600 | [diff] [blame] | 331 | ignore_binary: Don't generate patches for binary files |
| 332 | series: Series object for this series (set of patches) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 333 | Return: |
Simon Glass | 7d5b04e | 2020-07-05 21:41:49 -0600 | [diff] [blame] | 334 | Filename of cover letter (None if none) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 335 | List of filenames of patch files |
| 336 | """ |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 337 | cmd = ['git', 'format-patch', '-M'] |
Philipp Tomsich | b3aff15 | 2020-11-24 18:14:52 +0100 | [diff] [blame] | 338 | if signoff: |
| 339 | cmd.append('--signoff') |
Bin Meng | 14aa35a | 2020-05-04 00:52:44 -0700 | [diff] [blame] | 340 | if ignore_binary: |
| 341 | cmd.append('--no-binary') |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 342 | if series.get('cover'): |
| 343 | cmd.append('--cover-letter') |
| 344 | prefix = series.GetPatchPrefix() |
| 345 | if prefix: |
| 346 | cmd += ['--subject-prefix=%s' % prefix] |
Simon Glass | 262130f | 2020-07-05 21:41:51 -0600 | [diff] [blame] | 347 | brname = branch or 'HEAD' |
| 348 | cmd += ['%s~%d..%s~%d' % (brname, start + count, brname, start)] |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 349 | |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 350 | stdout = command.run_list(cmd) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 351 | files = stdout.splitlines() |
| 352 | |
| 353 | # We have an extra file if there is a cover letter |
| 354 | if series.get('cover'): |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 355 | return files[0], files[1:] |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 356 | else: |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 357 | return None, files |
| 358 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 359 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 360 | def build_email_list(in_list, tag=None, alias=None, warn_on_error=True): |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 361 | """Build a list of email addresses based on an input list. |
| 362 | |
| 363 | Takes a list of email addresses and aliases, and turns this into a list |
| 364 | of only email address, by resolving any aliases that are present. |
| 365 | |
| 366 | If the tag is given, then each email address is prepended with this |
| 367 | tag and a space. If the tag starts with a minus sign (indicating a |
| 368 | command line parameter) then the email address is quoted. |
| 369 | |
| 370 | Args: |
| 371 | in_list: List of aliases/email addresses |
| 372 | tag: Text to put before each address |
Simon Glass | a1318f7 | 2013-03-26 13:09:42 +0000 | [diff] [blame] | 373 | alias: Alias dictionary |
Simon Glass | 0fb560d | 2021-01-23 08:56:15 -0700 | [diff] [blame] | 374 | warn_on_error: True to raise an error when an alias fails to match, |
Simon Glass | a1318f7 | 2013-03-26 13:09:42 +0000 | [diff] [blame] | 375 | False to just print a message. |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 376 | |
| 377 | Returns: |
| 378 | List of email addresses |
| 379 | |
| 380 | >>> alias = {} |
| 381 | >>> alias['fred'] = ['f.bloggs@napier.co.nz'] |
| 382 | >>> alias['john'] = ['j.bloggs@napier.co.nz'] |
| 383 | >>> alias['mary'] = ['Mary Poppins <m.poppins@cloud.net>'] |
| 384 | >>> alias['boys'] = ['fred', ' john'] |
| 385 | >>> alias['all'] = ['fred ', 'john', ' mary '] |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 386 | >>> build_email_list(['john', 'mary'], None, alias) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 387 | ['j.bloggs@napier.co.nz', 'Mary Poppins <m.poppins@cloud.net>'] |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 388 | >>> build_email_list(['john', 'mary'], '--to', alias) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 389 | ['--to "j.bloggs@napier.co.nz"', \ |
| 390 | '--to "Mary Poppins <m.poppins@cloud.net>"'] |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 391 | >>> build_email_list(['john', 'mary'], 'Cc', alias) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 392 | ['Cc j.bloggs@napier.co.nz', 'Cc Mary Poppins <m.poppins@cloud.net>'] |
| 393 | """ |
| 394 | quote = '"' if tag and tag[0] == '-' else '' |
| 395 | raw = [] |
| 396 | for item in in_list: |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 397 | raw += lookup_email(item, alias, warn_on_error=warn_on_error) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 398 | result = [] |
| 399 | for item in raw: |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 400 | if item not in result: |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 401 | result.append(item) |
| 402 | if tag: |
| 403 | return ['%s %s%s%s' % (tag, quote, email, quote) for email in result] |
| 404 | return result |
| 405 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 406 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 407 | def check_suppress_cc_config(): |
Nicolas Boichat | 9497756 | 2020-07-13 10:50:00 +0800 | [diff] [blame] | 408 | """Check if sendemail.suppresscc is configured correctly. |
| 409 | |
| 410 | Returns: |
| 411 | True if the option is configured correctly, False otherwise. |
| 412 | """ |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 413 | suppresscc = command.output_one_line( |
| 414 | 'git', 'config', 'sendemail.suppresscc', raise_on_error=False) |
Nicolas Boichat | 9497756 | 2020-07-13 10:50:00 +0800 | [diff] [blame] | 415 | |
| 416 | # Other settings should be fine. |
| 417 | if suppresscc == 'all' or suppresscc == 'cccmd': |
| 418 | col = terminal.Color() |
| 419 | |
Simon Glass | 252ac58 | 2022-01-29 14:14:17 -0700 | [diff] [blame] | 420 | print((col.build(col.RED, "error") + |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 421 | ": git config sendemail.suppresscc set to %s\n" |
| 422 | % (suppresscc)) + |
| 423 | " patman needs --cc-cmd to be run to set the cc list.\n" + |
| 424 | " Please run:\n" + |
| 425 | " git config --unset sendemail.suppresscc\n" + |
| 426 | " Or read the man page:\n" + |
| 427 | " git send-email --help\n" + |
| 428 | " and set an option that runs --cc-cmd\n") |
Nicolas Boichat | 9497756 | 2020-07-13 10:50:00 +0800 | [diff] [blame] | 429 | return False |
| 430 | |
| 431 | return True |
| 432 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 433 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 434 | def email_patches(series, cover_fname, args, dry_run, warn_on_error, cc_fname, |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 435 | self_only=False, alias=None, in_reply_to=None, thread=False, |
Maxim Cournoyer | 8c042fb | 2022-12-20 00:28:46 -0500 | [diff] [blame] | 436 | smtp_server=None, get_maintainer_script=None): |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 437 | """Email a patch series. |
| 438 | |
| 439 | Args: |
| 440 | series: Series object containing destination info |
| 441 | cover_fname: filename of cover letter |
| 442 | args: list of filenames of patch files |
| 443 | dry_run: Just return the command that would be run |
Simon Glass | 0fb560d | 2021-01-23 08:56:15 -0700 | [diff] [blame] | 444 | warn_on_error: True to print a warning when an alias fails to match, |
| 445 | False to ignore it. |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 446 | cc_fname: Filename of Cc file for per-commit Cc |
| 447 | self_only: True to just email to yourself as a test |
Doug Anderson | 6d81992 | 2013-03-17 10:31:04 +0000 | [diff] [blame] | 448 | in_reply_to: If set we'll pass this to git as --in-reply-to. |
| 449 | Should be a message ID that this is in reply to. |
Mateusz Kulikowski | 27067a4 | 2016-01-14 20:37:41 +0100 | [diff] [blame] | 450 | thread: True to add --thread to git send-email (make |
| 451 | all patches reply to cover-letter or first patch in series) |
Simon Glass | a60aedf | 2018-06-19 09:56:07 -0600 | [diff] [blame] | 452 | smtp_server: SMTP server to use to send patches |
Maxim Cournoyer | 8c042fb | 2022-12-20 00:28:46 -0500 | [diff] [blame] | 453 | get_maintainer_script: File name of script to get maintainers emails |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 454 | |
| 455 | Returns: |
| 456 | Git command that was/would be run |
| 457 | |
Doug Anderson | a970048 | 2012-11-26 15:21:40 +0000 | [diff] [blame] | 458 | # For the duration of this doctest pretend that we ran patman with ./patman |
| 459 | >>> _old_argv0 = sys.argv[0] |
| 460 | >>> sys.argv[0] = './patman' |
| 461 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 462 | >>> alias = {} |
| 463 | >>> alias['fred'] = ['f.bloggs@napier.co.nz'] |
| 464 | >>> alias['john'] = ['j.bloggs@napier.co.nz'] |
| 465 | >>> alias['mary'] = ['m.poppins@cloud.net'] |
| 466 | >>> alias['boys'] = ['fred', ' john'] |
| 467 | >>> alias['all'] = ['fred ', 'john', ' mary '] |
| 468 | >>> alias[os.getenv('USER')] = ['this-is-me@me.com'] |
Simon Glass | 38a9d3b | 2020-06-07 06:45:47 -0600 | [diff] [blame] | 469 | >>> series = {} |
| 470 | >>> series['to'] = ['fred'] |
| 471 | >>> series['cc'] = ['mary'] |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 472 | >>> email_patches(series, 'cover', ['p1', 'p2'], True, True, 'cc-fname', \ |
Simon Glass | a1318f7 | 2013-03-26 13:09:42 +0000 | [diff] [blame] | 473 | False, alias) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 474 | 'git send-email --annotate --to "f.bloggs@napier.co.nz" --cc \ |
Simon Glass | 4600767 | 2020-11-03 13:54:10 -0700 | [diff] [blame] | 475 | "m.poppins@cloud.net" --cc-cmd "./patman send --cc-cmd cc-fname" cover p1 p2' |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 476 | >>> email_patches(series, None, ['p1'], True, True, 'cc-fname', False, \ |
Simon Glass | a1318f7 | 2013-03-26 13:09:42 +0000 | [diff] [blame] | 477 | alias) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 478 | 'git send-email --annotate --to "f.bloggs@napier.co.nz" --cc \ |
Simon Glass | 4600767 | 2020-11-03 13:54:10 -0700 | [diff] [blame] | 479 | "m.poppins@cloud.net" --cc-cmd "./patman send --cc-cmd cc-fname" p1' |
Simon Glass | 38a9d3b | 2020-06-07 06:45:47 -0600 | [diff] [blame] | 480 | >>> series['cc'] = ['all'] |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 481 | >>> email_patches(series, 'cover', ['p1', 'p2'], True, True, 'cc-fname', \ |
Simon Glass | a1318f7 | 2013-03-26 13:09:42 +0000 | [diff] [blame] | 482 | True, alias) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 483 | 'git send-email --annotate --to "this-is-me@me.com" --cc-cmd "./patman \ |
Simon Glass | 4600767 | 2020-11-03 13:54:10 -0700 | [diff] [blame] | 484 | send --cc-cmd cc-fname" cover p1 p2' |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 485 | >>> email_patches(series, 'cover', ['p1', 'p2'], True, True, 'cc-fname', \ |
Simon Glass | a1318f7 | 2013-03-26 13:09:42 +0000 | [diff] [blame] | 486 | False, alias) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 487 | 'git send-email --annotate --to "f.bloggs@napier.co.nz" --cc \ |
| 488 | "f.bloggs@napier.co.nz" --cc "j.bloggs@napier.co.nz" --cc \ |
Simon Glass | 4600767 | 2020-11-03 13:54:10 -0700 | [diff] [blame] | 489 | "m.poppins@cloud.net" --cc-cmd "./patman send --cc-cmd cc-fname" cover p1 p2' |
Doug Anderson | a970048 | 2012-11-26 15:21:40 +0000 | [diff] [blame] | 490 | |
| 491 | # Restore argv[0] since we clobbered it. |
| 492 | >>> sys.argv[0] = _old_argv0 |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 493 | """ |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 494 | to = build_email_list(series.get('to'), '--to', alias, warn_on_error) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 495 | if not to: |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 496 | git_config_to = command.output('git', 'config', 'sendemail.to', |
Simon Glass | 785f154 | 2016-07-25 18:59:00 -0600 | [diff] [blame] | 497 | raise_on_error=False) |
Masahiro Yamada | ee860c6 | 2014-07-18 14:23:20 +0900 | [diff] [blame] | 498 | if not git_config_to: |
Simon Glass | 5a1af1d | 2019-05-14 15:53:36 -0600 | [diff] [blame] | 499 | print("No recipient.\n" |
| 500 | "Please add something like this to a commit\n" |
| 501 | "Series-to: Fred Bloggs <f.blogs@napier.co.nz>\n" |
| 502 | "Or do something like this\n" |
| 503 | "git config sendemail.to u-boot@lists.denx.de") |
Masahiro Yamada | ee860c6 | 2014-07-18 14:23:20 +0900 | [diff] [blame] | 504 | return |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 505 | cc = build_email_list(list(set(series.get('cc')) - set(series.get('to'))), |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 506 | '--cc', alias, warn_on_error) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 507 | if self_only: |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 508 | to = build_email_list([os.getenv('USER')], '--to', |
| 509 | alias, warn_on_error) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 510 | cc = [] |
| 511 | cmd = ['git', 'send-email', '--annotate'] |
Simon Glass | a60aedf | 2018-06-19 09:56:07 -0600 | [diff] [blame] | 512 | if smtp_server: |
| 513 | cmd.append('--smtp-server=%s' % smtp_server) |
Doug Anderson | 6d81992 | 2013-03-17 10:31:04 +0000 | [diff] [blame] | 514 | if in_reply_to: |
Simon Glass | fc0056e | 2020-11-08 20:36:18 -0700 | [diff] [blame] | 515 | cmd.append('--in-reply-to="%s"' % in_reply_to) |
Mateusz Kulikowski | 27067a4 | 2016-01-14 20:37:41 +0100 | [diff] [blame] | 516 | if thread: |
| 517 | cmd.append('--thread') |
Doug Anderson | 6d81992 | 2013-03-17 10:31:04 +0000 | [diff] [blame] | 518 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 519 | cmd += to |
| 520 | cmd += cc |
Simon Glass | 4600767 | 2020-11-03 13:54:10 -0700 | [diff] [blame] | 521 | cmd += ['--cc-cmd', '"%s send --cc-cmd %s"' % (sys.argv[0], cc_fname)] |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 522 | if cover_fname: |
| 523 | cmd.append(cover_fname) |
| 524 | cmd += args |
Simon Glass | 2df3a01 | 2017-05-29 15:31:25 -0600 | [diff] [blame] | 525 | cmdstr = ' '.join(cmd) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 526 | if not dry_run: |
Simon Glass | 2df3a01 | 2017-05-29 15:31:25 -0600 | [diff] [blame] | 527 | os.system(cmdstr) |
| 528 | return cmdstr |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 529 | |
| 530 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 531 | def lookup_email(lookup_name, alias=None, warn_on_error=True, level=0): |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 532 | """If an email address is an alias, look it up and return the full name |
| 533 | |
| 534 | TODO: Why not just use git's own alias feature? |
| 535 | |
| 536 | Args: |
| 537 | lookup_name: Alias or email address to look up |
Simon Glass | a1318f7 | 2013-03-26 13:09:42 +0000 | [diff] [blame] | 538 | alias: Dictionary containing aliases (None to use settings default) |
Simon Glass | 0fb560d | 2021-01-23 08:56:15 -0700 | [diff] [blame] | 539 | warn_on_error: True to print a warning when an alias fails to match, |
| 540 | False to ignore it. |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 541 | |
| 542 | Returns: |
| 543 | tuple: |
| 544 | list containing a list of email addresses |
| 545 | |
| 546 | Raises: |
| 547 | OSError if a recursive alias reference was found |
| 548 | ValueError if an alias was not found |
| 549 | |
| 550 | >>> alias = {} |
| 551 | >>> alias['fred'] = ['f.bloggs@napier.co.nz'] |
| 552 | >>> alias['john'] = ['j.bloggs@napier.co.nz'] |
| 553 | >>> alias['mary'] = ['m.poppins@cloud.net'] |
| 554 | >>> alias['boys'] = ['fred', ' john', 'f.bloggs@napier.co.nz'] |
| 555 | >>> alias['all'] = ['fred ', 'john', ' mary '] |
| 556 | >>> alias['loop'] = ['other', 'john', ' mary '] |
| 557 | >>> alias['other'] = ['loop', 'john', ' mary '] |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 558 | >>> lookup_email('mary', alias) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 559 | ['m.poppins@cloud.net'] |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 560 | >>> lookup_email('arthur.wellesley@howe.ro.uk', alias) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 561 | ['arthur.wellesley@howe.ro.uk'] |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 562 | >>> lookup_email('boys', alias) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 563 | ['f.bloggs@napier.co.nz', 'j.bloggs@napier.co.nz'] |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 564 | >>> lookup_email('all', alias) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 565 | ['f.bloggs@napier.co.nz', 'j.bloggs@napier.co.nz', 'm.poppins@cloud.net'] |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 566 | >>> lookup_email('odd', alias) |
Simon Glass | 0fb560d | 2021-01-23 08:56:15 -0700 | [diff] [blame] | 567 | Alias 'odd' not found |
| 568 | [] |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 569 | >>> lookup_email('loop', alias) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 570 | Traceback (most recent call last): |
| 571 | ... |
| 572 | OSError: Recursive email alias at 'other' |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 573 | >>> lookup_email('odd', alias, warn_on_error=False) |
Simon Glass | a1318f7 | 2013-03-26 13:09:42 +0000 | [diff] [blame] | 574 | [] |
| 575 | >>> # In this case the loop part will effectively be ignored. |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 576 | >>> lookup_email('loop', alias, warn_on_error=False) |
Simon Glass | e752edc | 2014-08-28 09:43:35 -0600 | [diff] [blame] | 577 | Recursive email alias at 'other' |
| 578 | Recursive email alias at 'john' |
| 579 | Recursive email alias at 'mary' |
Simon Glass | a1318f7 | 2013-03-26 13:09:42 +0000 | [diff] [blame] | 580 | ['j.bloggs@napier.co.nz', 'm.poppins@cloud.net'] |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 581 | """ |
| 582 | if not alias: |
| 583 | alias = settings.alias |
| 584 | lookup_name = lookup_name.strip() |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 585 | if '@' in lookup_name: # Perhaps a real email address |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 586 | return [lookup_name] |
| 587 | |
| 588 | lookup_name = lookup_name.lower() |
Simon Glass | a1318f7 | 2013-03-26 13:09:42 +0000 | [diff] [blame] | 589 | col = terminal.Color() |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 590 | |
| 591 | out_list = [] |
Simon Glass | a1318f7 | 2013-03-26 13:09:42 +0000 | [diff] [blame] | 592 | if level > 10: |
| 593 | msg = "Recursive email alias at '%s'" % lookup_name |
Simon Glass | 0fb560d | 2021-01-23 08:56:15 -0700 | [diff] [blame] | 594 | if warn_on_error: |
Paul Burton | ac3fde9 | 2016-09-27 16:03:51 +0100 | [diff] [blame] | 595 | raise OSError(msg) |
Simon Glass | a1318f7 | 2013-03-26 13:09:42 +0000 | [diff] [blame] | 596 | else: |
Simon Glass | 252ac58 | 2022-01-29 14:14:17 -0700 | [diff] [blame] | 597 | print(col.build(col.RED, msg)) |
Simon Glass | a1318f7 | 2013-03-26 13:09:42 +0000 | [diff] [blame] | 598 | return out_list |
| 599 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 600 | if lookup_name: |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 601 | if lookup_name not in alias: |
Simon Glass | a1318f7 | 2013-03-26 13:09:42 +0000 | [diff] [blame] | 602 | msg = "Alias '%s' not found" % lookup_name |
Simon Glass | 0fb560d | 2021-01-23 08:56:15 -0700 | [diff] [blame] | 603 | if warn_on_error: |
Simon Glass | 252ac58 | 2022-01-29 14:14:17 -0700 | [diff] [blame] | 604 | print(col.build(col.RED, msg)) |
Simon Glass | 0fb560d | 2021-01-23 08:56:15 -0700 | [diff] [blame] | 605 | return out_list |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 606 | for item in alias[lookup_name]: |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 607 | todo = lookup_email(item, alias, warn_on_error, level + 1) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 608 | for new_item in todo: |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 609 | if new_item not in out_list: |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 610 | out_list.append(new_item) |
| 611 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 612 | return out_list |
| 613 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 614 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 615 | def get_top_level(): |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 616 | """Return name of top-level directory for this git repo. |
| 617 | |
| 618 | Returns: |
| 619 | Full path to git top-level directory |
| 620 | |
| 621 | This test makes sure that we are running tests in the right subdir |
| 622 | |
Doug Anderson | a970048 | 2012-11-26 15:21:40 +0000 | [diff] [blame] | 623 | >>> os.path.realpath(os.path.dirname(__file__)) == \ |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 624 | os.path.join(get_top_level(), 'tools', 'patman') |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 625 | True |
| 626 | """ |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 627 | return command.output_one_line('git', 'rev-parse', '--show-toplevel') |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 628 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 629 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 630 | def get_alias_file(): |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 631 | """Gets the name of the git alias file. |
| 632 | |
| 633 | Returns: |
| 634 | Filename of git alias file, or None if none |
| 635 | """ |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 636 | fname = command.output_one_line('git', 'config', 'sendemail.aliasesfile', |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 637 | raise_on_error=False) |
Brian Norris | dca7926 | 2022-01-07 15:15:55 -0800 | [diff] [blame] | 638 | if not fname: |
| 639 | return None |
| 640 | |
| 641 | fname = os.path.expanduser(fname.strip()) |
| 642 | if os.path.isabs(fname): |
| 643 | return fname |
| 644 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 645 | return os.path.join(get_top_level(), fname) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 646 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 647 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 648 | def get_default_user_name(): |
Vikram Narayanan | 87d6555 | 2012-05-23 09:01:06 +0000 | [diff] [blame] | 649 | """Gets the user.name from .gitconfig file. |
| 650 | |
| 651 | Returns: |
| 652 | User name found in .gitconfig file, or None if none |
| 653 | """ |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 654 | uname = command.output_one_line('git', 'config', '--global', 'user.name') |
Vikram Narayanan | 87d6555 | 2012-05-23 09:01:06 +0000 | [diff] [blame] | 655 | return uname |
| 656 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 657 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 658 | def get_default_user_email(): |
Vikram Narayanan | 87d6555 | 2012-05-23 09:01:06 +0000 | [diff] [blame] | 659 | """Gets the user.email from the global .gitconfig file. |
| 660 | |
| 661 | Returns: |
| 662 | User's email found in .gitconfig file, or None if none |
| 663 | """ |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 664 | uemail = command.output_one_line('git', 'config', '--global', 'user.email') |
Vikram Narayanan | 87d6555 | 2012-05-23 09:01:06 +0000 | [diff] [blame] | 665 | return uemail |
| 666 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 667 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 668 | def get_default_subject_prefix(): |
Wu, Josh | 3871cd8 | 2015-04-15 10:25:18 +0800 | [diff] [blame] | 669 | """Gets the format.subjectprefix from local .git/config file. |
| 670 | |
| 671 | Returns: |
| 672 | Subject prefix found in local .git/config file, or None if none |
| 673 | """ |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 674 | sub_prefix = command.output_one_line( |
| 675 | 'git', 'config', 'format.subjectprefix', raise_on_error=False) |
Wu, Josh | 3871cd8 | 2015-04-15 10:25:18 +0800 | [diff] [blame] | 676 | |
| 677 | return sub_prefix |
| 678 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 679 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 680 | def setup(): |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 681 | """Set up git utils, by reading the alias files.""" |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 682 | # Check for a git alias file also |
Simon Glass | 0b703db | 2014-08-28 09:43:45 -0600 | [diff] [blame] | 683 | global use_no_decorate |
| 684 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 685 | alias_fname = get_alias_file() |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 686 | if alias_fname: |
| 687 | settings.ReadGitAliases(alias_fname) |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 688 | cmd = log_cmd(None, count=0) |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 689 | use_no_decorate = (command.run_pipe([cmd], raise_on_error=False) |
Simon Glass | e49f14a | 2014-08-09 15:33:11 -0600 | [diff] [blame] | 690 | .return_code == 0) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 691 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 692 | |
Simon Glass | 0157b18 | 2022-01-29 14:14:11 -0700 | [diff] [blame] | 693 | def get_head(): |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 694 | """Get the hash of the current HEAD |
| 695 | |
| 696 | Returns: |
| 697 | Hash of HEAD |
| 698 | """ |
Simon Glass | d980069 | 2022-01-29 14:14:05 -0700 | [diff] [blame] | 699 | return command.output_one_line('git', 'show', '-s', '--pretty=format:%H') |
Simon Glass | 5f6a1c4 | 2012-12-15 10:42:07 +0000 | [diff] [blame] | 700 | |
Maxim Cournoyer | f9e20e3 | 2022-12-19 17:32:38 -0500 | [diff] [blame] | 701 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 702 | if __name__ == "__main__": |
| 703 | import doctest |
| 704 | |
| 705 | doctest.testmod() |