blob: 04e37a5931394d18691eb451512a3bbba9134196 [file] [log] [blame]
Simon Glasse3986d92019-10-31 07:42:52 -06001#!/usr/bin/env python3
Tom Rini83d290c2018-05-06 17:58:06 -04002# SPDX-License-Identifier: GPL-2.0+
Simon Glass0d24de92012-01-14 15:12:45 +00003#
4# Copyright (c) 2011 The Chromium OS Authors.
5#
Simon Glass0d24de92012-01-14 15:12:45 +00006
7"""See README for more information"""
8
Simon Glassfda1e372020-07-05 21:41:53 -06009from argparse import ArgumentParser
Simon Glass0d24de92012-01-14 15:12:45 +000010import os
11import re
Nicolas Boichatb1b6efc2021-02-17 18:41:43 +080012import shutil
Simon Glass0d24de92012-01-14 15:12:45 +000013import sys
Simon Glassc9360f162020-07-05 21:41:59 -060014import traceback
Simon Glass0d24de92012-01-14 15:12:45 +000015import unittest
16
Simon Glass0d7a8c42020-04-17 18:08:52 -060017if __name__ == "__main__":
Simon Glassb4fa9492020-04-17 18:09:05 -060018 # Allow 'from patman import xxx to work'
Simon Glass0d7a8c42020-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 Glass0d24de92012-01-14 15:12:45 +000022# Our modules
Simon Glassbf776672020-04-17 18:09:04 -060023from patman import command
Simon Glass7d5b04e2020-07-05 21:41:49 -060024from patman import control
Simon Glassbf776672020-04-17 18:09:04 -060025from patman import gitutil
Simon Glassbf776672020-04-17 18:09:04 -060026from patman import project
27from patman import settings
28from patman import terminal
Simon Glass0b3d24a2020-07-05 21:41:48 -060029from patman import test_util
Simon Glass40d97342020-06-14 10:54:04 -060030from patman import test_checkpatch
Simon Glass0d24de92012-01-14 15:12:45 +000031
Simon Glassfda1e372020-07-05 21:41:53 -060032epilog = '''Create patches from commits in a branch, check them and email them
33as specified by tags you place in the commits. Use -n to do a dry run first.'''
Simon Glass57374b02020-07-05 21:41:55 -060034
Simon Glassfda1e372020-07-05 21:41:53 -060035parser = ArgumentParser(epilog=epilog)
Simon Glass46007672020-11-03 13:54:10 -070036parser.add_argument('-b', '--branch', type=str,
37 help="Branch to process (by default, the current branch)")
38parser.add_argument('-c', '--count', dest='count', type=int,
39 default=-1, help='Automatically create patches from top n commits')
40parser.add_argument('-e', '--end', type=int, default=0,
41 help='Commits to skip at end of patch list')
42parser.add_argument('-D', '--debug', action='store_true',
43 help='Enabling debugging (provides a full traceback on error)')
44parser.add_argument('-p', '--project', default=project.DetectProject(),
45 help="Project name; affects default option values and "
46 "aliases [default: %(default)s]")
Simon Glassa55be352020-11-03 13:54:15 -070047parser.add_argument('-P', '--patchwork-url',
48 default='https://patchwork.ozlabs.org',
49 help='URL of patchwork server [default: %(default)s]')
Simon Glass46007672020-11-03 13:54:10 -070050parser.add_argument('-s', '--start', dest='start', type=int,
51 default=0, help='Commit to start creating patches from (0 = HEAD)')
52parser.add_argument('-v', '--verbose', action='store_true', dest='verbose',
53 default=False, help='Verbose output of errors and warnings')
54parser.add_argument('-H', '--full-help', action='store_true', dest='full_help',
55 default=False, help='Display the README file')
56
Simon Glassc4e79022020-07-05 21:41:54 -060057subparsers = parser.add_subparsers(dest='cmd')
58send = subparsers.add_parser('send')
Simon Glassc4e79022020-07-05 21:41:54 -060059send.add_argument('-i', '--ignore-errors', action='store_true',
Simon Glass0d24de92012-01-14 15:12:45 +000060 dest='ignore_errors', default=False,
61 help='Send patches email even if patch errors are found')
Simon Glassc4e79022020-07-05 21:41:54 -060062send.add_argument('-l', '--limit-cc', dest='limit', type=int, default=None,
63 help='Limit the cc list to LIMIT entries [default: %(default)s]')
64send.add_argument('-m', '--no-maintainers', action='store_false',
Simon Glass983a2742014-09-14 20:23:17 -060065 dest='add_maintainers', default=True,
66 help="Don't cc the file maintainers automatically")
Simon Glassc4e79022020-07-05 21:41:54 -060067send.add_argument('-n', '--dry-run', action='store_true', dest='dry_run',
Simon Glassca706e72013-03-26 13:09:45 +000068 default=False, help="Do a dry run (create but don't email patches)")
Simon Glassc4e79022020-07-05 21:41:54 -060069send.add_argument('-r', '--in-reply-to', type=str, action='store',
Doug Anderson6d819922013-03-17 10:31:04 +000070 help="Message ID that this series is in reply to")
Simon Glassc4e79022020-07-05 21:41:54 -060071send.add_argument('-t', '--ignore-bad-tags', action='store_true',
Simon Glass0fb560d2021-01-23 08:56:15 -070072 default=False,
73 help='Ignore bad tags / aliases (default=warn)')
Simon Glassc4e79022020-07-05 21:41:54 -060074send.add_argument('-T', '--thread', action='store_true', dest='thread',
75 default=False, help='Create patches as a single thread')
76send.add_argument('--cc-cmd', dest='cc_cmd', type=str, action='store',
Simon Glass0d24de92012-01-14 15:12:45 +000077 default=None, help='Output cc list for patch file (used by git)')
Simon Glassc4e79022020-07-05 21:41:54 -060078send.add_argument('--no-binary', action='store_true', dest='ignore_binary',
79 default=False,
80 help="Do not output contents of changes in binary files")
81send.add_argument('--no-check', action='store_false', dest='check_patch',
82 default=True,
83 help="Don't check for patch compliance")
84send.add_argument('--no-tags', action='store_false', dest='process_tags',
85 default=True, help="Don't process subject tags as aliases")
Philipp Tomsichb3aff152020-11-24 18:14:52 +010086send.add_argument('--no-signoff', action='store_false', dest='add_signoff',
87 default=True, help="Don't add Signed-off-by to patches")
Simon Glassc4e79022020-07-05 21:41:54 -060088send.add_argument('--smtp-server', type=str,
89 help="Specify the SMTP server to 'git send-email'")
Simon Glass0d24de92012-01-14 15:12:45 +000090
Simon Glassc4e79022020-07-05 21:41:54 -060091send.add_argument('patchfiles', nargs='*')
Simon Glass57374b02020-07-05 21:41:55 -060092
Simon Glass6bb74de2020-07-05 21:41:55 -060093test_parser = subparsers.add_parser('test', help='Run tests')
Simon Glass4af99872020-10-29 21:46:28 -060094test_parser.add_argument('testname', type=str, default=None, nargs='?',
95 help="Specify the test to run")
Simon Glass6bb74de2020-07-05 21:41:55 -060096
Simon Glassdc6df972020-10-29 21:46:35 -060097status = subparsers.add_parser('status',
98 help='Check status of patches in patchwork')
Simon Glassdc4b2a92020-10-29 21:46:38 -060099status.add_argument('-C', '--show-comments', action='store_true',
100 help='Show comments from each patch')
Simon Glass8f9ba3a2020-10-29 21:46:36 -0600101status.add_argument('-d', '--dest-branch', type=str,
102 help='Name of branch to create with collected responses')
103status.add_argument('-f', '--force', action='store_true',
104 help='Force overwriting an existing branch')
Simon Glassdc6df972020-10-29 21:46:35 -0600105
Doug Andersona1dcee82012-12-03 14:43:18 +0000106# Parse options twice: first to get the project and second to handle
Simon Glass46007672020-11-03 13:54:10 -0700107# defaults properly (which depends on project)
108# Use parse_known_args() in case 'cmd' is omitted
Simon Glassfda1e372020-07-05 21:41:53 -0600109argv = sys.argv[1:]
Simon Glass46007672020-11-03 13:54:10 -0700110args, rest = parser.parse_known_args(argv)
Simon Glassc4e79022020-07-05 21:41:54 -0600111if hasattr(args, 'project'):
Simon Glass46007672020-11-03 13:54:10 -0700112 settings.Setup(gitutil, parser, args.project, '')
113 args, rest = parser.parse_known_args(argv)
114
115# If we have a command, it is safe to parse all arguments
116if args.cmd:
117 args = parser.parse_args(argv)
118else:
119 # No command, so insert it after the known arguments and before the ones
120 # that presumably relate to the 'send' subcommand
121 nargs = len(rest)
122 argv = argv[:-nargs] + ['send'] + rest
Simon Glassc4e79022020-07-05 21:41:54 -0600123 args = parser.parse_args(argv)
Simon Glass0d24de92012-01-14 15:12:45 +0000124
Simon Glass9649e152015-07-30 13:47:41 -0600125if __name__ != "__main__":
126 pass
127
Simon Glassc9360f162020-07-05 21:41:59 -0600128if not args.debug:
129 sys.tracebacklimit = 0
130
Simon Glass0d24de92012-01-14 15:12:45 +0000131# Run our meagre tests
Simon Glass6bb74de2020-07-05 21:41:55 -0600132if args.cmd == 'test':
Simon Glass0d24de92012-01-14 15:12:45 +0000133 import doctest
Simon Glassbf776672020-04-17 18:09:04 -0600134 from patman import func_test
Simon Glass0d24de92012-01-14 15:12:45 +0000135
136 sys.argv = [sys.argv[0]]
Simon Glass0d24de92012-01-14 15:12:45 +0000137 result = unittest.TestResult()
Simon Glass4af99872020-10-29 21:46:28 -0600138 suite = unittest.TestSuite()
139 loader = unittest.TestLoader()
Simon Glass40d97342020-06-14 10:54:04 -0600140 for module in (test_checkpatch.TestPatch, func_test.TestFunctional):
Simon Glass4af99872020-10-29 21:46:28 -0600141 if args.testname:
142 try:
143 suite.addTests(loader.loadTestsFromName(args.testname, module))
144 except AttributeError:
145 continue
146 else:
147 suite.addTests(loader.loadTestsFromTestCase(module))
148 suite.run(result)
Simon Glass0d24de92012-01-14 15:12:45 +0000149
Simon Glass37b224f2020-04-09 15:08:40 -0600150 for module in ['gitutil', 'settings', 'terminal']:
Doug Anderson656cffe2012-12-03 14:43:19 +0000151 suite = doctest.DocTestSuite(module)
152 suite.run(result)
Simon Glass0d24de92012-01-14 15:12:45 +0000153
Simon Glass4af99872020-10-29 21:46:28 -0600154 sys.exit(test_util.ReportResult('patman', args.testname, result))
Tom Rini72083962020-07-24 08:42:06 -0400155
Simon Glass0d24de92012-01-14 15:12:45 +0000156# Process commits, produce patches files, check them, email them
Simon Glass6bb74de2020-07-05 21:41:55 -0600157elif args.cmd == 'send':
158 # Called from git with a patch filename as argument
159 # Printout a list of additional CC recipients for this patch
160 if args.cc_cmd:
161 fd = open(args.cc_cmd, 'r')
162 re_line = re.compile('(\S*) (.*)')
163 for line in fd.readlines():
164 match = re_line.match(line)
165 if match and match.group(1) == args.patchfiles[0]:
166 for cc in match.group(2).split('\0'):
167 cc = cc.strip()
168 if cc:
169 print(cc)
170 fd.close()
171
172 elif args.full_help:
173 pager = os.getenv('PAGER')
174 if not pager:
Nicolas Boichatb1b6efc2021-02-17 18:41:43 +0800175 pager = shutil.which('less')
176 if not pager:
Simon Glass6bb74de2020-07-05 21:41:55 -0600177 pager = 'more'
178 fname = os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])),
179 'README')
180 command.Run(pager, fname)
181
182 else:
Simon Glass0fb560d2021-01-23 08:56:15 -0700183 # If we are not processing tags, no need to warning about bad ones
184 if not args.process_tags:
185 args.ignore_bad_tags = True
Simon Glass6bb74de2020-07-05 21:41:55 -0600186 control.send(args)
Simon Glassdc6df972020-10-29 21:46:35 -0600187
188# Check status of patches in patchwork
189elif args.cmd == 'status':
190 ret_code = 0
191 try:
Simon Glass8f9ba3a2020-10-29 21:46:36 -0600192 control.patchwork_status(args.branch, args.count, args.start, args.end,
Simon Glassdc4b2a92020-10-29 21:46:38 -0600193 args.dest_branch, args.force,
Simon Glassa55be352020-11-03 13:54:15 -0700194 args.show_comments, args.patchwork_url)
Simon Glassdc6df972020-10-29 21:46:35 -0600195 except Exception as e:
196 terminal.Print('patman: %s: %s' % (type(e).__name__, e),
197 colour=terminal.Color.RED)
198 if args.debug:
199 print()
200 traceback.print_exc()
201 ret_code = 1
202 sys.exit(ret_code)