summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2015-03-18 18:15:13 +0000
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2015-04-01 17:56:27 +0000
commitdadd9da92ca890705f65f3199e3ae740d9563a39 (patch)
tree551f59591667e1d2f87c8ad52f4a63c077300a5d
parent5ca985edb3d429967cd40d34229db19a1b7c6b0a (diff)
downloadmorph-dadd9da92ca890705f65f3199e3ae740d9563a39.tar.gz
Functions for checking if ref is in branches/tags of a cached repo
Change-Id: I63f0d9da8b12930bd9539710429756a0821ce884
-rw-r--r--morphlib/cachedrepo.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/morphlib/cachedrepo.py b/morphlib/cachedrepo.py
index 23639043..b41ba86f 100644
--- a/morphlib/cachedrepo.py
+++ b/morphlib/cachedrepo.py
@@ -123,6 +123,26 @@ class CachedRepo(object):
'''
return self._gitdir.read_file(filename, ref)
+ def tags_containing_sha1(self, ref): # pragma: no cover
+ '''Check whether given sha1 is contained in any tags
+
+ Raises a gitdir.InvalidRefError if the ref is not found in the
+ repository. Raises gitdir.ExpectedSha1Error if the ref is not
+ a sha1.
+
+ '''
+ return self._gitdir.tags_containing_sha1(ref)
+
+ def branches_containing_sha1(self, ref): # pragma: no cover
+ '''Check whether given sha1 is contained in any branches
+
+ Raises a gitdir.InvalidRefError if the ref is not found in the
+ repository. Raises gitdir.ExpectedSha1Error if the ref is not
+ a sha1.
+
+ '''
+ return self._gitdir.branches_containing_sha1(ref)
+
def list_files(self, ref, recurse=True): # pragma: no cover
'''Return filenames found in the tree pointed to by the given ref.