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 | 7207e2b | 2020-07-05 21:41:57 -0600 | [diff] [blame] | 5 | import collections |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 6 | import re |
| 7 | |
| 8 | # Separates a tag: at the beginning of the subject from the rest of it |
Simon Glass | ed92227 | 2013-03-26 13:09:40 +0000 | [diff] [blame] | 9 | re_subject_tag = re.compile('([^:\s]*):\s*(.*)') |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 10 | |
| 11 | class Commit: |
| 12 | """Holds information about a single commit/patch in the series. |
| 13 | |
| 14 | Args: |
| 15 | hash: Commit hash (as a string) |
| 16 | |
| 17 | Variables: |
| 18 | hash: Commit hash |
| 19 | subject: Subject line |
| 20 | tags: List of maintainer tag strings |
| 21 | changes: Dict containing a list of changes (single line strings). |
| 22 | The dict is indexed by change version (an integer) |
| 23 | cc_list: List of people to aliases/emails to cc on this commit |
Albert ARIBAUD | 5c8fdd9 | 2013-11-12 11:14:41 +0100 | [diff] [blame] | 24 | notes: List of lines in the commit (not series) notes |
Douglas Anderson | 833e419 | 2019-09-27 09:23:56 -0700 | [diff] [blame] | 25 | change_id: the Change-Id: tag that was stripped from this commit |
| 26 | and can be used to generate the Message-Id. |
Simon Glass | 7207e2b | 2020-07-05 21:41:57 -0600 | [diff] [blame] | 27 | rtags: Response tags (e.g. Reviewed-by) collected by the commit, dict: |
| 28 | key: rtag type (e.g. 'Reviewed-by') |
| 29 | value: Set of people who gave that rtag, each a name/email string |
Simon Glass | 313ef5f | 2020-10-29 21:46:24 -0600 | [diff] [blame] | 30 | warn: List of warnings for this commit, each a str |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 31 | """ |
| 32 | def __init__(self, hash): |
| 33 | self.hash = hash |
| 34 | self.subject = None |
| 35 | self.tags = [] |
| 36 | self.changes = {} |
| 37 | self.cc_list = [] |
Simon Glass | 102061b | 2014-04-20 10:50:14 -0600 | [diff] [blame] | 38 | self.signoff_set = set() |
Albert ARIBAUD | 5c8fdd9 | 2013-11-12 11:14:41 +0100 | [diff] [blame] | 39 | self.notes = [] |
Douglas Anderson | 833e419 | 2019-09-27 09:23:56 -0700 | [diff] [blame] | 40 | self.change_id = None |
Simon Glass | 7207e2b | 2020-07-05 21:41:57 -0600 | [diff] [blame] | 41 | self.rtags = collections.defaultdict(set) |
Simon Glass | 313ef5f | 2020-10-29 21:46:24 -0600 | [diff] [blame] | 42 | self.warn = [] |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 43 | |
Simon Glass | a12ad7c | 2020-10-29 21:46:32 -0600 | [diff] [blame] | 44 | def __str__(self): |
| 45 | return self.subject |
| 46 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 47 | def AddChange(self, version, info): |
| 48 | """Add a new change line to the change list for a version. |
| 49 | |
| 50 | Args: |
| 51 | version: Patch set version (integer: 1, 2, 3) |
| 52 | info: Description of change in this version |
| 53 | """ |
| 54 | if not self.changes.get(version): |
| 55 | self.changes[version] = [] |
| 56 | self.changes[version].append(info) |
| 57 | |
| 58 | def CheckTags(self): |
| 59 | """Create a list of subject tags in the commit |
| 60 | |
| 61 | Subject tags look like this: |
| 62 | |
Simon Glass | 0d99fe0 | 2013-03-26 13:09:41 +0000 | [diff] [blame] | 63 | propounder: fort: Change the widget to propound correctly |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 64 | |
Simon Glass | 0d99fe0 | 2013-03-26 13:09:41 +0000 | [diff] [blame] | 65 | Here the tags are propounder and fort. Multiple tags are supported. |
| 66 | The list is updated in self.tag. |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 67 | |
| 68 | Returns: |
| 69 | None if ok, else the name of a tag with no email alias |
| 70 | """ |
| 71 | str = self.subject |
| 72 | m = True |
| 73 | while m: |
| 74 | m = re_subject_tag.match(str) |
| 75 | if m: |
| 76 | tag = m.group(1) |
| 77 | self.tags.append(tag) |
| 78 | str = m.group(2) |
| 79 | return None |
| 80 | |
| 81 | def AddCc(self, cc_list): |
| 82 | """Add a list of people to Cc when we send this patch. |
| 83 | |
| 84 | Args: |
| 85 | cc_list: List of aliases or email addresses |
| 86 | """ |
| 87 | self.cc_list += cc_list |
Simon Glass | 102061b | 2014-04-20 10:50:14 -0600 | [diff] [blame] | 88 | |
| 89 | def CheckDuplicateSignoff(self, signoff): |
| 90 | """Check a list of signoffs we have send for this patch |
| 91 | |
| 92 | Args: |
| 93 | signoff: Signoff line |
| 94 | Returns: |
| 95 | True if this signoff is new, False if we have already seen it. |
| 96 | """ |
| 97 | if signoff in self.signoff_set: |
| 98 | return False |
| 99 | self.signoff_set.add(signoff) |
| 100 | return True |
Simon Glass | 7207e2b | 2020-07-05 21:41:57 -0600 | [diff] [blame] | 101 | |
| 102 | def AddRtag(self, rtag_type, who): |
| 103 | """Add a response tag to a commit |
| 104 | |
| 105 | Args: |
| 106 | key: rtag type (e.g. 'Reviewed-by') |
| 107 | who: Person who gave that rtag, e.g. 'Fred Bloggs <fred@bloggs.org>' |
| 108 | """ |
| 109 | self.rtags[rtag_type].add(who) |