blob: 2a2ac4570931f21768fb9a4c7f24a09762ddca99 [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
Paul Barker5fe50f92021-09-08 12:38:01 +010031from patman import tools
Simon Glass0d24de92012-01-14 15:12:45 +000032
Simon Glassfda1e372020-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 Glass57374b02020-07-05 21:41:55 -060035
Simon Glassfda1e372020-07-05 21:41:53 -060036parser = ArgumentParser(epilog=epilog)
Simon Glass46007672020-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)')
Simon Glass642df432022-01-29 14:14:12 -070045parser.add_argument('-p', '--project', default=project.detect_project(),
Simon Glass46007672020-11-03 13:54:10 -070046 help="Project name; affects default option values and "
47 "aliases [default: %(default)s]")
Simon Glassa55be352020-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 Glass46007672020-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 Glassc4e79022020-07-05 21:41:54 -060058subparsers = parser.add_subparsers(dest='cmd')
59send = subparsers.add_parser('send')
Simon Glassc4e79022020-07-05 21:41:54 -060060send.add_argument('-i', '--ignore-errors', action='store_true',
Simon Glass0d24de92012-01-14 15:12:45 +000061 dest='ignore_errors', default=False,
62 help='Send patches email even if patch errors are found')
Simon Glassc4e79022020-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 Glass983a2742014-09-14 20:23:17 -060066 dest='add_maintainers', default=True,
67 help="Don't cc the file maintainers automatically")
Simon Glassc4e79022020-07-05 21:41:54 -060068send.add_argument('-n', '--dry-run', action='store_true', dest='dry_run',
Simon Glassca706e72013-03-26 13:09:45 +000069 default=False, help="Do a dry run (create but don't email patches)")
Simon Glassc4e79022020-07-05 21:41:54 -060070send.add_argument('-r', '--in-reply-to', type=str, action='store',
Doug Anderson6d819922013-03-17 10:31:04 +000071 help="Message ID that this series is in reply to")
Simon Glassc4e79022020-07-05 21:41:54 -060072send.add_argument('-t', '--ignore-bad-tags', action='store_true',
Simon Glass0fb560d2021-01-23 08:56:15 -070073 default=False,
74 help='Ignore bad tags / aliases (default=warn)')
Simon Glassc4e79022020-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 Glass0d24de92012-01-14 15:12:45 +000078 default=None, help='Output cc list for patch file (used by git)')
Simon Glassc4e79022020-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 Tomsichb3aff152020-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 Glassc4e79022020-07-05 21:41:54 -060089send.add_argument('--smtp-server', type=str,
90 help="Specify the SMTP server to 'git send-email'")
Simon Glass0d24de92012-01-14 15:12:45 +000091
Simon Glassc4e79022020-07-05 21:41:54 -060092send.add_argument('patchfiles', nargs='*')
Simon Glass57374b02020-07-05 21:41:55 -060093
Simon Glass6bb74de2020-07-05 21:41:55 -060094test_parser = subparsers.add_parser('test', help='Run tests')
Simon Glass4af99872020-10-29 21:46:28 -060095test_parser.add_argument('testname', type=str, default=None, nargs='?',
96 help="Specify the test to run")
Simon Glass6bb74de2020-07-05 21:41:55 -060097
Simon Glassdc6df972020-10-29 21:46:35 -060098status = subparsers.add_parser('status',
99 help='Check status of patches in patchwork')
Simon Glassdc4b2a92020-10-29 21:46:38 -0600100status.add_argument('-C', '--show-comments', action='store_true',
101 help='Show comments from each patch')
Simon Glass8f9ba3a2020-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 Glassdc6df972020-10-29 21:46:35 -0600106
Doug Andersona1dcee82012-12-03 14:43:18 +0000107# Parse options twice: first to get the project and second to handle
Simon Glass46007672020-11-03 13:54:10 -0700108# defaults properly (which depends on project)
109# Use parse_known_args() in case 'cmd' is omitted
Simon Glassfda1e372020-07-05 21:41:53 -0600110argv = sys.argv[1:]
Simon Glass46007672020-11-03 13:54:10 -0700111args, rest = parser.parse_known_args(argv)
Simon Glassc4e79022020-07-05 21:41:54 -0600112if hasattr(args, 'project'):
Simon Glass46007672020-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 Glassc4e79022020-07-05 21:41:54 -0600124 args = parser.parse_args(argv)
Simon Glass0d24de92012-01-14 15:12:45 +0000125
Simon Glass9649e152015-07-30 13:47:41 -0600126if __name__ != "__main__":
127 pass
128
Simon Glassc9360f162020-07-05 21:41:59 -0600129if not args.debug:
130 sys.tracebacklimit = 0
131
Simon Glass0d24de92012-01-14 15:12:45 +0000132# Run our meagre tests
Simon Glass6bb74de2020-07-05 21:41:55 -0600133if args.cmd == 'test':
Simon Glass0d24de92012-01-14 15:12:45 +0000134 import doctest
Simon Glassbf776672020-04-17 18:09:04 -0600135 from patman import func_test
Simon Glass0d24de92012-01-14 15:12:45 +0000136
Simon Glass0d24de92012-01-14 15:12:45 +0000137 result = unittest.TestResult()
Simon Glass5e2ab402022-01-29 14:14:14 -0700138 test_util.run_test_suites(
Simon Glass1d0f30e2022-01-22 05:07:28 -0700139 result, False, False, False, None, None, None,
140 [test_checkpatch.TestPatch, func_test.TestFunctional,
141 'gitutil', 'settings', 'terminal'])
Simon Glass0d24de92012-01-14 15:12:45 +0000142
Simon Glass5e2ab402022-01-29 14:14:14 -0700143 sys.exit(test_util.report_result('patman', args.testname, result))
Tom Rini72083962020-07-24 08:42:06 -0400144
Simon Glass0d24de92012-01-14 15:12:45 +0000145# Process commits, produce patches files, check them, email them
Simon Glass6bb74de2020-07-05 21:41:55 -0600146elif args.cmd == 'send':
147 # Called from git with a patch filename as argument
148 # Printout a list of additional CC recipients for this patch
149 if args.cc_cmd:
150 fd = open(args.cc_cmd, 'r')
151 re_line = re.compile('(\S*) (.*)')
152 for line in fd.readlines():
153 match = re_line.match(line)
154 if match and match.group(1) == args.patchfiles[0]:
155 for cc in match.group(2).split('\0'):
156 cc = cc.strip()
157 if cc:
158 print(cc)
159 fd.close()
160
161 elif args.full_help:
Simon Glassc1aa66e2022-01-29 14:14:04 -0700162 tools.print_full_help(
Paul Barker5fe50f92021-09-08 12:38:01 +0100163 os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])), 'README')
164 )
Simon Glass6bb74de2020-07-05 21:41:55 -0600165
166 else:
Simon Glass0fb560d2021-01-23 08:56:15 -0700167 # If we are not processing tags, no need to warning about bad ones
168 if not args.process_tags:
169 args.ignore_bad_tags = True
Simon Glass6bb74de2020-07-05 21:41:55 -0600170 control.send(args)
Simon Glassdc6df972020-10-29 21:46:35 -0600171
172# Check status of patches in patchwork
173elif args.cmd == 'status':
174 ret_code = 0
175 try:
Simon Glass8f9ba3a2020-10-29 21:46:36 -0600176 control.patchwork_status(args.branch, args.count, args.start, args.end,
Simon Glassdc4b2a92020-10-29 21:46:38 -0600177 args.dest_branch, args.force,
Simon Glassa55be352020-11-03 13:54:15 -0700178 args.show_comments, args.patchwork_url)
Simon Glassdc6df972020-10-29 21:46:35 -0600179 except Exception as e:
Simon Glass098b10f2022-01-29 14:14:18 -0700180 terminal.tprint('patman: %s: %s' % (type(e).__name__, e),
Simon Glassdc6df972020-10-29 21:46:35 -0600181 colour=terminal.Color.RED)
182 if args.debug:
183 print()
184 traceback.print_exc()
185 ret_code = 1
186 sys.exit(ret_code)