Source code for benchbuild.utils.versions

"""Gather version information for BB."""

from os import path
from plumbum import local
from benchbuild.settings import CFG
from benchbuild.utils.downloader import get_hash_of_dirs


[docs]def get_version_from_cache_dir(src_file): """ Creates a version for a project out of the hash. The hash is taken from the directory of the source file. Args: src_file: The source file of the project using this function. Returns: Either returns the first 8 digits of the hash as string, the entire hash as a string if the hash consists out of less than 7 digits or None if the path is incorrect. """ tmp_dir = CFG["tmp_dir"].value() if path.exists(tmp_dir): cache_file = path.join(tmp_dir, src_file) dir_hash = get_hash_of_dirs(cache_file) if dir_hash is None: return None elif len(str(dir_hash)) <= 7: return str(dir_hash) else: return str(dir_hash)[:7] else: return None
[docs]def get_git_hash(from_url): """ Get the git commit hash of HEAD from :from_url. Args: from_url: The file system url of our git repository. Returns: git commit hash of HEAD, or empty string. """ from benchbuild.utils.cmd import git if from_url is None: return "" if not path.exists(from_url): return "" with local.cwd(from_url): return git("rev-parse", "HEAD", retcode=None)