mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-12-20 00:41:29 +01:00
Patman normally sends multiple concurrent requests to the patchwork server, as this is faster. Provide an option to disable this. Signed-off-by: Simon Glass <sjg@chromium.org>
147 lines
5.0 KiB
Python
147 lines
5.0 KiB
Python
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright 2020 Google LLC
|
|
#
|
|
"""Handles the main control logic of patman
|
|
|
|
This module provides various functions called by the main program to implement
|
|
the features of patman.
|
|
"""
|
|
|
|
import os
|
|
import re
|
|
import sys
|
|
import traceback
|
|
|
|
try:
|
|
from importlib import resources
|
|
except ImportError:
|
|
# for Python 3.6
|
|
import importlib_resources as resources
|
|
|
|
from u_boot_pylib import gitutil
|
|
from u_boot_pylib import terminal
|
|
from u_boot_pylib import tools
|
|
from patman import checkpatch
|
|
from patman import patchstream
|
|
from patman import patchwork
|
|
from patman import send
|
|
|
|
|
|
def setup():
|
|
"""Do required setup before doing anything"""
|
|
gitutil.setup()
|
|
|
|
|
|
def do_send(args):
|
|
"""Create, check and send patches by email
|
|
|
|
Args:
|
|
args (argparse.Namespace): Arguments to patman
|
|
"""
|
|
setup()
|
|
send.send(args)
|
|
|
|
|
|
def patchwork_status(branch, count, start, end, dest_branch, force,
|
|
show_comments, url, single_thread=False):
|
|
"""Check the status of patches in patchwork
|
|
|
|
This finds the series in patchwork using the Series-link tag, checks for new
|
|
comments and review tags, displays then and creates a new branch with the
|
|
review tags.
|
|
|
|
Args:
|
|
branch (str): Branch to create patches from (None = current)
|
|
count (int): Number of patches to produce, or -1 to produce patches for
|
|
the current branch back to the upstream commit
|
|
start (int): Start partch to use (0=first / top of branch)
|
|
end (int): End patch to use (0=last one in series, 1=one before that,
|
|
etc.)
|
|
dest_branch (str): Name of new branch to create with the updated tags
|
|
(None to not create a branch)
|
|
force (bool): With dest_branch, force overwriting an existing branch
|
|
show_comments (bool): True to display snippets from the comments
|
|
provided by reviewers
|
|
url (str): URL of patchwork server, e.g. 'https://patchwork.ozlabs.org'.
|
|
This is ignored if the series provides a Series-patchwork-url tag.
|
|
|
|
Raises:
|
|
ValueError: if the branch has no Series-link value
|
|
"""
|
|
if count == -1:
|
|
# Work out how many patches to send if we can
|
|
count = (gitutil.count_commits_to_branch(branch) - start)
|
|
|
|
series = patchstream.get_metadata(branch, start, count - end)
|
|
warnings = 0
|
|
for cmt in series.commits:
|
|
if cmt.warn:
|
|
print('%d warnings for %s:' % (len(cmt.warn), cmt.hash))
|
|
for warn in cmt.warn:
|
|
print('\t', warn)
|
|
warnings += 1
|
|
print
|
|
if warnings:
|
|
raise ValueError('Please fix warnings before running status')
|
|
links = series.get('links')
|
|
if not links:
|
|
raise ValueError("Branch has no Series-links value")
|
|
|
|
# Find the link without a version number (we don't support versions yet)
|
|
found = [link for link in links.split() if not ':' in link]
|
|
if not found:
|
|
raise ValueError('Series-links has no current version (without :)')
|
|
|
|
# Allow the series to override the URL
|
|
if 'patchwork_url' in series:
|
|
url = series.patchwork_url
|
|
pwork = patchwork.Patchwork(url, single_thread=single_thread)
|
|
|
|
# Import this here to avoid failing on other commands if the dependencies
|
|
# are not present
|
|
from patman import status
|
|
status.check_and_show_status(series, found[0], branch, dest_branch, force,
|
|
show_comments, pwork)
|
|
|
|
|
|
def do_patman(args):
|
|
if args.cmd == 'send':
|
|
# Called from git with a patch filename as argument
|
|
# Printout a list of additional CC recipients for this patch
|
|
if args.cc_cmd:
|
|
re_line = re.compile(r'(\S*) (.*)')
|
|
with open(args.cc_cmd, 'r', encoding='utf-8') as inf:
|
|
for line in inf.readlines():
|
|
match = re_line.match(line)
|
|
if match and match.group(1) == args.patchfiles[0]:
|
|
for cca in match.group(2).split('\0'):
|
|
cca = cca.strip()
|
|
if cca:
|
|
print(cca)
|
|
|
|
elif args.full_help:
|
|
with resources.path('patman', 'README.rst') as readme:
|
|
tools.print_full_help(str(readme))
|
|
else:
|
|
# If we are not processing tags, no need to warning about bad ones
|
|
if not args.process_tags:
|
|
args.ignore_bad_tags = True
|
|
do_send(args)
|
|
|
|
ret_code = 0
|
|
try:
|
|
# Check status of patches in patchwork
|
|
if args.cmd == 'status':
|
|
patchwork_status(args.branch, args.count, args.start, args.end,
|
|
args.dest_branch, args.force, args.show_comments,
|
|
args.patchwork_url)
|
|
except Exception as exc:
|
|
terminal.tprint(f'patman: {type(exc).__name__}: {exc}',
|
|
colour=terminal.Color.RED)
|
|
if args.debug:
|
|
print()
|
|
traceback.print_exc()
|
|
ret_code = 1
|
|
return ret_code
|