blob: b96000807ebbba548effd91079d40ac239bf7ef5 [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
12import sys
Simon Glassc9360f162020-07-05 21:41:59 -060013import traceback
Simon Glass0d24de92012-01-14 15:12:45 +000014import unittest
15
Simon Glass0d7a8c42020-04-17 18:08:52 -060016if __name__ == "__main__":
Simon Glassb4fa9492020-04-17 18:09:05 -060017 # Allow 'from patman import xxx to work'
Simon Glass0d7a8c42020-04-17 18:08:52 -060018 our_path = os.path.dirname(os.path.realpath(__file__))
19 sys.path.append(os.path.join(our_path, '..'))
20
Simon Glass0d24de92012-01-14 15:12:45 +000021# Our modules
Simon Glassbf776672020-04-17 18:09:04 -060022from patman import command
Simon Glass7d5b04e2020-07-05 21:41:49 -060023from patman import control
Simon Glassbf776672020-04-17 18:09:04 -060024from patman import gitutil
Simon Glassbf776672020-04-17 18:09:04 -060025from patman import project
26from patman import settings
27from patman import terminal
Simon Glass0b3d24a2020-07-05 21:41:48 -060028from patman import test_util
Simon Glass40d97342020-06-14 10:54:04 -060029from patman import test_checkpatch
Simon Glass0d24de92012-01-14 15:12:45 +000030
Simon Glass6bb74de2020-07-05 21:41:55 -060031def 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 Glassc9360f162020-07-05 21:41:59 -060038 parser.add_argument('-D', '--debug', action='store_true',
39 help='Enabling debugging (provides a full traceback on error)')
Simon Glass6bb74de2020-07-05 21:41:55 -060040 parser.add_argument('-s', '--start', dest='start', type=int,
41 default=0, help='Commit to start creating patches from (0 = HEAD)')
42
Simon Glassfda1e372020-07-05 21:41:53 -060043epilog = '''Create patches from commits in a branch, check them and email them
44as specified by tags you place in the commits. Use -n to do a dry run first.'''
Simon Glass57374b02020-07-05 21:41:55 -060045
Simon Glassfda1e372020-07-05 21:41:53 -060046parser = ArgumentParser(epilog=epilog)
Simon Glassc4e79022020-07-05 21:41:54 -060047subparsers = parser.add_subparsers(dest='cmd')
48send = subparsers.add_parser('send')
49send.add_argument('-H', '--full-help', action='store_true', dest='full_help',
Simon Glass0d24de92012-01-14 15:12:45 +000050 default=False, help='Display the README file')
Simon Glassc4e79022020-07-05 21:41:54 -060051send.add_argument('-i', '--ignore-errors', action='store_true',
Simon Glass0d24de92012-01-14 15:12:45 +000052 dest='ignore_errors', default=False,
53 help='Send patches email even if patch errors are found')
Simon Glassc4e79022020-07-05 21:41:54 -060054send.add_argument('-l', '--limit-cc', dest='limit', type=int, default=None,
55 help='Limit the cc list to LIMIT entries [default: %(default)s]')
56send.add_argument('-m', '--no-maintainers', action='store_false',
Simon Glass983a2742014-09-14 20:23:17 -060057 dest='add_maintainers', default=True,
58 help="Don't cc the file maintainers automatically")
Simon Glassc4e79022020-07-05 21:41:54 -060059send.add_argument('-n', '--dry-run', action='store_true', dest='dry_run',
Simon Glassca706e72013-03-26 13:09:45 +000060 default=False, help="Do a dry run (create but don't email patches)")
Simon Glassc4e79022020-07-05 21:41:54 -060061send.add_argument('-p', '--project', default=project.DetectProject(),
62 help="Project name; affects default option values and "
63 "aliases [default: %(default)s]")
64send.add_argument('-r', '--in-reply-to', type=str, action='store',
Doug Anderson6d819922013-03-17 10:31:04 +000065 help="Message ID that this series is in reply to")
Simon Glassc4e79022020-07-05 21:41:54 -060066send.add_argument('-t', '--ignore-bad-tags', action='store_true',
67 default=False, help='Ignore bad tags / aliases')
68send.add_argument('-v', '--verbose', action='store_true', dest='verbose',
Simon Glass0d24de92012-01-14 15:12:45 +000069 default=False, help='Verbose output of errors and warnings')
Simon Glassc4e79022020-07-05 21:41:54 -060070send.add_argument('-T', '--thread', action='store_true', dest='thread',
71 default=False, help='Create patches as a single thread')
72send.add_argument('--cc-cmd', dest='cc_cmd', type=str, action='store',
Simon Glass0d24de92012-01-14 15:12:45 +000073 default=None, help='Output cc list for patch file (used by git)')
Simon Glassc4e79022020-07-05 21:41:54 -060074send.add_argument('--no-binary', action='store_true', dest='ignore_binary',
75 default=False,
76 help="Do not output contents of changes in binary files")
77send.add_argument('--no-check', action='store_false', dest='check_patch',
78 default=True,
79 help="Don't check for patch compliance")
80send.add_argument('--no-tags', action='store_false', dest='process_tags',
81 default=True, help="Don't process subject tags as aliases")
82send.add_argument('--smtp-server', type=str,
83 help="Specify the SMTP server to 'git send-email'")
Simon Glass6bb74de2020-07-05 21:41:55 -060084AddCommonArgs(send)
Simon Glass0d24de92012-01-14 15:12:45 +000085
Simon Glassc4e79022020-07-05 21:41:54 -060086send.add_argument('patchfiles', nargs='*')
Simon Glass57374b02020-07-05 21:41:55 -060087
Simon Glass6bb74de2020-07-05 21:41:55 -060088test_parser = subparsers.add_parser('test', help='Run tests')
89AddCommonArgs(test_parser)
90
Doug Andersona1dcee82012-12-03 14:43:18 +000091# Parse options twice: first to get the project and second to handle
92# defaults properly (which depends on project).
Simon Glassfda1e372020-07-05 21:41:53 -060093argv = sys.argv[1:]
Simon Glassc4e79022020-07-05 21:41:54 -060094if len(argv) < 1 or argv[0].startswith('-'):
95 argv = ['send'] + argv
Simon Glassfda1e372020-07-05 21:41:53 -060096args = parser.parse_args(argv)
Simon Glassc4e79022020-07-05 21:41:54 -060097if hasattr(args, 'project'):
98 settings.Setup(gitutil, send, args.project, '')
99 args = parser.parse_args(argv)
Simon Glass0d24de92012-01-14 15:12:45 +0000100
Simon Glass9649e152015-07-30 13:47:41 -0600101if __name__ != "__main__":
102 pass
103
Simon Glassc9360f162020-07-05 21:41:59 -0600104if not args.debug:
105 sys.tracebacklimit = 0
106
Simon Glass0d24de92012-01-14 15:12:45 +0000107# Run our meagre tests
Simon Glass6bb74de2020-07-05 21:41:55 -0600108if args.cmd == 'test':
Simon Glass0d24de92012-01-14 15:12:45 +0000109 import doctest
Simon Glassbf776672020-04-17 18:09:04 -0600110 from patman import func_test
Simon Glass0d24de92012-01-14 15:12:45 +0000111
112 sys.argv = [sys.argv[0]]
Simon Glass0d24de92012-01-14 15:12:45 +0000113 result = unittest.TestResult()
Simon Glass40d97342020-06-14 10:54:04 -0600114 for module in (test_checkpatch.TestPatch, func_test.TestFunctional):
Simon Glass6e87ae12017-05-29 15:31:31 -0600115 suite = unittest.TestLoader().loadTestsFromTestCase(module)
116 suite.run(result)
Simon Glass0d24de92012-01-14 15:12:45 +0000117
Simon Glass37b224f2020-04-09 15:08:40 -0600118 for module in ['gitutil', 'settings', 'terminal']:
Doug Anderson656cffe2012-12-03 14:43:19 +0000119 suite = doctest.DocTestSuite(module)
120 suite.run(result)
Simon Glass0d24de92012-01-14 15:12:45 +0000121
Simon Glass0b3d24a2020-07-05 21:41:48 -0600122 sys.exit(test_util.ReportResult('patman', None, result))
Tom Rini72083962020-07-24 08:42:06 -0400123
Simon Glass0d24de92012-01-14 15:12:45 +0000124# Process commits, produce patches files, check them, email them
Simon Glass6bb74de2020-07-05 21:41:55 -0600125elif args.cmd == 'send':
126 # Called from git with a patch filename as argument
127 # Printout a list of additional CC recipients for this patch
128 if args.cc_cmd:
129 fd = open(args.cc_cmd, 'r')
130 re_line = re.compile('(\S*) (.*)')
131 for line in fd.readlines():
132 match = re_line.match(line)
133 if match and match.group(1) == args.patchfiles[0]:
134 for cc in match.group(2).split('\0'):
135 cc = cc.strip()
136 if cc:
137 print(cc)
138 fd.close()
139
140 elif args.full_help:
141 pager = os.getenv('PAGER')
142 if not pager:
143 pager = 'more'
144 fname = os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])),
145 'README')
146 command.Run(pager, fname)
147
148 else:
149 control.send(args)