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