2014-04-18 20:31:22 +02:00
|
|
|
# Copyright (c) 2014 The Chromium Embedded Framework Authors. All rights
|
2012-04-03 03:34:16 +02:00
|
|
|
# reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
# can be found in the LICENSE file
|
|
|
|
|
2020-01-09 15:42:00 +01:00
|
|
|
from __future__ import absolute_import
|
2014-04-18 20:31:22 +02:00
|
|
|
from exec_util import exec_cmd
|
|
|
|
import os
|
2017-04-27 03:59:52 +02:00
|
|
|
import sys
|
|
|
|
|
|
|
|
if sys.platform == 'win32':
|
|
|
|
# Force use of the git version bundled with depot_tools.
|
|
|
|
git_exe = 'git.bat'
|
|
|
|
else:
|
|
|
|
git_exe = 'git'
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2017-05-28 15:04:18 +02:00
|
|
|
|
2014-04-18 20:31:22 +02:00
|
|
|
def is_checkout(path):
|
|
|
|
""" Returns true if the path represents a git checkout. """
|
2017-04-27 03:59:52 +02:00
|
|
|
return os.path.isdir(os.path.join(path, '.git'))
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2017-05-28 15:04:18 +02:00
|
|
|
|
2019-05-15 16:35:41 +02:00
|
|
|
def is_ancestor(path='.', commit1='HEAD', commit2='master'):
|
|
|
|
""" Returns whether |commit1| is an ancestor of |commit2|. """
|
|
|
|
cmd = "%s merge-base --is-ancestor %s %s" % (git_exe, commit1, commit2)
|
|
|
|
result = exec_cmd(cmd, path)
|
|
|
|
return result['ret'] == 0
|
|
|
|
|
|
|
|
|
2017-05-28 15:04:18 +02:00
|
|
|
def get_hash(path='.', branch='HEAD'):
|
2014-04-18 20:31:22 +02:00
|
|
|
""" Returns the git hash for the specified branch/tag/hash. """
|
2017-04-27 03:59:52 +02:00
|
|
|
cmd = "%s rev-parse %s" % (git_exe, branch)
|
2014-04-18 20:31:22 +02:00
|
|
|
result = exec_cmd(cmd, path)
|
|
|
|
if result['out'] != '':
|
|
|
|
return result['out'].strip()
|
|
|
|
return 'Unknown'
|
|
|
|
|
2017-05-28 15:04:18 +02:00
|
|
|
|
2019-03-14 22:37:47 +01:00
|
|
|
def get_branch_name(path='.', branch='HEAD'):
|
|
|
|
""" Returns the branch name for the specified branch/tag/hash. """
|
|
|
|
# Returns the branch name if not in detached HEAD state, else an empty string
|
|
|
|
# or "HEAD".
|
|
|
|
cmd = "%s rev-parse --abbrev-ref %s" % (git_exe, branch)
|
|
|
|
result = exec_cmd(cmd, path)
|
|
|
|
if result['out'] != '':
|
|
|
|
name = result['out'].strip()
|
|
|
|
if len(name) > 0 and name != 'HEAD':
|
|
|
|
return name
|
|
|
|
|
|
|
|
# Returns a value like "(HEAD, origin/3729, 3729)".
|
|
|
|
# Ubuntu 14.04 uses Git version 1.9.1 which does not support %D (which
|
|
|
|
# provides the same output but without the parentheses).
|
|
|
|
cmd = "%s log -n 1 --pretty=%%d %s" % (git_exe, branch)
|
|
|
|
result = exec_cmd(cmd, path)
|
|
|
|
if result['out'] != '':
|
|
|
|
return result['out'].strip()[1:-1].split(', ')[-1]
|
|
|
|
return 'Unknown'
|
|
|
|
|
|
|
|
|
2017-05-28 15:04:18 +02:00
|
|
|
def get_url(path='.'):
|
2014-04-18 20:31:22 +02:00
|
|
|
""" Returns the origin url for the specified path. """
|
2017-04-27 03:59:52 +02:00
|
|
|
cmd = "%s config --get remote.origin.url" % git_exe
|
2014-04-18 20:31:22 +02:00
|
|
|
result = exec_cmd(cmd, path)
|
|
|
|
if result['out'] != '':
|
|
|
|
return result['out'].strip()
|
|
|
|
return 'Unknown'
|
|
|
|
|
2017-05-28 15:04:18 +02:00
|
|
|
|
|
|
|
def get_commit_number(path='.', branch='HEAD'):
|
2015-03-17 00:34:35 +01:00
|
|
|
""" Returns the number of commits in the specified branch/tag/hash. """
|
2017-04-27 03:59:52 +02:00
|
|
|
cmd = "%s rev-list --count %s" % (git_exe, branch)
|
2014-04-18 20:31:22 +02:00
|
|
|
result = exec_cmd(cmd, path)
|
2015-03-17 00:34:35 +01:00
|
|
|
if result['out'] != '':
|
|
|
|
return result['out'].strip()
|
|
|
|
return '0'
|
2014-04-18 20:31:22 +02:00
|
|
|
|
2017-05-28 15:04:18 +02:00
|
|
|
|
2017-05-18 10:41:47 +02:00
|
|
|
def get_changed_files(path, hash):
|
2012-04-03 03:34:16 +02:00
|
|
|
""" Retrieves the list of changed files. """
|
2017-05-18 10:41:47 +02:00
|
|
|
if hash == 'unstaged':
|
|
|
|
cmd = "%s diff --name-only" % git_exe
|
|
|
|
elif hash == 'staged':
|
|
|
|
cmd = "%s diff --name-only --cached" % git_exe
|
|
|
|
else:
|
|
|
|
cmd = "%s diff-tree --no-commit-id --name-only -r %s" % (git_exe, hash)
|
|
|
|
result = exec_cmd(cmd, path)
|
|
|
|
if result['out'] != '':
|
|
|
|
files = result['out']
|
|
|
|
if sys.platform == 'win32':
|
|
|
|
# Convert to Unix line endings.
|
|
|
|
files = files.replace('\r\n', '\n')
|
|
|
|
return files.strip().split("\n")
|
2012-04-03 03:34:16 +02:00
|
|
|
return []
|
2017-04-27 03:59:52 +02:00
|
|
|
|
2017-05-28 15:04:18 +02:00
|
|
|
|
2019-03-14 22:37:47 +01:00
|
|
|
def get_branch_hashes(path='.', branch='HEAD', ref='origin/master'):
|
|
|
|
""" Returns an ordered list of hashes for commits that have been applied since
|
|
|
|
branching from ref. """
|
|
|
|
cmd = "%s cherry %s %s" % (git_exe, ref, branch)
|
|
|
|
result = exec_cmd(cmd, path)
|
|
|
|
if result['out'] != '':
|
|
|
|
hashes = result['out']
|
|
|
|
if sys.platform == 'win32':
|
|
|
|
# Convert to Unix line endings.
|
|
|
|
hashes = hashes.replace('\r\n', '\n')
|
|
|
|
# Remove the "+ " or "- " prefix.
|
|
|
|
return [line[2:] for line in hashes.strip().split('\n')]
|
|
|
|
return []
|
|
|
|
|
|
|
|
|
2017-04-27 03:59:52 +02:00
|
|
|
def write_indented_output(output):
|
|
|
|
""" Apply a fixed amount of intent to lines before printing. """
|
|
|
|
if output == '':
|
|
|
|
return
|
|
|
|
for line in output.split('\n'):
|
|
|
|
line = line.strip()
|
|
|
|
if len(line) == 0:
|
|
|
|
continue
|
|
|
|
sys.stdout.write('\t%s\n' % line)
|
|
|
|
|
2017-05-28 15:04:18 +02:00
|
|
|
|
2017-04-27 03:59:52 +02:00
|
|
|
def git_apply_patch_file(patch_path, patch_dir):
|
|
|
|
""" Apply |patch_path| to files in |patch_dir|. """
|
|
|
|
patch_name = os.path.basename(patch_path)
|
|
|
|
sys.stdout.write('\nApply %s in %s\n' % (patch_name, patch_dir))
|
|
|
|
|
|
|
|
if not os.path.isfile(patch_path):
|
|
|
|
sys.stdout.write('... patch file does not exist.\n')
|
|
|
|
return 'fail'
|
|
|
|
|
|
|
|
patch_string = open(patch_path, 'rb').read()
|
|
|
|
if sys.platform == 'win32':
|
|
|
|
# Convert the patch to Unix line endings. This is necessary to avoid
|
|
|
|
# whitespace errors with git apply.
|
2020-01-09 15:42:00 +01:00
|
|
|
patch_string = patch_string.replace(b'\r\n', b'\n')
|
2017-04-27 03:59:52 +02:00
|
|
|
|
|
|
|
# Git apply fails silently if not run relative to a respository root.
|
|
|
|
if not is_checkout(patch_dir):
|
|
|
|
sys.stdout.write('... patch directory is not a repository root.\n')
|
|
|
|
return 'fail'
|
|
|
|
|
2018-04-19 17:44:42 +02:00
|
|
|
config = '-p0 --ignore-whitespace'
|
|
|
|
|
2017-04-27 03:59:52 +02:00
|
|
|
# Output patch contents.
|
2018-04-19 17:44:42 +02:00
|
|
|
cmd = '%s apply %s --numstat' % (git_exe, config)
|
2017-04-27 03:59:52 +02:00
|
|
|
result = exec_cmd(cmd, patch_dir, patch_string)
|
|
|
|
write_indented_output(result['out'].replace('<stdin>', patch_name))
|
|
|
|
|
|
|
|
# Reverse check to see if the patch has already been applied.
|
2018-04-19 17:44:42 +02:00
|
|
|
cmd = '%s apply %s --reverse --check' % (git_exe, config)
|
2017-04-27 03:59:52 +02:00
|
|
|
result = exec_cmd(cmd, patch_dir, patch_string)
|
|
|
|
if result['err'].find('error:') < 0:
|
|
|
|
sys.stdout.write('... already applied (skipping).\n')
|
|
|
|
return 'skip'
|
|
|
|
|
|
|
|
# Normal check to see if the patch can be applied cleanly.
|
2018-04-19 17:44:42 +02:00
|
|
|
cmd = '%s apply %s --check' % (git_exe, config)
|
2017-04-27 03:59:52 +02:00
|
|
|
result = exec_cmd(cmd, patch_dir, patch_string)
|
|
|
|
if result['err'].find('error:') >= 0:
|
|
|
|
sys.stdout.write('... failed to apply:\n')
|
|
|
|
write_indented_output(result['err'].replace('<stdin>', patch_name))
|
|
|
|
return 'fail'
|
|
|
|
|
|
|
|
# Apply the patch file. This should always succeed because the previous
|
|
|
|
# command succeeded.
|
2018-04-19 17:44:42 +02:00
|
|
|
cmd = '%s apply %s' % (git_exe, config)
|
2017-04-27 03:59:52 +02:00
|
|
|
result = exec_cmd(cmd, patch_dir, patch_string)
|
|
|
|
if result['err'] == '':
|
|
|
|
sys.stdout.write('... successfully applied.\n')
|
|
|
|
else:
|
|
|
|
sys.stdout.write('... successfully applied (with warnings):\n')
|
|
|
|
write_indented_output(result['err'].replace('<stdin>', patch_name))
|
|
|
|
return 'apply'
|