1 # -*- coding: utf-8 -*-
4 from mercurial import localrepo, ui, match, node, encoding, util
5 import mercurial.merge, mercurial.error
7 encoding.encoding = 'utf-8'
10 class RepositoryDoesNotExist(Exception):
13 class Repository(object):
14 """Abstrakcja repozytorium Mercurial. DziaĆa z Mercurial w wersji 1.3.1."""
16 def __init__(self, path, create=False):
18 self.ui.config('ui', 'quiet', 'true')
19 self.ui.config('ui', 'interactive', 'false')
21 self.real_path = os.path.realpath(path)
22 self.repo = self.open_repository(self.real_path, create)
23 self._pending_files = []
25 def open_repository(self, path, create=False):
26 if os.path.isdir(path):
28 return localrepo.localrepository(self.ui, path)
29 except mercurial.error.RepoError:
30 # dir is not an hg repo, we must init it
32 return localrepo.localrepository(self.ui, path, create=1)
35 return localrepo.localrepository(self.ui, path, create=1)
36 raise RepositoryDoesNotExist("Repository %s does not exist." % path)
38 def all_files(self, branch='default'):
39 return self.in_branch(lambda: self._all_files(), branch)
42 return list(self.repo[None])
44 def get_file(self, path, branch='default'):
45 return self.in_branch(lambda: self._get_file(path), branch)
47 def _get_file(self, path):
48 return self.repo.wread(path)
50 def add_file(self, path, value, branch='default'):
51 return self.in_branch(lambda: self._add_file(path, value), branch)
53 def _add_file(self, path, value):
54 return self.repo.wwrite(path, value.encode('utf-8'), [])
55 # f = codecs.open(os.path.join(self.real_path, path), 'w', encoding='utf-8')
58 # if path not in self._pending_files:
59 # self._pending_files.append(path)
61 def _commit(self, message, user=None):
62 return self.repo.commit(text=message, user=user)
64 def commit(self, message, user=None, branch='default'):
65 return self.in_branch(lambda: self._commit(message, key=key, user=user), branch)
67 def in_branch(self, action, bname='default'):
68 wlock = self.repo.wlock()
70 old = self._switch_to_branch(bname)
75 self._switch_to_branch(old)
79 def _switch_to_branch(self, bname, create=True):
80 wlock = self.repo.wlock()
82 current = self.repo[None].branch()
86 tip = self.repo.branchtags()[bname]
88 if not create: raise ke
90 # create the branch on the fly
92 # first switch to default branch
93 default_tip = self.repo.branchtags()['default']
94 mercurial.merge.update(self.repo, default_tip, False, True, None)
96 # set the dirstate to new branch
97 self.repo.dirstate.setbranch(bname)
98 self._commit('Initial commit for automatic branch "%s".' % bname, user="django-admin")
100 # collect the new tip
101 tip = self.repo.branchtags()[bname]
103 upstats = mercurial.merge.update(self.repo, tip, False, True, None)
106 raise RepositoryException("Can't switch to branch '%s': no such branch." % bname , ke)
107 except util.Abort, ae:
108 raise repositoryException("Can't switch to branch '%s': %s" % (bname, ae.message), ae)
112 def write_lock(self):
113 """Returns w write lock to the repository."""
114 return self.repo.wlock()
117 class RepositoryException(Exception):
119 def __init__(self, msg, cause=None):
120 Exception.__init__(self, msg)