mirror of
https://github.com/ceph/ceph
synced 2024-12-28 06:23:08 +00:00
55b65d62f0
Signed-off-by: Zack Cerza <zack.cerza@inktank.com>
69 lines
2.3 KiB
Python
69 lines
2.3 KiB
Python
import logging
|
|
import os
|
|
import shutil
|
|
import subprocess
|
|
import time
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
def checkout_repo(repo_url, dest_path, branch):
|
|
"""
|
|
Use git to either clone or update a given repo, forcing it to switch to the
|
|
specified branch.
|
|
|
|
:param repo_url: The full URL to the repo (not including the branch)
|
|
:param dest_path: The full path to the destination directory
|
|
:param branch: The branch.
|
|
:raises: BranchNotFoundError if the branch is not found;
|
|
RuntimeError for other errors
|
|
"""
|
|
if not os.path.isdir(dest_path):
|
|
log.info("Cloning %s %s from upstream", repo_url, branch)
|
|
proc = subprocess.Popen(
|
|
('git', 'clone', '--branch', branch, repo_url, dest_path),
|
|
cwd=os.path.dirname(dest_path),
|
|
stdout=subprocess.PIPE,
|
|
stderr=subprocess.STDOUT)
|
|
not_found_str = "Remote branch %s not found" % branch
|
|
out = proc.stdout.read()
|
|
if proc.wait() != 0:
|
|
log.error(out)
|
|
if not_found_str in out:
|
|
raise BranchNotFoundError(branch, repo_url)
|
|
else:
|
|
raise RuntimeError("git clone failed!")
|
|
elif time.time() - os.stat('/etc/passwd').st_mtime > 60:
|
|
# only do this at most once per minute
|
|
log.info("Fetching %s from upstream", branch)
|
|
out = subprocess.check_output(('git', 'fetch', '-p', 'origin'),
|
|
cwd=dest_path)
|
|
if out:
|
|
log.info(out)
|
|
out = subprocess.check_output(('touch', dest_path))
|
|
if out:
|
|
log.info(out)
|
|
else:
|
|
log.info("%s was just updated; assuming it is current", branch)
|
|
|
|
# This try/except block will notice if the requested branch doesn't
|
|
# exist, whether it was cloned or fetched.
|
|
try:
|
|
subprocess.check_output(
|
|
('git', 'reset', '--hard', 'origin/%s' % branch),
|
|
cwd=dest_path,
|
|
)
|
|
except subprocess.CalledProcessError:
|
|
shutil.rmtree(dest_path)
|
|
raise BranchNotFoundError(branch, repo_url)
|
|
|
|
|
|
class BranchNotFoundError(ValueError):
|
|
def __init__(self, branch, repo):
|
|
self.branch = branch
|
|
self.repo = repo
|
|
|
|
def __str__(self):
|
|
return "Branch {branch} not found in repo: {repo}".format(
|
|
branch=self.branch, repo=self.repo)
|