blob: e49bf87dfc80a92ec336e2678f004be5ac19cfaf [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Simon Glass26132882012-01-14 15:12:45 +00002# Copyright (c) 2011 The Chromium OS Authors.
3#
Simon Glass26132882012-01-14 15:12:45 +00004
Simon Glass08e91be2020-07-05 21:41:57 -06005import collections
Simon Glass26132882012-01-14 15:12:45 +00006import re
7
8# Separates a tag: at the beginning of the subject from the rest of it
Simon Glass4e774682013-03-26 13:09:40 +00009re_subject_tag = re.compile('([^:\s]*):\s*(.*)')
Simon Glass26132882012-01-14 15:12:45 +000010
11class 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 ARIBAUDd880efd2013-11-12 11:14:41 +010024 notes: List of lines in the commit (not series) notes
Douglas Anderson52b5ee82019-09-27 09:23:56 -070025 change_id: the Change-Id: tag that was stripped from this commit
26 and can be used to generate the Message-Id.
Simon Glass08e91be2020-07-05 21:41:57 -060027 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 Glass6d00f6c2020-10-29 21:46:24 -060030 warn: List of warnings for this commit, each a str
Simon Glass26132882012-01-14 15:12:45 +000031 """
32 def __init__(self, hash):
33 self.hash = hash
34 self.subject = None
35 self.tags = []
36 self.changes = {}
37 self.cc_list = []
Simon Glass46b34212014-04-20 10:50:14 -060038 self.signoff_set = set()
Albert ARIBAUDd880efd2013-11-12 11:14:41 +010039 self.notes = []
Douglas Anderson52b5ee82019-09-27 09:23:56 -070040 self.change_id = None
Simon Glass08e91be2020-07-05 21:41:57 -060041 self.rtags = collections.defaultdict(set)
Simon Glass6d00f6c2020-10-29 21:46:24 -060042 self.warn = []
Simon Glass26132882012-01-14 15:12:45 +000043
44 def AddChange(self, version, info):
45 """Add a new change line to the change list for a version.
46
47 Args:
48 version: Patch set version (integer: 1, 2, 3)
49 info: Description of change in this version
50 """
51 if not self.changes.get(version):
52 self.changes[version] = []
53 self.changes[version].append(info)
54
55 def CheckTags(self):
56 """Create a list of subject tags in the commit
57
58 Subject tags look like this:
59
Simon Glass14ab6aa2013-03-26 13:09:41 +000060 propounder: fort: Change the widget to propound correctly
Simon Glass26132882012-01-14 15:12:45 +000061
Simon Glass14ab6aa2013-03-26 13:09:41 +000062 Here the tags are propounder and fort. Multiple tags are supported.
63 The list is updated in self.tag.
Simon Glass26132882012-01-14 15:12:45 +000064
65 Returns:
66 None if ok, else the name of a tag with no email alias
67 """
68 str = self.subject
69 m = True
70 while m:
71 m = re_subject_tag.match(str)
72 if m:
73 tag = m.group(1)
74 self.tags.append(tag)
75 str = m.group(2)
76 return None
77
78 def AddCc(self, cc_list):
79 """Add a list of people to Cc when we send this patch.
80
81 Args:
82 cc_list: List of aliases or email addresses
83 """
84 self.cc_list += cc_list
Simon Glass46b34212014-04-20 10:50:14 -060085
86 def CheckDuplicateSignoff(self, signoff):
87 """Check a list of signoffs we have send for this patch
88
89 Args:
90 signoff: Signoff line
91 Returns:
92 True if this signoff is new, False if we have already seen it.
93 """
94 if signoff in self.signoff_set:
95 return False
96 self.signoff_set.add(signoff)
97 return True
Simon Glass08e91be2020-07-05 21:41:57 -060098
99 def AddRtag(self, rtag_type, who):
100 """Add a response tag to a commit
101
102 Args:
103 key: rtag type (e.g. 'Reviewed-by')
104 who: Person who gave that rtag, e.g. 'Fred Bloggs <fred@bloggs.org>'
105 """
106 self.rtags[rtag_type].add(who)