1 # -*- encoding: utf-8 -*-
3 __author__ = "Ćukasz Rekucki"
4 __date__ = "$2009-09-25 09:35:06$"
5 __doc__ = "Module documentation."
9 class MercurialDocument(wlrepo.Document):
11 def data(self, entry):
12 path = self._revision._docname + '.' + entry
13 return self._library._filectx(path, \
14 self._revision.hgrev()).data()
16 def quickwrite(self, entry, data, msg, user=None):
17 user = user or self.owner
19 raise ValueError("Can't determine user.")
22 f = l._fileopen(r(entry), "w+")
27 return self.invoke_and_commit(write, lambda d: (msg, user))
29 def invoke_and_commit(self, ops, before_commit):
30 lock = self._library._lock()
32 self._library._checkout(self._revision.hgrev())
34 def entry_path(entry):
35 return self.id + '.' + entry
37 ops(self._library, entry_path)
38 message, user = before_commit(self)
39 self._library._commit(message, user)
41 return self._library.document(docid=self.id, user=self.owner)
45 # def commit(self, message, user):
46 # """Make a new commit."""
47 # self.invoke_and_commit(message, user, lambda *a: True)
50 return self._revision.user_name() is None
55 return self._library.document(docid=self._revision.document_name())
59 fullid = self._library.fulldocid(self.id, user)
61 def take_action(library, resolve):
63 library._create_branch(fullid, parent=self._revision)
65 if not self._library.has_revision(fullid):
66 self.invoke_and_commit(take_action, \
67 lambda d: ("$AUTO$ File checkout.", user) )
69 return self._library.document_for_rev(fullid)
71 def update(self, user):
72 """Update parts of the document."""
73 lock = self.library._lock()
76 # main revision of the document
79 if self._revision.has_children():
80 # can't update non-latest revision
85 if not sv.ancestorof(self) and not self.parentof(sv):
86 self._revision.merge_with(sv._revision, user=user)
92 def share(self, message):
93 lock = self.library._lock()
96 return True # always shared
98 user = self._revision.user_name()
100 main = self.shared()._revision
101 local = self._revision
108 # * <- can also be here!
113 # The local branch has been recently updated,
114 # so we don't need to update yet again, but we need to
115 # merge down to default branch, even if there was
116 # no commit's since last update
118 if main.ancestorof(local):
120 main.merge_with(local, user=user, message=message)
130 # Default has no changes, to update from this branch
131 # since the last merge of local to default.
132 elif local.has_common_ancestor(main):
134 if not local.parentof(main):
135 main.merge_with(local, user=user, message=message)
141 # * <- this case overlaps with previos one
147 # There was a recent merge to the defaul branch and
148 # no changes to local branch recently.
150 # Use the fact, that user is prepared to see changes, to
151 # update his branch if there are any
152 elif local.ancestorof(main):
154 if not local.parentof(main):
155 local.merge_with(main, user=user, message='Local branch update.')
159 local.merge_with(main, user=user, message='Local branch update.')
161 main.merge_with(local, user=user, message=message)
163 print "no_changes: ", no_changes
169 return u"Document(%s:%s)" % (self.name, self.owner)
171 def __eq__(self, other):
172 return (self._revision == other._revision) and (self.name == other.name)