blob: a17a7d1de7b1a69bd5257cbbc004a84b149c0ca5 [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
Doug Anderson31187252012-12-03 14:40:43 +00006import itertools
Simon Glass0d24de92012-01-14 15:12:45 +00007import os
8
Doug Anderson21a19d72012-12-03 14:43:16 +00009import get_maintainer
Simon Glass0d24de92012-01-14 15:12:45 +000010import gitutil
11import terminal
12
13# Series-xxx tags that we understand
Simon Glassfe2f8d92013-03-20 16:43:00 +000014valid_series = ['to', 'cc', 'version', 'changes', 'prefix', 'notes', 'name',
Simon Glass645b2712013-03-26 13:09:44 +000015 'cover-cc', 'process_log']
Simon Glass0d24de92012-01-14 15:12:45 +000016
17class Series(dict):
18 """Holds information about a patch series, including all tags.
19
20 Vars:
21 cc: List of aliases/emails to Cc all patches to
22 commits: List of Commit objects, one for each patch
23 cover: List of lines in the cover letter
24 notes: List of lines in the notes
25 changes: (dict) List of changes for each version, The key is
26 the integer version number
Simon Glassf0b739f2013-05-02 14:46:02 +000027 allow_overwrite: Allow tags to overwrite an existing tag
Simon Glass0d24de92012-01-14 15:12:45 +000028 """
29 def __init__(self):
30 self.cc = []
31 self.to = []
Simon Glassfe2f8d92013-03-20 16:43:00 +000032 self.cover_cc = []
Simon Glass0d24de92012-01-14 15:12:45 +000033 self.commits = []
34 self.cover = None
35 self.notes = []
36 self.changes = {}
Simon Glassf0b739f2013-05-02 14:46:02 +000037 self.allow_overwrite = False
Simon Glass0d24de92012-01-14 15:12:45 +000038
Doug Andersond94566a2012-12-03 14:40:42 +000039 # Written in MakeCcFile()
40 # key: name of patch file
41 # value: list of email addresses
42 self._generated_cc = {}
43
Simon Glass0d24de92012-01-14 15:12:45 +000044 # These make us more like a dictionary
45 def __setattr__(self, name, value):
46 self[name] = value
47
48 def __getattr__(self, name):
49 return self[name]
50
51 def AddTag(self, commit, line, name, value):
52 """Add a new Series-xxx tag along with its value.
53
54 Args:
55 line: Source line containing tag (useful for debug/error messages)
56 name: Tag name (part after 'Series-')
57 value: Tag value (part after 'Series-xxx: ')
58 """
59 # If we already have it, then add to our list
Simon Glassfe2f8d92013-03-20 16:43:00 +000060 name = name.replace('-', '_')
Simon Glassf0b739f2013-05-02 14:46:02 +000061 if name in self and not self.allow_overwrite:
Simon Glass0d24de92012-01-14 15:12:45 +000062 values = value.split(',')
63 values = [str.strip() for str in values]
64 if type(self[name]) != type([]):
65 raise ValueError("In %s: line '%s': Cannot add another value "
66 "'%s' to series '%s'" %
67 (commit.hash, line, values, self[name]))
68 self[name] += values
69
70 # Otherwise just set the value
71 elif name in valid_series:
72 self[name] = value
73 else:
74 raise ValueError("In %s: line '%s': Unknown 'Series-%s': valid "
Simon Glassef0e9de2012-09-27 15:06:02 +000075 "options are %s" % (commit.hash, line, name,
Simon Glass0d24de92012-01-14 15:12:45 +000076 ', '.join(valid_series)))
77
78 def AddCommit(self, commit):
79 """Add a commit into our list of commits
80
81 We create a list of tags in the commit subject also.
82
83 Args:
84 commit: Commit object to add
85 """
86 commit.CheckTags()
87 self.commits.append(commit)
88
89 def ShowActions(self, args, cmd, process_tags):
90 """Show what actions we will/would perform
91
92 Args:
93 args: List of patch files we created
94 cmd: The git command we would have run
95 process_tags: Process tags as if they were aliases
96 """
Peter Tyser21818302015-01-26 11:42:21 -060097 to_set = set(gitutil.BuildEmailList(self.to));
98 cc_set = set(gitutil.BuildEmailList(self.cc));
99
Simon Glass0d24de92012-01-14 15:12:45 +0000100 col = terminal.Color()
101 print 'Dry run, so not doing much. But I would do this:'
102 print
103 print 'Send a total of %d patch%s with %scover letter.' % (
104 len(args), '' if len(args) == 1 else 'es',
105 self.get('cover') and 'a ' or 'no ')
106
107 # TODO: Colour the patches according to whether they passed checks
108 for upto in range(len(args)):
109 commit = self.commits[upto]
110 print col.Color(col.GREEN, ' %s' % args[upto])
Doug Andersond94566a2012-12-03 14:40:42 +0000111 cc_list = list(self._generated_cc[commit.patch])
Peter Tyser21818302015-01-26 11:42:21 -0600112 for email in set(cc_list) - to_set - cc_set:
Simon Glass0d24de92012-01-14 15:12:45 +0000113 if email == None:
114 email = col.Color(col.YELLOW, "<alias '%s' not found>"
115 % tag)
116 if email:
117 print ' Cc: ',email
118 print
Peter Tyser21818302015-01-26 11:42:21 -0600119 for item in to_set:
Simon Glass0d24de92012-01-14 15:12:45 +0000120 print 'To:\t ', item
Peter Tyser21818302015-01-26 11:42:21 -0600121 for item in cc_set - to_set:
Simon Glass0d24de92012-01-14 15:12:45 +0000122 print 'Cc:\t ', item
123 print 'Version: ', self.get('version')
124 print 'Prefix:\t ', self.get('prefix')
125 if self.cover:
126 print 'Cover: %d lines' % len(self.cover)
Simon Glassfe2f8d92013-03-20 16:43:00 +0000127 cover_cc = gitutil.BuildEmailList(self.get('cover_cc', ''))
128 all_ccs = itertools.chain(cover_cc, *self._generated_cc.values())
Peter Tyser21818302015-01-26 11:42:21 -0600129 for email in set(all_ccs) - to_set - cc_set:
Doug Anderson31187252012-12-03 14:40:43 +0000130 print ' Cc: ',email
Simon Glass0d24de92012-01-14 15:12:45 +0000131 if cmd:
132 print 'Git command: %s' % cmd
133
134 def MakeChangeLog(self, commit):
135 """Create a list of changes for each version.
136
137 Return:
138 The change log as a list of strings, one per line
139
Simon Glass27e97602012-10-30 06:15:16 +0000140 Changes in v4:
Otavio Salvador244e6f92012-08-18 07:46:04 +0000141 - Jog the dial back closer to the widget
142
Simon Glass27e97602012-10-30 06:15:16 +0000143 Changes in v3: None
144 Changes in v2:
Simon Glass0d24de92012-01-14 15:12:45 +0000145 - Fix the widget
146 - Jog the dial
147
Simon Glass0d24de92012-01-14 15:12:45 +0000148 etc.
149 """
150 final = []
Simon Glass645b2712013-03-26 13:09:44 +0000151 process_it = self.get('process_log', '').split(',')
152 process_it = [item.strip() for item in process_it]
Simon Glass0d24de92012-01-14 15:12:45 +0000153 need_blank = False
Otavio Salvador244e6f92012-08-18 07:46:04 +0000154 for change in sorted(self.changes, reverse=True):
Simon Glass0d24de92012-01-14 15:12:45 +0000155 out = []
156 for this_commit, text in self.changes[change]:
157 if commit and this_commit != commit:
158 continue
Simon Glass645b2712013-03-26 13:09:44 +0000159 if 'uniq' not in process_it or text not in out:
160 out.append(text)
Simon Glass27e97602012-10-30 06:15:16 +0000161 line = 'Changes in v%d:' % change
162 have_changes = len(out) > 0
Simon Glass645b2712013-03-26 13:09:44 +0000163 if 'sort' in process_it:
164 out = sorted(out)
Simon Glass27e97602012-10-30 06:15:16 +0000165 if have_changes:
166 out.insert(0, line)
167 else:
168 out = [line + ' None']
169 if need_blank:
170 out.insert(0, '')
171 final += out
172 need_blank = have_changes
Simon Glass0d24de92012-01-14 15:12:45 +0000173 if self.changes:
174 final.append('')
175 return final
176
177 def DoChecks(self):
178 """Check that each version has a change log
179
180 Print an error if something is wrong.
181 """
182 col = terminal.Color()
183 if self.get('version'):
184 changes_copy = dict(self.changes)
Otavio Salvadord5f81d82012-08-13 10:08:22 +0000185 for version in range(1, int(self.version) + 1):
Simon Glass0d24de92012-01-14 15:12:45 +0000186 if self.changes.get(version):
187 del changes_copy[version]
188 else:
Otavio Salvadord5f81d82012-08-13 10:08:22 +0000189 if version > 1:
190 str = 'Change log missing for v%d' % version
191 print col.Color(col.RED, str)
Simon Glass0d24de92012-01-14 15:12:45 +0000192 for version in changes_copy:
193 str = 'Change log for unknown version v%d' % version
194 print col.Color(col.RED, str)
195 elif self.changes:
196 str = 'Change log exists, but no version is set'
197 print col.Color(col.RED, str)
198
Simon Glass983a2742014-09-14 20:23:17 -0600199 def MakeCcFile(self, process_tags, cover_fname, raise_on_error,
200 add_maintainers):
Simon Glass0d24de92012-01-14 15:12:45 +0000201 """Make a cc file for us to use for per-commit Cc automation
202
Doug Andersond94566a2012-12-03 14:40:42 +0000203 Also stores in self._generated_cc to make ShowActions() faster.
204
Simon Glass0d24de92012-01-14 15:12:45 +0000205 Args:
206 process_tags: Process tags as if they were aliases
Doug Anderson31187252012-12-03 14:40:43 +0000207 cover_fname: If non-None the name of the cover letter.
Simon Glassa1318f72013-03-26 13:09:42 +0000208 raise_on_error: True to raise an error when an alias fails to match,
209 False to just print a message.
Simon Glass983a2742014-09-14 20:23:17 -0600210 add_maintainers: Call the get_maintainers to CC maintainers
Simon Glass0d24de92012-01-14 15:12:45 +0000211 Return:
212 Filename of temp file created
213 """
214 # Look for commit tags (of the form 'xxx:' at the start of the subject)
215 fname = '/tmp/patman.%d' % os.getpid()
216 fd = open(fname, 'w')
Doug Anderson31187252012-12-03 14:40:43 +0000217 all_ccs = []
Simon Glass0d24de92012-01-14 15:12:45 +0000218 for commit in self.commits:
219 list = []
220 if process_tags:
Simon Glassa1318f72013-03-26 13:09:42 +0000221 list += gitutil.BuildEmailList(commit.tags,
222 raise_on_error=raise_on_error)
223 list += gitutil.BuildEmailList(commit.cc_list,
224 raise_on_error=raise_on_error)
Simon Glass983a2742014-09-14 20:23:17 -0600225 if add_maintainers:
226 list += get_maintainer.GetMaintainer(commit.patch)
Doug Anderson31187252012-12-03 14:40:43 +0000227 all_ccs += list
Peter Tyser21818302015-01-26 11:42:21 -0600228 print >>fd, commit.patch, ', '.join(set(list))
Doug Andersond94566a2012-12-03 14:40:42 +0000229 self._generated_cc[commit.patch] = list
Simon Glass0d24de92012-01-14 15:12:45 +0000230
Doug Anderson31187252012-12-03 14:40:43 +0000231 if cover_fname:
Simon Glassfe2f8d92013-03-20 16:43:00 +0000232 cover_cc = gitutil.BuildEmailList(self.get('cover_cc', ''))
233 print >>fd, cover_fname, ', '.join(set(cover_cc + all_ccs))
Doug Anderson31187252012-12-03 14:40:43 +0000234
Simon Glass0d24de92012-01-14 15:12:45 +0000235 fd.close()
236 return fname
237
238 def AddChange(self, version, commit, info):
239 """Add a new change line to a version.
240
241 This will later appear in the change log.
242
243 Args:
244 version: version number to add change list to
245 info: change line for this version
246 """
247 if not self.changes.get(version):
248 self.changes[version] = []
249 self.changes[version].append([commit, info])
250
251 def GetPatchPrefix(self):
252 """Get the patch version string
253
254 Return:
255 Patch string, like 'RFC PATCH v5' or just 'PATCH'
256 """
Wu, Josh3871cd82015-04-15 10:25:18 +0800257 git_prefix = gitutil.GetDefaultSubjectPrefix()
258 if git_prefix:
259 git_prefix = '%s][' % git_prefix
260 else:
261 git_prefix = ''
262
Simon Glass0d24de92012-01-14 15:12:45 +0000263 version = ''
264 if self.get('version'):
265 version = ' v%s' % self['version']
266
267 # Get patch name prefix
268 prefix = ''
269 if self.get('prefix'):
270 prefix = '%s ' % self['prefix']
Wu, Josh3871cd82015-04-15 10:25:18 +0800271 return '%s%sPATCH%s' % (git_prefix, prefix, version)