2012-02-11 23:34:25 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: UTF-8 -*-
|
|
|
|
|
|
|
|
def repositoryWithPath (path):
|
|
|
|
try:
|
2014-07-28 18:07:48 +02:00
|
|
|
# pip install hgapi
|
|
|
|
import hgapi
|
2012-02-11 23:34:25 +00:00
|
|
|
|
2014-07-28 18:07:48 +02:00
|
|
|
repo = hgapi.Repo(path)
|
2012-02-11 23:34:25 +00:00
|
|
|
result = HgRepository(repo, path)
|
2014-07-28 18:07:48 +02:00
|
|
|
repo.hg_status()
|
2012-03-17 15:10:02 +00:00
|
|
|
except:
|
|
|
|
try:
|
|
|
|
from git import Repo
|
|
|
|
repo = Repo(path)
|
|
|
|
result = GitRepository(repo, path)
|
|
|
|
except ImportError, exception:
|
|
|
|
print "Failed to import git, please install http://gitorious.org/git-python"
|
2013-02-21 16:08:18 +00:00
|
|
|
print "Use sudo apt-get install python-git for Ubuntu/Debian"
|
|
|
|
print "Use sudo yum install GitPython for Fedora/RHEL/CentOS"
|
2014-07-28 18:07:48 +02:00
|
|
|
print "Or manually running the following command: easy_install gitpython"
|
2012-06-19 12:04:50 -04:00
|
|
|
except:
|
|
|
|
result = SnapshotRepository('', path)
|
2012-03-17 15:10:02 +00:00
|
|
|
|
2012-02-11 23:34:25 +00:00
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
#===================================================================
|
|
|
|
|
|
|
|
|
|
|
|
class Repository(object):
|
|
|
|
|
|
|
|
def __init__ (self, repository, path):
|
|
|
|
self.repository = repository
|
|
|
|
self.path = path
|
|
|
|
|
|
|
|
|
|
|
|
def revision (self):
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
|
|
|
|
def areTherePendingChanges (self):
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
|
|
|
|
def version (self):
|
|
|
|
result = self.revision()
|
|
|
|
if self.areTherePendingChanges():
|
|
|
|
result = '>>> ' + result + ' <<<'
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
#===================================================================
|
|
|
|
|
|
|
|
|
|
|
|
class GitRepository(Repository):
|
2012-03-17 15:10:02 +00:00
|
|
|
# http://gitorious.org/git-python
|
2012-02-11 23:34:25 +00:00
|
|
|
|
|
|
|
def revision (self):
|
2012-03-18 21:30:36 -04:00
|
|
|
try:
|
|
|
|
return self.repository.head.commit.hexsha
|
|
|
|
except:
|
|
|
|
return self.repository.commits()[0].id
|
2012-03-06 10:47:34 -05:00
|
|
|
|
2012-02-11 23:34:25 +00:00
|
|
|
|
|
|
|
def areTherePendingChanges (self):
|
2012-03-18 21:30:36 -04:00
|
|
|
try:
|
|
|
|
return self.repository.is_dirty()
|
|
|
|
except TypeError, te:
|
|
|
|
return self.repository.is_dirty
|
|
|
|
|
2012-02-11 23:34:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
#===================================================================
|
|
|
|
|
|
|
|
|
|
|
|
class HgRepository(Repository):
|
2014-07-28 18:07:48 +02:00
|
|
|
## http://mercurial.selenic.com/wiki/MercurialApi
|
|
|
|
# https://bitbucket.org/haard/hgapi
|
2012-02-11 23:34:25 +00:00
|
|
|
|
|
|
|
def revision (self):
|
2014-07-28 18:07:48 +02:00
|
|
|
return 'hg: ' + str(self.repository['tip'].node)
|
2012-02-11 23:34:25 +00:00
|
|
|
|
|
|
|
def areTherePendingChanges (self):
|
2014-07-28 18:07:48 +02:00
|
|
|
return not all(map(lambda fileList: len(fileList) == 0, self.repository.hg_status()))
|
2012-02-11 23:34:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
#===================================================================
|
2012-06-19 12:04:50 -04:00
|
|
|
|
2013-01-09 12:45:31 +01:00
|
|
|
|
2012-06-19 12:04:50 -04:00
|
|
|
class SnapshotRepository(Repository):
|
2013-01-09 12:45:31 +01:00
|
|
|
|
2012-06-19 12:04:50 -04:00
|
|
|
def revision (self):
|
|
|
|
return 'SNAPSHOT'
|
|
|
|
|
2013-01-09 12:45:31 +01:00
|
|
|
|
2012-06-19 12:04:50 -04:00
|
|
|
def areTherePendingChanges (self):
|
|
|
|
return False
|