blob: 6c6473e462f044983d6616927c86c87170bd4ea6 [file] [log] [blame]
Michal Simeke8570752013-05-06 04:11:58 +00001#!/usr/bin/env python
Simon Glass0d24de92012-01-14 15:12:45 +00002#
3# Copyright (c) 2011 The Chromium OS Authors.
4#
Wolfgang Denk1a459662013-07-08 09:37:19 +02005# SPDX-License-Identifier: GPL-2.0+
Simon Glass0d24de92012-01-14 15:12:45 +00006#
7
8"""See README for more information"""
9
10from optparse import OptionParser
11import os
12import re
13import sys
14import unittest
15
16# Our modules
17import checkpatch
18import command
19import gitutil
20import patchstream
Doug Andersona1dcee82012-12-03 14:43:18 +000021import project
Doug Anderson8568bae2012-12-03 14:43:17 +000022import settings
Simon Glass0d24de92012-01-14 15:12:45 +000023import terminal
24import test
25
26
27parser = OptionParser()
28parser.add_option('-H', '--full-help', action='store_true', dest='full_help',
29 default=False, help='Display the README file')
30parser.add_option('-c', '--count', dest='count', type='int',
31 default=-1, help='Automatically create patches from top n commits')
32parser.add_option('-i', '--ignore-errors', action='store_true',
33 dest='ignore_errors', default=False,
34 help='Send patches email even if patch errors are found')
Simon Glass983a2742014-09-14 20:23:17 -060035parser.add_option('-m', '--no-maintainers', action='store_false',
36 dest='add_maintainers', default=True,
37 help="Don't cc the file maintainers automatically")
Simon Glass0d24de92012-01-14 15:12:45 +000038parser.add_option('-n', '--dry-run', action='store_true', dest='dry_run',
Simon Glassca706e72013-03-26 13:09:45 +000039 default=False, help="Do a dry run (create but don't email patches)")
Vadim Bendebury99adf6e2013-01-09 16:00:10 +000040parser.add_option('-p', '--project', default=project.DetectProject(),
41 help="Project name; affects default option values and "
42 "aliases [default: %default]")
Doug Anderson6d819922013-03-17 10:31:04 +000043parser.add_option('-r', '--in-reply-to', type='string', action='store',
44 help="Message ID that this series is in reply to")
Simon Glass0d24de92012-01-14 15:12:45 +000045parser.add_option('-s', '--start', dest='start', type='int',
46 default=0, help='Commit to start creating patches from (0 = HEAD)')
Simon Glassa1318f72013-03-26 13:09:42 +000047parser.add_option('-t', '--ignore-bad-tags', action='store_true',
48 default=False, help='Ignore bad tags / aliases')
49parser.add_option('--test', action='store_true', dest='test',
Simon Glass0d24de92012-01-14 15:12:45 +000050 default=False, help='run tests')
51parser.add_option('-v', '--verbose', action='store_true', dest='verbose',
52 default=False, help='Verbose output of errors and warnings')
53parser.add_option('--cc-cmd', dest='cc_cmd', type='string', action='store',
54 default=None, help='Output cc list for patch file (used by git)')
Vadim Bendebury99adf6e2013-01-09 16:00:10 +000055parser.add_option('--no-check', action='store_false', dest='check_patch',
56 default=True,
57 help="Don't check for patch compliance")
Simon Glass0d24de92012-01-14 15:12:45 +000058parser.add_option('--no-tags', action='store_false', dest='process_tags',
59 default=True, help="Don't process subject tags as aliaes")
60
Masahiro Yamadae0a4d062014-08-21 14:28:03 +090061parser.usage += """
Simon Glass0d24de92012-01-14 15:12:45 +000062
63Create patches from commits in a branch, check them and email them as
Simon Glassca706e72013-03-26 13:09:45 +000064specified by tags you place in the commits. Use -n to do a dry run first."""
Simon Glass0d24de92012-01-14 15:12:45 +000065
Doug Anderson8568bae2012-12-03 14:43:17 +000066
Doug Andersona1dcee82012-12-03 14:43:18 +000067# Parse options twice: first to get the project and second to handle
68# defaults properly (which depends on project).
69(options, args) = parser.parse_args()
70settings.Setup(parser, options.project, '')
Simon Glass0d24de92012-01-14 15:12:45 +000071(options, args) = parser.parse_args()
72
73# Run our meagre tests
74if options.test:
75 import doctest
76
77 sys.argv = [sys.argv[0]]
78 suite = unittest.TestLoader().loadTestsFromTestCase(test.TestPatch)
79 result = unittest.TestResult()
80 suite.run(result)
81
Doug Anderson656cffe2012-12-03 14:43:19 +000082 for module in ['gitutil', 'settings']:
83 suite = doctest.DocTestSuite(module)
84 suite.run(result)
Simon Glass0d24de92012-01-14 15:12:45 +000085
86 # TODO: Surely we can just 'print' result?
87 print result
88 for test, err in result.errors:
89 print err
90 for test, err in result.failures:
91 print err
92
93# Called from git with a patch filename as argument
94# Printout a list of additional CC recipients for this patch
95elif options.cc_cmd:
96 fd = open(options.cc_cmd, 'r')
97 re_line = re.compile('(\S*) (.*)')
98 for line in fd.readlines():
99 match = re_line.match(line)
100 if match and match.group(1) == args[0]:
101 for cc in match.group(2).split(', '):
102 cc = cc.strip()
103 if cc:
104 print cc
105 fd.close()
106
107elif options.full_help:
108 pager = os.getenv('PAGER')
109 if not pager:
110 pager = 'more'
111 fname = os.path.join(os.path.dirname(sys.argv[0]), 'README')
112 command.Run(pager, fname)
113
114# Process commits, produce patches files, check them, email them
115else:
116 gitutil.Setup()
117
118 if options.count == -1:
119 # Work out how many patches to send if we can
120 options.count = gitutil.CountCommitsToBranch() - options.start
121
122 col = terminal.Color()
123 if not options.count:
124 str = 'No commits found to process - please use -c flag'
Masahiro Yamada31e21412014-08-16 00:59:26 +0900125 sys.exit(col.Color(col.RED, str))
Simon Glass0d24de92012-01-14 15:12:45 +0000126
127 # Read the metadata from the commits
128 if options.count:
129 series = patchstream.GetMetaData(options.start, options.count)
130 cover_fname, args = gitutil.CreatePatches(options.start, options.count,
131 series)
132
133 # Fix up the patch files to our liking, and insert the cover letter
134 series = patchstream.FixPatches(series, args)
135 if series and cover_fname and series.get('cover'):
136 patchstream.InsertCoverLetter(cover_fname, series, options.count)
137
138 # Do a few checks on the series
139 series.DoChecks()
140
141 # Check the patches, and run them through 'git am' just to be sure
Vadim Bendebury99adf6e2013-01-09 16:00:10 +0000142 if options.check_patch:
143 ok = checkpatch.CheckPatches(options.verbose, args)
144 else:
145 ok = True
Simon Glass0d24de92012-01-14 15:12:45 +0000146
Simon Glassa1318f72013-03-26 13:09:42 +0000147 cc_file = series.MakeCcFile(options.process_tags, cover_fname,
Simon Glass983a2742014-09-14 20:23:17 -0600148 not options.ignore_bad_tags,
149 options.add_maintainers)
Doug Andersond94566a2012-12-03 14:40:42 +0000150
Simon Glass0d24de92012-01-14 15:12:45 +0000151 # Email the patches out (giving the user time to check / cancel)
152 cmd = ''
Vadim Bendebury1f727882014-09-04 10:45:13 -0700153 its_a_go = ok or options.ignore_errors
154 if its_a_go:
Simon Glass0d24de92012-01-14 15:12:45 +0000155 cmd = gitutil.EmailPatches(series, cover_fname, args,
Simon Glassa1318f72013-03-26 13:09:42 +0000156 options.dry_run, not options.ignore_bad_tags, cc_file,
157 in_reply_to=options.in_reply_to)
Vadim Bendebury1f727882014-09-04 10:45:13 -0700158 else:
159 print col.Color(col.RED, "Not sending emails due to errors/warnings")
Simon Glass0d24de92012-01-14 15:12:45 +0000160
161 # For a dry run, just show our actions as a sanity check
162 if options.dry_run:
163 series.ShowActions(args, cmd, options.process_tags)
Vadim Bendebury1f727882014-09-04 10:45:13 -0700164 if not its_a_go:
165 print col.Color(col.RED, "Email would not be sent")
Doug Andersond94566a2012-12-03 14:40:42 +0000166
167 os.remove(cc_file)