blob: e5be28e3316cf6392ae2690725efe11b1d221264 [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
Nicolas Boichat9bbcf9b2021-02-17 18:41:43 +080012import shutil
Simon Glass26132882012-01-14 15:12:45 +000013import sys
Simon Glassdbac7162020-07-05 21:41:59 -060014import traceback
Simon Glass26132882012-01-14 15:12:45 +000015import unittest
16
Simon Glassbdaad402020-04-17 18:08:52 -060017if __name__ == "__main__":
Simon Glass42143162020-04-17 18:09:05 -060018 # Allow 'from patman import xxx to work'
Simon Glassbdaad402020-04-17 18:08:52 -060019 our_path = os.path.dirname(os.path.realpath(__file__))
20 sys.path.append(os.path.join(our_path, '..'))
21
Simon Glass26132882012-01-14 15:12:45 +000022# Our modules
Simon Glassa997ea52020-04-17 18:09:04 -060023from patman import command
Simon Glass24725af2020-07-05 21:41:49 -060024from patman import control
Simon Glassa997ea52020-04-17 18:09:04 -060025from patman import gitutil
Simon Glassa997ea52020-04-17 18:09:04 -060026from patman import project
27from patman import settings
28from patman import terminal
Simon Glassbddb4382020-07-05 21:41:48 -060029from patman import test_util
Simon Glasscf5f0b52020-06-14 10:54:04 -060030from patman import test_checkpatch
Paul Barker25ecd972021-09-08 12:38:01 +010031from patman import tools
Simon Glass26132882012-01-14 15:12:45 +000032
Simon Glasseb101ac2020-07-05 21:41:53 -060033epilog = '''Create patches from commits in a branch, check them and email them
34as specified by tags you place in the commits. Use -n to do a dry run first.'''
Simon Glass9c501e12020-07-05 21:41:55 -060035
Simon Glasseb101ac2020-07-05 21:41:53 -060036parser = ArgumentParser(epilog=epilog)
Simon Glass1ee91c12020-11-03 13:54:10 -070037parser.add_argument('-b', '--branch', type=str,
38 help="Branch to process (by default, the current branch)")
39parser.add_argument('-c', '--count', dest='count', type=int,
40 default=-1, help='Automatically create patches from top n commits')
41parser.add_argument('-e', '--end', type=int, default=0,
42 help='Commits to skip at end of patch list')
43parser.add_argument('-D', '--debug', action='store_true',
44 help='Enabling debugging (provides a full traceback on error)')
45parser.add_argument('-p', '--project', default=project.DetectProject(),
46 help="Project name; affects default option values and "
47 "aliases [default: %(default)s]")
Simon Glass3d80d792020-11-03 13:54:15 -070048parser.add_argument('-P', '--patchwork-url',
49 default='https://patchwork.ozlabs.org',
50 help='URL of patchwork server [default: %(default)s]')
Simon Glass1ee91c12020-11-03 13:54:10 -070051parser.add_argument('-s', '--start', dest='start', type=int,
52 default=0, help='Commit to start creating patches from (0 = HEAD)')
53parser.add_argument('-v', '--verbose', action='store_true', dest='verbose',
54 default=False, help='Verbose output of errors and warnings')
55parser.add_argument('-H', '--full-help', action='store_true', dest='full_help',
56 default=False, help='Display the README file')
57
Simon Glassecb09da2020-07-05 21:41:54 -060058subparsers = parser.add_subparsers(dest='cmd')
59send = subparsers.add_parser('send')
Simon Glassecb09da2020-07-05 21:41:54 -060060send.add_argument('-i', '--ignore-errors', action='store_true',
Simon Glass26132882012-01-14 15:12:45 +000061 dest='ignore_errors', default=False,
62 help='Send patches email even if patch errors are found')
Simon Glassecb09da2020-07-05 21:41:54 -060063send.add_argument('-l', '--limit-cc', dest='limit', type=int, default=None,
64 help='Limit the cc list to LIMIT entries [default: %(default)s]')
65send.add_argument('-m', '--no-maintainers', action='store_false',
Simon Glass46b84d82014-09-14 20:23:17 -060066 dest='add_maintainers', default=True,
67 help="Don't cc the file maintainers automatically")
Simon Glassecb09da2020-07-05 21:41:54 -060068send.add_argument('-n', '--dry-run', action='store_true', dest='dry_run',
Simon Glass33bdd9e2013-03-26 13:09:45 +000069 default=False, help="Do a dry run (create but don't email patches)")
Simon Glassecb09da2020-07-05 21:41:54 -060070send.add_argument('-r', '--in-reply-to', type=str, action='store',
Doug Anderson06f27ac2013-03-17 10:31:04 +000071 help="Message ID that this series is in reply to")
Simon Glassecb09da2020-07-05 21:41:54 -060072send.add_argument('-t', '--ignore-bad-tags', action='store_true',
Simon Glass1f975b92021-01-23 08:56:15 -070073 default=False,
74 help='Ignore bad tags / aliases (default=warn)')
Simon Glassecb09da2020-07-05 21:41:54 -060075send.add_argument('-T', '--thread', action='store_true', dest='thread',
76 default=False, help='Create patches as a single thread')
77send.add_argument('--cc-cmd', dest='cc_cmd', type=str, action='store',
Simon Glass26132882012-01-14 15:12:45 +000078 default=None, help='Output cc list for patch file (used by git)')
Simon Glassecb09da2020-07-05 21:41:54 -060079send.add_argument('--no-binary', action='store_true', dest='ignore_binary',
80 default=False,
81 help="Do not output contents of changes in binary files")
82send.add_argument('--no-check', action='store_false', dest='check_patch',
83 default=True,
84 help="Don't check for patch compliance")
85send.add_argument('--no-tags', action='store_false', dest='process_tags',
86 default=True, help="Don't process subject tags as aliases")
Philipp Tomsich858531a2020-11-24 18:14:52 +010087send.add_argument('--no-signoff', action='store_false', dest='add_signoff',
88 default=True, help="Don't add Signed-off-by to patches")
Simon Glassecb09da2020-07-05 21:41:54 -060089send.add_argument('--smtp-server', type=str,
90 help="Specify the SMTP server to 'git send-email'")
Tom Rini5a9ecb22020-07-24 08:42:06 -040091
Simon Glassecb09da2020-07-05 21:41:54 -060092send.add_argument('patchfiles', nargs='*')
Simon Glass9c501e12020-07-05 21:41:55 -060093
Simon Glass109e84e2020-07-05 21:41:55 -060094test_parser = subparsers.add_parser('test', help='Run tests')
Simon Glass3b762cc2020-10-29 21:46:28 -060095test_parser.add_argument('testname', type=str, default=None, nargs='?',
96 help="Specify the test to run")
Simon Glass109e84e2020-07-05 21:41:55 -060097
Simon Glass3db916d2020-10-29 21:46:35 -060098status = subparsers.add_parser('status',
99 help='Check status of patches in patchwork')
Simon Glass2112d072020-10-29 21:46:38 -0600100status.add_argument('-C', '--show-comments', action='store_true',
101 help='Show comments from each patch')
Simon Glassd0a0a582020-10-29 21:46:36 -0600102status.add_argument('-d', '--dest-branch', type=str,
103 help='Name of branch to create with collected responses')
104status.add_argument('-f', '--force', action='store_true',
105 help='Force overwriting an existing branch')
Simon Glass3db916d2020-10-29 21:46:35 -0600106
Doug Anderson31ffd7f2012-12-03 14:43:18 +0000107# Parse options twice: first to get the project and second to handle
Simon Glass1ee91c12020-11-03 13:54:10 -0700108# defaults properly (which depends on project)
109# Use parse_known_args() in case 'cmd' is omitted
Simon Glasseb101ac2020-07-05 21:41:53 -0600110argv = sys.argv[1:]
Simon Glass1ee91c12020-11-03 13:54:10 -0700111args, rest = parser.parse_known_args(argv)
Simon Glassecb09da2020-07-05 21:41:54 -0600112if hasattr(args, 'project'):
Simon Glass1ee91c12020-11-03 13:54:10 -0700113 settings.Setup(gitutil, parser, args.project, '')
114 args, rest = parser.parse_known_args(argv)
115
116# If we have a command, it is safe to parse all arguments
117if args.cmd:
118 args = parser.parse_args(argv)
119else:
120 # No command, so insert it after the known arguments and before the ones
121 # that presumably relate to the 'send' subcommand
122 nargs = len(rest)
123 argv = argv[:-nargs] + ['send'] + rest
Simon Glassecb09da2020-07-05 21:41:54 -0600124 args = parser.parse_args(argv)
Simon Glass26132882012-01-14 15:12:45 +0000125
Simon Glass2b68b362015-07-30 13:47:41 -0600126if __name__ != "__main__":
127 pass
128
Simon Glassdbac7162020-07-05 21:41:59 -0600129if not args.debug:
130 sys.tracebacklimit = 0
131
Simon Glass26132882012-01-14 15:12:45 +0000132# Run our meagre tests
Simon Glass109e84e2020-07-05 21:41:55 -0600133if args.cmd == 'test':
Simon Glass26132882012-01-14 15:12:45 +0000134 import doctest
Simon Glassa997ea52020-04-17 18:09:04 -0600135 from patman import func_test
Simon Glass26132882012-01-14 15:12:45 +0000136
137 sys.argv = [sys.argv[0]]
Simon Glass26132882012-01-14 15:12:45 +0000138 result = unittest.TestResult()
Simon Glass3b762cc2020-10-29 21:46:28 -0600139 suite = unittest.TestSuite()
140 loader = unittest.TestLoader()
Simon Glasscf5f0b52020-06-14 10:54:04 -0600141 for module in (test_checkpatch.TestPatch, func_test.TestFunctional):
Simon Glass3b762cc2020-10-29 21:46:28 -0600142 if args.testname:
143 try:
144 suite.addTests(loader.loadTestsFromName(args.testname, module))
145 except AttributeError:
146 continue
147 else:
148 suite.addTests(loader.loadTestsFromTestCase(module))
149 suite.run(result)
Simon Glass26132882012-01-14 15:12:45 +0000150
Simon Glass5f9325d2020-04-09 15:08:40 -0600151 for module in ['gitutil', 'settings', 'terminal']:
Doug Anderson06a95152012-12-03 14:43:19 +0000152 suite = doctest.DocTestSuite(module)
153 suite.run(result)
Simon Glass26132882012-01-14 15:12:45 +0000154
Simon Glass3b762cc2020-10-29 21:46:28 -0600155 sys.exit(test_util.ReportResult('patman', args.testname, result))
Tom Rini5a9ecb22020-07-24 08:42:06 -0400156
Simon Glass109e84e2020-07-05 21:41:55 -0600157# Process commits, produce patches files, check them, email them
158elif args.cmd == 'send':
159 # Called from git with a patch filename as argument
160 # Printout a list of additional CC recipients for this patch
161 if args.cc_cmd:
162 fd = open(args.cc_cmd, 'r')
163 re_line = re.compile('(\S*) (.*)')
164 for line in fd.readlines():
165 match = re_line.match(line)
166 if match and match.group(1) == args.patchfiles[0]:
167 for cc in match.group(2).split('\0'):
168 cc = cc.strip()
169 if cc:
170 print(cc)
171 fd.close()
Tom Rini5a9ecb22020-07-24 08:42:06 -0400172
Simon Glass109e84e2020-07-05 21:41:55 -0600173 elif args.full_help:
Paul Barker25ecd972021-09-08 12:38:01 +0100174 tools.PrintFullHelp(
175 os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])), 'README')
176 )
Simon Glass26132882012-01-14 15:12:45 +0000177
Simon Glass109e84e2020-07-05 21:41:55 -0600178 else:
Simon Glass1f975b92021-01-23 08:56:15 -0700179 # If we are not processing tags, no need to warning about bad ones
180 if not args.process_tags:
181 args.ignore_bad_tags = True
Simon Glass109e84e2020-07-05 21:41:55 -0600182 control.send(args)
Simon Glass3db916d2020-10-29 21:46:35 -0600183
184# Check status of patches in patchwork
185elif args.cmd == 'status':
186 ret_code = 0
187 try:
Simon Glassd0a0a582020-10-29 21:46:36 -0600188 control.patchwork_status(args.branch, args.count, args.start, args.end,
Simon Glass2112d072020-10-29 21:46:38 -0600189 args.dest_branch, args.force,
Simon Glass3d80d792020-11-03 13:54:15 -0700190 args.show_comments, args.patchwork_url)
Simon Glass3db916d2020-10-29 21:46:35 -0600191 except Exception as e:
192 terminal.Print('patman: %s: %s' % (type(e).__name__, e),
193 colour=terminal.Color.RED)
194 if args.debug:
195 print()
196 traceback.print_exc()
197 ret_code = 1
198 sys.exit(ret_code)