blob: 48ffbc8eadf76ddb55c6e3235f58daa864f59ddd [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
Maxim Cournoyer124acc92022-12-16 20:45:29 -050010import importlib.resources
Simon Glass26132882012-01-14 15:12:45 +000011import os
12import re
13import sys
Simon Glassdbac7162020-07-05 21:41:59 -060014import traceback
Simon Glass26132882012-01-14 15:12:45 +000015
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 Glass24725af2020-07-05 21:41:49 -060022from patman import control
Maxim Cournoyercda00122022-12-19 17:32:43 -050023from patman import func_test
Maxim Cournoyer3ef23e92022-12-20 00:28:46 -050024from patman import gitutil
Simon Glassa997ea52020-04-17 18:09:04 -060025from patman import project
26from patman import settings
Simon Glass131444f2023-02-23 18:18:04 -070027from u_boot_pylib import terminal
28from u_boot_pylib import test_util
29from u_boot_pylib import tools
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)')
Simon Glass1908d3542022-01-29 14:14:12 -070043parser.add_argument('-p', '--project', default=project.detect_project(),
Simon Glass1ee91c12020-11-03 13:54:10 -070044 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')
Maxim Cournoyer6a3f71c2022-12-19 17:32:45 -050057send = subparsers.add_parser(
58 'send', help='Format, check and email patches (default command)')
Simon Glassecb09da2020-07-05 21:41:54 -060059send.add_argument('-i', '--ignore-errors', action='store_true',
Simon Glass26132882012-01-14 15:12:45 +000060 dest='ignore_errors', default=False,
61 help='Send patches email even if patch errors are found')
Simon Glassecb09da2020-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 Glass46b84d82014-09-14 20:23:17 -060065 dest='add_maintainers', default=True,
66 help="Don't cc the file maintainers automatically")
Maxim Cournoyer3ef23e92022-12-20 00:28:46 -050067send.add_argument(
68 '--get-maintainer-script', dest='get_maintainer_script', type=str,
69 action='store',
70 default=os.path.join(gitutil.get_top_level(), 'scripts',
71 'get_maintainer.pl') + ' --norolestats',
72 help='File name of the get_maintainer.pl (or compatible) script.')
Simon Glassecb09da2020-07-05 21:41:54 -060073send.add_argument('-n', '--dry-run', action='store_true', dest='dry_run',
Simon Glass33bdd9e2013-03-26 13:09:45 +000074 default=False, help="Do a dry run (create but don't email patches)")
Simon Glassecb09da2020-07-05 21:41:54 -060075send.add_argument('-r', '--in-reply-to', type=str, action='store',
Doug Anderson06f27ac2013-03-17 10:31:04 +000076 help="Message ID that this series is in reply to")
Simon Glassecb09da2020-07-05 21:41:54 -060077send.add_argument('-t', '--ignore-bad-tags', action='store_true',
Simon Glass1f975b92021-01-23 08:56:15 -070078 default=False,
79 help='Ignore bad tags / aliases (default=warn)')
Simon Glassecb09da2020-07-05 21:41:54 -060080send.add_argument('-T', '--thread', action='store_true', dest='thread',
81 default=False, help='Create patches as a single thread')
82send.add_argument('--cc-cmd', dest='cc_cmd', type=str, action='store',
Simon Glass26132882012-01-14 15:12:45 +000083 default=None, help='Output cc list for patch file (used by git)')
Simon Glassecb09da2020-07-05 21:41:54 -060084send.add_argument('--no-binary', action='store_true', dest='ignore_binary',
85 default=False,
86 help="Do not output contents of changes in binary files")
87send.add_argument('--no-check', action='store_false', dest='check_patch',
88 default=True,
89 help="Don't check for patch compliance")
Douglas Andersonbe4f2712022-07-19 14:56:27 -070090send.add_argument('--tree', dest='check_patch_use_tree', default=False,
91 action='store_true',
92 help=("Set `tree` to True. If `tree` is False then we'll "
93 "pass '--no-tree' to checkpatch (default: tree=%(default)s)"))
94send.add_argument('--no-tree', dest='check_patch_use_tree',
95 action='store_false', help="Set `tree` to False")
Simon Glassecb09da2020-07-05 21:41:54 -060096send.add_argument('--no-tags', action='store_false', dest='process_tags',
97 default=True, help="Don't process subject tags as aliases")
Philipp Tomsich858531a2020-11-24 18:14:52 +010098send.add_argument('--no-signoff', action='store_false', dest='add_signoff',
99 default=True, help="Don't add Signed-off-by to patches")
Simon Glassecb09da2020-07-05 21:41:54 -0600100send.add_argument('--smtp-server', type=str,
101 help="Specify the SMTP server to 'git send-email'")
Tom Rini5a9ecb22020-07-24 08:42:06 -0400102
Simon Glassecb09da2020-07-05 21:41:54 -0600103send.add_argument('patchfiles', nargs='*')
Simon Glass9c501e12020-07-05 21:41:55 -0600104
Maxim Cournoyercda00122022-12-19 17:32:43 -0500105# Only add the 'test' action if the test data files are available.
106if os.path.exists(func_test.TEST_DATA_DIR):
107 test_parser = subparsers.add_parser('test', help='Run tests')
108 test_parser.add_argument('testname', type=str, default=None, nargs='?',
109 help="Specify the test to run")
Simon Glass109e84e2020-07-05 21:41:55 -0600110
Simon Glass3db916d2020-10-29 21:46:35 -0600111status = subparsers.add_parser('status',
112 help='Check status of patches in patchwork')
Simon Glass2112d072020-10-29 21:46:38 -0600113status.add_argument('-C', '--show-comments', action='store_true',
114 help='Show comments from each patch')
Simon Glassd0a0a582020-10-29 21:46:36 -0600115status.add_argument('-d', '--dest-branch', type=str,
116 help='Name of branch to create with collected responses')
117status.add_argument('-f', '--force', action='store_true',
118 help='Force overwriting an existing branch')
Simon Glass3db916d2020-10-29 21:46:35 -0600119
Doug Anderson31ffd7f2012-12-03 14:43:18 +0000120# Parse options twice: first to get the project and second to handle
Simon Glass1ee91c12020-11-03 13:54:10 -0700121# defaults properly (which depends on project)
122# Use parse_known_args() in case 'cmd' is omitted
Simon Glasseb101ac2020-07-05 21:41:53 -0600123argv = sys.argv[1:]
Simon Glass1ee91c12020-11-03 13:54:10 -0700124args, rest = parser.parse_known_args(argv)
Simon Glassecb09da2020-07-05 21:41:54 -0600125if hasattr(args, 'project'):
Maxim Cournoyerda6f7cf2022-12-20 00:38:39 -0500126 settings.Setup(parser, args.project)
Simon Glass1ee91c12020-11-03 13:54:10 -0700127 args, rest = parser.parse_known_args(argv)
128
129# If we have a command, it is safe to parse all arguments
130if args.cmd:
131 args = parser.parse_args(argv)
132else:
133 # No command, so insert it after the known arguments and before the ones
134 # that presumably relate to the 'send' subcommand
135 nargs = len(rest)
136 argv = argv[:-nargs] + ['send'] + rest
Simon Glassecb09da2020-07-05 21:41:54 -0600137 args = parser.parse_args(argv)
Simon Glass26132882012-01-14 15:12:45 +0000138
Simon Glass2b68b362015-07-30 13:47:41 -0600139if __name__ != "__main__":
140 pass
141
Simon Glassdbac7162020-07-05 21:41:59 -0600142if not args.debug:
143 sys.tracebacklimit = 0
144
Simon Glass26132882012-01-14 15:12:45 +0000145# Run our meagre tests
Simon Glass109e84e2020-07-05 21:41:55 -0600146if args.cmd == 'test':
Simon Glassa997ea52020-04-17 18:09:04 -0600147 from patman import func_test
Simon Glassc92395b2023-02-23 18:18:07 -0700148 from patman import test_checkpatch
Simon Glass26132882012-01-14 15:12:45 +0000149
Alper Nebi Yasakca1c5882022-04-02 20:06:06 +0300150 result = test_util.run_test_suites(
151 'patman', False, False, False, None, None, None,
Simon Glassc27d22d2022-01-22 05:07:28 -0700152 [test_checkpatch.TestPatch, func_test.TestFunctional,
Simon Glass131444f2023-02-23 18:18:04 -0700153 'gitutil', 'settings'])
Simon Glass26132882012-01-14 15:12:45 +0000154
Alper Nebi Yasakca1c5882022-04-02 20:06:06 +0300155 sys.exit(0 if result.wasSuccessful() else 1)
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:
Maxim Cournoyer124acc92022-12-16 20:45:29 -0500174 with importlib.resources.path('patman', 'README.rst') as readme:
175 tools.print_full_help(str(readme))
Simon Glass109e84e2020-07-05 21:41:55 -0600176 else:
Simon Glass1f975b92021-01-23 08:56:15 -0700177 # If we are not processing tags, no need to warning about bad ones
178 if not args.process_tags:
179 args.ignore_bad_tags = True
Simon Glass109e84e2020-07-05 21:41:55 -0600180 control.send(args)
Simon Glass3db916d2020-10-29 21:46:35 -0600181
182# Check status of patches in patchwork
183elif args.cmd == 'status':
184 ret_code = 0
185 try:
Simon Glassd0a0a582020-10-29 21:46:36 -0600186 control.patchwork_status(args.branch, args.count, args.start, args.end,
Simon Glass2112d072020-10-29 21:46:38 -0600187 args.dest_branch, args.force,
Simon Glass3d80d792020-11-03 13:54:15 -0700188 args.show_comments, args.patchwork_url)
Simon Glass3db916d2020-10-29 21:46:35 -0600189 except Exception as e:
Simon Glass02811582022-01-29 14:14:18 -0700190 terminal.tprint('patman: %s: %s' % (type(e).__name__, e),
Maxim Cournoyerfcf2e852022-12-16 20:45:27 -0500191 colour=terminal.Color.RED)
Simon Glass3db916d2020-10-29 21:46:35 -0600192 if args.debug:
193 print()
194 traceback.print_exc()
195 ret_code = 1
196 sys.exit(ret_code)