blob: 48ffbc8eadf76ddb55c6e3235f58daa864f59ddd [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
Maxim Cournoyera5197fc2022-12-16 20:45:29 -050010import importlib.resources
Simon Glass0d24de92012-01-14 15:12:45 +000011import os
12import re
13import sys
Simon Glassc9360f162020-07-05 21:41:59 -060014import traceback
Simon Glass0d24de92012-01-14 15:12:45 +000015
Simon Glass0d7a8c42020-04-17 18:08:52 -060016if __name__ == "__main__":
Simon Glassb4fa9492020-04-17 18:09:05 -060017 # Allow 'from patman import xxx to work'
Simon Glass0d7a8c42020-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 Glass0d24de92012-01-14 15:12:45 +000021# Our modules
Simon Glass7d5b04e2020-07-05 21:41:49 -060022from patman import control
Maxim Cournoyer52c1c332022-12-19 17:32:43 -050023from patman import func_test
Maxim Cournoyer8c042fb2022-12-20 00:28:46 -050024from patman import gitutil
Simon Glassbf776672020-04-17 18:09:04 -060025from patman import project
26from patman import settings
Simon Glass4583c002023-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 Glass0d24de92012-01-14 15:12:45 +000030
Simon Glassfda1e372020-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 Glass57374b02020-07-05 21:41:55 -060033
Simon Glassfda1e372020-07-05 21:41:53 -060034parser = ArgumentParser(epilog=epilog)
Simon Glass46007672020-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 Glass642df432022-01-29 14:14:12 -070043parser.add_argument('-p', '--project', default=project.detect_project(),
Simon Glass46007672020-11-03 13:54:10 -070044 help="Project name; affects default option values and "
45 "aliases [default: %(default)s]")
Simon Glassa55be352020-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 Glass46007672020-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 Glassc4e79022020-07-05 21:41:54 -060056subparsers = parser.add_subparsers(dest='cmd')
Maxim Cournoyer30529302022-12-19 17:32:45 -050057send = subparsers.add_parser(
58 'send', help='Format, check and email patches (default command)')
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")
Maxim Cournoyer8c042fb2022-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 Glassc4e79022020-07-05 21:41:54 -060073send.add_argument('-n', '--dry-run', action='store_true', dest='dry_run',
Simon Glassca706e72013-03-26 13:09:45 +000074 default=False, help="Do a dry run (create but don't email patches)")
Simon Glassc4e79022020-07-05 21:41:54 -060075send.add_argument('-r', '--in-reply-to', type=str, action='store',
Doug Anderson6d819922013-03-17 10:31:04 +000076 help="Message ID that this series is in reply to")
Simon Glassc4e79022020-07-05 21:41:54 -060077send.add_argument('-t', '--ignore-bad-tags', action='store_true',
Simon Glass0fb560d2021-01-23 08:56:15 -070078 default=False,
79 help='Ignore bad tags / aliases (default=warn)')
Simon Glassc4e79022020-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 Glass0d24de92012-01-14 15:12:45 +000083 default=None, help='Output cc list for patch file (used by git)')
Simon Glassc4e79022020-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 Andersondce43222022-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 Glassc4e79022020-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 Tomsichb3aff152020-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 Glassc4e79022020-07-05 21:41:54 -0600100send.add_argument('--smtp-server', type=str,
101 help="Specify the SMTP server to 'git send-email'")
Simon Glass0d24de92012-01-14 15:12:45 +0000102
Simon Glassc4e79022020-07-05 21:41:54 -0600103send.add_argument('patchfiles', nargs='*')
Simon Glass57374b02020-07-05 21:41:55 -0600104
Maxim Cournoyer52c1c332022-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 Glass6bb74de2020-07-05 21:41:55 -0600110
Simon Glassdc6df972020-10-29 21:46:35 -0600111status = subparsers.add_parser('status',
112 help='Check status of patches in patchwork')
Simon Glassdc4b2a92020-10-29 21:46:38 -0600113status.add_argument('-C', '--show-comments', action='store_true',
114 help='Show comments from each patch')
Simon Glass8f9ba3a2020-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 Glassdc6df972020-10-29 21:46:35 -0600119
Doug Andersona1dcee82012-12-03 14:43:18 +0000120# Parse options twice: first to get the project and second to handle
Simon Glass46007672020-11-03 13:54:10 -0700121# defaults properly (which depends on project)
122# Use parse_known_args() in case 'cmd' is omitted
Simon Glassfda1e372020-07-05 21:41:53 -0600123argv = sys.argv[1:]
Simon Glass46007672020-11-03 13:54:10 -0700124args, rest = parser.parse_known_args(argv)
Simon Glassc4e79022020-07-05 21:41:54 -0600125if hasattr(args, 'project'):
Maxim Cournoyer2c58a5e2022-12-20 00:38:39 -0500126 settings.Setup(parser, args.project)
Simon Glass46007672020-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 Glassc4e79022020-07-05 21:41:54 -0600137 args = parser.parse_args(argv)
Simon Glass0d24de92012-01-14 15:12:45 +0000138
Simon Glass9649e152015-07-30 13:47:41 -0600139if __name__ != "__main__":
140 pass
141
Simon Glassc9360f162020-07-05 21:41:59 -0600142if not args.debug:
143 sys.tracebacklimit = 0
144
Simon Glass0d24de92012-01-14 15:12:45 +0000145# Run our meagre tests
Simon Glass6bb74de2020-07-05 21:41:55 -0600146if args.cmd == 'test':
Simon Glassbf776672020-04-17 18:09:04 -0600147 from patman import func_test
Simon Glassa545dc12023-02-23 18:18:07 -0700148 from patman import test_checkpatch
Simon Glass0d24de92012-01-14 15:12:45 +0000149
Alper Nebi Yasakd8318fe2022-04-02 20:06:06 +0300150 result = test_util.run_test_suites(
151 'patman', False, False, False, None, None, None,
Simon Glass1d0f30e2022-01-22 05:07:28 -0700152 [test_checkpatch.TestPatch, func_test.TestFunctional,
Simon Glass4583c002023-02-23 18:18:04 -0700153 'gitutil', 'settings'])
Simon Glass0d24de92012-01-14 15:12:45 +0000154
Alper Nebi Yasakd8318fe2022-04-02 20:06:06 +0300155 sys.exit(0 if result.wasSuccessful() else 1)
Tom Rini72083962020-07-24 08:42:06 -0400156
Simon Glass0d24de92012-01-14 15:12:45 +0000157# Process commits, produce patches files, check them, email them
Simon Glass6bb74de2020-07-05 21:41:55 -0600158elif 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()
172
173 elif args.full_help:
Maxim Cournoyera5197fc2022-12-16 20:45:29 -0500174 with importlib.resources.path('patman', 'README.rst') as readme:
175 tools.print_full_help(str(readme))
Simon Glass6bb74de2020-07-05 21:41:55 -0600176 else:
Simon Glass0fb560d2021-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 Glass6bb74de2020-07-05 21:41:55 -0600180 control.send(args)
Simon Glassdc6df972020-10-29 21:46:35 -0600181
182# Check status of patches in patchwork
183elif args.cmd == 'status':
184 ret_code = 0
185 try:
Simon Glass8f9ba3a2020-10-29 21:46:36 -0600186 control.patchwork_status(args.branch, args.count, args.start, args.end,
Simon Glassdc4b2a92020-10-29 21:46:38 -0600187 args.dest_branch, args.force,
Simon Glassa55be352020-11-03 13:54:15 -0700188 args.show_comments, args.patchwork_url)
Simon Glassdc6df972020-10-29 21:46:35 -0600189 except Exception as e:
Simon Glass098b10f2022-01-29 14:14:18 -0700190 terminal.tprint('patman: %s: %s' % (type(e).__name__, e),
Maxim Cournoyer291ab6c2022-12-16 20:45:27 -0500191 colour=terminal.Color.RED)
Simon Glassdc6df972020-10-29 21:46:35 -0600192 if args.debug:
193 print()
194 traceback.print_exc()
195 ret_code = 1
196 sys.exit(ret_code)