blob: 2ab6b351d690fc8d8a12bcfd10a27f8f262144ef [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')
35parser.add_option('-n', '--dry-run', action='store_true', dest='dry_run',
Simon Glassca706e72013-03-26 13:09:45 +000036 default=False, help="Do a dry run (create but don't email patches)")
Vadim Bendebury99adf6e2013-01-09 16:00:10 +000037parser.add_option('-p', '--project', default=project.DetectProject(),
38 help="Project name; affects default option values and "
39 "aliases [default: %default]")
Doug Anderson6d819922013-03-17 10:31:04 +000040parser.add_option('-r', '--in-reply-to', type='string', action='store',
41 help="Message ID that this series is in reply to")
Simon Glass0d24de92012-01-14 15:12:45 +000042parser.add_option('-s', '--start', dest='start', type='int',
43 default=0, help='Commit to start creating patches from (0 = HEAD)')
Simon Glassa1318f72013-03-26 13:09:42 +000044parser.add_option('-t', '--ignore-bad-tags', action='store_true',
45 default=False, help='Ignore bad tags / aliases')
46parser.add_option('--test', action='store_true', dest='test',
Simon Glass0d24de92012-01-14 15:12:45 +000047 default=False, help='run tests')
48parser.add_option('-v', '--verbose', action='store_true', dest='verbose',
49 default=False, help='Verbose output of errors and warnings')
50parser.add_option('--cc-cmd', dest='cc_cmd', type='string', action='store',
51 default=None, help='Output cc list for patch file (used by git)')
Vadim Bendebury99adf6e2013-01-09 16:00:10 +000052parser.add_option('--no-check', action='store_false', dest='check_patch',
53 default=True,
54 help="Don't check for patch compliance")
Simon Glass0d24de92012-01-14 15:12:45 +000055parser.add_option('--no-tags', action='store_false', dest='process_tags',
56 default=True, help="Don't process subject tags as aliaes")
57
Masahiro Yamadae0a4d062014-08-21 14:28:03 +090058parser.usage += """
Simon Glass0d24de92012-01-14 15:12:45 +000059
60Create patches from commits in a branch, check them and email them as
Simon Glassca706e72013-03-26 13:09:45 +000061specified by tags you place in the commits. Use -n to do a dry run first."""
Simon Glass0d24de92012-01-14 15:12:45 +000062
Doug Anderson8568bae2012-12-03 14:43:17 +000063
Doug Andersona1dcee82012-12-03 14:43:18 +000064# Parse options twice: first to get the project and second to handle
65# defaults properly (which depends on project).
66(options, args) = parser.parse_args()
67settings.Setup(parser, options.project, '')
Simon Glass0d24de92012-01-14 15:12:45 +000068(options, args) = parser.parse_args()
69
70# Run our meagre tests
71if options.test:
72 import doctest
73
74 sys.argv = [sys.argv[0]]
75 suite = unittest.TestLoader().loadTestsFromTestCase(test.TestPatch)
76 result = unittest.TestResult()
77 suite.run(result)
78
Doug Anderson656cffe2012-12-03 14:43:19 +000079 for module in ['gitutil', 'settings']:
80 suite = doctest.DocTestSuite(module)
81 suite.run(result)
Simon Glass0d24de92012-01-14 15:12:45 +000082
83 # TODO: Surely we can just 'print' result?
84 print result
85 for test, err in result.errors:
86 print err
87 for test, err in result.failures:
88 print err
89
90# Called from git with a patch filename as argument
91# Printout a list of additional CC recipients for this patch
92elif options.cc_cmd:
93 fd = open(options.cc_cmd, 'r')
94 re_line = re.compile('(\S*) (.*)')
95 for line in fd.readlines():
96 match = re_line.match(line)
97 if match and match.group(1) == args[0]:
98 for cc in match.group(2).split(', '):
99 cc = cc.strip()
100 if cc:
101 print cc
102 fd.close()
103
104elif options.full_help:
105 pager = os.getenv('PAGER')
106 if not pager:
107 pager = 'more'
108 fname = os.path.join(os.path.dirname(sys.argv[0]), 'README')
109 command.Run(pager, fname)
110
111# Process commits, produce patches files, check them, email them
112else:
113 gitutil.Setup()
114
115 if options.count == -1:
116 # Work out how many patches to send if we can
117 options.count = gitutil.CountCommitsToBranch() - options.start
118
119 col = terminal.Color()
120 if not options.count:
121 str = 'No commits found to process - please use -c flag'
Masahiro Yamada31e21412014-08-16 00:59:26 +0900122 sys.exit(col.Color(col.RED, str))
Simon Glass0d24de92012-01-14 15:12:45 +0000123
124 # Read the metadata from the commits
125 if options.count:
126 series = patchstream.GetMetaData(options.start, options.count)
127 cover_fname, args = gitutil.CreatePatches(options.start, options.count,
128 series)
129
130 # Fix up the patch files to our liking, and insert the cover letter
131 series = patchstream.FixPatches(series, args)
132 if series and cover_fname and series.get('cover'):
133 patchstream.InsertCoverLetter(cover_fname, series, options.count)
134
135 # Do a few checks on the series
136 series.DoChecks()
137
138 # Check the patches, and run them through 'git am' just to be sure
Vadim Bendebury99adf6e2013-01-09 16:00:10 +0000139 if options.check_patch:
140 ok = checkpatch.CheckPatches(options.verbose, args)
141 else:
142 ok = True
Simon Glass0d24de92012-01-14 15:12:45 +0000143
Simon Glassa1318f72013-03-26 13:09:42 +0000144 cc_file = series.MakeCcFile(options.process_tags, cover_fname,
145 not options.ignore_bad_tags)
Doug Andersond94566a2012-12-03 14:40:42 +0000146
Simon Glass0d24de92012-01-14 15:12:45 +0000147 # Email the patches out (giving the user time to check / cancel)
148 cmd = ''
Vadim Bendebury1f727882014-09-04 10:45:13 -0700149 its_a_go = ok or options.ignore_errors
150 if its_a_go:
Simon Glass0d24de92012-01-14 15:12:45 +0000151 cmd = gitutil.EmailPatches(series, cover_fname, args,
Simon Glassa1318f72013-03-26 13:09:42 +0000152 options.dry_run, not options.ignore_bad_tags, cc_file,
153 in_reply_to=options.in_reply_to)
Vadim Bendebury1f727882014-09-04 10:45:13 -0700154 else:
155 print col.Color(col.RED, "Not sending emails due to errors/warnings")
Simon Glass0d24de92012-01-14 15:12:45 +0000156
157 # For a dry run, just show our actions as a sanity check
158 if options.dry_run:
159 series.ShowActions(args, cmd, options.process_tags)
Vadim Bendebury1f727882014-09-04 10:45:13 -0700160 if not its_a_go:
161 print col.Color(col.RED, "Email would not be sent")
Doug Andersond94566a2012-12-03 14:40:42 +0000162
163 os.remove(cc_file)