blob: 3869696abc13dd4b50f0c3ed9c9732fbdf97dfc3 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Simon Glass0d24de92012-01-14 15:12:45 +00002# Copyright (c) 2011 The Chromium OS Authors.
3#
Simon Glass0d24de92012-01-14 15:12:45 +00004
Doug Anderson31187252012-12-03 14:40:43 +00005import itertools
Simon Glass0d24de92012-01-14 15:12:45 +00006import os
7
Doug Anderson21a19d72012-12-03 14:43:16 +00008import get_maintainer
Simon Glass0d24de92012-01-14 15:12:45 +00009import gitutil
Chris Packhame11aa602017-09-01 20:57:53 +120010import settings
Simon Glass0d24de92012-01-14 15:12:45 +000011import terminal
Simon Glass513eace2019-05-14 15:53:50 -060012import tools
Simon Glass0d24de92012-01-14 15:12:45 +000013
14# Series-xxx tags that we understand
Simon Glassfe2f8d92013-03-20 16:43:00 +000015valid_series = ['to', 'cc', 'version', 'changes', 'prefix', 'notes', 'name',
Simon Glassd9917b02015-08-22 18:28:01 -060016 'cover_cc', 'process_log']
Simon Glass0d24de92012-01-14 15:12:45 +000017
18class Series(dict):
19 """Holds information about a patch series, including all tags.
20
21 Vars:
22 cc: List of aliases/emails to Cc all patches to
23 commits: List of Commit objects, one for each patch
24 cover: List of lines in the cover letter
25 notes: List of lines in the notes
26 changes: (dict) List of changes for each version, The key is
27 the integer version number
Simon Glassf0b739f2013-05-02 14:46:02 +000028 allow_overwrite: Allow tags to overwrite an existing tag
Simon Glass0d24de92012-01-14 15:12:45 +000029 """
30 def __init__(self):
31 self.cc = []
32 self.to = []
Simon Glassfe2f8d92013-03-20 16:43:00 +000033 self.cover_cc = []
Simon Glass0d24de92012-01-14 15:12:45 +000034 self.commits = []
35 self.cover = None
36 self.notes = []
37 self.changes = {}
Simon Glassf0b739f2013-05-02 14:46:02 +000038 self.allow_overwrite = False
Simon Glass0d24de92012-01-14 15:12:45 +000039
Doug Andersond94566a2012-12-03 14:40:42 +000040 # Written in MakeCcFile()
41 # key: name of patch file
42 # value: list of email addresses
43 self._generated_cc = {}
44
Simon Glass0d24de92012-01-14 15:12:45 +000045 # These make us more like a dictionary
46 def __setattr__(self, name, value):
47 self[name] = value
48
49 def __getattr__(self, name):
50 return self[name]
51
52 def AddTag(self, commit, line, name, value):
53 """Add a new Series-xxx tag along with its value.
54
55 Args:
56 line: Source line containing tag (useful for debug/error messages)
57 name: Tag name (part after 'Series-')
58 value: Tag value (part after 'Series-xxx: ')
59 """
60 # If we already have it, then add to our list
Simon Glassfe2f8d92013-03-20 16:43:00 +000061 name = name.replace('-', '_')
Simon Glassf0b739f2013-05-02 14:46:02 +000062 if name in self and not self.allow_overwrite:
Simon Glass0d24de92012-01-14 15:12:45 +000063 values = value.split(',')
64 values = [str.strip() for str in values]
65 if type(self[name]) != type([]):
66 raise ValueError("In %s: line '%s': Cannot add another value "
67 "'%s' to series '%s'" %
68 (commit.hash, line, values, self[name]))
69 self[name] += values
70
71 # Otherwise just set the value
72 elif name in valid_series:
Albert ARIBAUD070b7812016-02-02 10:24:53 +010073 if name=="notes":
74 self[name] = [value]
75 else:
76 self[name] = value
Simon Glass0d24de92012-01-14 15:12:45 +000077 else:
78 raise ValueError("In %s: line '%s': Unknown 'Series-%s': valid "
Simon Glassef0e9de2012-09-27 15:06:02 +000079 "options are %s" % (commit.hash, line, name,
Simon Glass0d24de92012-01-14 15:12:45 +000080 ', '.join(valid_series)))
81
82 def AddCommit(self, commit):
83 """Add a commit into our list of commits
84
85 We create a list of tags in the commit subject also.
86
87 Args:
88 commit: Commit object to add
89 """
90 commit.CheckTags()
91 self.commits.append(commit)
92
93 def ShowActions(self, args, cmd, process_tags):
94 """Show what actions we will/would perform
95
96 Args:
97 args: List of patch files we created
98 cmd: The git command we would have run
99 process_tags: Process tags as if they were aliases
100 """
Peter Tyser21818302015-01-26 11:42:21 -0600101 to_set = set(gitutil.BuildEmailList(self.to));
102 cc_set = set(gitutil.BuildEmailList(self.cc));
103
Simon Glass0d24de92012-01-14 15:12:45 +0000104 col = terminal.Color()
Paul Burtona920a172016-09-27 16:03:50 +0100105 print('Dry run, so not doing much. But I would do this:')
106 print()
107 print('Send a total of %d patch%s with %scover letter.' % (
Simon Glass0d24de92012-01-14 15:12:45 +0000108 len(args), '' if len(args) == 1 else 'es',
Paul Burtona920a172016-09-27 16:03:50 +0100109 self.get('cover') and 'a ' or 'no '))
Simon Glass0d24de92012-01-14 15:12:45 +0000110
111 # TODO: Colour the patches according to whether they passed checks
112 for upto in range(len(args)):
113 commit = self.commits[upto]
Paul Burtona920a172016-09-27 16:03:50 +0100114 print(col.Color(col.GREEN, ' %s' % args[upto]))
Doug Andersond94566a2012-12-03 14:40:42 +0000115 cc_list = list(self._generated_cc[commit.patch])
Simon Glassb644c662019-05-14 15:53:51 -0600116 for email in sorted(set(cc_list) - to_set - cc_set):
Simon Glass0d24de92012-01-14 15:12:45 +0000117 if email == None:
118 email = col.Color(col.YELLOW, "<alias '%s' not found>"
119 % tag)
120 if email:
Simon Glass6f8abf72017-05-29 15:31:23 -0600121 print(' Cc: ', email)
Simon Glass0d24de92012-01-14 15:12:45 +0000122 print
Simon Glassb644c662019-05-14 15:53:51 -0600123 for item in sorted(to_set):
Paul Burtona920a172016-09-27 16:03:50 +0100124 print('To:\t ', item)
Simon Glassb644c662019-05-14 15:53:51 -0600125 for item in sorted(cc_set - to_set):
Paul Burtona920a172016-09-27 16:03:50 +0100126 print('Cc:\t ', item)
127 print('Version: ', self.get('version'))
128 print('Prefix:\t ', self.get('prefix'))
Simon Glass0d24de92012-01-14 15:12:45 +0000129 if self.cover:
Paul Burtona920a172016-09-27 16:03:50 +0100130 print('Cover: %d lines' % len(self.cover))
Simon Glassfe2f8d92013-03-20 16:43:00 +0000131 cover_cc = gitutil.BuildEmailList(self.get('cover_cc', ''))
132 all_ccs = itertools.chain(cover_cc, *self._generated_cc.values())
Simon Glassb644c662019-05-14 15:53:51 -0600133 for email in sorted(set(all_ccs) - to_set - cc_set):
Paul Burtona920a172016-09-27 16:03:50 +0100134 print(' Cc: ', email)
Simon Glass0d24de92012-01-14 15:12:45 +0000135 if cmd:
Paul Burtona920a172016-09-27 16:03:50 +0100136 print('Git command: %s' % cmd)
Simon Glass0d24de92012-01-14 15:12:45 +0000137
138 def MakeChangeLog(self, commit):
139 """Create a list of changes for each version.
140
141 Return:
142 The change log as a list of strings, one per line
143
Simon Glass27e97602012-10-30 06:15:16 +0000144 Changes in v4:
Otavio Salvador244e6f92012-08-18 07:46:04 +0000145 - Jog the dial back closer to the widget
146
Simon Glass27e97602012-10-30 06:15:16 +0000147 Changes in v3: None
148 Changes in v2:
Simon Glass0d24de92012-01-14 15:12:45 +0000149 - Fix the widget
150 - Jog the dial
151
Simon Glass0d24de92012-01-14 15:12:45 +0000152 etc.
153 """
154 final = []
Simon Glass645b2712013-03-26 13:09:44 +0000155 process_it = self.get('process_log', '').split(',')
156 process_it = [item.strip() for item in process_it]
Simon Glass0d24de92012-01-14 15:12:45 +0000157 need_blank = False
Otavio Salvador244e6f92012-08-18 07:46:04 +0000158 for change in sorted(self.changes, reverse=True):
Simon Glass0d24de92012-01-14 15:12:45 +0000159 out = []
160 for this_commit, text in self.changes[change]:
161 if commit and this_commit != commit:
162 continue
Simon Glass645b2712013-03-26 13:09:44 +0000163 if 'uniq' not in process_it or text not in out:
164 out.append(text)
Simon Glass27e97602012-10-30 06:15:16 +0000165 line = 'Changes in v%d:' % change
166 have_changes = len(out) > 0
Simon Glass645b2712013-03-26 13:09:44 +0000167 if 'sort' in process_it:
168 out = sorted(out)
Simon Glass27e97602012-10-30 06:15:16 +0000169 if have_changes:
170 out.insert(0, line)
171 else:
172 out = [line + ' None']
173 if need_blank:
174 out.insert(0, '')
175 final += out
176 need_blank = have_changes
Simon Glass0d24de92012-01-14 15:12:45 +0000177 if self.changes:
178 final.append('')
179 return final
180
181 def DoChecks(self):
182 """Check that each version has a change log
183
184 Print an error if something is wrong.
185 """
186 col = terminal.Color()
187 if self.get('version'):
188 changes_copy = dict(self.changes)
Otavio Salvadord5f81d82012-08-13 10:08:22 +0000189 for version in range(1, int(self.version) + 1):
Simon Glass0d24de92012-01-14 15:12:45 +0000190 if self.changes.get(version):
191 del changes_copy[version]
192 else:
Otavio Salvadord5f81d82012-08-13 10:08:22 +0000193 if version > 1:
194 str = 'Change log missing for v%d' % version
Paul Burtona920a172016-09-27 16:03:50 +0100195 print(col.Color(col.RED, str))
Simon Glass0d24de92012-01-14 15:12:45 +0000196 for version in changes_copy:
197 str = 'Change log for unknown version v%d' % version
Paul Burtona920a172016-09-27 16:03:50 +0100198 print(col.Color(col.RED, str))
Simon Glass0d24de92012-01-14 15:12:45 +0000199 elif self.changes:
200 str = 'Change log exists, but no version is set'
Paul Burtona920a172016-09-27 16:03:50 +0100201 print(col.Color(col.RED, str))
Simon Glass0d24de92012-01-14 15:12:45 +0000202
Simon Glass983a2742014-09-14 20:23:17 -0600203 def MakeCcFile(self, process_tags, cover_fname, raise_on_error,
Chris Packham4fb35022018-06-07 20:45:06 +1200204 add_maintainers, limit):
Simon Glass0d24de92012-01-14 15:12:45 +0000205 """Make a cc file for us to use for per-commit Cc automation
206
Doug Andersond94566a2012-12-03 14:40:42 +0000207 Also stores in self._generated_cc to make ShowActions() faster.
208
Simon Glass0d24de92012-01-14 15:12:45 +0000209 Args:
210 process_tags: Process tags as if they were aliases
Doug Anderson31187252012-12-03 14:40:43 +0000211 cover_fname: If non-None the name of the cover letter.
Simon Glassa1318f72013-03-26 13:09:42 +0000212 raise_on_error: True to raise an error when an alias fails to match,
213 False to just print a message.
Simon Glass1f487f82017-05-29 15:31:29 -0600214 add_maintainers: Either:
215 True/False to call the get_maintainers to CC maintainers
216 List of maintainers to include (for testing)
Chris Packham4fb35022018-06-07 20:45:06 +1200217 limit: Limit the length of the Cc list
Simon Glass0d24de92012-01-14 15:12:45 +0000218 Return:
219 Filename of temp file created
220 """
Chris Packhame11aa602017-09-01 20:57:53 +1200221 col = terminal.Color()
Simon Glass0d24de92012-01-14 15:12:45 +0000222 # Look for commit tags (of the form 'xxx:' at the start of the subject)
223 fname = '/tmp/patman.%d' % os.getpid()
Simon Glass272cd852019-10-31 07:42:51 -0600224 fd = open(fname, 'w', encoding='utf-8')
Doug Anderson31187252012-12-03 14:40:43 +0000225 all_ccs = []
Simon Glass0d24de92012-01-14 15:12:45 +0000226 for commit in self.commits:
Simon Glassa44f4fb2017-05-29 15:31:30 -0600227 cc = []
Simon Glass0d24de92012-01-14 15:12:45 +0000228 if process_tags:
Simon Glassa44f4fb2017-05-29 15:31:30 -0600229 cc += gitutil.BuildEmailList(commit.tags,
Simon Glassa1318f72013-03-26 13:09:42 +0000230 raise_on_error=raise_on_error)
Simon Glassa44f4fb2017-05-29 15:31:30 -0600231 cc += gitutil.BuildEmailList(commit.cc_list,
Simon Glassa1318f72013-03-26 13:09:42 +0000232 raise_on_error=raise_on_error)
Simon Glassa44f4fb2017-05-29 15:31:30 -0600233 if type(add_maintainers) == type(cc):
234 cc += add_maintainers
Simon Glass1f487f82017-05-29 15:31:29 -0600235 elif add_maintainers:
Simon Glassa44f4fb2017-05-29 15:31:30 -0600236 cc += get_maintainer.GetMaintainer(commit.patch)
Chris Packhame11aa602017-09-01 20:57:53 +1200237 for x in set(cc) & set(settings.bounces):
238 print(col.Color(col.YELLOW, 'Skipping "%s"' % x))
239 cc = set(cc) - set(settings.bounces)
Simon Glassf6a6aaf2019-05-14 15:53:54 -0600240 cc = [tools.FromUnicode(m) for m in cc]
Chris Packham4fb35022018-06-07 20:45:06 +1200241 if limit is not None:
242 cc = cc[:limit]
Simon Glassa44f4fb2017-05-29 15:31:30 -0600243 all_ccs += cc
Dmitry Torokhov8ab452d2019-10-21 20:09:56 -0700244 print(commit.patch, '\0'.join(sorted(set(cc))), file=fd)
Simon Glassa44f4fb2017-05-29 15:31:30 -0600245 self._generated_cc[commit.patch] = cc
Simon Glass0d24de92012-01-14 15:12:45 +0000246
Doug Anderson31187252012-12-03 14:40:43 +0000247 if cover_fname:
Simon Glassfe2f8d92013-03-20 16:43:00 +0000248 cover_cc = gitutil.BuildEmailList(self.get('cover_cc', ''))
Simon Glassf6a6aaf2019-05-14 15:53:54 -0600249 cover_cc = [tools.FromUnicode(m) for m in cover_cc]
Simon Glasscf0ef932020-02-27 18:49:23 -0700250 cover_cc = list(set(cover_cc + all_ccs))
251 if limit is not None:
252 cover_cc = cover_cc[:limit]
253 cc_list = '\0'.join([tools.ToUnicode(x) for x in sorted(cover_cc)])
Robert Beckett677dac22019-11-13 18:39:45 +0000254 print(cover_fname, cc_list, file=fd)
Doug Anderson31187252012-12-03 14:40:43 +0000255
Simon Glass0d24de92012-01-14 15:12:45 +0000256 fd.close()
257 return fname
258
259 def AddChange(self, version, commit, info):
260 """Add a new change line to a version.
261
262 This will later appear in the change log.
263
264 Args:
265 version: version number to add change list to
266 info: change line for this version
267 """
268 if not self.changes.get(version):
269 self.changes[version] = []
270 self.changes[version].append([commit, info])
271
272 def GetPatchPrefix(self):
273 """Get the patch version string
274
275 Return:
276 Patch string, like 'RFC PATCH v5' or just 'PATCH'
277 """
Wu, Josh3871cd82015-04-15 10:25:18 +0800278 git_prefix = gitutil.GetDefaultSubjectPrefix()
279 if git_prefix:
Paul Burton12e54762016-09-27 16:03:49 +0100280 git_prefix = '%s][' % git_prefix
Wu, Josh3871cd82015-04-15 10:25:18 +0800281 else:
282 git_prefix = ''
283
Simon Glass0d24de92012-01-14 15:12:45 +0000284 version = ''
285 if self.get('version'):
286 version = ' v%s' % self['version']
287
288 # Get patch name prefix
289 prefix = ''
290 if self.get('prefix'):
291 prefix = '%s ' % self['prefix']
Wu, Josh3871cd82015-04-15 10:25:18 +0800292 return '%s%sPATCH%s' % (git_prefix, prefix, version)