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'
12 class Repository(object):
13 """Abstrakcja repozytorium Mercurial. DziaĆa z Mercurial w wersji 1.3.1."""
15 def __init__(self, path, create=False):
17 self.ui.config('ui', 'quiet', 'true')
18 self.ui.config('ui', 'interactive', 'false')
20 self.real_path = os.path.realpath(path)
21 self.repo = self.open_repository(self.real_path, create)
22 self._pending_files = []
24 def open_repository(self, path, create=False):
25 if os.path.isdir(path):
27 return localrepo.localrepository(self.ui, path)
28 except mercurial.error.RepoError:
29 # dir is not an hg repo, we must init it
31 return localrepo.localrepository(self.ui, path, create=1)
34 return localrepo.localrepository(self.ui, path, create=1)
35 raise RepositoryDoesNotExist("Repository %s does not exist." % path)
37 def file_list(self, branch):
38 return self.in_branch(lambda: self._file_list(), branch)
41 return list(self.repo[None])
43 def get_file(self, path, branch):
44 return self.in_branch(lambda: self._get_file(path), branch)
46 def _get_file(self, path):
47 if not self._file_exists(path):
48 raise RepositoryException("File not availble in this branch.")
50 return self.repo.wread(path)
52 def file_exists(self, path, branch):
53 return self.in_branch(lambda: self._file_exists(path), branch)
55 def _file_exists(self, path):
56 return self.repo.dirstate[path] != "?"
58 def write_file(self, path, value, branch):
59 return self.in_branch(lambda: self._write_file(path, value), branch)
61 def _write_file(self, path, value):
62 return self.repo.wwrite(path, value, [])
64 def add_file(self, path, value, branch):
65 return self.in_branch(lambda: self._add_file(path, value), branch)
67 def _add_file(self, path, value):
68 self._write_file(path, value)
69 return self.repo.add( [path] )
71 def _commit(self, message, user=None):
72 return self.repo.commit(text=message, user=user)
74 def commit(self, message, branch, user=None):
75 return self.in_branch(lambda: self._commit(message, key=key, user=user), branch)
77 def in_branch(self, action, bname):
78 wlock = self.repo.wlock()
80 old = self._switch_to_branch(bname)
85 self._switch_to_branch(old)
89 def _switch_to_branch(self, bname, create=True):
90 wlock = self.repo.wlock()
92 current = self.repo[None].branch()
96 tip = self.repo.branchtags()[bname]
98 if not create: raise ke
100 # create the branch on the fly
102 # first switch to default branch
103 default_tip = self.repo.branchtags()['default']
104 mercurial.merge.update(self.repo, default_tip, False, True, None)
106 # set the dirstate to new branch
107 self.repo.dirstate.setbranch(bname)
108 self._commit('Initial commit for automatic branch "%s".' % bname, user="django-admin")
110 # collect the new tip
111 tip = self.repo.branchtags()[bname]
113 upstats = mercurial.merge.update(self.repo, tip, False, True, None)
116 raise RepositoryException("Can't switch to branch '%s': no such branch." % bname , ke)
117 except util.Abort, ae:
118 raise RepositoryException("Can't switch to branch '%s': %s" % (bname, ae.message), ae)
122 def write_lock(self):
123 """Returns w write lock to the repository."""
124 return self.repo.wlock()
127 class RepositoryException(Exception):
129 def __init__(self, msg, cause=None):
130 Exception.__init__(self, msg)
133 class RepositoryDoesNotExist(RepositoryException):