File: git_tools.py

package info (click to toggle)
migraphx 7.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 31,384 kB
  • sloc: cpp: 205,073; python: 25,903; sh: 253; xml: 199; makefile: 59; ansic: 16
file content (100 lines) | stat: -rw-r--r-- 3,727 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#####################################################################################
#  The MIT License (MIT)
#
#  Copyright (c) 2015-2025 Advanced Micro Devices, Inc. All rights reserved.
#
#  Permission is hereby granted, free of charge, to any person obtaining a copy
#  of this software and associated documentation files (the "Software"), to deal
#  in the Software without restriction, including without limitation the rights
#  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
#  copies of the Software, and to permit persons to whom the Software is
#  furnished to do so, subject to the following conditions:
#
#  The above copyright notice and this permission notice shall be included in
#  all copies or substantial portions of the Software.
#
#  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
#  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
#  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
#  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
#  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
#  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
#  THE SOFTWARE.
#####################################################################################
import subprocess
import shlex
import datetime


def run(cmd, verbose=False, **kwargs):
    """
    Run a shell command with optional output capture and verbosity.

    Args:
        cmd (str | list): The command to run.
        cwd (str): The current working directory.
        verbose (bool): If True, print the command being run.
        **kwargs: Extra arguments passed to subprocess.run().

    Returns:
        str | None: If capture is True, returns the command's stdout as a string; otherwise None.
    """
    if verbose:
        print(cmd if isinstance(cmd, str) else shlex.join(cmd))

    result = subprocess.run(cmd,
                            shell=isinstance(cmd, str),
                            check=True,
                            capture_output=True,
                            text=True,
                            **kwargs).stdout.strip()

    if verbose:
        print(result)

    return result


def get_top():
    """
    Return the absolute path to the root directory of the Git repository.
    Useful as the base path for running Git commands or locating files.
    """
    return run("git rev-parse --show-toplevel")


def get_merge_base(branch):
    """
    Get the common ancestor (merge base) commit hash between the current branch
    and the given branch. This is the commit where they diverged, used to compare changes.
    """
    head = run("git rev-parse --abbrev-ref HEAD")  # Get current branch name
    return run(f"git merge-base {branch} {head}"
               )  # Get merge base SHA between current and target branch


def get_changed_files(branch):
    """
    Return a list of files that are staged for commit and have changed
    compared to the merge base with the given branch.
    Only includes modified or added files (excludes deleted files).
    """
    base = get_merge_base(branch)
    return run(f"git diff --cached --name-only --diff-filter=d {base}",
               cwd=get_top()).splitlines()


def get_all_files():
    """
    Return a list of all tracked files in the Git repository.
    """
    return run("git ls-files", cwd=get_top()).splitlines()


def get_latest_commit_year(file):
    """
    Get year of latest commit given file 
    """
    date_str = run(f"git log -1 --format=%cd --date=short {file}",
                   cwd=get_top())
    return datetime.datetime.strptime(date_str, '%Y-%m-%d').year