blob: c4e4d80d4250e7e254d4dd360ef118dad651c2bb [file] [log] [blame]
Simon Glassefeac062019-10-31 07:42:52 -06001#!/usr/bin/env python3
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
Simon Glasseb101ac2020-07-05 21:41:53 -06009from argparse import ArgumentParser
Simon Glass26132882012-01-14 15:12:45 +000010import os
11import re
12import sys
Simon Glassdbac7162020-07-05 21:41:59 -060013import traceback
Simon Glass26132882012-01-14 15:12:45 +000014import unittest
15
Simon Glassbdaad402020-04-17 18:08:52 -060016if __name__ == "__main__":
Simon Glass42143162020-04-17 18:09:05 -060017 # Allow 'from patman import xxx to work'
Simon Glassbdaad402020-04-17 18:08:52 -060018 our_path = os.path.dirname(os.path.realpath(__file__))
19 sys.path.append(os.path.join(our_path, '..'))
20
Simon Glass26132882012-01-14 15:12:45 +000021# Our modules
Simon Glassa997ea52020-04-17 18:09:04 -060022from patman import command
Simon Glass24725af2020-07-05 21:41:49 -060023from patman import control
Simon Glassa997ea52020-04-17 18:09:04 -060024from patman import gitutil
Simon Glassa997ea52020-04-17 18:09:04 -060025from patman import project
26from patman import settings
27from patman import terminal
Simon Glassbddb4382020-07-05 21:41:48 -060028from patman import test_util
Simon Glasscf5f0b52020-06-14 10:54:04 -060029from patman import test_checkpatch
Simon Glass26132882012-01-14 15:12:45 +000030
Simon Glasseb101ac2020-07-05 21:41:53 -060031epilog = '''Create patches from commits in a branch, check them and email them
32as specified by tags you place in the commits. Use -n to do a dry run first.'''
Simon Glass9c501e12020-07-05 21:41:55 -060033
Simon Glasseb101ac2020-07-05 21:41:53 -060034parser = ArgumentParser(epilog=epilog)
Simon Glass1ee91c12020-11-03 13:54:10 -070035parser.add_argument('-b', '--branch', type=str,
36 help="Branch to process (by default, the current branch)")
37parser.add_argument('-c', '--count', dest='count', type=int,
38 default=-1, help='Automatically create patches from top n commits')
39parser.add_argument('-e', '--end', type=int, default=0,
40 help='Commits to skip at end of patch list')
41parser.add_argument('-D', '--debug', action='store_true',
42 help='Enabling debugging (provides a full traceback on error)')
43parser.add_argument('-p', '--project', default=project.DetectProject(),
44 help="Project name; affects default option values and "
45 "aliases [default: %(default)s]")
Simon Glass3d80d792020-11-03 13:54:15 -070046parser.add_argument('-P', '--patchwork-url',
47 default='https://patchwork.ozlabs.org',
48 help='URL of patchwork server [default: %(default)s]')
Simon Glass1ee91c12020-11-03 13:54:10 -070049parser.add_argument('-s', '--start', dest='start', type=int,
50 default=0, help='Commit to start creating patches from (0 = HEAD)')
51parser.add_argument('-v', '--verbose', action='store_true', dest='verbose',
52 default=False, help='Verbose output of errors and warnings')
53parser.add_argument('-H', '--full-help', action='store_true', dest='full_help',
54 default=False, help='Display the README file')
55
Simon Glassecb09da2020-07-05 21:41:54 -060056subparsers = parser.add_subparsers(dest='cmd')
57send = subparsers.add_parser('send')
Simon Glassecb09da2020-07-05 21:41:54 -060058send.add_argument('-i', '--ignore-errors', action='store_true',
Simon Glass26132882012-01-14 15:12:45 +000059 dest='ignore_errors', default=False,
60 help='Send patches email even if patch errors are found')
Simon Glassecb09da2020-07-05 21:41:54 -060061send.add_argument('-l', '--limit-cc', dest='limit', type=int, default=None,
62 help='Limit the cc list to LIMIT entries [default: %(default)s]')
63send.add_argument('-m', '--no-maintainers', action='store_false',
Simon Glass46b84d82014-09-14 20:23:17 -060064 dest='add_maintainers', default=True,
65 help="Don't cc the file maintainers automatically")
Simon Glassecb09da2020-07-05 21:41:54 -060066send.add_argument('-n', '--dry-run', action='store_true', dest='dry_run',
Simon Glass33bdd9e2013-03-26 13:09:45 +000067 default=False, help="Do a dry run (create but don't email patches)")
Simon Glassecb09da2020-07-05 21:41:54 -060068send.add_argument('-r', '--in-reply-to', type=str, action='store',
Doug Anderson06f27ac2013-03-17 10:31:04 +000069 help="Message ID that this series is in reply to")
Simon Glassecb09da2020-07-05 21:41:54 -060070send.add_argument('-t', '--ignore-bad-tags', action='store_true',
71 default=False, help='Ignore bad tags / aliases')
Simon Glassecb09da2020-07-05 21:41:54 -060072send.add_argument('-T', '--thread', action='store_true', dest='thread',
73 default=False, help='Create patches as a single thread')
74send.add_argument('--cc-cmd', dest='cc_cmd', type=str, action='store',
Simon Glass26132882012-01-14 15:12:45 +000075 default=None, help='Output cc list for patch file (used by git)')
Simon Glassecb09da2020-07-05 21:41:54 -060076send.add_argument('--no-binary', action='store_true', dest='ignore_binary',
77 default=False,
78 help="Do not output contents of changes in binary files")
79send.add_argument('--no-check', action='store_false', dest='check_patch',
80 default=True,
81 help="Don't check for patch compliance")
82send.add_argument('--no-tags', action='store_false', dest='process_tags',
83 default=True, help="Don't process subject tags as aliases")
Philipp Tomsich858531a2020-11-24 18:14:52 +010084send.add_argument('--no-signoff', action='store_false', dest='add_signoff',
85 default=True, help="Don't add Signed-off-by to patches")
Simon Glassecb09da2020-07-05 21:41:54 -060086send.add_argument('--smtp-server', type=str,
87 help="Specify the SMTP server to 'git send-email'")
Tom Rini5a9ecb22020-07-24 08:42:06 -040088
Simon Glassecb09da2020-07-05 21:41:54 -060089send.add_argument('patchfiles', nargs='*')
Simon Glass9c501e12020-07-05 21:41:55 -060090
Simon Glass109e84e2020-07-05 21:41:55 -060091test_parser = subparsers.add_parser('test', help='Run tests')
Simon Glass3b762cc2020-10-29 21:46:28 -060092test_parser.add_argument('testname', type=str, default=None, nargs='?',
93 help="Specify the test to run")
Simon Glass109e84e2020-07-05 21:41:55 -060094
Simon Glass3db916d2020-10-29 21:46:35 -060095status = subparsers.add_parser('status',
96 help='Check status of patches in patchwork')
Simon Glass2112d072020-10-29 21:46:38 -060097status.add_argument('-C', '--show-comments', action='store_true',
98 help='Show comments from each patch')
Simon Glassd0a0a582020-10-29 21:46:36 -060099status.add_argument('-d', '--dest-branch', type=str,
100 help='Name of branch to create with collected responses')
101status.add_argument('-f', '--force', action='store_true',
102 help='Force overwriting an existing branch')
Simon Glass3db916d2020-10-29 21:46:35 -0600103
Doug Anderson31ffd7f2012-12-03 14:43:18 +0000104# Parse options twice: first to get the project and second to handle
Simon Glass1ee91c12020-11-03 13:54:10 -0700105# defaults properly (which depends on project)
106# Use parse_known_args() in case 'cmd' is omitted
Simon Glasseb101ac2020-07-05 21:41:53 -0600107argv = sys.argv[1:]
Simon Glass1ee91c12020-11-03 13:54:10 -0700108args, rest = parser.parse_known_args(argv)
Simon Glassecb09da2020-07-05 21:41:54 -0600109if hasattr(args, 'project'):
Simon Glass1ee91c12020-11-03 13:54:10 -0700110 settings.Setup(gitutil, parser, args.project, '')
111 args, rest = parser.parse_known_args(argv)
112
113# If we have a command, it is safe to parse all arguments
114if args.cmd:
115 args = parser.parse_args(argv)
116else:
117 # No command, so insert it after the known arguments and before the ones
118 # that presumably relate to the 'send' subcommand
119 nargs = len(rest)
120 argv = argv[:-nargs] + ['send'] + rest
Simon Glassecb09da2020-07-05 21:41:54 -0600121 args = parser.parse_args(argv)
Simon Glass26132882012-01-14 15:12:45 +0000122
Simon Glass2b68b362015-07-30 13:47:41 -0600123if __name__ != "__main__":
124 pass
125
Simon Glassdbac7162020-07-05 21:41:59 -0600126if not args.debug:
127 sys.tracebacklimit = 0
128
Simon Glass26132882012-01-14 15:12:45 +0000129# Run our meagre tests
Simon Glass109e84e2020-07-05 21:41:55 -0600130if args.cmd == 'test':
Simon Glass26132882012-01-14 15:12:45 +0000131 import doctest
Simon Glassa997ea52020-04-17 18:09:04 -0600132 from patman import func_test
Simon Glass26132882012-01-14 15:12:45 +0000133
134 sys.argv = [sys.argv[0]]
Simon Glass26132882012-01-14 15:12:45 +0000135 result = unittest.TestResult()
Simon Glass3b762cc2020-10-29 21:46:28 -0600136 suite = unittest.TestSuite()
137 loader = unittest.TestLoader()
Simon Glasscf5f0b52020-06-14 10:54:04 -0600138 for module in (test_checkpatch.TestPatch, func_test.TestFunctional):
Simon Glass3b762cc2020-10-29 21:46:28 -0600139 if args.testname:
140 try:
141 suite.addTests(loader.loadTestsFromName(args.testname, module))
142 except AttributeError:
143 continue
144 else:
145 suite.addTests(loader.loadTestsFromTestCase(module))
146 suite.run(result)
Simon Glass26132882012-01-14 15:12:45 +0000147
Simon Glass5f9325d2020-04-09 15:08:40 -0600148 for module in ['gitutil', 'settings', 'terminal']:
Doug Anderson06a95152012-12-03 14:43:19 +0000149 suite = doctest.DocTestSuite(module)
150 suite.run(result)
Simon Glass26132882012-01-14 15:12:45 +0000151
Simon Glass3b762cc2020-10-29 21:46:28 -0600152 sys.exit(test_util.ReportResult('patman', args.testname, result))
Tom Rini5a9ecb22020-07-24 08:42:06 -0400153
Simon Glass109e84e2020-07-05 21:41:55 -0600154# Process commits, produce patches files, check them, email them
155elif args.cmd == 'send':
156 # Called from git with a patch filename as argument
157 # Printout a list of additional CC recipients for this patch
158 if args.cc_cmd:
159 fd = open(args.cc_cmd, 'r')
160 re_line = re.compile('(\S*) (.*)')
161 for line in fd.readlines():
162 match = re_line.match(line)
163 if match and match.group(1) == args.patchfiles[0]:
164 for cc in match.group(2).split('\0'):
165 cc = cc.strip()
166 if cc:
167 print(cc)
168 fd.close()
Tom Rini5a9ecb22020-07-24 08:42:06 -0400169
Simon Glass109e84e2020-07-05 21:41:55 -0600170 elif args.full_help:
171 pager = os.getenv('PAGER')
172 if not pager:
173 pager = 'more'
174 fname = os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])),
175 'README')
176 command.Run(pager, fname)
Simon Glass26132882012-01-14 15:12:45 +0000177
Simon Glass109e84e2020-07-05 21:41:55 -0600178 else:
179 control.send(args)
Simon Glass3db916d2020-10-29 21:46:35 -0600180
181# Check status of patches in patchwork
182elif args.cmd == 'status':
183 ret_code = 0
184 try:
Simon Glassd0a0a582020-10-29 21:46:36 -0600185 control.patchwork_status(args.branch, args.count, args.start, args.end,
Simon Glass2112d072020-10-29 21:46:38 -0600186 args.dest_branch, args.force,
Simon Glass3d80d792020-11-03 13:54:15 -0700187 args.show_comments, args.patchwork_url)
Simon Glass3db916d2020-10-29 21:46:35 -0600188 except Exception as e:
189 terminal.Print('patman: %s: %s' % (type(e).__name__, e),
190 colour=terminal.Color.RED)
191 if args.debug:
192 print()
193 traceback.print_exc()
194 ret_code = 1
195 sys.exit(ret_code)