This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitDependency as extdep support to git repositories. (#9)
- Loading branch information
Showing
6 changed files
with
494 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
# @file GitDependency.py | ||
# This module implements ExternalDependency for a git repository | ||
# This should only be used for read-only repositories. Any changes in | ||
# these extdeps will be removed. | ||
# | ||
## | ||
# Copyright (c) 2019, Microsoft Corporation | ||
# | ||
# All rights reserved. | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions are met: | ||
# 1. Redistributions of source code must retain the above copyright notice, | ||
# this list of conditions and the following disclaimer. | ||
# 2. Redistributions in binary form must reproduce the above copyright notice, | ||
# this list of conditions and the following disclaimer in the documentation | ||
# and/or other materials provided with the distribution. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | ||
# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, | ||
# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE | ||
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | ||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
## | ||
import os | ||
import logging | ||
from MuEnvironment.ExternalDependency import ExternalDependency | ||
from MuEnvironment import RepoResolver | ||
from MuEnvironment.MuGit import Repo | ||
from MuEnvironment import VersionAggregator | ||
|
||
|
||
class GitDependency(ExternalDependency): | ||
''' | ||
ext_dep fields: | ||
- source: url for git clone | ||
- version: commit from git repo | ||
''' | ||
|
||
TypeString = "git" | ||
|
||
def __init__(self, descriptor): | ||
super().__init__(descriptor) | ||
self.repo_url = self.source | ||
self.commit = self.version | ||
self._local_repo_root_path = os.path.join(os.path.abspath(self.contents_dir), self.name) | ||
self.logger = logging.getLogger("git-dependency") | ||
|
||
# valid_attributes = ["Path", "Url", "Branch", "Commit", "ReferencePath", "Full"] | ||
self._repo_resolver_dep_obj = {"Path": self.name, "Url": self.repo_url, "Commit": self.commit} | ||
|
||
def fetch(self): | ||
|
||
# def resolve(file_system_path, dependency, force=False, ignore=False, update_ok=False): | ||
RepoResolver.resolve(self._local_repo_root_path, self._repo_resolver_dep_obj, update_ok=True) | ||
|
||
# Add a file to track the state of the dependency. | ||
self.update_state_file() | ||
|
||
def clean(self): | ||
self.logger.debug("Cleaning git dependency directory for '%s'..." % self.name) | ||
|
||
if os.path.isdir(self._local_repo_root_path): | ||
# Clean up git dependency specific stuff | ||
RepoResolver.clear_folder(self.contents_dir) | ||
|
||
# Let super class clean up common dependency stuff | ||
super().clean() | ||
|
||
# override verify due to different scheme with git | ||
def verify(self, logversion=True): | ||
result = True | ||
|
||
if not os.path.isdir(self._local_repo_root_path): | ||
self.logger.error("no dir for Git Dependency") | ||
result = False | ||
|
||
if result and len(os.listdir(self._local_repo_root_path)) == 0: | ||
self.logger.error("no files in Git Dependency") | ||
result = False | ||
|
||
if result: | ||
# valid repo folder | ||
r = Repo(self._local_repo_root_path) | ||
if(not r.initalized): | ||
self.logger.error("Git Dependency: Not Initialized") | ||
result = False | ||
elif(r.dirty): | ||
self.logger.error("Git Dependency: dirty") | ||
result = False | ||
|
||
if(r.head.commit != self.version): | ||
self.logger.error(f"Git Dependency: head is {r.head.commit} and version is {self.version}") | ||
result = False | ||
|
||
self.logger.debug("Verify '%s' returning '%s'." % (self.name, result)) | ||
if(logversion): | ||
VersionAggregator.GetVersionAggregator().ReportVersion(self.name, self.version, | ||
VersionAggregator.VersionTypes.INFO) | ||
return result |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.