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