blob: b96000807ebbba548effd91079d40ac239bf7ef5 [file] [log] [blame]
Simon Glassefeac062019-10-31 07:42:52 -06001#!/usr/bin/env python3
Tom Rini10e47792018-05-06 17:58:06 -04002# SPDX-License-Identifier: GPL-2.0+
Simon Glass26132882012-01-14 15:12:45 +00003#
4# Copyright (c) 2011 The Chromium OS Authors.
5#
Simon Glass26132882012-01-14 15:12:45 +00006
7"""See README for more information"""
8
Simon Glass7f739bb2020-07-05 21:41:53 -06009from argparse import ArgumentParser
Simon Glass26132882012-01-14 15:12:45 +000010import os
11import re
12import sys
Simon Glass979996e2020-07-05 21:41:59 -060013import traceback
Simon Glass26132882012-01-14 15:12:45 +000014import unittest
15
Simon Glassbdaad402020-04-17 18:08:52 -060016if __name__ == "__main__":
Simon Glass42143162020-04-17 18:09:05 -060017 # Allow 'from patman import xxx to work'
Simon Glassbdaad402020-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 Glass26132882012-01-14 15:12:45 +000021# Our modules
Simon Glassa997ea52020-04-17 18:09:04 -060022from patman import command
Simon Glass85a03de2020-07-05 21:41:49 -060023from patman import control
Simon Glassa997ea52020-04-17 18:09:04 -060024from patman import gitutil
Simon Glassa997ea52020-04-17 18:09:04 -060025from patman import project
26from patman import settings
27from patman import terminal
Simon Glass4e98ab92020-07-05 21:41:48 -060028from patman import test_util
Simon Glasscf5f0b52020-06-14 10:54:04 -060029from patman import test_checkpatch
Simon Glass26132882012-01-14 15:12:45 +000030
Simon Glass9c501e12020-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 Glass979996e2020-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 Glass9c501e12020-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 Glass7f739bb2020-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 Glass26132882012-01-14 15:12:45 +000045
Simon Glass7f739bb2020-07-05 21:41:53 -060046parser = ArgumentParser(epilog=epilog)
Simon Glassc16f3242020-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 Glass26132882012-01-14 15:12:45 +000050 default=False, help='Display the README file')
Simon Glassc16f3242020-07-05 21:41:54 -060051send.add_argument('-i', '--ignore-errors', action='store_true',
Simon Glass26132882012-01-14 15:12:45 +000052 dest='ignore_errors', default=False,
53 help='Send patches email even if patch errors are found')
Simon Glassc16f3242020-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 Glass46b84d82014-09-14 20:23:17 -060057 dest='add_maintainers', default=True,
58 help="Don't cc the file maintainers automatically")
Simon Glassc16f3242020-07-05 21:41:54 -060059send.add_argument('-n', '--dry-run', action='store_true', dest='dry_run',
Simon Glass33bdd9e2013-03-26 13:09:45 +000060 default=False, help="Do a dry run (create but don't email patches)")
Simon Glassc16f3242020-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 Anderson06f27ac2013-03-17 10:31:04 +000065 help="Message ID that this series is in reply to")
Simon Glassc16f3242020-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 Glass26132882012-01-14 15:12:45 +000069 default=False, help='Verbose output of errors and warnings')
Simon Glassc16f3242020-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 Glass26132882012-01-14 15:12:45 +000073 default=None, help='Output cc list for patch file (used by git)')
Simon Glassc16f3242020-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 Glass9c501e12020-07-05 21:41:55 -060084AddCommonArgs(send)
Simon Glass26132882012-01-14 15:12:45 +000085
Simon Glassc16f3242020-07-05 21:41:54 -060086send.add_argument('patchfiles', nargs='*')
Doug Anderson3d3077c2012-12-03 14:43:17 +000087
Simon Glass9c501e12020-07-05 21:41:55 -060088test_parser = subparsers.add_parser('test', help='Run tests')
89AddCommonArgs(test_parser)
90
Doug Anderson31ffd7f2012-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 Glass7f739bb2020-07-05 21:41:53 -060093argv = sys.argv[1:]
Simon Glassc16f3242020-07-05 21:41:54 -060094if len(argv) < 1 or argv[0].startswith('-'):
95 argv = ['send'] + argv
Simon Glass7f739bb2020-07-05 21:41:53 -060096args = parser.parse_args(argv)
Simon Glassc16f3242020-07-05 21:41:54 -060097if hasattr(args, 'project'):
98 settings.Setup(gitutil, send, args.project, '')
99 args = parser.parse_args(argv)
Simon Glass26132882012-01-14 15:12:45 +0000100
Simon Glass2b68b362015-07-30 13:47:41 -0600101if __name__ != "__main__":
102 pass
103
Simon Glass979996e2020-07-05 21:41:59 -0600104if not args.debug:
105 sys.tracebacklimit = 0
106
Simon Glass26132882012-01-14 15:12:45 +0000107# Run our meagre tests
Simon Glass9c501e12020-07-05 21:41:55 -0600108if args.cmd == 'test':
Simon Glass26132882012-01-14 15:12:45 +0000109 import doctest
Simon Glassa997ea52020-04-17 18:09:04 -0600110 from patman import func_test
Simon Glass26132882012-01-14 15:12:45 +0000111
112 sys.argv = [sys.argv[0]]
Simon Glass26132882012-01-14 15:12:45 +0000113 result = unittest.TestResult()
Simon Glasscf5f0b52020-06-14 10:54:04 -0600114 for module in (test_checkpatch.TestPatch, func_test.TestFunctional):
Simon Glassdf1bc5c2017-05-29 15:31:31 -0600115 suite = unittest.TestLoader().loadTestsFromTestCase(module)
116 suite.run(result)
Simon Glass26132882012-01-14 15:12:45 +0000117
Simon Glass5f9325d2020-04-09 15:08:40 -0600118 for module in ['gitutil', 'settings', 'terminal']:
Doug Anderson06a95152012-12-03 14:43:19 +0000119 suite = doctest.DocTestSuite(module)
120 suite.run(result)
Simon Glass26132882012-01-14 15:12:45 +0000121
Simon Glass4e98ab92020-07-05 21:41:48 -0600122 sys.exit(test_util.ReportResult('patman', None, result))
Simon Glass26132882012-01-14 15:12:45 +0000123
Simon Glass9c501e12020-07-05 21:41:55 -0600124# Process commits, produce patches files, check them, email them
125elif 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()
Simon Glass26132882012-01-14 15:12:45 +0000139
Simon Glass9c501e12020-07-05 21:41:55 -0600140 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)
Simon Glass26132882012-01-14 15:12:45 +0000147
Simon Glass9c501e12020-07-05 21:41:55 -0600148 else:
149 control.send(args)