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 |
| 12 | import sys |
Simon Glass | c9360f16 | 2020-07-05 21:41:59 -0600 | [diff] [blame] | 13 | import traceback |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 14 | import unittest |
| 15 | |
Simon Glass | 0d7a8c4 | 2020-04-17 18:08:52 -0600 | [diff] [blame] | 16 | if __name__ == "__main__": |
Simon Glass | b4fa949 | 2020-04-17 18:09:05 -0600 | [diff] [blame] | 17 | # Allow 'from patman import xxx to work' |
Simon Glass | 0d7a8c4 | 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 | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 21 | # Our modules |
Simon Glass | bf77667 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 22 | from patman import command |
Simon Glass | 7d5b04e | 2020-07-05 21:41:49 -0600 | [diff] [blame] | 23 | from patman import control |
Simon Glass | bf77667 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 24 | from patman import gitutil |
Simon Glass | bf77667 | 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 | 0b3d24a | 2020-07-05 21:41:48 -0600 | [diff] [blame] | 28 | from patman import test_util |
Simon Glass | 40d9734 | 2020-06-14 10:54:04 -0600 | [diff] [blame] | 29 | from patman import test_checkpatch |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 30 | |
Simon Glass | 6bb74de | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 31 | def AddCommonArgs(parser): |
| 32 | parser.add_argument('-b', '--branch', type=str, |
| 33 | help="Branch to process (by default, the current branch)") |
| 34 | parser.add_argument('-c', '--count', dest='count', type=int, |
| 35 | default=-1, help='Automatically create patches from top n commits') |
| 36 | parser.add_argument('-e', '--end', type=int, default=0, |
| 37 | help='Commits to skip at end of patch list') |
Simon Glass | c9360f16 | 2020-07-05 21:41:59 -0600 | [diff] [blame] | 38 | parser.add_argument('-D', '--debug', action='store_true', |
| 39 | help='Enabling debugging (provides a full traceback on error)') |
Simon Glass | 6bb74de | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 40 | parser.add_argument('-s', '--start', dest='start', type=int, |
| 41 | default=0, help='Commit to start creating patches from (0 = HEAD)') |
| 42 | |
Simon Glass | fda1e37 | 2020-07-05 21:41:53 -0600 | [diff] [blame] | 43 | epilog = '''Create patches from commits in a branch, check them and email them |
| 44 | 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] | 45 | |
Simon Glass | fda1e37 | 2020-07-05 21:41:53 -0600 | [diff] [blame] | 46 | parser = ArgumentParser(epilog=epilog) |
Simon Glass | c4e7902 | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 47 | subparsers = parser.add_subparsers(dest='cmd') |
| 48 | send = subparsers.add_parser('send') |
| 49 | send.add_argument('-H', '--full-help', action='store_true', dest='full_help', |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 50 | default=False, help='Display the README file') |
Simon Glass | c4e7902 | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 51 | send.add_argument('-i', '--ignore-errors', action='store_true', |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 52 | dest='ignore_errors', default=False, |
| 53 | help='Send patches email even if patch errors are found') |
Simon Glass | c4e7902 | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 54 | send.add_argument('-l', '--limit-cc', dest='limit', type=int, default=None, |
| 55 | help='Limit the cc list to LIMIT entries [default: %(default)s]') |
| 56 | send.add_argument('-m', '--no-maintainers', action='store_false', |
Simon Glass | 983a274 | 2014-09-14 20:23:17 -0600 | [diff] [blame] | 57 | dest='add_maintainers', default=True, |
| 58 | help="Don't cc the file maintainers automatically") |
Simon Glass | c4e7902 | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 59 | send.add_argument('-n', '--dry-run', action='store_true', dest='dry_run', |
Simon Glass | ca706e7 | 2013-03-26 13:09:45 +0000 | [diff] [blame] | 60 | 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] | 61 | send.add_argument('-p', '--project', default=project.DetectProject(), |
| 62 | help="Project name; affects default option values and " |
| 63 | "aliases [default: %(default)s]") |
| 64 | send.add_argument('-r', '--in-reply-to', type=str, action='store', |
Doug Anderson | 6d81992 | 2013-03-17 10:31:04 +0000 | [diff] [blame] | 65 | help="Message ID that this series is in reply to") |
Simon Glass | c4e7902 | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 66 | send.add_argument('-t', '--ignore-bad-tags', action='store_true', |
| 67 | default=False, help='Ignore bad tags / aliases') |
| 68 | send.add_argument('-v', '--verbose', action='store_true', dest='verbose', |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 69 | default=False, help='Verbose output of errors and warnings') |
Simon Glass | c4e7902 | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 70 | send.add_argument('-T', '--thread', action='store_true', dest='thread', |
| 71 | default=False, help='Create patches as a single thread') |
| 72 | send.add_argument('--cc-cmd', dest='cc_cmd', type=str, action='store', |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 73 | default=None, help='Output cc list for patch file (used by git)') |
Simon Glass | c4e7902 | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 74 | send.add_argument('--no-binary', action='store_true', dest='ignore_binary', |
| 75 | default=False, |
| 76 | help="Do not output contents of changes in binary files") |
| 77 | send.add_argument('--no-check', action='store_false', dest='check_patch', |
| 78 | default=True, |
| 79 | help="Don't check for patch compliance") |
| 80 | send.add_argument('--no-tags', action='store_false', dest='process_tags', |
| 81 | default=True, help="Don't process subject tags as aliases") |
| 82 | send.add_argument('--smtp-server', type=str, |
| 83 | help="Specify the SMTP server to 'git send-email'") |
Simon Glass | 6bb74de | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 84 | AddCommonArgs(send) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 85 | |
Simon Glass | c4e7902 | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 86 | send.add_argument('patchfiles', nargs='*') |
Simon Glass | 57374b0 | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 87 | |
Simon Glass | 6bb74de | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 88 | test_parser = subparsers.add_parser('test', help='Run tests') |
Simon Glass | 4af9987 | 2020-10-29 21:46:28 -0600 | [diff] [blame^] | 89 | test_parser.add_argument('testname', type=str, default=None, nargs='?', |
| 90 | help="Specify the test to run") |
Simon Glass | 6bb74de | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 91 | AddCommonArgs(test_parser) |
| 92 | |
Doug Anderson | a1dcee8 | 2012-12-03 14:43:18 +0000 | [diff] [blame] | 93 | # Parse options twice: first to get the project and second to handle |
| 94 | # defaults properly (which depends on project). |
Simon Glass | fda1e37 | 2020-07-05 21:41:53 -0600 | [diff] [blame] | 95 | argv = sys.argv[1:] |
Simon Glass | c4e7902 | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 96 | if len(argv) < 1 or argv[0].startswith('-'): |
| 97 | argv = ['send'] + argv |
Simon Glass | fda1e37 | 2020-07-05 21:41:53 -0600 | [diff] [blame] | 98 | args = parser.parse_args(argv) |
Simon Glass | c4e7902 | 2020-07-05 21:41:54 -0600 | [diff] [blame] | 99 | if hasattr(args, 'project'): |
| 100 | settings.Setup(gitutil, send, args.project, '') |
| 101 | args = parser.parse_args(argv) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 102 | |
Simon Glass | 9649e15 | 2015-07-30 13:47:41 -0600 | [diff] [blame] | 103 | if __name__ != "__main__": |
| 104 | pass |
| 105 | |
Simon Glass | c9360f16 | 2020-07-05 21:41:59 -0600 | [diff] [blame] | 106 | if not args.debug: |
| 107 | sys.tracebacklimit = 0 |
| 108 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 109 | # Run our meagre tests |
Simon Glass | 6bb74de | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 110 | if args.cmd == 'test': |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 111 | import doctest |
Simon Glass | bf77667 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 112 | from patman import func_test |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 113 | |
| 114 | sys.argv = [sys.argv[0]] |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 115 | result = unittest.TestResult() |
Simon Glass | 4af9987 | 2020-10-29 21:46:28 -0600 | [diff] [blame^] | 116 | suite = unittest.TestSuite() |
| 117 | loader = unittest.TestLoader() |
Simon Glass | 40d9734 | 2020-06-14 10:54:04 -0600 | [diff] [blame] | 118 | for module in (test_checkpatch.TestPatch, func_test.TestFunctional): |
Simon Glass | 4af9987 | 2020-10-29 21:46:28 -0600 | [diff] [blame^] | 119 | if args.testname: |
| 120 | try: |
| 121 | suite.addTests(loader.loadTestsFromName(args.testname, module)) |
| 122 | except AttributeError: |
| 123 | continue |
| 124 | else: |
| 125 | suite.addTests(loader.loadTestsFromTestCase(module)) |
| 126 | suite.run(result) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 127 | |
Simon Glass | 37b224f | 2020-04-09 15:08:40 -0600 | [diff] [blame] | 128 | for module in ['gitutil', 'settings', 'terminal']: |
Doug Anderson | 656cffe | 2012-12-03 14:43:19 +0000 | [diff] [blame] | 129 | suite = doctest.DocTestSuite(module) |
| 130 | suite.run(result) |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 131 | |
Simon Glass | 4af9987 | 2020-10-29 21:46:28 -0600 | [diff] [blame^] | 132 | sys.exit(test_util.ReportResult('patman', args.testname, result)) |
Tom Rini | 7208396 | 2020-07-24 08:42:06 -0400 | [diff] [blame] | 133 | |
Simon Glass | 0d24de9 | 2012-01-14 15:12:45 +0000 | [diff] [blame] | 134 | # Process commits, produce patches files, check them, email them |
Simon Glass | 6bb74de | 2020-07-05 21:41:55 -0600 | [diff] [blame] | 135 | elif args.cmd == 'send': |
| 136 | # Called from git with a patch filename as argument |
| 137 | # Printout a list of additional CC recipients for this patch |
| 138 | if args.cc_cmd: |
| 139 | fd = open(args.cc_cmd, 'r') |
| 140 | re_line = re.compile('(\S*) (.*)') |
| 141 | for line in fd.readlines(): |
| 142 | match = re_line.match(line) |
| 143 | if match and match.group(1) == args.patchfiles[0]: |
| 144 | for cc in match.group(2).split('\0'): |
| 145 | cc = cc.strip() |
| 146 | if cc: |
| 147 | print(cc) |
| 148 | fd.close() |
| 149 | |
| 150 | elif args.full_help: |
| 151 | pager = os.getenv('PAGER') |
| 152 | if not pager: |
| 153 | pager = 'more' |
| 154 | fname = os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])), |
| 155 | 'README') |
| 156 | command.Run(pager, fname) |
| 157 | |
| 158 | else: |
| 159 | control.send(args) |