Simon Glass | efeac06 | 2019-10-31 07:42:52 -0600 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 2 | # SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 3 | # |
| 4 | # Copyright (c) 2011 The Chromium OS Authors. |
| 5 | # |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 6 | |
| 7 | """See README for more information""" |
| 8 | |
Simon Glass | eb101ac | 2020-07-05 21:41:53 -0600 | [diff] [blame] | 9 | from argparse import ArgumentParser |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 10 | import os |
| 11 | import re |
| 12 | import sys |
Simon Glass | dbac716 | 2020-07-05 21:41:59 -0600 | [diff] [blame] | 13 | import traceback |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 14 | import unittest |
| 15 | |
Simon Glass | bdaad40 | 2020-04-17 18:08:52 -0600 | [diff] [blame] | 16 | if __name__ == "__main__": |
Simon Glass | 4214316 | 2020-04-17 18:09:05 -0600 | [diff] [blame] | 17 | # Allow 'from patman import xxx to work' |
Simon Glass | bdaad40 | 2020-04-17 18:08:52 -0600 | [diff] [blame] | 18 | our_path = os.path.dirname(os.path.realpath(__file__)) |
| 19 | sys.path.append(os.path.join(our_path, '..')) |
| 20 | |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 21 | # Our modules |
Simon Glass | a997ea5 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 22 | from patman import command |
Simon Glass | 24725af | 2020-07-05 21:41:49 -0600 | [diff] [blame] | 23 | from patman import control |
Simon Glass | a997ea5 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 24 | from patman import gitutil |
Simon Glass | a997ea5 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 25 | from patman import project |
| 26 | from patman import settings |
| 27 | from patman import terminal |
Simon Glass | bddb438 | 2020-07-05 21:41:48 -0600 | [diff] [blame] | 28 | from patman import test_util |
Simon Glass | cf5f0b5 | 2020-06-14 10:54:04 -0600 | [diff] [blame] | 29 | from patman import test_checkpatch |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 30 | |
Simon Glass | eb101ac | 2020-07-05 21:41:53 -0600 | [diff] [blame] | 31 | epilog = '''Create patches from commits in a branch, check them and email them |
| 32 | as specified by tags you place in the commits. Use -n to do a dry run first.''' |
Simon Glass | 9c501e1 | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 33 | |
Simon Glass | eb101ac | 2020-07-05 21:41:53 -0600 | [diff] [blame] | 34 | parser = ArgumentParser(epilog=epilog) |
Simon Glass | 1ee91c1 | 2020-11-03 13:54:10 -0700 | [diff] [blame] | 35 | parser.add_argument('-b', '--branch', type=str, |
| 36 | help="Branch to process (by default, the current branch)") |
| 37 | parser.add_argument('-c', '--count', dest='count', type=int, |
| 38 | default=-1, help='Automatically create patches from top n commits') |
| 39 | parser.add_argument('-e', '--end', type=int, default=0, |
| 40 | help='Commits to skip at end of patch list') |
| 41 | parser.add_argument('-D', '--debug', action='store_true', |
| 42 | help='Enabling debugging (provides a full traceback on error)') |
| 43 | parser.add_argument('-p', '--project', default=project.DetectProject(), |
| 44 | help="Project name; affects default option values and " |
| 45 | "aliases [default: %(default)s]") |
Simon Glass | 3d80d79 | 2020-11-03 13:54:15 -0700 | [diff] [blame] | 46 | parser.add_argument('-P', '--patchwork-url', |
| 47 | default='https://patchwork.ozlabs.org', |
| 48 | help='URL of patchwork server [default: %(default)s]') |
Simon Glass | 1ee91c1 | 2020-11-03 13:54:10 -0700 | [diff] [blame] | 49 | parser.add_argument('-s', '--start', dest='start', type=int, |
| 50 | default=0, help='Commit to start creating patches from (0 = HEAD)') |
| 51 | parser.add_argument('-v', '--verbose', action='store_true', dest='verbose', |
| 52 | default=False, help='Verbose output of errors and warnings') |
| 53 | parser.add_argument('-H', '--full-help', action='store_true', dest='full_help', |
| 54 | default=False, help='Display the README file') |
| 55 | |
Simon Glass | ecb09da | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 56 | subparsers = parser.add_subparsers(dest='cmd') |
| 57 | send = subparsers.add_parser('send') |
Simon Glass | ecb09da | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 58 | send.add_argument('-i', '--ignore-errors', action='store_true', |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 59 | dest='ignore_errors', default=False, |
| 60 | help='Send patches email even if patch errors are found') |
Simon Glass | ecb09da | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 61 | send.add_argument('-l', '--limit-cc', dest='limit', type=int, default=None, |
| 62 | help='Limit the cc list to LIMIT entries [default: %(default)s]') |
| 63 | send.add_argument('-m', '--no-maintainers', action='store_false', |
Simon Glass | 46b84d8 | 2014-09-14 20:23:17 -0600 | [diff] [blame] | 64 | dest='add_maintainers', default=True, |
| 65 | help="Don't cc the file maintainers automatically") |
Simon Glass | ecb09da | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 66 | send.add_argument('-n', '--dry-run', action='store_true', dest='dry_run', |
Simon Glass | 33bdd9e | 2013-03-26 13:09:45 +0000 | [diff] [blame] | 67 | default=False, help="Do a dry run (create but don't email patches)") |
Simon Glass | ecb09da | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 68 | send.add_argument('-r', '--in-reply-to', type=str, action='store', |
Doug Anderson | 06f27ac | 2013-03-17 10:31:04 +0000 | [diff] [blame] | 69 | help="Message ID that this series is in reply to") |
Simon Glass | ecb09da | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 70 | send.add_argument('-t', '--ignore-bad-tags', action='store_true', |
| 71 | default=False, help='Ignore bad tags / aliases') |
Simon Glass | ecb09da | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 72 | send.add_argument('-T', '--thread', action='store_true', dest='thread', |
| 73 | default=False, help='Create patches as a single thread') |
| 74 | send.add_argument('--cc-cmd', dest='cc_cmd', type=str, action='store', |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 75 | default=None, help='Output cc list for patch file (used by git)') |
Simon Glass | ecb09da | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 76 | send.add_argument('--no-binary', action='store_true', dest='ignore_binary', |
| 77 | default=False, |
| 78 | help="Do not output contents of changes in binary files") |
| 79 | send.add_argument('--no-check', action='store_false', dest='check_patch', |
| 80 | default=True, |
| 81 | help="Don't check for patch compliance") |
| 82 | send.add_argument('--no-tags', action='store_false', dest='process_tags', |
| 83 | default=True, help="Don't process subject tags as aliases") |
Philipp Tomsich | 858531a | 2020-11-24 18:14:52 +0100 | [diff] [blame] | 84 | send.add_argument('--no-signoff', action='store_false', dest='add_signoff', |
| 85 | default=True, help="Don't add Signed-off-by to patches") |
Simon Glass | ecb09da | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 86 | send.add_argument('--smtp-server', type=str, |
| 87 | help="Specify the SMTP server to 'git send-email'") |
Tom Rini | 5a9ecb2 | 2020-07-24 08:42:06 -0400 | [diff] [blame] | 88 | |
Simon Glass | ecb09da | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 89 | send.add_argument('patchfiles', nargs='*') |
Simon Glass | 9c501e1 | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 90 | |
Simon Glass | 109e84e | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 91 | test_parser = subparsers.add_parser('test', help='Run tests') |
Simon Glass | 3b762cc | 2020-10-29 21:46:28 -0600 | [diff] [blame] | 92 | test_parser.add_argument('testname', type=str, default=None, nargs='?', |
| 93 | help="Specify the test to run") |
Simon Glass | 109e84e | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 94 | |
Simon Glass | 3db916d | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 95 | status = subparsers.add_parser('status', |
| 96 | help='Check status of patches in patchwork') |
Simon Glass | 2112d07 | 2020-10-29 21:46:38 -0600 | [diff] [blame] | 97 | status.add_argument('-C', '--show-comments', action='store_true', |
| 98 | help='Show comments from each patch') |
Simon Glass | d0a0a58 | 2020-10-29 21:46:36 -0600 | [diff] [blame] | 99 | status.add_argument('-d', '--dest-branch', type=str, |
| 100 | help='Name of branch to create with collected responses') |
| 101 | status.add_argument('-f', '--force', action='store_true', |
| 102 | help='Force overwriting an existing branch') |
Simon Glass | 3db916d | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 103 | |
Doug Anderson | 31ffd7f | 2012-12-03 14:43:18 +0000 | [diff] [blame] | 104 | # Parse options twice: first to get the project and second to handle |
Simon Glass | 1ee91c1 | 2020-11-03 13:54:10 -0700 | [diff] [blame] | 105 | # defaults properly (which depends on project) |
| 106 | # Use parse_known_args() in case 'cmd' is omitted |
Simon Glass | eb101ac | 2020-07-05 21:41:53 -0600 | [diff] [blame] | 107 | argv = sys.argv[1:] |
Simon Glass | 1ee91c1 | 2020-11-03 13:54:10 -0700 | [diff] [blame] | 108 | args, rest = parser.parse_known_args(argv) |
Simon Glass | ecb09da | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 109 | if hasattr(args, 'project'): |
Simon Glass | 1ee91c1 | 2020-11-03 13:54:10 -0700 | [diff] [blame] | 110 | settings.Setup(gitutil, parser, args.project, '') |
| 111 | args, rest = parser.parse_known_args(argv) |
| 112 | |
| 113 | # If we have a command, it is safe to parse all arguments |
| 114 | if args.cmd: |
| 115 | args = parser.parse_args(argv) |
| 116 | else: |
| 117 | # No command, so insert it after the known arguments and before the ones |
| 118 | # that presumably relate to the 'send' subcommand |
| 119 | nargs = len(rest) |
| 120 | argv = argv[:-nargs] + ['send'] + rest |
Simon Glass | ecb09da | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 121 | args = parser.parse_args(argv) |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 122 | |
Simon Glass | 2b68b36 | 2015-07-30 13:47:41 -0600 | [diff] [blame] | 123 | if __name__ != "__main__": |
| 124 | pass |
| 125 | |
Simon Glass | dbac716 | 2020-07-05 21:41:59 -0600 | [diff] [blame] | 126 | if not args.debug: |
| 127 | sys.tracebacklimit = 0 |
| 128 | |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 129 | # Run our meagre tests |
Simon Glass | 109e84e | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 130 | if args.cmd == 'test': |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 131 | import doctest |
Simon Glass | a997ea5 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 132 | from patman import func_test |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 133 | |
| 134 | sys.argv = [sys.argv[0]] |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 135 | result = unittest.TestResult() |
Simon Glass | 3b762cc | 2020-10-29 21:46:28 -0600 | [diff] [blame] | 136 | suite = unittest.TestSuite() |
| 137 | loader = unittest.TestLoader() |
Simon Glass | cf5f0b5 | 2020-06-14 10:54:04 -0600 | [diff] [blame] | 138 | for module in (test_checkpatch.TestPatch, func_test.TestFunctional): |
Simon Glass | 3b762cc | 2020-10-29 21:46:28 -0600 | [diff] [blame] | 139 | if args.testname: |
| 140 | try: |
| 141 | suite.addTests(loader.loadTestsFromName(args.testname, module)) |
| 142 | except AttributeError: |
| 143 | continue |
| 144 | else: |
| 145 | suite.addTests(loader.loadTestsFromTestCase(module)) |
| 146 | suite.run(result) |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 147 | |
Simon Glass | 5f9325d | 2020-04-09 15:08:40 -0600 | [diff] [blame] | 148 | for module in ['gitutil', 'settings', 'terminal']: |
Doug Anderson | 06a9515 | 2012-12-03 14:43:19 +0000 | [diff] [blame] | 149 | suite = doctest.DocTestSuite(module) |
| 150 | suite.run(result) |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 151 | |
Simon Glass | 3b762cc | 2020-10-29 21:46:28 -0600 | [diff] [blame] | 152 | sys.exit(test_util.ReportResult('patman', args.testname, result)) |
Tom Rini | 5a9ecb2 | 2020-07-24 08:42:06 -0400 | [diff] [blame] | 153 | |
Simon Glass | 109e84e | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 154 | # Process commits, produce patches files, check them, email them |
| 155 | elif args.cmd == 'send': |
| 156 | # Called from git with a patch filename as argument |
| 157 | # Printout a list of additional CC recipients for this patch |
| 158 | if args.cc_cmd: |
| 159 | fd = open(args.cc_cmd, 'r') |
| 160 | re_line = re.compile('(\S*) (.*)') |
| 161 | for line in fd.readlines(): |
| 162 | match = re_line.match(line) |
| 163 | if match and match.group(1) == args.patchfiles[0]: |
| 164 | for cc in match.group(2).split('\0'): |
| 165 | cc = cc.strip() |
| 166 | if cc: |
| 167 | print(cc) |
| 168 | fd.close() |
Tom Rini | 5a9ecb2 | 2020-07-24 08:42:06 -0400 | [diff] [blame] | 169 | |
Simon Glass | 109e84e | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 170 | elif args.full_help: |
| 171 | pager = os.getenv('PAGER') |
| 172 | if not pager: |
| 173 | pager = 'more' |
| 174 | fname = os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])), |
| 175 | 'README') |
| 176 | command.Run(pager, fname) |
Simon Glass | 2613288 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 177 | |
Simon Glass | 109e84e | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 178 | else: |
| 179 | control.send(args) |
Simon Glass | 3db916d | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 180 | |
| 181 | # Check status of patches in patchwork |
| 182 | elif args.cmd == 'status': |
| 183 | ret_code = 0 |
| 184 | try: |
Simon Glass | d0a0a58 | 2020-10-29 21:46:36 -0600 | [diff] [blame] | 185 | control.patchwork_status(args.branch, args.count, args.start, args.end, |
Simon Glass | 2112d07 | 2020-10-29 21:46:38 -0600 | [diff] [blame] | 186 | args.dest_branch, args.force, |
Simon Glass | 3d80d79 | 2020-11-03 13:54:15 -0700 | [diff] [blame] | 187 | args.show_comments, args.patchwork_url) |
Simon Glass | 3db916d | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 188 | except Exception as e: |
| 189 | terminal.Print('patman: %s: %s' % (type(e).__name__, e), |
| 190 | colour=terminal.Color.RED) |
| 191 | if args.debug: |
| 192 | print() |
| 193 | traceback.print_exc() |
| 194 | ret_code = 1 |
| 195 | sys.exit(ret_code) |