blob: c1b86521aa4561f7325fb4ce6724dcd0cb67c9dc [file] [log] [blame]
Simon Glass0d24de92012-01-14 15:12:45 +00001# Copyright (c) 2011 The Chromium OS Authors.
2#
Wolfgang Denk1a459662013-07-08 09:37:19 +02003# SPDX-License-Identifier: GPL-2.0+
Simon Glass0d24de92012-01-14 15:12:45 +00004#
5
Paul Burtona920a172016-09-27 16:03:50 +01006from __future__ import print_function
7
Doug Anderson31187252012-12-03 14:40:43 +00008import itertools
Simon Glass0d24de92012-01-14 15:12:45 +00009import os
10
Doug Anderson21a19d72012-12-03 14:43:16 +000011import get_maintainer
Simon Glass0d24de92012-01-14 15:12:45 +000012import gitutil
13import terminal
14
15# Series-xxx tags that we understand
Simon Glassfe2f8d92013-03-20 16:43:00 +000016valid_series = ['to', 'cc', 'version', 'changes', 'prefix', 'notes', 'name',
Simon Glassd9917b02015-08-22 18:28:01 -060017 'cover_cc', 'process_log']
Simon Glass0d24de92012-01-14 15:12:45 +000018
19class Series(dict):
20 """Holds information about a patch series, including all tags.
21
22 Vars:
23 cc: List of aliases/emails to Cc all patches to
24 commits: List of Commit objects, one for each patch
25 cover: List of lines in the cover letter
26 notes: List of lines in the notes
27 changes: (dict) List of changes for each version, The key is
28 the integer version number
Simon Glassf0b739f2013-05-02 14:46:02 +000029 allow_overwrite: Allow tags to overwrite an existing tag
Simon Glass0d24de92012-01-14 15:12:45 +000030 """
31 def __init__(self):
32 self.cc = []
33 self.to = []
Simon Glassfe2f8d92013-03-20 16:43:00 +000034 self.cover_cc = []
Simon Glass0d24de92012-01-14 15:12:45 +000035 self.commits = []
36 self.cover = None
37 self.notes = []
38 self.changes = {}
Simon Glassf0b739f2013-05-02 14:46:02 +000039 self.allow_overwrite = False
Simon Glass0d24de92012-01-14 15:12:45 +000040
Doug Andersond94566a2012-12-03 14:40:42 +000041 # Written in MakeCcFile()
42 # key: name of patch file
43 # value: list of email addresses
44 self._generated_cc = {}
45
Simon Glass0d24de92012-01-14 15:12:45 +000046 # These make us more like a dictionary
47 def __setattr__(self, name, value):
48 self[name] = value
49
50 def __getattr__(self, name):
51 return self[name]
52
53 def AddTag(self, commit, line, name, value):
54 """Add a new Series-xxx tag along with its value.
55
56 Args:
57 line: Source line containing tag (useful for debug/error messages)
58 name: Tag name (part after 'Series-')
59 value: Tag value (part after 'Series-xxx: ')
60 """
61 # If we already have it, then add to our list
Simon Glassfe2f8d92013-03-20 16:43:00 +000062 name = name.replace('-', '_')
Simon Glassf0b739f2013-05-02 14:46:02 +000063 if name in self and not self.allow_overwrite:
Simon Glass0d24de92012-01-14 15:12:45 +000064 values = value.split(',')
65 values = [str.strip() for str in values]
66 if type(self[name]) != type([]):
67 raise ValueError("In %s: line '%s': Cannot add another value "
68 "'%s' to series '%s'" %
69 (commit.hash, line, values, self[name]))
70 self[name] += values
71
72 # Otherwise just set the value
73 elif name in valid_series:
Albert ARIBAUD070b7812016-02-02 10:24:53 +010074 if name=="notes":
75 self[name] = [value]
76 else:
77 self[name] = value
Simon Glass0d24de92012-01-14 15:12:45 +000078 else:
79 raise ValueError("In %s: line '%s': Unknown 'Series-%s': valid "
Simon Glassef0e9de2012-09-27 15:06:02 +000080 "options are %s" % (commit.hash, line, name,
Simon Glass0d24de92012-01-14 15:12:45 +000081 ', '.join(valid_series)))
82
83 def AddCommit(self, commit):
84 """Add a commit into our list of commits
85
86 We create a list of tags in the commit subject also.
87
88 Args:
89 commit: Commit object to add
90 """
91 commit.CheckTags()
92 self.commits.append(commit)
93
94 def ShowActions(self, args, cmd, process_tags):
95 """Show what actions we will/would perform
96
97 Args:
98 args: List of patch files we created
99 cmd: The git command we would have run
100 process_tags: Process tags as if they were aliases
101 """
Peter Tyser21818302015-01-26 11:42:21 -0600102 to_set = set(gitutil.BuildEmailList(self.to));
103 cc_set = set(gitutil.BuildEmailList(self.cc));
104
Simon Glass0d24de92012-01-14 15:12:45 +0000105 col = terminal.Color()
Paul Burtona920a172016-09-27 16:03:50 +0100106 print('Dry run, so not doing much. But I would do this:')
107 print()
108 print('Send a total of %d patch%s with %scover letter.' % (
Simon Glass0d24de92012-01-14 15:12:45 +0000109 len(args), '' if len(args) == 1 else 'es',
Paul Burtona920a172016-09-27 16:03:50 +0100110 self.get('cover') and 'a ' or 'no '))
Simon Glass0d24de92012-01-14 15:12:45 +0000111
112 # TODO: Colour the patches according to whether they passed checks
113 for upto in range(len(args)):
114 commit = self.commits[upto]
Paul Burtona920a172016-09-27 16:03:50 +0100115 print(col.Color(col.GREEN, ' %s' % args[upto]))
Doug Andersond94566a2012-12-03 14:40:42 +0000116 cc_list = list(self._generated_cc[commit.patch])
Peter Tyser21818302015-01-26 11:42:21 -0600117 for email in set(cc_list) - to_set - cc_set:
Simon Glass0d24de92012-01-14 15:12:45 +0000118 if email == None:
119 email = col.Color(col.YELLOW, "<alias '%s' not found>"
120 % tag)
121 if email:
Paul Burtona920a172016-09-27 16:03:50 +0100122 print(' Cc: ', email)
Simon Glass0d24de92012-01-14 15:12:45 +0000123 print
Peter Tyser21818302015-01-26 11:42:21 -0600124 for item in to_set:
Paul Burtona920a172016-09-27 16:03:50 +0100125 print('To:\t ', item)
Peter Tyser21818302015-01-26 11:42:21 -0600126 for item in cc_set - to_set:
Paul Burtona920a172016-09-27 16:03:50 +0100127 print('Cc:\t ', item)
128 print('Version: ', self.get('version'))
129 print('Prefix:\t ', self.get('prefix'))
Simon Glass0d24de92012-01-14 15:12:45 +0000130 if self.cover:
Paul Burtona920a172016-09-27 16:03:50 +0100131 print('Cover: %d lines' % len(self.cover))
Simon Glassfe2f8d92013-03-20 16:43:00 +0000132 cover_cc = gitutil.BuildEmailList(self.get('cover_cc', ''))
133 all_ccs = itertools.chain(cover_cc, *self._generated_cc.values())
Peter Tyser21818302015-01-26 11:42:21 -0600134 for email in set(all_ccs) - to_set - cc_set:
Paul Burtona920a172016-09-27 16:03:50 +0100135 print(' Cc: ', email)
Simon Glass0d24de92012-01-14 15:12:45 +0000136 if cmd:
Paul Burtona920a172016-09-27 16:03:50 +0100137 print('Git command: %s' % cmd)
Simon Glass0d24de92012-01-14 15:12:45 +0000138
139 def MakeChangeLog(self, commit):
140 """Create a list of changes for each version.
141
142 Return:
143 The change log as a list of strings, one per line
144
Simon Glass27e97602012-10-30 06:15:16 +0000145 Changes in v4:
Otavio Salvador244e6f92012-08-18 07:46:04 +0000146 - Jog the dial back closer to the widget
147
Simon Glass27e97602012-10-30 06:15:16 +0000148 Changes in v3: None
149 Changes in v2:
Simon Glass0d24de92012-01-14 15:12:45 +0000150 - Fix the widget
151 - Jog the dial
152
Simon Glass0d24de92012-01-14 15:12:45 +0000153 etc.
154 """
155 final = []
Simon Glass645b2712013-03-26 13:09:44 +0000156 process_it = self.get('process_log', '').split(',')
157 process_it = [item.strip() for item in process_it]
Simon Glass0d24de92012-01-14 15:12:45 +0000158 need_blank = False
Otavio Salvador244e6f92012-08-18 07:46:04 +0000159 for change in sorted(self.changes, reverse=True):
Simon Glass0d24de92012-01-14 15:12:45 +0000160 out = []
161 for this_commit, text in self.changes[change]:
162 if commit and this_commit != commit:
163 continue
Simon Glass645b2712013-03-26 13:09:44 +0000164 if 'uniq' not in process_it or text not in out:
165 out.append(text)
Simon Glass27e97602012-10-30 06:15:16 +0000166 line = 'Changes in v%d:' % change
167 have_changes = len(out) > 0
Simon Glass645b2712013-03-26 13:09:44 +0000168 if 'sort' in process_it:
169 out = sorted(out)
Simon Glass27e97602012-10-30 06:15:16 +0000170 if have_changes:
171 out.insert(0, line)
172 else:
173 out = [line + ' None']
174 if need_blank:
175 out.insert(0, '')
176 final += out
177 need_blank = have_changes
Simon Glass0d24de92012-01-14 15:12:45 +0000178 if self.changes:
179 final.append('')
180 return final
181
182 def DoChecks(self):
183 """Check that each version has a change log
184
185 Print an error if something is wrong.
186 """
187 col = terminal.Color()
188 if self.get('version'):
189 changes_copy = dict(self.changes)
Otavio Salvadord5f81d82012-08-13 10:08:22 +0000190 for version in range(1, int(self.version) + 1):
Simon Glass0d24de92012-01-14 15:12:45 +0000191 if self.changes.get(version):
192 del changes_copy[version]
193 else:
Otavio Salvadord5f81d82012-08-13 10:08:22 +0000194 if version > 1:
195 str = 'Change log missing for v%d' % version
Paul Burtona920a172016-09-27 16:03:50 +0100196 print(col.Color(col.RED, str))
Simon Glass0d24de92012-01-14 15:12:45 +0000197 for version in changes_copy:
198 str = 'Change log for unknown version v%d' % version
Paul Burtona920a172016-09-27 16:03:50 +0100199 print(col.Color(col.RED, str))
Simon Glass0d24de92012-01-14 15:12:45 +0000200 elif self.changes:
201 str = 'Change log exists, but no version is set'
Paul Burtona920a172016-09-27 16:03:50 +0100202 print(col.Color(col.RED, str))
Simon Glass0d24de92012-01-14 15:12:45 +0000203
Simon Glass983a2742014-09-14 20:23:17 -0600204 def MakeCcFile(self, process_tags, cover_fname, raise_on_error,
205 add_maintainers):
Simon Glass0d24de92012-01-14 15:12:45 +0000206 """Make a cc file for us to use for per-commit Cc automation
207
Doug Andersond94566a2012-12-03 14:40:42 +0000208 Also stores in self._generated_cc to make ShowActions() faster.
209
Simon Glass0d24de92012-01-14 15:12:45 +0000210 Args:
211 process_tags: Process tags as if they were aliases
Doug Anderson31187252012-12-03 14:40:43 +0000212 cover_fname: If non-None the name of the cover letter.
Simon Glassa1318f72013-03-26 13:09:42 +0000213 raise_on_error: True to raise an error when an alias fails to match,
214 False to just print a message.
Simon Glass983a2742014-09-14 20:23:17 -0600215 add_maintainers: Call the get_maintainers to CC maintainers
Simon Glass0d24de92012-01-14 15:12:45 +0000216 Return:
217 Filename of temp file created
218 """
219 # Look for commit tags (of the form 'xxx:' at the start of the subject)
220 fname = '/tmp/patman.%d' % os.getpid()
221 fd = open(fname, 'w')
Doug Anderson31187252012-12-03 14:40:43 +0000222 all_ccs = []
Simon Glass0d24de92012-01-14 15:12:45 +0000223 for commit in self.commits:
224 list = []
225 if process_tags:
Simon Glassa1318f72013-03-26 13:09:42 +0000226 list += gitutil.BuildEmailList(commit.tags,
227 raise_on_error=raise_on_error)
228 list += gitutil.BuildEmailList(commit.cc_list,
229 raise_on_error=raise_on_error)
Paul Burton12e54762016-09-27 16:03:49 +0100230 if add_maintainers:
Simon Glass983a2742014-09-14 20:23:17 -0600231 list += get_maintainer.GetMaintainer(commit.patch)
Doug Anderson31187252012-12-03 14:40:43 +0000232 all_ccs += list
Paul Burtona920a172016-09-27 16:03:50 +0100233 print(commit.patch, ', '.join(set(list)), file=fd)
Doug Andersond94566a2012-12-03 14:40:42 +0000234 self._generated_cc[commit.patch] = list
Simon Glass0d24de92012-01-14 15:12:45 +0000235
Doug Anderson31187252012-12-03 14:40:43 +0000236 if cover_fname:
Simon Glassfe2f8d92013-03-20 16:43:00 +0000237 cover_cc = gitutil.BuildEmailList(self.get('cover_cc', ''))
Chris Packhamf11a0af2017-02-07 20:11:00 +1300238 cc_list = ', '.join([x.decode('utf-8') for x in set(cover_cc + all_ccs)])
239 print(cover_fname, cc_list.encode('utf-8'), file=fd)
Doug Anderson31187252012-12-03 14:40:43 +0000240
Simon Glass0d24de92012-01-14 15:12:45 +0000241 fd.close()
242 return fname
243
244 def AddChange(self, version, commit, info):
245 """Add a new change line to a version.
246
247 This will later appear in the change log.
248
249 Args:
250 version: version number to add change list to
251 info: change line for this version
252 """
253 if not self.changes.get(version):
254 self.changes[version] = []
255 self.changes[version].append([commit, info])
256
257 def GetPatchPrefix(self):
258 """Get the patch version string
259
260 Return:
261 Patch string, like 'RFC PATCH v5' or just 'PATCH'
262 """
Wu, Josh3871cd82015-04-15 10:25:18 +0800263 git_prefix = gitutil.GetDefaultSubjectPrefix()
264 if git_prefix:
Paul Burton12e54762016-09-27 16:03:49 +0100265 git_prefix = '%s][' % git_prefix
Wu, Josh3871cd82015-04-15 10:25:18 +0800266 else:
267 git_prefix = ''
268
Simon Glass0d24de92012-01-14 15:12:45 +0000269 version = ''
270 if self.get('version'):
271 version = ' v%s' % self['version']
272
273 # Get patch name prefix
274 prefix = ''
275 if self.get('prefix'):
276 prefix = '%s ' % self['prefix']
Wu, Josh3871cd82015-04-15 10:25:18 +0800277 return '%s%sPATCH%s' % (git_prefix, prefix, version)