2012-02-11 23:34:25 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: UTF-8 -*-
|
|
|
|
|
|
|
|
|
|
|
|
def repositoryWithPath (path):
|
|
|
|
try:
|
2012-03-06 22:09:32 -05:00
|
|
|
from git import Repo
|
2012-02-11 23:34:25 +00:00
|
|
|
|
|
|
|
repo = Repo(path)
|
|
|
|
result = GitRepository(repo, path)
|
2012-03-06 10:44:48 -05:00
|
|
|
except ImportError:
|
2012-03-06 22:09:32 -05:00
|
|
|
print "Failed to import git, please install http://gitorious.org/git-python"
|
2012-03-17 14:40:38 +00:00
|
|
|
# except:
|
2012-02-11 23:34:25 +00:00
|
|
|
from mercurial import ui, hg
|
|
|
|
|
|
|
|
repo = hg.repository(ui.ui(), path)
|
|
|
|
result = HgRepository(repo, path)
|
|
|
|
|
|
|
|
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 + ' <<<'
|
|
|
|
|
|
|
|
# print "VERSION: " + result
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
#===================================================================
|
|
|
|
|
|
|
|
|
|
|
|
class GitRepository(Repository):
|
|
|
|
|
|
|
|
def revision (self):
|
2012-03-06 22:09:32 -05:00
|
|
|
return self.repository.head.commit.hexsha
|
2012-03-06 10:47:34 -05:00
|
|
|
|
2012-02-11 23:34:25 +00:00
|
|
|
|
|
|
|
def areTherePendingChanges (self):
|
2012-03-17 14:26:08 +00:00
|
|
|
return self.repository.is_dirty()
|
2012-02-11 23:34:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
#===================================================================
|
|
|
|
|
|
|
|
|
|
|
|
class HgRepository(Repository):
|
|
|
|
# http://mercurial.selenic.com/wiki/MercurialApi
|
|
|
|
|
|
|
|
def revision (self):
|
|
|
|
return 'hg:' + str(self.repository['tip'])
|
|
|
|
|
|
|
|
|
|
|
|
def areTherePendingChanges (self):
|
|
|
|
# TODO: FIXME: repository.status() does not report 'unknown(?)' files. :(
|
|
|
|
return not all(map(lambda fileList: len(fileList) == 0, self.repository.status()))
|
|
|
|
|
|
|
|
|
|
|
|
#===================================================================
|