Masahiro Yamada | c05e791 | 2018-01-21 18:34:57 +0900 | [diff] [blame] | 1 | #!/usr/bin/env python2 |
Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 2 | # SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 3 | # |
| 4 | # Copyright (c) 2011 The Chromium OS Authors. |
| 5 | # |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 6 | |
| 7 | """See README for more information""" |
| 8 | |
| 9 | from optparse import OptionParser |
| 10 | import os |
| 11 | import re |
| 12 | import sys |
| 13 | import unittest |
| 14 | |
| 15 | # Our modules |
Chris Packham | 464a0e9 | 2015-07-22 21:21:46 +1200 | [diff] [blame] | 16 | try: |
| 17 | from patman import checkpatch, command, gitutil, patchstream, \ |
| 18 | project, settings, terminal, test |
| 19 | except 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 Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 28 | |
| 29 | |
| 30 | parser = OptionParser() |
| 31 | parser.add_option('-H', '--full-help', action='store_true', dest='full_help', |
| 32 | default=False, help='Display the README file') |
| 33 | parser.add_option('-c', '--count', dest='count', type='int', |
| 34 | default=-1, help='Automatically create patches from top n commits') |
| 35 | parser.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 Glass | 46b84d8 | 2014-09-14 20:23:17 -0600 | [diff] [blame] | 38 | parser.add_option('-m', '--no-maintainers', action='store_false', |
| 39 | dest='add_maintainers', default=True, |
| 40 | help="Don't cc the file maintainers automatically") |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 41 | parser.add_option('-n', '--dry-run', action='store_true', dest='dry_run', |
Simon Glass | 33bdd9e | 2013-03-26 13:09:45 +0000 | [diff] [blame] | 42 | default=False, help="Do a dry run (create but don't email patches)") |
Vadim Bendebury | c549f08 | 2013-01-09 16:00:10 +0000 | [diff] [blame] | 43 | parser.add_option('-p', '--project', default=project.DetectProject(), |
| 44 | help="Project name; affects default option values and " |
| 45 | "aliases [default: %default]") |
Doug Anderson | 06f27ac | 2013-03-17 10:31:04 +0000 | [diff] [blame] | 46 | parser.add_option('-r', '--in-reply-to', type='string', action='store', |
| 47 | help="Message ID that this series is in reply to") |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 48 | parser.add_option('-s', '--start', dest='start', type='int', |
| 49 | default=0, help='Commit to start creating patches from (0 = HEAD)') |
Simon Glass | 12ea5f4 | 2013-03-26 13:09:42 +0000 | [diff] [blame] | 50 | parser.add_option('-t', '--ignore-bad-tags', action='store_true', |
| 51 | default=False, help='Ignore bad tags / aliases') |
| 52 | parser.add_option('--test', action='store_true', dest='test', |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 53 | default=False, help='run tests') |
| 54 | parser.add_option('-v', '--verbose', action='store_true', dest='verbose', |
| 55 | default=False, help='Verbose output of errors and warnings') |
| 56 | parser.add_option('--cc-cmd', dest='cc_cmd', type='string', action='store', |
| 57 | default=None, help='Output cc list for patch file (used by git)') |
Vadim Bendebury | c549f08 | 2013-01-09 16:00:10 +0000 | [diff] [blame] | 58 | parser.add_option('--no-check', action='store_false', dest='check_patch', |
| 59 | default=True, |
| 60 | help="Don't check for patch compliance") |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 61 | parser.add_option('--no-tags', action='store_false', dest='process_tags', |
| 62 | default=True, help="Don't process subject tags as aliaes") |
Mateusz Kulikowski | 80c2ebc | 2016-01-14 20:37:41 +0100 | [diff] [blame] | 63 | parser.add_option('-T', '--thread', action='store_true', dest='thread', |
| 64 | default=False, help='Create patches as a single thread') |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 65 | |
Masahiro Yamada | a97f35f | 2014-08-21 14:28:03 +0900 | [diff] [blame] | 66 | parser.usage += """ |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 67 | |
| 68 | Create patches from commits in a branch, check them and email them as |
Simon Glass | 33bdd9e | 2013-03-26 13:09:45 +0000 | [diff] [blame] | 69 | specified by tags you place in the commits. Use -n to do a dry run first.""" |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 70 | |
Doug Anderson | 3d3077c | 2012-12-03 14:43:17 +0000 | [diff] [blame] | 71 | |
Doug Anderson | 31ffd7f | 2012-12-03 14:43:18 +0000 | [diff] [blame] | 72 | # Parse options twice: first to get the project and second to handle |
| 73 | # defaults properly (which depends on project). |
| 74 | (options, args) = parser.parse_args() |
| 75 | settings.Setup(parser, options.project, '') |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 76 | (options, args) = parser.parse_args() |
| 77 | |
Simon Glass | 2b68b36 | 2015-07-30 13:47:41 -0600 | [diff] [blame] | 78 | if __name__ != "__main__": |
| 79 | pass |
| 80 | |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 81 | # Run our meagre tests |
Simon Glass | 2b68b36 | 2015-07-30 13:47:41 -0600 | [diff] [blame] | 82 | elif options.test: |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 83 | import doctest |
Simon Glass | df1bc5c | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 84 | import func_test |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 85 | |
| 86 | sys.argv = [sys.argv[0]] |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 87 | result = unittest.TestResult() |
Simon Glass | df1bc5c | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 88 | for module in (test.TestPatch, func_test.TestFunctional): |
| 89 | suite = unittest.TestLoader().loadTestsFromTestCase(module) |
| 90 | suite.run(result) |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 91 | |
Doug Anderson | 06a9515 | 2012-12-03 14:43:19 +0000 | [diff] [blame] | 92 | for module in ['gitutil', 'settings']: |
| 93 | suite = doctest.DocTestSuite(module) |
| 94 | suite.run(result) |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 95 | |
| 96 | # TODO: Surely we can just 'print' result? |
Paul Burton | c393134 | 2016-09-27 16:03:50 +0100 | [diff] [blame] | 97 | print(result) |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 98 | for test, err in result.errors: |
Paul Burton | c393134 | 2016-09-27 16:03:50 +0100 | [diff] [blame] | 99 | print(err) |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 100 | for test, err in result.failures: |
Paul Burton | c393134 | 2016-09-27 16:03:50 +0100 | [diff] [blame] | 101 | print(err) |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 102 | |
| 103 | # Called from git with a patch filename as argument |
| 104 | # Printout a list of additional CC recipients for this patch |
| 105 | elif options.cc_cmd: |
| 106 | fd = open(options.cc_cmd, 'r') |
| 107 | re_line = re.compile('(\S*) (.*)') |
| 108 | for line in fd.readlines(): |
| 109 | match = re_line.match(line) |
| 110 | if match and match.group(1) == args[0]: |
| 111 | for cc in match.group(2).split(', '): |
| 112 | cc = cc.strip() |
| 113 | if cc: |
Paul Burton | c393134 | 2016-09-27 16:03:50 +0100 | [diff] [blame] | 114 | print(cc) |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 115 | fd.close() |
| 116 | |
| 117 | elif options.full_help: |
| 118 | pager = os.getenv('PAGER') |
| 119 | if not pager: |
| 120 | pager = 'more' |
Simon Glass | c29101f | 2016-03-06 19:45:34 -0700 | [diff] [blame] | 121 | fname = os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])), |
| 122 | 'README') |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 123 | command.Run(pager, fname) |
| 124 | |
| 125 | # Process commits, produce patches files, check them, email them |
| 126 | else: |
| 127 | gitutil.Setup() |
| 128 | |
| 129 | if options.count == -1: |
| 130 | # Work out how many patches to send if we can |
| 131 | options.count = gitutil.CountCommitsToBranch() - options.start |
| 132 | |
| 133 | col = terminal.Color() |
| 134 | if not options.count: |
| 135 | str = 'No commits found to process - please use -c flag' |
Masahiro Yamada | 880828d | 2014-08-16 00:59:26 +0900 | [diff] [blame] | 136 | sys.exit(col.Color(col.RED, str)) |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 137 | |
| 138 | # Read the metadata from the commits |
| 139 | if options.count: |
| 140 | series = patchstream.GetMetaData(options.start, options.count) |
| 141 | cover_fname, args = gitutil.CreatePatches(options.start, options.count, |
| 142 | series) |
| 143 | |
| 144 | # Fix up the patch files to our liking, and insert the cover letter |
Simon Glass | fdf7002 | 2017-05-29 15:31:27 -0600 | [diff] [blame] | 145 | patchstream.FixPatches(series, args) |
| 146 | if cover_fname and series.get('cover'): |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 147 | patchstream.InsertCoverLetter(cover_fname, series, options.count) |
| 148 | |
| 149 | # Do a few checks on the series |
| 150 | series.DoChecks() |
| 151 | |
| 152 | # Check the patches, and run them through 'git am' just to be sure |
Vadim Bendebury | c549f08 | 2013-01-09 16:00:10 +0000 | [diff] [blame] | 153 | if options.check_patch: |
| 154 | ok = checkpatch.CheckPatches(options.verbose, args) |
| 155 | else: |
| 156 | ok = True |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 157 | |
Simon Glass | 12ea5f4 | 2013-03-26 13:09:42 +0000 | [diff] [blame] | 158 | cc_file = series.MakeCcFile(options.process_tags, cover_fname, |
Simon Glass | 46b84d8 | 2014-09-14 20:23:17 -0600 | [diff] [blame] | 159 | not options.ignore_bad_tags, |
| 160 | options.add_maintainers) |
Doug Anderson | 507e8e8 | 2012-12-03 14:40:42 +0000 | [diff] [blame] | 161 | |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 162 | # Email the patches out (giving the user time to check / cancel) |
| 163 | cmd = '' |
Vadim Bendebury | fbf8ee0 | 2014-09-04 10:45:13 -0700 | [diff] [blame] | 164 | its_a_go = ok or options.ignore_errors |
| 165 | if its_a_go: |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 166 | cmd = gitutil.EmailPatches(series, cover_fname, args, |
Simon Glass | 12ea5f4 | 2013-03-26 13:09:42 +0000 | [diff] [blame] | 167 | options.dry_run, not options.ignore_bad_tags, cc_file, |
Mateusz Kulikowski | 80c2ebc | 2016-01-14 20:37:41 +0100 | [diff] [blame] | 168 | in_reply_to=options.in_reply_to, thread=options.thread) |
Vadim Bendebury | fbf8ee0 | 2014-09-04 10:45:13 -0700 | [diff] [blame] | 169 | else: |
Paul Burton | c393134 | 2016-09-27 16:03:50 +0100 | [diff] [blame] | 170 | print(col.Color(col.RED, "Not sending emails due to errors/warnings")) |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 171 | |
| 172 | # For a dry run, just show our actions as a sanity check |
| 173 | if options.dry_run: |
| 174 | series.ShowActions(args, cmd, options.process_tags) |
Vadim Bendebury | fbf8ee0 | 2014-09-04 10:45:13 -0700 | [diff] [blame] | 175 | if not its_a_go: |
Paul Burton | c393134 | 2016-09-27 16:03:50 +0100 | [diff] [blame] | 176 | print(col.Color(col.RED, "Email would not be sent")) |
Doug Anderson | 507e8e8 | 2012-12-03 14:40:42 +0000 | [diff] [blame] | 177 | |
| 178 | os.remove(cc_file) |