blob: e01510df9c0fda314bf03dfdaca32803928e2313 [file] [log] [blame]
Masahiro Yamadac05e7912018-01-21 18:34:57 +09001#!/usr/bin/env python2
Tom Rini10e47792018-05-06 17:58:06 -04002# SPDX-License-Identifier: GPL-2.0+
Simon Glass26132882012-01-14 15:12:45 +00003#
4# Copyright (c) 2011 The Chromium OS Authors.
5#
Simon Glass26132882012-01-14 15:12:45 +00006
7"""See README for more information"""
8
9from optparse import OptionParser
10import os
11import re
12import sys
13import unittest
14
15# Our modules
Chris Packham464a0e92015-07-22 21:21:46 +120016try:
17 from patman import checkpatch, command, gitutil, patchstream, \
18 project, settings, terminal, test
19except ImportError:
20 import checkpatch
21 import command
22 import gitutil
23 import patchstream
24 import project
25 import settings
26 import terminal
27 import test
Simon Glass26132882012-01-14 15:12:45 +000028
29
30parser = OptionParser()
31parser.add_option('-H', '--full-help', action='store_true', dest='full_help',
32 default=False, help='Display the README file')
33parser.add_option('-c', '--count', dest='count', type='int',
34 default=-1, help='Automatically create patches from top n commits')
35parser.add_option('-i', '--ignore-errors', action='store_true',
36 dest='ignore_errors', default=False,
37 help='Send patches email even if patch errors are found')
Simon Glass46b84d82014-09-14 20:23:17 -060038parser.add_option('-m', '--no-maintainers', action='store_false',
39 dest='add_maintainers', default=True,
40 help="Don't cc the file maintainers automatically")
Chris Packhamb84fb482018-06-07 20:45:06 +120041parser.add_option('-l', '--limit-cc', dest='limit', type='int',
42 default=None, help='Limit the cc list to LIMIT entries [default: %default]')
Simon Glass26132882012-01-14 15:12:45 +000043parser.add_option('-n', '--dry-run', action='store_true', dest='dry_run',
Simon Glass33bdd9e2013-03-26 13:09:45 +000044 default=False, help="Do a dry run (create but don't email patches)")
Vadim Bendeburyc549f082013-01-09 16:00:10 +000045parser.add_option('-p', '--project', default=project.DetectProject(),
46 help="Project name; affects default option values and "
47 "aliases [default: %default]")
Doug Anderson06f27ac2013-03-17 10:31:04 +000048parser.add_option('-r', '--in-reply-to', type='string', action='store',
49 help="Message ID that this series is in reply to")
Simon Glass26132882012-01-14 15:12:45 +000050parser.add_option('-s', '--start', dest='start', type='int',
51 default=0, help='Commit to start creating patches from (0 = HEAD)')
Simon Glass12ea5f42013-03-26 13:09:42 +000052parser.add_option('-t', '--ignore-bad-tags', action='store_true',
53 default=False, help='Ignore bad tags / aliases')
54parser.add_option('--test', action='store_true', dest='test',
Simon Glass26132882012-01-14 15:12:45 +000055 default=False, help='run tests')
56parser.add_option('-v', '--verbose', action='store_true', dest='verbose',
57 default=False, help='Verbose output of errors and warnings')
58parser.add_option('--cc-cmd', dest='cc_cmd', type='string', action='store',
59 default=None, help='Output cc list for patch file (used by git)')
Vadim Bendeburyc549f082013-01-09 16:00:10 +000060parser.add_option('--no-check', action='store_false', dest='check_patch',
61 default=True,
62 help="Don't check for patch compliance")
Simon Glass26132882012-01-14 15:12:45 +000063parser.add_option('--no-tags', action='store_false', dest='process_tags',
64 default=True, help="Don't process subject tags as aliaes")
Mateusz Kulikowski80c2ebc2016-01-14 20:37:41 +010065parser.add_option('-T', '--thread', action='store_true', dest='thread',
66 default=False, help='Create patches as a single thread')
Simon Glass26132882012-01-14 15:12:45 +000067
Masahiro Yamadaa97f35f2014-08-21 14:28:03 +090068parser.usage += """
Simon Glass26132882012-01-14 15:12:45 +000069
70Create patches from commits in a branch, check them and email them as
Simon Glass33bdd9e2013-03-26 13:09:45 +000071specified by tags you place in the commits. Use -n to do a dry run first."""
Simon Glass26132882012-01-14 15:12:45 +000072
Doug Anderson3d3077c2012-12-03 14:43:17 +000073
Doug Anderson31ffd7f2012-12-03 14:43:18 +000074# Parse options twice: first to get the project and second to handle
75# defaults properly (which depends on project).
76(options, args) = parser.parse_args()
77settings.Setup(parser, options.project, '')
Simon Glass26132882012-01-14 15:12:45 +000078(options, args) = parser.parse_args()
79
Simon Glass2b68b362015-07-30 13:47:41 -060080if __name__ != "__main__":
81 pass
82
Simon Glass26132882012-01-14 15:12:45 +000083# Run our meagre tests
Simon Glass2b68b362015-07-30 13:47:41 -060084elif options.test:
Simon Glass26132882012-01-14 15:12:45 +000085 import doctest
Simon Glassdf1bc5c2017-05-29 15:31:31 -060086 import func_test
Simon Glass26132882012-01-14 15:12:45 +000087
88 sys.argv = [sys.argv[0]]
Simon Glass26132882012-01-14 15:12:45 +000089 result = unittest.TestResult()
Simon Glassdf1bc5c2017-05-29 15:31:31 -060090 for module in (test.TestPatch, func_test.TestFunctional):
91 suite = unittest.TestLoader().loadTestsFromTestCase(module)
92 suite.run(result)
Simon Glass26132882012-01-14 15:12:45 +000093
Doug Anderson06a95152012-12-03 14:43:19 +000094 for module in ['gitutil', 'settings']:
95 suite = doctest.DocTestSuite(module)
96 suite.run(result)
Simon Glass26132882012-01-14 15:12:45 +000097
98 # TODO: Surely we can just 'print' result?
Paul Burtonc3931342016-09-27 16:03:50 +010099 print(result)
Simon Glass26132882012-01-14 15:12:45 +0000100 for test, err in result.errors:
Paul Burtonc3931342016-09-27 16:03:50 +0100101 print(err)
Simon Glass26132882012-01-14 15:12:45 +0000102 for test, err in result.failures:
Paul Burtonc3931342016-09-27 16:03:50 +0100103 print(err)
Simon Glass26132882012-01-14 15:12:45 +0000104
105# Called from git with a patch filename as argument
106# Printout a list of additional CC recipients for this patch
107elif options.cc_cmd:
108 fd = open(options.cc_cmd, 'r')
109 re_line = re.compile('(\S*) (.*)')
110 for line in fd.readlines():
111 match = re_line.match(line)
112 if match and match.group(1) == args[0]:
113 for cc in match.group(2).split(', '):
114 cc = cc.strip()
115 if cc:
Paul Burtonc3931342016-09-27 16:03:50 +0100116 print(cc)
Simon Glass26132882012-01-14 15:12:45 +0000117 fd.close()
118
119elif options.full_help:
120 pager = os.getenv('PAGER')
121 if not pager:
122 pager = 'more'
Simon Glassc29101f2016-03-06 19:45:34 -0700123 fname = os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])),
124 'README')
Simon Glass26132882012-01-14 15:12:45 +0000125 command.Run(pager, fname)
126
127# Process commits, produce patches files, check them, email them
128else:
129 gitutil.Setup()
130
131 if options.count == -1:
132 # Work out how many patches to send if we can
133 options.count = gitutil.CountCommitsToBranch() - options.start
134
135 col = terminal.Color()
136 if not options.count:
137 str = 'No commits found to process - please use -c flag'
Masahiro Yamada880828d2014-08-16 00:59:26 +0900138 sys.exit(col.Color(col.RED, str))
Simon Glass26132882012-01-14 15:12:45 +0000139
140 # Read the metadata from the commits
141 if options.count:
142 series = patchstream.GetMetaData(options.start, options.count)
143 cover_fname, args = gitutil.CreatePatches(options.start, options.count,
144 series)
145
146 # Fix up the patch files to our liking, and insert the cover letter
Simon Glassfdf70022017-05-29 15:31:27 -0600147 patchstream.FixPatches(series, args)
148 if cover_fname and series.get('cover'):
Simon Glass26132882012-01-14 15:12:45 +0000149 patchstream.InsertCoverLetter(cover_fname, series, options.count)
150
151 # Do a few checks on the series
152 series.DoChecks()
153
154 # Check the patches, and run them through 'git am' just to be sure
Vadim Bendeburyc549f082013-01-09 16:00:10 +0000155 if options.check_patch:
156 ok = checkpatch.CheckPatches(options.verbose, args)
157 else:
158 ok = True
Simon Glass26132882012-01-14 15:12:45 +0000159
Simon Glass12ea5f42013-03-26 13:09:42 +0000160 cc_file = series.MakeCcFile(options.process_tags, cover_fname,
Simon Glass46b84d82014-09-14 20:23:17 -0600161 not options.ignore_bad_tags,
Chris Packhamb84fb482018-06-07 20:45:06 +1200162 options.add_maintainers, options.limit)
Doug Anderson507e8e82012-12-03 14:40:42 +0000163
Simon Glass26132882012-01-14 15:12:45 +0000164 # Email the patches out (giving the user time to check / cancel)
165 cmd = ''
Vadim Bendeburyfbf8ee02014-09-04 10:45:13 -0700166 its_a_go = ok or options.ignore_errors
167 if its_a_go:
Simon Glass26132882012-01-14 15:12:45 +0000168 cmd = gitutil.EmailPatches(series, cover_fname, args,
Simon Glass12ea5f42013-03-26 13:09:42 +0000169 options.dry_run, not options.ignore_bad_tags, cc_file,
Mateusz Kulikowski80c2ebc2016-01-14 20:37:41 +0100170 in_reply_to=options.in_reply_to, thread=options.thread)
Vadim Bendeburyfbf8ee02014-09-04 10:45:13 -0700171 else:
Paul Burtonc3931342016-09-27 16:03:50 +0100172 print(col.Color(col.RED, "Not sending emails due to errors/warnings"))
Simon Glass26132882012-01-14 15:12:45 +0000173
174 # For a dry run, just show our actions as a sanity check
175 if options.dry_run:
176 series.ShowActions(args, cmd, options.process_tags)
Vadim Bendeburyfbf8ee02014-09-04 10:45:13 -0700177 if not its_a_go:
Paul Burtonc3931342016-09-27 16:03:50 +0100178 print(col.Color(col.RED, "Email would not be sent"))
Doug Anderson507e8e82012-12-03 14:40:42 +0000179
180 os.remove(cc_file)