Simon Glass | e3986d9 | 2019-10-31 07:42:52 -0600 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 2 | # SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 3 | # |
| 4 | # Copyright (c) 2011 The Chromium OS Authors. |
| 5 | # |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 6 | |
| 7 | """See README for more information""" |
| 8 | |
Simon Glass | fda1e37 | 2020-07-05 21:41:53 -0600 | [diff] [blame] | 9 | from argparse import ArgumentParser |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 10 | import os |
| 11 | import re |
Nicolas Boichat | b1b6efc | 2021-02-17 18:41:43 +0800 | [diff] [blame] | 12 | import shutil |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 13 | import sys |
Simon Glass | c9360f16 | 2020-07-05 21:41:59 -0600 | [diff] [blame] | 14 | import traceback |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 15 | import unittest |
| 16 | |
Simon Glass | 0d7a8c4 | 2020-04-17 18:08:52 -0600 | [diff] [blame] | 17 | if __name__ == "__main__": |
Simon Glass | b4fa949 | 2020-04-17 18:09:05 -0600 | [diff] [blame] | 18 | # Allow 'from patman import xxx to work' |
Simon Glass | 0d7a8c4 | 2020-04-17 18:08:52 -0600 | [diff] [blame] | 19 | our_path = os.path.dirname(os.path.realpath(__file__)) |
| 20 | sys.path.append(os.path.join(our_path, '..')) |
| 21 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 22 | # Our modules |
Simon Glass | bf77667 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 23 | from patman import command |
Simon Glass | 7d5b04e | 2020-07-05 21:41:49 -0600 | [diff] [blame] | 24 | from patman import control |
Simon Glass | bf77667 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 25 | from patman import gitutil |
Simon Glass | bf77667 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 26 | from patman import project |
| 27 | from patman import settings |
| 28 | from patman import terminal |
Simon Glass | 0b3d24a | 2020-07-05 21:41:48 -0600 | [diff] [blame] | 29 | from patman import test_util |
Simon Glass | 40d9734 | 2020-06-14 10:54:04 -0600 | [diff] [blame] | 30 | from patman import test_checkpatch |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 31 | |
Simon Glass | fda1e37 | 2020-07-05 21:41:53 -0600 | [diff] [blame] | 32 | epilog = '''Create patches from commits in a branch, check them and email them |
| 33 | as specified by tags you place in the commits. Use -n to do a dry run first.''' |
Simon Glass | 57374b0 | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 34 | |
Simon Glass | fda1e37 | 2020-07-05 21:41:53 -0600 | [diff] [blame] | 35 | parser = ArgumentParser(epilog=epilog) |
Simon Glass | 4600767 | 2020-11-03 13:54:10 -0700 | [diff] [blame] | 36 | parser.add_argument('-b', '--branch', type=str, |
| 37 | help="Branch to process (by default, the current branch)") |
| 38 | parser.add_argument('-c', '--count', dest='count', type=int, |
| 39 | default=-1, help='Automatically create patches from top n commits') |
| 40 | parser.add_argument('-e', '--end', type=int, default=0, |
| 41 | help='Commits to skip at end of patch list') |
| 42 | parser.add_argument('-D', '--debug', action='store_true', |
| 43 | help='Enabling debugging (provides a full traceback on error)') |
| 44 | parser.add_argument('-p', '--project', default=project.DetectProject(), |
| 45 | help="Project name; affects default option values and " |
| 46 | "aliases [default: %(default)s]") |
Simon Glass | a55be35 | 2020-11-03 13:54:15 -0700 | [diff] [blame] | 47 | parser.add_argument('-P', '--patchwork-url', |
| 48 | default='https://patchwork.ozlabs.org', |
| 49 | help='URL of patchwork server [default: %(default)s]') |
Simon Glass | 4600767 | 2020-11-03 13:54:10 -0700 | [diff] [blame] | 50 | parser.add_argument('-s', '--start', dest='start', type=int, |
| 51 | default=0, help='Commit to start creating patches from (0 = HEAD)') |
| 52 | parser.add_argument('-v', '--verbose', action='store_true', dest='verbose', |
| 53 | default=False, help='Verbose output of errors and warnings') |
| 54 | parser.add_argument('-H', '--full-help', action='store_true', dest='full_help', |
| 55 | default=False, help='Display the README file') |
| 56 | |
Simon Glass | c4e7902 | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 57 | subparsers = parser.add_subparsers(dest='cmd') |
| 58 | send = subparsers.add_parser('send') |
Simon Glass | c4e7902 | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 59 | send.add_argument('-i', '--ignore-errors', action='store_true', |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 60 | dest='ignore_errors', default=False, |
| 61 | help='Send patches email even if patch errors are found') |
Simon Glass | c4e7902 | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 62 | send.add_argument('-l', '--limit-cc', dest='limit', type=int, default=None, |
| 63 | help='Limit the cc list to LIMIT entries [default: %(default)s]') |
| 64 | send.add_argument('-m', '--no-maintainers', action='store_false', |
Simon Glass | 983a274 | 2014-09-14 20:23:17 -0600 | [diff] [blame] | 65 | dest='add_maintainers', default=True, |
| 66 | help="Don't cc the file maintainers automatically") |
Simon Glass | c4e7902 | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 67 | send.add_argument('-n', '--dry-run', action='store_true', dest='dry_run', |
Simon Glass | ca706e7 | 2013-03-26 13:09:45 +0000 | [diff] [blame] | 68 | default=False, help="Do a dry run (create but don't email patches)") |
Simon Glass | c4e7902 | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 69 | send.add_argument('-r', '--in-reply-to', type=str, action='store', |
Doug Anderson | 6d81992 | 2013-03-17 10:31:04 +0000 | [diff] [blame] | 70 | help="Message ID that this series is in reply to") |
Simon Glass | c4e7902 | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 71 | send.add_argument('-t', '--ignore-bad-tags', action='store_true', |
Simon Glass | 0fb560d | 2021-01-23 08:56:15 -0700 | [diff] [blame] | 72 | default=False, |
| 73 | help='Ignore bad tags / aliases (default=warn)') |
Simon Glass | c4e7902 | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 74 | send.add_argument('-T', '--thread', action='store_true', dest='thread', |
| 75 | default=False, help='Create patches as a single thread') |
| 76 | send.add_argument('--cc-cmd', dest='cc_cmd', type=str, action='store', |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 77 | default=None, help='Output cc list for patch file (used by git)') |
Simon Glass | c4e7902 | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 78 | send.add_argument('--no-binary', action='store_true', dest='ignore_binary', |
| 79 | default=False, |
| 80 | help="Do not output contents of changes in binary files") |
| 81 | send.add_argument('--no-check', action='store_false', dest='check_patch', |
| 82 | default=True, |
| 83 | help="Don't check for patch compliance") |
| 84 | send.add_argument('--no-tags', action='store_false', dest='process_tags', |
| 85 | default=True, help="Don't process subject tags as aliases") |
Philipp Tomsich | b3aff15 | 2020-11-24 18:14:52 +0100 | [diff] [blame] | 86 | send.add_argument('--no-signoff', action='store_false', dest='add_signoff', |
| 87 | default=True, help="Don't add Signed-off-by to patches") |
Simon Glass | c4e7902 | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 88 | send.add_argument('--smtp-server', type=str, |
| 89 | help="Specify the SMTP server to 'git send-email'") |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 90 | |
Simon Glass | c4e7902 | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 91 | send.add_argument('patchfiles', nargs='*') |
Simon Glass | 57374b0 | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 92 | |
Simon Glass | 6bb74de | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 93 | test_parser = subparsers.add_parser('test', help='Run tests') |
Simon Glass | 4af9987 | 2020-10-29 21:46:28 -0600 | [diff] [blame] | 94 | test_parser.add_argument('testname', type=str, default=None, nargs='?', |
| 95 | help="Specify the test to run") |
Simon Glass | 6bb74de | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 96 | |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 97 | status = subparsers.add_parser('status', |
| 98 | help='Check status of patches in patchwork') |
Simon Glass | dc4b2a9 | 2020-10-29 21:46:38 -0600 | [diff] [blame] | 99 | status.add_argument('-C', '--show-comments', action='store_true', |
| 100 | help='Show comments from each patch') |
Simon Glass | 8f9ba3a | 2020-10-29 21:46:36 -0600 | [diff] [blame] | 101 | status.add_argument('-d', '--dest-branch', type=str, |
| 102 | help='Name of branch to create with collected responses') |
| 103 | status.add_argument('-f', '--force', action='store_true', |
| 104 | help='Force overwriting an existing branch') |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 105 | |
Doug Anderson | a1dcee8 | 2012-12-03 14:43:18 +0000 | [diff] [blame] | 106 | # Parse options twice: first to get the project and second to handle |
Simon Glass | 4600767 | 2020-11-03 13:54:10 -0700 | [diff] [blame] | 107 | # defaults properly (which depends on project) |
| 108 | # Use parse_known_args() in case 'cmd' is omitted |
Simon Glass | fda1e37 | 2020-07-05 21:41:53 -0600 | [diff] [blame] | 109 | argv = sys.argv[1:] |
Simon Glass | 4600767 | 2020-11-03 13:54:10 -0700 | [diff] [blame] | 110 | args, rest = parser.parse_known_args(argv) |
Simon Glass | c4e7902 | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 111 | if hasattr(args, 'project'): |
Simon Glass | 4600767 | 2020-11-03 13:54:10 -0700 | [diff] [blame] | 112 | 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 |
| 116 | if args.cmd: |
| 117 | args = parser.parse_args(argv) |
| 118 | else: |
| 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 Glass | c4e7902 | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 123 | args = parser.parse_args(argv) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 124 | |
Simon Glass | 9649e15 | 2015-07-30 13:47:41 -0600 | [diff] [blame] | 125 | if __name__ != "__main__": |
| 126 | pass |
| 127 | |
Simon Glass | c9360f16 | 2020-07-05 21:41:59 -0600 | [diff] [blame] | 128 | if not args.debug: |
| 129 | sys.tracebacklimit = 0 |
| 130 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 131 | # Run our meagre tests |
Simon Glass | 6bb74de | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 132 | if args.cmd == 'test': |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 133 | import doctest |
Simon Glass | bf77667 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 134 | from patman import func_test |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 135 | |
| 136 | sys.argv = [sys.argv[0]] |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 137 | result = unittest.TestResult() |
Simon Glass | 4af9987 | 2020-10-29 21:46:28 -0600 | [diff] [blame] | 138 | suite = unittest.TestSuite() |
| 139 | loader = unittest.TestLoader() |
Simon Glass | 40d9734 | 2020-06-14 10:54:04 -0600 | [diff] [blame] | 140 | for module in (test_checkpatch.TestPatch, func_test.TestFunctional): |
Simon Glass | 4af9987 | 2020-10-29 21:46:28 -0600 | [diff] [blame] | 141 | 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 Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 149 | |
Simon Glass | 37b224f | 2020-04-09 15:08:40 -0600 | [diff] [blame] | 150 | for module in ['gitutil', 'settings', 'terminal']: |
Doug Anderson | 656cffe | 2012-12-03 14:43:19 +0000 | [diff] [blame] | 151 | suite = doctest.DocTestSuite(module) |
| 152 | suite.run(result) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 153 | |
Simon Glass | 4af9987 | 2020-10-29 21:46:28 -0600 | [diff] [blame] | 154 | sys.exit(test_util.ReportResult('patman', args.testname, result)) |
Tom Rini | 7208396 | 2020-07-24 08:42:06 -0400 | [diff] [blame] | 155 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 156 | # Process commits, produce patches files, check them, email them |
Simon Glass | 6bb74de | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 157 | elif 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 Boichat | b1b6efc | 2021-02-17 18:41:43 +0800 | [diff] [blame] | 175 | pager = shutil.which('less') |
| 176 | if not pager: |
Simon Glass | 6bb74de | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 177 | 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 Glass | 0fb560d | 2021-01-23 08:56:15 -0700 | [diff] [blame] | 183 | # 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 Glass | 6bb74de | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 186 | control.send(args) |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 187 | |
| 188 | # Check status of patches in patchwork |
| 189 | elif args.cmd == 'status': |
| 190 | ret_code = 0 |
| 191 | try: |
Simon Glass | 8f9ba3a | 2020-10-29 21:46:36 -0600 | [diff] [blame] | 192 | control.patchwork_status(args.branch, args.count, args.start, args.end, |
Simon Glass | dc4b2a9 | 2020-10-29 21:46:38 -0600 | [diff] [blame] | 193 | args.dest_branch, args.force, |
Simon Glass | a55be35 | 2020-11-03 13:54:15 -0700 | [diff] [blame] | 194 | args.show_comments, args.patchwork_url) |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 195 | 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) |