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 | d06e55a | 2020-10-29 21:46:17 -0600 | [diff] [blame] | 5 | """Handles parsing a stream of commits/emails from 'git log' or other source""" |
| 6 | |
Simon Glass | 6b3252e | 2020-10-29 21:46:37 -0600 | [diff] [blame] | 7 | import collections |
Douglas Anderson | 833e419 | 2019-09-27 09:23:56 -0700 | [diff] [blame] | 8 | import datetime |
Simon Glass | 7457051 | 2020-10-29 21:46:27 -0600 | [diff] [blame] | 9 | import io |
Wu, Josh | 35ce2dc | 2015-04-03 10:51:17 +0800 | [diff] [blame] | 10 | import math |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 11 | import os |
| 12 | import re |
Simon Glass | 6b3252e | 2020-10-29 21:46:37 -0600 | [diff] [blame] | 13 | import queue |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 14 | import shutil |
| 15 | import tempfile |
| 16 | |
Simon Glass | bf77667 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 17 | from patman import command |
| 18 | from patman import commit |
| 19 | from patman import gitutil |
| 20 | from patman.series import Series |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 21 | |
| 22 | # Tags that we detect and remove |
Simon Glass | 5769904 | 2020-10-29 21:46:18 -0600 | [diff] [blame] | 23 | RE_REMOVE = re.compile(r'^BUG=|^TEST=|^BRANCH=|^Review URL:' |
Simon Glass | d06e55a | 2020-10-29 21:46:17 -0600 | [diff] [blame] | 24 | r'|Reviewed-on:|Commit-\w*:') |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 25 | |
| 26 | # Lines which are allowed after a TEST= line |
Simon Glass | 5769904 | 2020-10-29 21:46:18 -0600 | [diff] [blame] | 27 | RE_ALLOWED_AFTER_TEST = re.compile('^Signed-off-by:') |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 28 | |
Ilya Yanok | 05e5b73 | 2012-08-06 23:46:05 +0000 | [diff] [blame] | 29 | # Signoffs |
Simon Glass | 5769904 | 2020-10-29 21:46:18 -0600 | [diff] [blame] | 30 | RE_SIGNOFF = re.compile('^Signed-off-by: *(.*)') |
Ilya Yanok | 05e5b73 | 2012-08-06 23:46:05 +0000 | [diff] [blame] | 31 | |
Sean Anderson | 6949f70 | 2020-05-04 16:28:34 -0400 | [diff] [blame] | 32 | # Cover letter tag |
Simon Glass | 5769904 | 2020-10-29 21:46:18 -0600 | [diff] [blame] | 33 | RE_COVER = re.compile('^Cover-([a-z-]*): *(.*)') |
Simon Glass | fe2f8d9 | 2013-03-20 16:43:00 +0000 | [diff] [blame] | 34 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 35 | # Patch series tag |
Simon Glass | 5769904 | 2020-10-29 21:46:18 -0600 | [diff] [blame] | 36 | RE_SERIES_TAG = re.compile('^Series-([a-z-]*): *(.*)') |
Albert ARIBAUD | 5c8fdd9 | 2013-11-12 11:14:41 +0100 | [diff] [blame] | 37 | |
Douglas Anderson | 833e419 | 2019-09-27 09:23:56 -0700 | [diff] [blame] | 38 | # Change-Id will be used to generate the Message-Id and then be stripped |
Simon Glass | 5769904 | 2020-10-29 21:46:18 -0600 | [diff] [blame] | 39 | RE_CHANGE_ID = re.compile('^Change-Id: *(.*)') |
Douglas Anderson | 833e419 | 2019-09-27 09:23:56 -0700 | [diff] [blame] | 40 | |
Albert ARIBAUD | 5c8fdd9 | 2013-11-12 11:14:41 +0100 | [diff] [blame] | 41 | # Commit series tag |
Simon Glass | 5769904 | 2020-10-29 21:46:18 -0600 | [diff] [blame] | 42 | RE_COMMIT_TAG = re.compile('^Commit-([a-z-]*): *(.*)') |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 43 | |
| 44 | # Commit tags that we want to collect and keep |
Simon Glass | 5769904 | 2020-10-29 21:46:18 -0600 | [diff] [blame] | 45 | RE_TAG = re.compile('^(Tested-by|Acked-by|Reviewed-by|Patch-cc|Fixes): (.*)') |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 46 | |
| 47 | # The start of a new commit in the git log |
Simon Glass | 5769904 | 2020-10-29 21:46:18 -0600 | [diff] [blame] | 48 | RE_COMMIT = re.compile('^commit ([0-9a-f]*)$') |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 49 | |
| 50 | # We detect these since checkpatch doesn't always do it |
Simon Glass | 5769904 | 2020-10-29 21:46:18 -0600 | [diff] [blame] | 51 | RE_SPACE_BEFORE_TAB = re.compile('^[+].* \t') |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 52 | |
Sean Anderson | 0411fff | 2020-05-04 16:28:35 -0400 | [diff] [blame] | 53 | # Match indented lines for changes |
Simon Glass | 5769904 | 2020-10-29 21:46:18 -0600 | [diff] [blame] | 54 | RE_LEADING_WHITESPACE = re.compile(r'^\s') |
Sean Anderson | 0411fff | 2020-05-04 16:28:35 -0400 | [diff] [blame] | 55 | |
Simon Glass | 6b3252e | 2020-10-29 21:46:37 -0600 | [diff] [blame] | 56 | # Detect a 'diff' line |
| 57 | RE_DIFF = re.compile(r'^>.*diff --git a/(.*) b/(.*)$') |
| 58 | |
| 59 | # Detect a context line, like '> @@ -153,8 +153,13 @@ CheckPatch |
| 60 | RE_LINE = re.compile(r'>.*@@ \-(\d+),\d+ \+(\d+),\d+ @@ *(.*)') |
| 61 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 62 | # States we can be in - can we use range() and still have comments? |
| 63 | STATE_MSG_HEADER = 0 # Still in the message header |
| 64 | STATE_PATCH_SUBJECT = 1 # In patch subject (first line of log for a commit) |
| 65 | STATE_PATCH_HEADER = 2 # In patch header (after the subject) |
| 66 | STATE_DIFFS = 3 # In the diff part (past --- line) |
| 67 | |
| 68 | class PatchStream: |
| 69 | """Class for detecting/injecting tags in a patch or series of patches |
| 70 | |
| 71 | We support processing the output of 'git log' to read out the tags we |
| 72 | are interested in. We can also process a patch file in order to remove |
| 73 | unwanted tags or inject additional ones. These correspond to the two |
| 74 | phases of processing. |
| 75 | """ |
Simon Glass | e3a816b | 2020-10-29 21:46:21 -0600 | [diff] [blame] | 76 | def __init__(self, series, is_log=False): |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 77 | self.skip_blank = False # True to skip a single blank line |
| 78 | self.found_test = False # Found a TEST= line |
Sean Anderson | 6949f70 | 2020-05-04 16:28:34 -0400 | [diff] [blame] | 79 | self.lines_after_test = 0 # Number of lines found after TEST= |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 80 | self.linenum = 1 # Output line number we are up to |
| 81 | self.in_section = None # Name of start...END section we are in |
| 82 | self.notes = [] # Series notes |
| 83 | self.section = [] # The current section...END section |
| 84 | self.series = series # Info about the patch series |
| 85 | self.is_log = is_log # True if indent like git log |
Sean Anderson | 6949f70 | 2020-05-04 16:28:34 -0400 | [diff] [blame] | 86 | self.in_change = None # Name of the change list we are in |
| 87 | self.change_version = 0 # Non-zero if we are in a change list |
Sean Anderson | 0411fff | 2020-05-04 16:28:35 -0400 | [diff] [blame] | 88 | self.change_lines = [] # Lines of the current change |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 89 | self.blank_count = 0 # Number of blank lines stored up |
| 90 | self.state = STATE_MSG_HEADER # What state are we in? |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 91 | self.commit = None # Current commit |
Simon Glass | dc4b2a9 | 2020-10-29 21:46:38 -0600 | [diff] [blame] | 92 | # List of unquoted test blocks, each a list of str lines |
| 93 | self.snippets = [] |
Simon Glass | 6b3252e | 2020-10-29 21:46:37 -0600 | [diff] [blame] | 94 | self.cur_diff = None # Last 'diff' line seen (str) |
| 95 | self.cur_line = None # Last context (@@) line seen (str) |
Simon Glass | dc4b2a9 | 2020-10-29 21:46:38 -0600 | [diff] [blame] | 96 | self.recent_diff = None # 'diff' line for current snippet (str) |
| 97 | self.recent_line = None # '@@' line for current snippet (str) |
Simon Glass | 6b3252e | 2020-10-29 21:46:37 -0600 | [diff] [blame] | 98 | self.recent_quoted = collections.deque([], 5) |
| 99 | self.recent_unquoted = queue.Queue() |
| 100 | self.was_quoted = None |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 101 | |
Simon Glass | 7457051 | 2020-10-29 21:46:27 -0600 | [diff] [blame] | 102 | @staticmethod |
| 103 | def process_text(text, is_comment=False): |
| 104 | """Process some text through this class using a default Commit/Series |
| 105 | |
| 106 | Args: |
| 107 | text (str): Text to parse |
| 108 | is_comment (bool): True if this is a comment rather than a patch. |
| 109 | If True, PatchStream doesn't expect a patch subject at the |
| 110 | start, but jumps straight into the body |
| 111 | |
| 112 | Returns: |
| 113 | PatchStream: object with results |
| 114 | """ |
| 115 | pstrm = PatchStream(Series()) |
| 116 | pstrm.commit = commit.Commit(None) |
| 117 | infd = io.StringIO(text) |
| 118 | outfd = io.StringIO() |
| 119 | if is_comment: |
| 120 | pstrm.state = STATE_PATCH_HEADER |
| 121 | pstrm.process_stream(infd, outfd) |
| 122 | return pstrm |
| 123 | |
Simon Glass | b5cc399 | 2020-10-29 21:46:23 -0600 | [diff] [blame] | 124 | def _add_warn(self, warn): |
Simon Glass | 313ef5f | 2020-10-29 21:46:24 -0600 | [diff] [blame] | 125 | """Add a new warning to report to the user about the current commit |
| 126 | |
| 127 | The new warning is added to the current commit if not already present. |
Simon Glass | b5cc399 | 2020-10-29 21:46:23 -0600 | [diff] [blame] | 128 | |
| 129 | Args: |
| 130 | warn (str): Warning to report |
Simon Glass | 313ef5f | 2020-10-29 21:46:24 -0600 | [diff] [blame] | 131 | |
| 132 | Raises: |
| 133 | ValueError: Warning is generated with no commit associated |
Simon Glass | b5cc399 | 2020-10-29 21:46:23 -0600 | [diff] [blame] | 134 | """ |
Simon Glass | 313ef5f | 2020-10-29 21:46:24 -0600 | [diff] [blame] | 135 | if not self.commit: |
| 136 | raise ValueError('Warning outside commit: %s' % warn) |
| 137 | if warn not in self.commit.warn: |
| 138 | self.commit.warn.append(warn) |
Simon Glass | b5cc399 | 2020-10-29 21:46:23 -0600 | [diff] [blame] | 139 | |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 140 | def _add_to_series(self, line, name, value): |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 141 | """Add a new Series-xxx tag. |
| 142 | |
| 143 | When a Series-xxx tag is detected, we come here to record it, if we |
| 144 | are scanning a 'git log'. |
| 145 | |
| 146 | Args: |
Simon Glass | 1cb1c0f | 2020-10-29 21:46:22 -0600 | [diff] [blame] | 147 | line (str): Source line containing tag (useful for debug/error |
| 148 | messages) |
| 149 | name (str): Tag name (part after 'Series-') |
| 150 | value (str): Tag value (part after 'Series-xxx: ') |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 151 | """ |
| 152 | if name == 'notes': |
| 153 | self.in_section = name |
| 154 | self.skip_blank = False |
| 155 | if self.is_log: |
Simon Glass | dffa42c | 2020-10-29 21:46:25 -0600 | [diff] [blame] | 156 | warn = self.series.AddTag(self.commit, line, name, value) |
| 157 | if warn: |
| 158 | self.commit.warn.append(warn) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 159 | |
Simon Glass | e3a816b | 2020-10-29 21:46:21 -0600 | [diff] [blame] | 160 | def _add_to_commit(self, name): |
Albert ARIBAUD | 5c8fdd9 | 2013-11-12 11:14:41 +0100 | [diff] [blame] | 161 | """Add a new Commit-xxx tag. |
| 162 | |
| 163 | When a Commit-xxx tag is detected, we come here to record it. |
| 164 | |
| 165 | Args: |
Simon Glass | 1cb1c0f | 2020-10-29 21:46:22 -0600 | [diff] [blame] | 166 | name (str): Tag name (part after 'Commit-') |
Albert ARIBAUD | 5c8fdd9 | 2013-11-12 11:14:41 +0100 | [diff] [blame] | 167 | """ |
| 168 | if name == 'notes': |
| 169 | self.in_section = 'commit-' + name |
| 170 | self.skip_blank = False |
| 171 | |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 172 | def _add_commit_rtag(self, rtag_type, who): |
Simon Glass | 7207e2b | 2020-07-05 21:41:57 -0600 | [diff] [blame] | 173 | """Add a response tag to the current commit |
| 174 | |
| 175 | Args: |
Simon Glass | 1cb1c0f | 2020-10-29 21:46:22 -0600 | [diff] [blame] | 176 | rtag_type (str): rtag type (e.g. 'Reviewed-by') |
| 177 | who (str): Person who gave that rtag, e.g. |
| 178 | 'Fred Bloggs <fred@bloggs.org>' |
Simon Glass | 7207e2b | 2020-07-05 21:41:57 -0600 | [diff] [blame] | 179 | """ |
| 180 | self.commit.AddRtag(rtag_type, who) |
| 181 | |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 182 | def _close_commit(self): |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 183 | """Save the current commit into our commit list, and reset our state""" |
| 184 | if self.commit and self.is_log: |
| 185 | self.series.AddCommit(self.commit) |
| 186 | self.commit = None |
Bin Meng | 0d57718 | 2016-06-26 23:24:30 -0700 | [diff] [blame] | 187 | # If 'END' is missing in a 'Cover-letter' section, and that section |
| 188 | # happens to show up at the very end of the commit message, this is |
| 189 | # the chance for us to fix it up. |
| 190 | if self.in_section == 'cover' and self.is_log: |
| 191 | self.series.cover = self.section |
| 192 | self.in_section = None |
| 193 | self.skip_blank = True |
| 194 | self.section = [] |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 195 | |
Simon Glass | 6b3252e | 2020-10-29 21:46:37 -0600 | [diff] [blame] | 196 | self.cur_diff = None |
| 197 | self.recent_diff = None |
| 198 | self.recent_line = None |
| 199 | |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 200 | def _parse_version(self, value, line): |
Sean Anderson | 6949f70 | 2020-05-04 16:28:34 -0400 | [diff] [blame] | 201 | """Parse a version from a *-changes tag |
| 202 | |
| 203 | Args: |
Simon Glass | 1cb1c0f | 2020-10-29 21:46:22 -0600 | [diff] [blame] | 204 | value (str): Tag value (part after 'xxx-changes: ' |
| 205 | line (str): Source line containing tag |
Sean Anderson | 6949f70 | 2020-05-04 16:28:34 -0400 | [diff] [blame] | 206 | |
| 207 | Returns: |
Simon Glass | 1cb1c0f | 2020-10-29 21:46:22 -0600 | [diff] [blame] | 208 | int: The version as an integer |
| 209 | |
| 210 | Raises: |
| 211 | ValueError: the value cannot be converted |
Sean Anderson | 6949f70 | 2020-05-04 16:28:34 -0400 | [diff] [blame] | 212 | """ |
| 213 | try: |
| 214 | return int(value) |
Simon Glass | dd147ed | 2020-10-29 21:46:20 -0600 | [diff] [blame] | 215 | except ValueError: |
Sean Anderson | 6949f70 | 2020-05-04 16:28:34 -0400 | [diff] [blame] | 216 | raise ValueError("%s: Cannot decode version info '%s'" % |
Simon Glass | d06e55a | 2020-10-29 21:46:17 -0600 | [diff] [blame] | 217 | (self.commit.hash, line)) |
Sean Anderson | 6949f70 | 2020-05-04 16:28:34 -0400 | [diff] [blame] | 218 | |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 219 | def _finalise_change(self): |
| 220 | """_finalise a (multi-line) change and add it to the series or commit""" |
Sean Anderson | 0411fff | 2020-05-04 16:28:35 -0400 | [diff] [blame] | 221 | if not self.change_lines: |
| 222 | return |
| 223 | change = '\n'.join(self.change_lines) |
| 224 | |
| 225 | if self.in_change == 'Series': |
| 226 | self.series.AddChange(self.change_version, self.commit, change) |
| 227 | elif self.in_change == 'Cover': |
| 228 | self.series.AddChange(self.change_version, None, change) |
| 229 | elif self.in_change == 'Commit': |
| 230 | self.commit.AddChange(self.change_version, change) |
| 231 | self.change_lines = [] |
| 232 | |
Simon Glass | 6b3252e | 2020-10-29 21:46:37 -0600 | [diff] [blame] | 233 | def _finalise_snippet(self): |
| 234 | """Finish off a snippet and add it to the list |
| 235 | |
| 236 | This is called when we get to the end of a snippet, i.e. the we enter |
| 237 | the next block of quoted text: |
| 238 | |
| 239 | This is a comment from someone. |
| 240 | |
| 241 | Something else |
| 242 | |
| 243 | > Now we have some code <----- end of snippet |
| 244 | > more code |
| 245 | |
| 246 | Now a comment about the above code |
| 247 | |
| 248 | This adds the snippet to our list |
| 249 | """ |
| 250 | quoted_lines = [] |
| 251 | while self.recent_quoted: |
| 252 | quoted_lines.append(self.recent_quoted.popleft()) |
| 253 | unquoted_lines = [] |
| 254 | valid = False |
| 255 | while not self.recent_unquoted.empty(): |
| 256 | text = self.recent_unquoted.get() |
| 257 | if not (text.startswith('On ') and text.endswith('wrote:')): |
| 258 | unquoted_lines.append(text) |
| 259 | if text: |
| 260 | valid = True |
| 261 | if valid: |
| 262 | lines = [] |
| 263 | if self.recent_diff: |
| 264 | lines.append('> File: %s' % self.recent_diff) |
| 265 | if self.recent_line: |
| 266 | out = '> Line: %s / %s' % self.recent_line[:2] |
| 267 | if self.recent_line[2]: |
| 268 | out += ': %s' % self.recent_line[2] |
| 269 | lines.append(out) |
| 270 | lines += quoted_lines + unquoted_lines |
| 271 | if lines: |
| 272 | self.snippets.append(lines) |
| 273 | |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 274 | def process_line(self, line): |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 275 | """Process a single line of a patch file or commit log |
| 276 | |
| 277 | This process a line and returns a list of lines to output. The list |
| 278 | may be empty or may contain multiple output lines. |
| 279 | |
| 280 | This is where all the complicated logic is located. The class's |
| 281 | state is used to move between different states and detect things |
| 282 | properly. |
| 283 | |
| 284 | We can be in one of two modes: |
| 285 | self.is_log == True: This is 'git log' mode, where most output is |
| 286 | indented by 4 characters and we are scanning for tags |
| 287 | |
| 288 | self.is_log == False: This is 'patch' mode, where we already have |
| 289 | all the tags, and are processing patches to remove junk we |
| 290 | don't want, and add things we think are required. |
| 291 | |
| 292 | Args: |
Simon Glass | 1cb1c0f | 2020-10-29 21:46:22 -0600 | [diff] [blame] | 293 | line (str): text line to process |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 294 | |
| 295 | Returns: |
Simon Glass | 1cb1c0f | 2020-10-29 21:46:22 -0600 | [diff] [blame] | 296 | list: list of output lines, or [] if nothing should be output |
| 297 | |
| 298 | Raises: |
| 299 | ValueError: a fatal error occurred while parsing, e.g. an END |
| 300 | without a starting tag, or two commits with two change IDs |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 301 | """ |
| 302 | # Initially we have no output. Prepare the input line string |
| 303 | out = [] |
| 304 | line = line.rstrip('\n') |
Scott Wood | 4b89b81 | 2014-09-25 14:30:46 -0500 | [diff] [blame] | 305 | |
Simon Glass | 5769904 | 2020-10-29 21:46:18 -0600 | [diff] [blame] | 306 | commit_match = RE_COMMIT.match(line) if self.is_log else None |
Scott Wood | 4b89b81 | 2014-09-25 14:30:46 -0500 | [diff] [blame] | 307 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 308 | if self.is_log: |
| 309 | if line[:4] == ' ': |
| 310 | line = line[4:] |
| 311 | |
| 312 | # Handle state transition and skipping blank lines |
Simon Glass | 5769904 | 2020-10-29 21:46:18 -0600 | [diff] [blame] | 313 | series_tag_match = RE_SERIES_TAG.match(line) |
| 314 | change_id_match = RE_CHANGE_ID.match(line) |
| 315 | commit_tag_match = RE_COMMIT_TAG.match(line) |
| 316 | cover_match = RE_COVER.match(line) |
| 317 | signoff_match = RE_SIGNOFF.match(line) |
| 318 | leading_whitespace_match = RE_LEADING_WHITESPACE.match(line) |
Simon Glass | 6b3252e | 2020-10-29 21:46:37 -0600 | [diff] [blame] | 319 | diff_match = RE_DIFF.match(line) |
| 320 | line_match = RE_LINE.match(line) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 321 | tag_match = None |
| 322 | if self.state == STATE_PATCH_HEADER: |
Simon Glass | 5769904 | 2020-10-29 21:46:18 -0600 | [diff] [blame] | 323 | tag_match = RE_TAG.match(line) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 324 | is_blank = not line.strip() |
| 325 | if is_blank: |
| 326 | if (self.state == STATE_MSG_HEADER |
| 327 | or self.state == STATE_PATCH_SUBJECT): |
| 328 | self.state += 1 |
| 329 | |
| 330 | # We don't have a subject in the text stream of patch files |
| 331 | # It has its own line with a Subject: tag |
| 332 | if not self.is_log and self.state == STATE_PATCH_SUBJECT: |
| 333 | self.state += 1 |
| 334 | elif commit_match: |
| 335 | self.state = STATE_MSG_HEADER |
| 336 | |
Bin Meng | 94fbd3e | 2016-06-26 23:24:32 -0700 | [diff] [blame] | 337 | # If a tag is detected, or a new commit starts |
Douglas Anderson | 833e419 | 2019-09-27 09:23:56 -0700 | [diff] [blame] | 338 | if series_tag_match or commit_tag_match or change_id_match or \ |
Sean Anderson | 6949f70 | 2020-05-04 16:28:34 -0400 | [diff] [blame] | 339 | cover_match or signoff_match or self.state == STATE_MSG_HEADER: |
Bin Meng | 57b6b19 | 2016-06-26 23:24:31 -0700 | [diff] [blame] | 340 | # but we are already in a section, this means 'END' is missing |
| 341 | # for that section, fix it up. |
Bin Meng | 13b98d9 | 2016-06-26 23:24:29 -0700 | [diff] [blame] | 342 | if self.in_section: |
Simon Glass | b5cc399 | 2020-10-29 21:46:23 -0600 | [diff] [blame] | 343 | self._add_warn("Missing 'END' in section '%s'" % self.in_section) |
Bin Meng | 13b98d9 | 2016-06-26 23:24:29 -0700 | [diff] [blame] | 344 | if self.in_section == 'cover': |
| 345 | self.series.cover = self.section |
| 346 | elif self.in_section == 'notes': |
| 347 | if self.is_log: |
| 348 | self.series.notes += self.section |
| 349 | elif self.in_section == 'commit-notes': |
| 350 | if self.is_log: |
| 351 | self.commit.notes += self.section |
| 352 | else: |
Simon Glass | b5cc399 | 2020-10-29 21:46:23 -0600 | [diff] [blame] | 353 | # This should not happen |
| 354 | raise ValueError("Unknown section '%s'" % self.in_section) |
Bin Meng | 13b98d9 | 2016-06-26 23:24:29 -0700 | [diff] [blame] | 355 | self.in_section = None |
| 356 | self.skip_blank = True |
| 357 | self.section = [] |
Bin Meng | 57b6b19 | 2016-06-26 23:24:31 -0700 | [diff] [blame] | 358 | # but we are already in a change list, that means a blank line |
| 359 | # is missing, fix it up. |
| 360 | if self.in_change: |
Simon Glass | b5cc399 | 2020-10-29 21:46:23 -0600 | [diff] [blame] | 361 | self._add_warn("Missing 'blank line' in section '%s-changes'" % |
| 362 | self.in_change) |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 363 | self._finalise_change() |
Sean Anderson | 6949f70 | 2020-05-04 16:28:34 -0400 | [diff] [blame] | 364 | self.in_change = None |
| 365 | self.change_version = 0 |
Bin Meng | 13b98d9 | 2016-06-26 23:24:29 -0700 | [diff] [blame] | 366 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 367 | # If we are in a section, keep collecting lines until we see END |
| 368 | if self.in_section: |
| 369 | if line == 'END': |
| 370 | if self.in_section == 'cover': |
| 371 | self.series.cover = self.section |
| 372 | elif self.in_section == 'notes': |
| 373 | if self.is_log: |
| 374 | self.series.notes += self.section |
Albert ARIBAUD | 5c8fdd9 | 2013-11-12 11:14:41 +0100 | [diff] [blame] | 375 | elif self.in_section == 'commit-notes': |
| 376 | if self.is_log: |
| 377 | self.commit.notes += self.section |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 378 | else: |
Simon Glass | b5cc399 | 2020-10-29 21:46:23 -0600 | [diff] [blame] | 379 | # This should not happen |
| 380 | raise ValueError("Unknown section '%s'" % self.in_section) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 381 | self.in_section = None |
| 382 | self.skip_blank = True |
| 383 | self.section = [] |
| 384 | else: |
| 385 | self.section.append(line) |
| 386 | |
Patrick Delaunay | 7058dd0 | 2020-07-02 19:08:24 +0200 | [diff] [blame] | 387 | # If we are not in a section, it is an unexpected END |
| 388 | elif line == 'END': |
Simon Glass | d06e55a | 2020-10-29 21:46:17 -0600 | [diff] [blame] | 389 | raise ValueError("'END' wihout section") |
Patrick Delaunay | 7058dd0 | 2020-07-02 19:08:24 +0200 | [diff] [blame] | 390 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 391 | # Detect the commit subject |
| 392 | elif not is_blank and self.state == STATE_PATCH_SUBJECT: |
| 393 | self.commit.subject = line |
| 394 | |
| 395 | # Detect the tags we want to remove, and skip blank lines |
Simon Glass | 5769904 | 2020-10-29 21:46:18 -0600 | [diff] [blame] | 396 | elif RE_REMOVE.match(line) and not commit_tag_match: |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 397 | self.skip_blank = True |
| 398 | |
| 399 | # TEST= should be the last thing in the commit, so remove |
| 400 | # everything after it |
| 401 | if line.startswith('TEST='): |
| 402 | self.found_test = True |
| 403 | elif self.skip_blank and is_blank: |
| 404 | self.skip_blank = False |
| 405 | |
Sean Anderson | 6949f70 | 2020-05-04 16:28:34 -0400 | [diff] [blame] | 406 | # Detect Cover-xxx tags |
Bin Meng | e7df218 | 2016-06-26 23:24:28 -0700 | [diff] [blame] | 407 | elif cover_match: |
Sean Anderson | 6949f70 | 2020-05-04 16:28:34 -0400 | [diff] [blame] | 408 | name = cover_match.group(1) |
| 409 | value = cover_match.group(2) |
| 410 | if name == 'letter': |
| 411 | self.in_section = 'cover' |
| 412 | self.skip_blank = False |
| 413 | elif name == 'letter-cc': |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 414 | self._add_to_series(line, 'cover-cc', value) |
Sean Anderson | 6949f70 | 2020-05-04 16:28:34 -0400 | [diff] [blame] | 415 | elif name == 'changes': |
| 416 | self.in_change = 'Cover' |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 417 | self.change_version = self._parse_version(value, line) |
Simon Glass | fe2f8d9 | 2013-03-20 16:43:00 +0000 | [diff] [blame] | 418 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 419 | # If we are in a change list, key collected lines until a blank one |
| 420 | elif self.in_change: |
| 421 | if is_blank: |
| 422 | # Blank line ends this change list |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 423 | self._finalise_change() |
Sean Anderson | 6949f70 | 2020-05-04 16:28:34 -0400 | [diff] [blame] | 424 | self.in_change = None |
| 425 | self.change_version = 0 |
Simon Glass | 102061b | 2014-04-20 10:50:14 -0600 | [diff] [blame] | 426 | elif line == '---': |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 427 | self._finalise_change() |
Sean Anderson | 6949f70 | 2020-05-04 16:28:34 -0400 | [diff] [blame] | 428 | self.in_change = None |
| 429 | self.change_version = 0 |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 430 | out = self.process_line(line) |
Sean Anderson | 0411fff | 2020-05-04 16:28:35 -0400 | [diff] [blame] | 431 | elif self.is_log: |
| 432 | if not leading_whitespace_match: |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 433 | self._finalise_change() |
Sean Anderson | 0411fff | 2020-05-04 16:28:35 -0400 | [diff] [blame] | 434 | self.change_lines.append(line) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 435 | self.skip_blank = False |
| 436 | |
| 437 | # Detect Series-xxx tags |
Albert ARIBAUD | 5c8fdd9 | 2013-11-12 11:14:41 +0100 | [diff] [blame] | 438 | elif series_tag_match: |
| 439 | name = series_tag_match.group(1) |
| 440 | value = series_tag_match.group(2) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 441 | if name == 'changes': |
| 442 | # value is the version number: e.g. 1, or 2 |
Sean Anderson | 6949f70 | 2020-05-04 16:28:34 -0400 | [diff] [blame] | 443 | self.in_change = 'Series' |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 444 | self.change_version = self._parse_version(value, line) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 445 | else: |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 446 | self._add_to_series(line, name, value) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 447 | self.skip_blank = True |
| 448 | |
Douglas Anderson | 833e419 | 2019-09-27 09:23:56 -0700 | [diff] [blame] | 449 | # Detect Change-Id tags |
| 450 | elif change_id_match: |
| 451 | value = change_id_match.group(1) |
| 452 | if self.is_log: |
| 453 | if self.commit.change_id: |
Simon Glass | d06e55a | 2020-10-29 21:46:17 -0600 | [diff] [blame] | 454 | raise ValueError( |
Simon Glass | 53336e6 | 2020-11-03 13:54:11 -0700 | [diff] [blame] | 455 | "%s: Two Change-Ids: '%s' vs. '%s'" % |
| 456 | (self.commit.hash, self.commit.change_id, value)) |
Douglas Anderson | 833e419 | 2019-09-27 09:23:56 -0700 | [diff] [blame] | 457 | self.commit.change_id = value |
| 458 | self.skip_blank = True |
| 459 | |
Albert ARIBAUD | 5c8fdd9 | 2013-11-12 11:14:41 +0100 | [diff] [blame] | 460 | # Detect Commit-xxx tags |
| 461 | elif commit_tag_match: |
| 462 | name = commit_tag_match.group(1) |
| 463 | value = commit_tag_match.group(2) |
| 464 | if name == 'notes': |
Simon Glass | e3a816b | 2020-10-29 21:46:21 -0600 | [diff] [blame] | 465 | self._add_to_commit(name) |
Albert ARIBAUD | 5c8fdd9 | 2013-11-12 11:14:41 +0100 | [diff] [blame] | 466 | self.skip_blank = True |
Sean Anderson | 6949f70 | 2020-05-04 16:28:34 -0400 | [diff] [blame] | 467 | elif name == 'changes': |
| 468 | self.in_change = 'Commit' |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 469 | self.change_version = self._parse_version(value, line) |
Patrick Delaunay | e5ff9ab | 2020-07-02 19:52:54 +0200 | [diff] [blame] | 470 | else: |
Simon Glass | b5cc399 | 2020-10-29 21:46:23 -0600 | [diff] [blame] | 471 | self._add_warn('Line %d: Ignoring Commit-%s' % |
| 472 | (self.linenum, name)) |
Albert ARIBAUD | 5c8fdd9 | 2013-11-12 11:14:41 +0100 | [diff] [blame] | 473 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 474 | # Detect the start of a new commit |
| 475 | elif commit_match: |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 476 | self._close_commit() |
Simon Glass | 0b5b409 | 2014-10-15 02:27:00 -0600 | [diff] [blame] | 477 | self.commit = commit.Commit(commit_match.group(1)) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 478 | |
| 479 | # Detect tags in the commit message |
| 480 | elif tag_match: |
Simon Glass | 7207e2b | 2020-07-05 21:41:57 -0600 | [diff] [blame] | 481 | rtag_type, who = tag_match.groups() |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 482 | self._add_commit_rtag(rtag_type, who) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 483 | # Remove Tested-by self, since few will take much notice |
Simon Glass | 7207e2b | 2020-07-05 21:41:57 -0600 | [diff] [blame] | 484 | if (rtag_type == 'Tested-by' and |
| 485 | who.find(os.getenv('USER') + '@') != -1): |
Simon Glass | 4af9987 | 2020-10-29 21:46:28 -0600 | [diff] [blame] | 486 | self._add_warn("Ignoring '%s'" % line) |
Simon Glass | 7207e2b | 2020-07-05 21:41:57 -0600 | [diff] [blame] | 487 | elif rtag_type == 'Patch-cc': |
| 488 | self.commit.AddCc(who.split(',')) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 489 | else: |
Simon Glass | d0c5719 | 2014-08-28 09:43:38 -0600 | [diff] [blame] | 490 | out = [line] |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 491 | |
Simon Glass | 102061b | 2014-04-20 10:50:14 -0600 | [diff] [blame] | 492 | # Suppress duplicate signoffs |
| 493 | elif signoff_match: |
Simon Glass | e752edc | 2014-08-28 09:43:35 -0600 | [diff] [blame] | 494 | if (self.is_log or not self.commit or |
Simon Glass | d06e55a | 2020-10-29 21:46:17 -0600 | [diff] [blame] | 495 | self.commit.CheckDuplicateSignoff(signoff_match.group(1))): |
Simon Glass | 102061b | 2014-04-20 10:50:14 -0600 | [diff] [blame] | 496 | out = [line] |
| 497 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 498 | # Well that means this is an ordinary line |
| 499 | else: |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 500 | # Look for space before tab |
Simon Glass | dd147ed | 2020-10-29 21:46:20 -0600 | [diff] [blame] | 501 | mat = RE_SPACE_BEFORE_TAB.match(line) |
| 502 | if mat: |
Simon Glass | b5cc399 | 2020-10-29 21:46:23 -0600 | [diff] [blame] | 503 | self._add_warn('Line %d/%d has space before tab' % |
| 504 | (self.linenum, mat.start())) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 505 | |
| 506 | # OK, we have a valid non-blank line |
| 507 | out = [line] |
| 508 | self.linenum += 1 |
| 509 | self.skip_blank = False |
Simon Glass | 6b3252e | 2020-10-29 21:46:37 -0600 | [diff] [blame] | 510 | |
| 511 | if diff_match: |
| 512 | self.cur_diff = diff_match.group(1) |
| 513 | |
| 514 | # If this is quoted, keep recent lines |
| 515 | if not diff_match and self.linenum > 1 and line: |
| 516 | if line.startswith('>'): |
| 517 | if not self.was_quoted: |
| 518 | self._finalise_snippet() |
| 519 | self.recent_line = None |
| 520 | if not line_match: |
| 521 | self.recent_quoted.append(line) |
| 522 | self.was_quoted = True |
| 523 | self.recent_diff = self.cur_diff |
| 524 | else: |
| 525 | self.recent_unquoted.put(line) |
| 526 | self.was_quoted = False |
| 527 | |
| 528 | if line_match: |
| 529 | self.recent_line = line_match.groups() |
| 530 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 531 | if self.state == STATE_DIFFS: |
| 532 | pass |
| 533 | |
| 534 | # If this is the start of the diffs section, emit our tags and |
| 535 | # change log |
| 536 | elif line == '---': |
| 537 | self.state = STATE_DIFFS |
| 538 | |
Sean Anderson | 6949f70 | 2020-05-04 16:28:34 -0400 | [diff] [blame] | 539 | # Output the tags (signoff first), then change list |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 540 | out = [] |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 541 | log = self.series.MakeChangeLog(self.commit) |
Simon Glass | e752edc | 2014-08-28 09:43:35 -0600 | [diff] [blame] | 542 | out += [line] |
| 543 | if self.commit: |
| 544 | out += self.commit.notes |
| 545 | out += [''] + log |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 546 | elif self.found_test: |
Simon Glass | 5769904 | 2020-10-29 21:46:18 -0600 | [diff] [blame] | 547 | if not RE_ALLOWED_AFTER_TEST.match(line): |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 548 | self.lines_after_test += 1 |
| 549 | |
| 550 | return out |
| 551 | |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 552 | def finalise(self): |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 553 | """Close out processing of this patch stream""" |
Simon Glass | 6b3252e | 2020-10-29 21:46:37 -0600 | [diff] [blame] | 554 | self._finalise_snippet() |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 555 | self._finalise_change() |
| 556 | self._close_commit() |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 557 | if self.lines_after_test: |
Simon Glass | b5cc399 | 2020-10-29 21:46:23 -0600 | [diff] [blame] | 558 | self._add_warn('Found %d lines after TEST=' % self.lines_after_test) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 559 | |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 560 | def _write_message_id(self, outfd): |
Douglas Anderson | 833e419 | 2019-09-27 09:23:56 -0700 | [diff] [blame] | 561 | """Write the Message-Id into the output. |
| 562 | |
| 563 | This is based on the Change-Id in the original patch, the version, |
| 564 | and the prefix. |
| 565 | |
| 566 | Args: |
Simon Glass | 1cb1c0f | 2020-10-29 21:46:22 -0600 | [diff] [blame] | 567 | outfd (io.IOBase): Output stream file object |
Douglas Anderson | 833e419 | 2019-09-27 09:23:56 -0700 | [diff] [blame] | 568 | """ |
| 569 | if not self.commit.change_id: |
| 570 | return |
| 571 | |
| 572 | # If the count is -1 we're testing, so use a fixed time |
| 573 | if self.commit.count == -1: |
| 574 | time_now = datetime.datetime(1999, 12, 31, 23, 59, 59) |
| 575 | else: |
| 576 | time_now = datetime.datetime.now() |
| 577 | |
| 578 | # In theory there is email.utils.make_msgid() which would be nice |
| 579 | # to use, but it already produces something way too long and thus |
| 580 | # will produce ugly commit lines if someone throws this into |
| 581 | # a "Link:" tag in the final commit. So (sigh) roll our own. |
| 582 | |
| 583 | # Start with the time; presumably we wouldn't send the same series |
| 584 | # with the same Change-Id at the exact same second. |
| 585 | parts = [time_now.strftime("%Y%m%d%H%M%S")] |
| 586 | |
| 587 | # These seem like they would be nice to include. |
| 588 | if 'prefix' in self.series: |
| 589 | parts.append(self.series['prefix']) |
| 590 | if 'version' in self.series: |
| 591 | parts.append("v%s" % self.series['version']) |
| 592 | |
| 593 | parts.append(str(self.commit.count + 1)) |
| 594 | |
| 595 | # The Change-Id must be last, right before the @ |
| 596 | parts.append(self.commit.change_id) |
| 597 | |
| 598 | # Join parts together with "." and write it out. |
| 599 | outfd.write('Message-Id: <%s@changeid>\n' % '.'.join(parts)) |
| 600 | |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 601 | def process_stream(self, infd, outfd): |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 602 | """Copy a stream from infd to outfd, filtering out unwanting things. |
| 603 | |
| 604 | This is used to process patch files one at a time. |
| 605 | |
| 606 | Args: |
Simon Glass | 1cb1c0f | 2020-10-29 21:46:22 -0600 | [diff] [blame] | 607 | infd (io.IOBase): Input stream file object |
| 608 | outfd (io.IOBase): Output stream file object |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 609 | """ |
| 610 | # Extract the filename from each diff, for nice warnings |
| 611 | fname = None |
| 612 | last_fname = None |
| 613 | re_fname = re.compile('diff --git a/(.*) b/.*') |
Douglas Anderson | 833e419 | 2019-09-27 09:23:56 -0700 | [diff] [blame] | 614 | |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 615 | self._write_message_id(outfd) |
Douglas Anderson | 833e419 | 2019-09-27 09:23:56 -0700 | [diff] [blame] | 616 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 617 | while True: |
| 618 | line = infd.readline() |
| 619 | if not line: |
| 620 | break |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 621 | out = self.process_line(line) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 622 | |
| 623 | # Try to detect blank lines at EOF |
| 624 | for line in out: |
| 625 | match = re_fname.match(line) |
| 626 | if match: |
| 627 | last_fname = fname |
| 628 | fname = match.group(1) |
| 629 | if line == '+': |
| 630 | self.blank_count += 1 |
| 631 | else: |
| 632 | if self.blank_count and (line == '-- ' or match): |
Simon Glass | b5cc399 | 2020-10-29 21:46:23 -0600 | [diff] [blame] | 633 | self._add_warn("Found possible blank line(s) at end of file '%s'" % |
| 634 | last_fname) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 635 | outfd.write('+\n' * self.blank_count) |
| 636 | outfd.write(line + '\n') |
| 637 | self.blank_count = 0 |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 638 | self.finalise() |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 639 | |
Simon Glass | 8f9ba3a | 2020-10-29 21:46:36 -0600 | [diff] [blame] | 640 | def insert_tags(msg, tags_to_emit): |
| 641 | """Add extra tags to a commit message |
| 642 | |
| 643 | The tags are added after an existing block of tags if found, otherwise at |
| 644 | the end. |
| 645 | |
| 646 | Args: |
| 647 | msg (str): Commit message |
| 648 | tags_to_emit (list): List of tags to emit, each a str |
| 649 | |
| 650 | Returns: |
| 651 | (str) new message |
| 652 | """ |
| 653 | out = [] |
| 654 | done = False |
| 655 | emit_tags = False |
| 656 | for line in msg.splitlines(): |
| 657 | if not done: |
| 658 | signoff_match = RE_SIGNOFF.match(line) |
| 659 | tag_match = RE_TAG.match(line) |
| 660 | if tag_match or signoff_match: |
| 661 | emit_tags = True |
| 662 | if emit_tags and not tag_match and not signoff_match: |
| 663 | out += tags_to_emit |
| 664 | emit_tags = False |
| 665 | done = True |
| 666 | out.append(line) |
| 667 | if not done: |
| 668 | out.append('') |
| 669 | out += tags_to_emit |
| 670 | return '\n'.join(out) |
| 671 | |
| 672 | def get_list(commit_range, git_dir=None, count=None): |
| 673 | """Get a log of a list of comments |
| 674 | |
| 675 | This returns the output of 'git log' for the selected commits |
| 676 | |
| 677 | Args: |
| 678 | commit_range (str): Range of commits to count (e.g. 'HEAD..base') |
| 679 | git_dir (str): Path to git repositiory (None to use default) |
| 680 | count (int): Number of commits to list, or None for no limit |
| 681 | |
| 682 | Returns |
| 683 | str: String containing the contents of the git log |
| 684 | """ |
| 685 | params = gitutil.LogCmd(commit_range, reverse=True, count=count, |
| 686 | git_dir=git_dir) |
| 687 | return command.RunPipe([params], capture=True).stdout |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 688 | |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 689 | def get_metadata_for_list(commit_range, git_dir=None, count=None, |
| 690 | series=None, allow_overwrite=False): |
Simon Glass | e62f905 | 2012-12-15 10:42:06 +0000 | [diff] [blame] | 691 | """Reads out patch series metadata from the commits |
| 692 | |
| 693 | This does a 'git log' on the relevant commits and pulls out the tags we |
| 694 | are interested in. |
| 695 | |
| 696 | Args: |
Simon Glass | 1cb1c0f | 2020-10-29 21:46:22 -0600 | [diff] [blame] | 697 | commit_range (str): Range of commits to count (e.g. 'HEAD..base') |
| 698 | git_dir (str): Path to git repositiory (None to use default) |
| 699 | count (int): Number of commits to list, or None for no limit |
| 700 | series (Series): Object to add information into. By default a new series |
Simon Glass | e62f905 | 2012-12-15 10:42:06 +0000 | [diff] [blame] | 701 | is started. |
Simon Glass | 1cb1c0f | 2020-10-29 21:46:22 -0600 | [diff] [blame] | 702 | allow_overwrite (bool): Allow tags to overwrite an existing tag |
| 703 | |
Simon Glass | e62f905 | 2012-12-15 10:42:06 +0000 | [diff] [blame] | 704 | Returns: |
Simon Glass | 1cb1c0f | 2020-10-29 21:46:22 -0600 | [diff] [blame] | 705 | Series: Object containing information about the commits. |
Simon Glass | e62f905 | 2012-12-15 10:42:06 +0000 | [diff] [blame] | 706 | """ |
Simon Glass | 891b7a0 | 2014-09-05 19:00:19 -0600 | [diff] [blame] | 707 | if not series: |
| 708 | series = Series() |
Simon Glass | 950a231 | 2014-09-05 19:00:23 -0600 | [diff] [blame] | 709 | series.allow_overwrite = allow_overwrite |
Simon Glass | 8f9ba3a | 2020-10-29 21:46:36 -0600 | [diff] [blame] | 710 | stdout = get_list(commit_range, git_dir, count) |
Simon Glass | dd147ed | 2020-10-29 21:46:20 -0600 | [diff] [blame] | 711 | pst = PatchStream(series, is_log=True) |
Simon Glass | e62f905 | 2012-12-15 10:42:06 +0000 | [diff] [blame] | 712 | for line in stdout.splitlines(): |
Simon Glass | dd147ed | 2020-10-29 21:46:20 -0600 | [diff] [blame] | 713 | pst.process_line(line) |
| 714 | pst.finalise() |
Simon Glass | e62f905 | 2012-12-15 10:42:06 +0000 | [diff] [blame] | 715 | return series |
| 716 | |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 717 | def get_metadata(branch, start, count): |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 718 | """Reads out patch series metadata from the commits |
| 719 | |
| 720 | This does a 'git log' on the relevant commits and pulls out the tags we |
| 721 | are interested in. |
| 722 | |
| 723 | Args: |
Simon Glass | 1cb1c0f | 2020-10-29 21:46:22 -0600 | [diff] [blame] | 724 | branch (str): Branch to use (None for current branch) |
| 725 | start (int): Commit to start from: 0=branch HEAD, 1=next one, etc. |
| 726 | count (int): Number of commits to list |
| 727 | |
| 728 | Returns: |
| 729 | Series: Object containing information about the commits. |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 730 | """ |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 731 | return get_metadata_for_list( |
| 732 | '%s~%d' % (branch if branch else 'HEAD', start), None, count) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 733 | |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 734 | def get_metadata_for_test(text): |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 735 | """Process metadata from a file containing a git log. Used for tests |
| 736 | |
| 737 | Args: |
| 738 | text: |
Simon Glass | 1cb1c0f | 2020-10-29 21:46:22 -0600 | [diff] [blame] | 739 | |
| 740 | Returns: |
| 741 | Series: Object containing information about the commits. |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 742 | """ |
| 743 | series = Series() |
Simon Glass | dd147ed | 2020-10-29 21:46:20 -0600 | [diff] [blame] | 744 | pst = PatchStream(series, is_log=True) |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 745 | for line in text.splitlines(): |
Simon Glass | dd147ed | 2020-10-29 21:46:20 -0600 | [diff] [blame] | 746 | pst.process_line(line) |
| 747 | pst.finalise() |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 748 | return series |
| 749 | |
Simon Glass | dd147ed | 2020-10-29 21:46:20 -0600 | [diff] [blame] | 750 | def fix_patch(backup_dir, fname, series, cmt): |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 751 | """Fix up a patch file, by adding/removing as required. |
| 752 | |
| 753 | We remove our tags from the patch file, insert changes lists, etc. |
| 754 | The patch file is processed in place, and overwritten. |
| 755 | |
| 756 | A backup file is put into backup_dir (if not None). |
| 757 | |
| 758 | Args: |
Simon Glass | 1cb1c0f | 2020-10-29 21:46:22 -0600 | [diff] [blame] | 759 | backup_dir (str): Path to directory to use to backup the file |
| 760 | fname (str): Filename to patch file to process |
| 761 | series (Series): Series information about this patch set |
| 762 | cmt (Commit): Commit object for this patch file |
| 763 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 764 | Return: |
Simon Glass | 1cb1c0f | 2020-10-29 21:46:22 -0600 | [diff] [blame] | 765 | list: A list of errors, each str, or [] if all ok. |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 766 | """ |
| 767 | handle, tmpname = tempfile.mkstemp() |
Simon Glass | 272cd85 | 2019-10-31 07:42:51 -0600 | [diff] [blame] | 768 | outfd = os.fdopen(handle, 'w', encoding='utf-8') |
| 769 | infd = open(fname, 'r', encoding='utf-8') |
Simon Glass | dd147ed | 2020-10-29 21:46:20 -0600 | [diff] [blame] | 770 | pst = PatchStream(series) |
| 771 | pst.commit = cmt |
| 772 | pst.process_stream(infd, outfd) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 773 | infd.close() |
| 774 | outfd.close() |
| 775 | |
| 776 | # Create a backup file if required |
| 777 | if backup_dir: |
| 778 | shutil.copy(fname, os.path.join(backup_dir, os.path.basename(fname))) |
| 779 | shutil.move(tmpname, fname) |
Simon Glass | 313ef5f | 2020-10-29 21:46:24 -0600 | [diff] [blame] | 780 | return cmt.warn |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 781 | |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 782 | def fix_patches(series, fnames): |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 783 | """Fix up a list of patches identified by filenames |
| 784 | |
| 785 | The patch files are processed in place, and overwritten. |
| 786 | |
| 787 | Args: |
Simon Glass | 1cb1c0f | 2020-10-29 21:46:22 -0600 | [diff] [blame] | 788 | series (Series): The Series object |
| 789 | fnames (:type: list of str): List of patch files to process |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 790 | """ |
| 791 | # Current workflow creates patches, so we shouldn't need a backup |
| 792 | backup_dir = None #tempfile.mkdtemp('clean-patch') |
| 793 | count = 0 |
| 794 | for fname in fnames: |
Simon Glass | dd147ed | 2020-10-29 21:46:20 -0600 | [diff] [blame] | 795 | cmt = series.commits[count] |
| 796 | cmt.patch = fname |
| 797 | cmt.count = count |
| 798 | result = fix_patch(backup_dir, fname, series, cmt) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 799 | if result: |
Simon Glass | 9994baa | 2020-10-29 21:46:30 -0600 | [diff] [blame] | 800 | print('%d warning%s for %s:' % |
| 801 | (len(result), 's' if len(result) > 1 else '', fname)) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 802 | for warn in result: |
Simon Glass | 9994baa | 2020-10-29 21:46:30 -0600 | [diff] [blame] | 803 | print('\t%s' % warn) |
| 804 | print() |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 805 | count += 1 |
Simon Glass | 9994baa | 2020-10-29 21:46:30 -0600 | [diff] [blame] | 806 | print('Cleaned %d patch%s' % (count, 'es' if count > 1 else '')) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 807 | |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 808 | def insert_cover_letter(fname, series, count): |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 809 | """Inserts a cover letter with the required info into patch 0 |
| 810 | |
| 811 | Args: |
Simon Glass | 1cb1c0f | 2020-10-29 21:46:22 -0600 | [diff] [blame] | 812 | fname (str): Input / output filename of the cover letter file |
| 813 | series (Series): Series object |
| 814 | count (int): Number of patches in the series |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 815 | """ |
Simon Glass | dd147ed | 2020-10-29 21:46:20 -0600 | [diff] [blame] | 816 | fil = open(fname, 'r') |
| 817 | lines = fil.readlines() |
| 818 | fil.close() |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 819 | |
Simon Glass | dd147ed | 2020-10-29 21:46:20 -0600 | [diff] [blame] | 820 | fil = open(fname, 'w') |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 821 | text = series.cover |
| 822 | prefix = series.GetPatchPrefix() |
| 823 | for line in lines: |
| 824 | if line.startswith('Subject:'): |
Wu, Josh | 35ce2dc | 2015-04-03 10:51:17 +0800 | [diff] [blame] | 825 | # if more than 10 or 100 patches, it should say 00/xx, 000/xxx, etc |
| 826 | zero_repeat = int(math.log10(count)) + 1 |
| 827 | zero = '0' * zero_repeat |
| 828 | line = 'Subject: [%s %s/%d] %s\n' % (prefix, zero, count, text[0]) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 829 | |
| 830 | # Insert our cover letter |
| 831 | elif line.startswith('*** BLURB HERE ***'): |
| 832 | # First the blurb test |
| 833 | line = '\n'.join(text[1:]) + '\n' |
| 834 | if series.get('notes'): |
| 835 | line += '\n'.join(series.notes) + '\n' |
| 836 | |
| 837 | # Now the change list |
| 838 | out = series.MakeChangeLog(None) |
| 839 | line += '\n' + '\n'.join(out) |
Simon Glass | dd147ed | 2020-10-29 21:46:20 -0600 | [diff] [blame] | 840 | fil.write(line) |
| 841 | fil.close() |