##// END OF EJS Templates
basefilectx: use basectx __str__ instead of duplicating logic...
Sean Farley -
r19660:86ce68c1 default
parent child Browse files
Show More
@@ -1,1404 +1,1404 b''
1 # context.py - changeset and file context objects for mercurial
1 # context.py - changeset and file context objects for mercurial
2 #
2 #
3 # Copyright 2006, 2007 Matt Mackall <mpm@selenic.com>
3 # Copyright 2006, 2007 Matt Mackall <mpm@selenic.com>
4 #
4 #
5 # This software may be used and distributed according to the terms of the
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version.
6 # GNU General Public License version 2 or any later version.
7
7
8 from node import nullid, nullrev, short, hex, bin
8 from node import nullid, nullrev, short, hex, bin
9 from i18n import _
9 from i18n import _
10 import ancestor, mdiff, error, util, scmutil, subrepo, patch, encoding, phases
10 import ancestor, mdiff, error, util, scmutil, subrepo, patch, encoding, phases
11 import copies
11 import copies
12 import match as matchmod
12 import match as matchmod
13 import os, errno, stat
13 import os, errno, stat
14 import obsolete as obsmod
14 import obsolete as obsmod
15 import repoview
15 import repoview
16
16
17 propertycache = util.propertycache
17 propertycache = util.propertycache
18
18
19 class basectx(object):
19 class basectx(object):
20 """A basectx object represents the common logic for its children:
20 """A basectx object represents the common logic for its children:
21 changectx: read-only context that is already present in the repo,
21 changectx: read-only context that is already present in the repo,
22 workingctx: a context that represents the working directory and can
22 workingctx: a context that represents the working directory and can
23 be committed,
23 be committed,
24 memctx: a context that represents changes in-memory and can also
24 memctx: a context that represents changes in-memory and can also
25 be committed."""
25 be committed."""
26 def __new__(cls, repo, changeid='', *args, **kwargs):
26 def __new__(cls, repo, changeid='', *args, **kwargs):
27 if isinstance(changeid, basectx):
27 if isinstance(changeid, basectx):
28 return changeid
28 return changeid
29
29
30 o = super(basectx, cls).__new__(cls)
30 o = super(basectx, cls).__new__(cls)
31
31
32 o._repo = repo
32 o._repo = repo
33 o._rev = nullrev
33 o._rev = nullrev
34 o._node = nullid
34 o._node = nullid
35
35
36 return o
36 return o
37
37
38 def __str__(self):
38 def __str__(self):
39 return short(self.node())
39 return short(self.node())
40
40
41 def __int__(self):
41 def __int__(self):
42 return self.rev()
42 return self.rev()
43
43
44 def __repr__(self):
44 def __repr__(self):
45 return "<%s %s>" % (type(self).__name__, str(self))
45 return "<%s %s>" % (type(self).__name__, str(self))
46
46
47 def __eq__(self, other):
47 def __eq__(self, other):
48 try:
48 try:
49 return type(self) == type(other) and self._rev == other._rev
49 return type(self) == type(other) and self._rev == other._rev
50 except AttributeError:
50 except AttributeError:
51 return False
51 return False
52
52
53 def __ne__(self, other):
53 def __ne__(self, other):
54 return not (self == other)
54 return not (self == other)
55
55
56 def __contains__(self, key):
56 def __contains__(self, key):
57 return key in self._manifest
57 return key in self._manifest
58
58
59 def __getitem__(self, key):
59 def __getitem__(self, key):
60 return self.filectx(key)
60 return self.filectx(key)
61
61
62 def __iter__(self):
62 def __iter__(self):
63 for f in sorted(self._manifest):
63 for f in sorted(self._manifest):
64 yield f
64 yield f
65
65
66 @propertycache
66 @propertycache
67 def substate(self):
67 def substate(self):
68 return subrepo.state(self, self._repo.ui)
68 return subrepo.state(self, self._repo.ui)
69
69
70 def rev(self):
70 def rev(self):
71 return self._rev
71 return self._rev
72 def node(self):
72 def node(self):
73 return self._node
73 return self._node
74 def hex(self):
74 def hex(self):
75 return hex(self.node())
75 return hex(self.node())
76 def manifest(self):
76 def manifest(self):
77 return self._manifest
77 return self._manifest
78 def phasestr(self):
78 def phasestr(self):
79 return phases.phasenames[self.phase()]
79 return phases.phasenames[self.phase()]
80 def mutable(self):
80 def mutable(self):
81 return self.phase() > phases.public
81 return self.phase() > phases.public
82
82
83 def parents(self):
83 def parents(self):
84 """return contexts for each parent changeset"""
84 """return contexts for each parent changeset"""
85 return self._parents
85 return self._parents
86
86
87 def p1(self):
87 def p1(self):
88 return self._parents[0]
88 return self._parents[0]
89
89
90 def p2(self):
90 def p2(self):
91 if len(self._parents) == 2:
91 if len(self._parents) == 2:
92 return self._parents[1]
92 return self._parents[1]
93 return changectx(self._repo, -1)
93 return changectx(self._repo, -1)
94
94
95 def _fileinfo(self, path):
95 def _fileinfo(self, path):
96 if '_manifest' in self.__dict__:
96 if '_manifest' in self.__dict__:
97 try:
97 try:
98 return self._manifest[path], self._manifest.flags(path)
98 return self._manifest[path], self._manifest.flags(path)
99 except KeyError:
99 except KeyError:
100 raise error.ManifestLookupError(self._node, path,
100 raise error.ManifestLookupError(self._node, path,
101 _('not found in manifest'))
101 _('not found in manifest'))
102 if '_manifestdelta' in self.__dict__ or path in self.files():
102 if '_manifestdelta' in self.__dict__ or path in self.files():
103 if path in self._manifestdelta:
103 if path in self._manifestdelta:
104 return (self._manifestdelta[path],
104 return (self._manifestdelta[path],
105 self._manifestdelta.flags(path))
105 self._manifestdelta.flags(path))
106 node, flag = self._repo.manifest.find(self._changeset[0], path)
106 node, flag = self._repo.manifest.find(self._changeset[0], path)
107 if not node:
107 if not node:
108 raise error.ManifestLookupError(self._node, path,
108 raise error.ManifestLookupError(self._node, path,
109 _('not found in manifest'))
109 _('not found in manifest'))
110
110
111 return node, flag
111 return node, flag
112
112
113 def filenode(self, path):
113 def filenode(self, path):
114 return self._fileinfo(path)[0]
114 return self._fileinfo(path)[0]
115
115
116 def flags(self, path):
116 def flags(self, path):
117 try:
117 try:
118 return self._fileinfo(path)[1]
118 return self._fileinfo(path)[1]
119 except error.LookupError:
119 except error.LookupError:
120 return ''
120 return ''
121
121
122 def sub(self, path):
122 def sub(self, path):
123 return subrepo.subrepo(self, path)
123 return subrepo.subrepo(self, path)
124
124
125 def match(self, pats=[], include=None, exclude=None, default='glob'):
125 def match(self, pats=[], include=None, exclude=None, default='glob'):
126 r = self._repo
126 r = self._repo
127 return matchmod.match(r.root, r.getcwd(), pats,
127 return matchmod.match(r.root, r.getcwd(), pats,
128 include, exclude, default,
128 include, exclude, default,
129 auditor=r.auditor, ctx=self)
129 auditor=r.auditor, ctx=self)
130
130
131 def diff(self, ctx2=None, match=None, **opts):
131 def diff(self, ctx2=None, match=None, **opts):
132 """Returns a diff generator for the given contexts and matcher"""
132 """Returns a diff generator for the given contexts and matcher"""
133 if ctx2 is None:
133 if ctx2 is None:
134 ctx2 = self.p1()
134 ctx2 = self.p1()
135 if ctx2 is not None:
135 if ctx2 is not None:
136 ctx2 = self._repo[ctx2]
136 ctx2 = self._repo[ctx2]
137 diffopts = patch.diffopts(self._repo.ui, opts)
137 diffopts = patch.diffopts(self._repo.ui, opts)
138 return patch.diff(self._repo, ctx2.node(), self.node(),
138 return patch.diff(self._repo, ctx2.node(), self.node(),
139 match=match, opts=diffopts)
139 match=match, opts=diffopts)
140
140
141 @propertycache
141 @propertycache
142 def _dirs(self):
142 def _dirs(self):
143 return scmutil.dirs(self._manifest)
143 return scmutil.dirs(self._manifest)
144
144
145 def dirs(self):
145 def dirs(self):
146 return self._dirs
146 return self._dirs
147
147
148 def dirty(self):
148 def dirty(self):
149 return False
149 return False
150
150
151 class changectx(basectx):
151 class changectx(basectx):
152 """A changecontext object makes access to data related to a particular
152 """A changecontext object makes access to data related to a particular
153 changeset convenient. It represents a read-only context already presnt in
153 changeset convenient. It represents a read-only context already presnt in
154 the repo."""
154 the repo."""
155 def __init__(self, repo, changeid=''):
155 def __init__(self, repo, changeid=''):
156 """changeid is a revision number, node, or tag"""
156 """changeid is a revision number, node, or tag"""
157
157
158 # since basectx.__new__ already took care of copying the object, we
158 # since basectx.__new__ already took care of copying the object, we
159 # don't need to do anything in __init__, so we just exit here
159 # don't need to do anything in __init__, so we just exit here
160 if isinstance(changeid, basectx):
160 if isinstance(changeid, basectx):
161 return
161 return
162
162
163 if changeid == '':
163 if changeid == '':
164 changeid = '.'
164 changeid = '.'
165 self._repo = repo
165 self._repo = repo
166
166
167 if isinstance(changeid, int):
167 if isinstance(changeid, int):
168 try:
168 try:
169 self._node = repo.changelog.node(changeid)
169 self._node = repo.changelog.node(changeid)
170 except IndexError:
170 except IndexError:
171 raise error.RepoLookupError(
171 raise error.RepoLookupError(
172 _("unknown revision '%s'") % changeid)
172 _("unknown revision '%s'") % changeid)
173 self._rev = changeid
173 self._rev = changeid
174 return
174 return
175 if isinstance(changeid, long):
175 if isinstance(changeid, long):
176 changeid = str(changeid)
176 changeid = str(changeid)
177 if changeid == '.':
177 if changeid == '.':
178 self._node = repo.dirstate.p1()
178 self._node = repo.dirstate.p1()
179 self._rev = repo.changelog.rev(self._node)
179 self._rev = repo.changelog.rev(self._node)
180 return
180 return
181 if changeid == 'null':
181 if changeid == 'null':
182 self._node = nullid
182 self._node = nullid
183 self._rev = nullrev
183 self._rev = nullrev
184 return
184 return
185 if changeid == 'tip':
185 if changeid == 'tip':
186 self._node = repo.changelog.tip()
186 self._node = repo.changelog.tip()
187 self._rev = repo.changelog.rev(self._node)
187 self._rev = repo.changelog.rev(self._node)
188 return
188 return
189 if len(changeid) == 20:
189 if len(changeid) == 20:
190 try:
190 try:
191 self._node = changeid
191 self._node = changeid
192 self._rev = repo.changelog.rev(changeid)
192 self._rev = repo.changelog.rev(changeid)
193 return
193 return
194 except LookupError:
194 except LookupError:
195 pass
195 pass
196
196
197 try:
197 try:
198 r = int(changeid)
198 r = int(changeid)
199 if str(r) != changeid:
199 if str(r) != changeid:
200 raise ValueError
200 raise ValueError
201 l = len(repo.changelog)
201 l = len(repo.changelog)
202 if r < 0:
202 if r < 0:
203 r += l
203 r += l
204 if r < 0 or r >= l:
204 if r < 0 or r >= l:
205 raise ValueError
205 raise ValueError
206 self._rev = r
206 self._rev = r
207 self._node = repo.changelog.node(r)
207 self._node = repo.changelog.node(r)
208 return
208 return
209 except (ValueError, OverflowError, IndexError):
209 except (ValueError, OverflowError, IndexError):
210 pass
210 pass
211
211
212 if len(changeid) == 40:
212 if len(changeid) == 40:
213 try:
213 try:
214 self._node = bin(changeid)
214 self._node = bin(changeid)
215 self._rev = repo.changelog.rev(self._node)
215 self._rev = repo.changelog.rev(self._node)
216 return
216 return
217 except (TypeError, LookupError):
217 except (TypeError, LookupError):
218 pass
218 pass
219
219
220 if changeid in repo._bookmarks:
220 if changeid in repo._bookmarks:
221 self._node = repo._bookmarks[changeid]
221 self._node = repo._bookmarks[changeid]
222 self._rev = repo.changelog.rev(self._node)
222 self._rev = repo.changelog.rev(self._node)
223 return
223 return
224 if changeid in repo._tagscache.tags:
224 if changeid in repo._tagscache.tags:
225 self._node = repo._tagscache.tags[changeid]
225 self._node = repo._tagscache.tags[changeid]
226 self._rev = repo.changelog.rev(self._node)
226 self._rev = repo.changelog.rev(self._node)
227 return
227 return
228 try:
228 try:
229 self._node = repo.branchtip(changeid)
229 self._node = repo.branchtip(changeid)
230 self._rev = repo.changelog.rev(self._node)
230 self._rev = repo.changelog.rev(self._node)
231 return
231 return
232 except error.RepoLookupError:
232 except error.RepoLookupError:
233 pass
233 pass
234
234
235 self._node = repo.changelog._partialmatch(changeid)
235 self._node = repo.changelog._partialmatch(changeid)
236 if self._node is not None:
236 if self._node is not None:
237 self._rev = repo.changelog.rev(self._node)
237 self._rev = repo.changelog.rev(self._node)
238 return
238 return
239
239
240 # lookup failed
240 # lookup failed
241 # check if it might have come from damaged dirstate
241 # check if it might have come from damaged dirstate
242 #
242 #
243 # XXX we could avoid the unfiltered if we had a recognizable exception
243 # XXX we could avoid the unfiltered if we had a recognizable exception
244 # for filtered changeset access
244 # for filtered changeset access
245 if changeid in repo.unfiltered().dirstate.parents():
245 if changeid in repo.unfiltered().dirstate.parents():
246 raise error.Abort(_("working directory has unknown parent '%s'!")
246 raise error.Abort(_("working directory has unknown parent '%s'!")
247 % short(changeid))
247 % short(changeid))
248 try:
248 try:
249 if len(changeid) == 20:
249 if len(changeid) == 20:
250 changeid = hex(changeid)
250 changeid = hex(changeid)
251 except TypeError:
251 except TypeError:
252 pass
252 pass
253 raise error.RepoLookupError(
253 raise error.RepoLookupError(
254 _("unknown revision '%s'") % changeid)
254 _("unknown revision '%s'") % changeid)
255
255
256 def __hash__(self):
256 def __hash__(self):
257 try:
257 try:
258 return hash(self._rev)
258 return hash(self._rev)
259 except AttributeError:
259 except AttributeError:
260 return id(self)
260 return id(self)
261
261
262 def __nonzero__(self):
262 def __nonzero__(self):
263 return self._rev != nullrev
263 return self._rev != nullrev
264
264
265 @propertycache
265 @propertycache
266 def _changeset(self):
266 def _changeset(self):
267 return self._repo.changelog.read(self.rev())
267 return self._repo.changelog.read(self.rev())
268
268
269 @propertycache
269 @propertycache
270 def _manifest(self):
270 def _manifest(self):
271 return self._repo.manifest.read(self._changeset[0])
271 return self._repo.manifest.read(self._changeset[0])
272
272
273 @propertycache
273 @propertycache
274 def _manifestdelta(self):
274 def _manifestdelta(self):
275 return self._repo.manifest.readdelta(self._changeset[0])
275 return self._repo.manifest.readdelta(self._changeset[0])
276
276
277 @propertycache
277 @propertycache
278 def _parents(self):
278 def _parents(self):
279 p = self._repo.changelog.parentrevs(self._rev)
279 p = self._repo.changelog.parentrevs(self._rev)
280 if p[1] == nullrev:
280 if p[1] == nullrev:
281 p = p[:-1]
281 p = p[:-1]
282 return [changectx(self._repo, x) for x in p]
282 return [changectx(self._repo, x) for x in p]
283
283
284 def changeset(self):
284 def changeset(self):
285 return self._changeset
285 return self._changeset
286 def manifestnode(self):
286 def manifestnode(self):
287 return self._changeset[0]
287 return self._changeset[0]
288
288
289 def user(self):
289 def user(self):
290 return self._changeset[1]
290 return self._changeset[1]
291 def date(self):
291 def date(self):
292 return self._changeset[2]
292 return self._changeset[2]
293 def files(self):
293 def files(self):
294 return self._changeset[3]
294 return self._changeset[3]
295 def description(self):
295 def description(self):
296 return self._changeset[4]
296 return self._changeset[4]
297 def branch(self):
297 def branch(self):
298 return encoding.tolocal(self._changeset[5].get("branch"))
298 return encoding.tolocal(self._changeset[5].get("branch"))
299 def closesbranch(self):
299 def closesbranch(self):
300 return 'close' in self._changeset[5]
300 return 'close' in self._changeset[5]
301 def extra(self):
301 def extra(self):
302 return self._changeset[5]
302 return self._changeset[5]
303 def tags(self):
303 def tags(self):
304 return self._repo.nodetags(self._node)
304 return self._repo.nodetags(self._node)
305 def bookmarks(self):
305 def bookmarks(self):
306 return self._repo.nodebookmarks(self._node)
306 return self._repo.nodebookmarks(self._node)
307 def phase(self):
307 def phase(self):
308 return self._repo._phasecache.phase(self._repo, self._rev)
308 return self._repo._phasecache.phase(self._repo, self._rev)
309 def hidden(self):
309 def hidden(self):
310 return self._rev in repoview.filterrevs(self._repo, 'visible')
310 return self._rev in repoview.filterrevs(self._repo, 'visible')
311
311
312 def children(self):
312 def children(self):
313 """return contexts for each child changeset"""
313 """return contexts for each child changeset"""
314 c = self._repo.changelog.children(self._node)
314 c = self._repo.changelog.children(self._node)
315 return [changectx(self._repo, x) for x in c]
315 return [changectx(self._repo, x) for x in c]
316
316
317 def ancestors(self):
317 def ancestors(self):
318 for a in self._repo.changelog.ancestors([self._rev]):
318 for a in self._repo.changelog.ancestors([self._rev]):
319 yield changectx(self._repo, a)
319 yield changectx(self._repo, a)
320
320
321 def descendants(self):
321 def descendants(self):
322 for d in self._repo.changelog.descendants([self._rev]):
322 for d in self._repo.changelog.descendants([self._rev]):
323 yield changectx(self._repo, d)
323 yield changectx(self._repo, d)
324
324
325 def obsolete(self):
325 def obsolete(self):
326 """True if the changeset is obsolete"""
326 """True if the changeset is obsolete"""
327 return self.rev() in obsmod.getrevs(self._repo, 'obsolete')
327 return self.rev() in obsmod.getrevs(self._repo, 'obsolete')
328
328
329 def extinct(self):
329 def extinct(self):
330 """True if the changeset is extinct"""
330 """True if the changeset is extinct"""
331 return self.rev() in obsmod.getrevs(self._repo, 'extinct')
331 return self.rev() in obsmod.getrevs(self._repo, 'extinct')
332
332
333 def unstable(self):
333 def unstable(self):
334 """True if the changeset is not obsolete but it's ancestor are"""
334 """True if the changeset is not obsolete but it's ancestor are"""
335 return self.rev() in obsmod.getrevs(self._repo, 'unstable')
335 return self.rev() in obsmod.getrevs(self._repo, 'unstable')
336
336
337 def bumped(self):
337 def bumped(self):
338 """True if the changeset try to be a successor of a public changeset
338 """True if the changeset try to be a successor of a public changeset
339
339
340 Only non-public and non-obsolete changesets may be bumped.
340 Only non-public and non-obsolete changesets may be bumped.
341 """
341 """
342 return self.rev() in obsmod.getrevs(self._repo, 'bumped')
342 return self.rev() in obsmod.getrevs(self._repo, 'bumped')
343
343
344 def divergent(self):
344 def divergent(self):
345 """Is a successors of a changeset with multiple possible successors set
345 """Is a successors of a changeset with multiple possible successors set
346
346
347 Only non-public and non-obsolete changesets may be divergent.
347 Only non-public and non-obsolete changesets may be divergent.
348 """
348 """
349 return self.rev() in obsmod.getrevs(self._repo, 'divergent')
349 return self.rev() in obsmod.getrevs(self._repo, 'divergent')
350
350
351 def troubled(self):
351 def troubled(self):
352 """True if the changeset is either unstable, bumped or divergent"""
352 """True if the changeset is either unstable, bumped or divergent"""
353 return self.unstable() or self.bumped() or self.divergent()
353 return self.unstable() or self.bumped() or self.divergent()
354
354
355 def troubles(self):
355 def troubles(self):
356 """return the list of troubles affecting this changesets.
356 """return the list of troubles affecting this changesets.
357
357
358 Troubles are returned as strings. possible values are:
358 Troubles are returned as strings. possible values are:
359 - unstable,
359 - unstable,
360 - bumped,
360 - bumped,
361 - divergent.
361 - divergent.
362 """
362 """
363 troubles = []
363 troubles = []
364 if self.unstable():
364 if self.unstable():
365 troubles.append('unstable')
365 troubles.append('unstable')
366 if self.bumped():
366 if self.bumped():
367 troubles.append('bumped')
367 troubles.append('bumped')
368 if self.divergent():
368 if self.divergent():
369 troubles.append('divergent')
369 troubles.append('divergent')
370 return troubles
370 return troubles
371
371
372 def filectx(self, path, fileid=None, filelog=None):
372 def filectx(self, path, fileid=None, filelog=None):
373 """get a file context from this changeset"""
373 """get a file context from this changeset"""
374 if fileid is None:
374 if fileid is None:
375 fileid = self.filenode(path)
375 fileid = self.filenode(path)
376 return filectx(self._repo, path, fileid=fileid,
376 return filectx(self._repo, path, fileid=fileid,
377 changectx=self, filelog=filelog)
377 changectx=self, filelog=filelog)
378
378
379 def ancestor(self, c2):
379 def ancestor(self, c2):
380 """
380 """
381 return the ancestor context of self and c2
381 return the ancestor context of self and c2
382 """
382 """
383 # deal with workingctxs
383 # deal with workingctxs
384 n2 = c2._node
384 n2 = c2._node
385 if n2 is None:
385 if n2 is None:
386 n2 = c2._parents[0]._node
386 n2 = c2._parents[0]._node
387 n = self._repo.changelog.ancestor(self._node, n2)
387 n = self._repo.changelog.ancestor(self._node, n2)
388 return changectx(self._repo, n)
388 return changectx(self._repo, n)
389
389
390 def descendant(self, other):
390 def descendant(self, other):
391 """True if other is descendant of this changeset"""
391 """True if other is descendant of this changeset"""
392 return self._repo.changelog.descendant(self._rev, other._rev)
392 return self._repo.changelog.descendant(self._rev, other._rev)
393
393
394 def walk(self, match):
394 def walk(self, match):
395 fset = set(match.files())
395 fset = set(match.files())
396 # for dirstate.walk, files=['.'] means "walk the whole tree".
396 # for dirstate.walk, files=['.'] means "walk the whole tree".
397 # follow that here, too
397 # follow that here, too
398 fset.discard('.')
398 fset.discard('.')
399 for fn in self:
399 for fn in self:
400 if fn in fset:
400 if fn in fset:
401 # specified pattern is the exact name
401 # specified pattern is the exact name
402 fset.remove(fn)
402 fset.remove(fn)
403 if match(fn):
403 if match(fn):
404 yield fn
404 yield fn
405 for fn in sorted(fset):
405 for fn in sorted(fset):
406 if fn in self._dirs:
406 if fn in self._dirs:
407 # specified pattern is a directory
407 # specified pattern is a directory
408 continue
408 continue
409 if match.bad(fn, _('no such file in rev %s') % self) and match(fn):
409 if match.bad(fn, _('no such file in rev %s') % self) and match(fn):
410 yield fn
410 yield fn
411
411
412 class basefilectx(object):
412 class basefilectx(object):
413 """A filecontext object represents the common logic for its children:
413 """A filecontext object represents the common logic for its children:
414 filectx: read-only access to a filerevision that is already present
414 filectx: read-only access to a filerevision that is already present
415 in the repo,
415 in the repo,
416 workingfilectx: a filecontext that represents files from the working
416 workingfilectx: a filecontext that represents files from the working
417 directory,
417 directory,
418 memfilectx: a filecontext that represents files in-memory."""
418 memfilectx: a filecontext that represents files in-memory."""
419 def __new__(cls, repo, path, *args, **kwargs):
419 def __new__(cls, repo, path, *args, **kwargs):
420 return super(basefilectx, cls).__new__(cls)
420 return super(basefilectx, cls).__new__(cls)
421
421
422 @propertycache
422 @propertycache
423 def _filelog(self):
423 def _filelog(self):
424 return self._repo.file(self._path)
424 return self._repo.file(self._path)
425
425
426 @propertycache
426 @propertycache
427 def _changeid(self):
427 def _changeid(self):
428 if '_changeid' in self.__dict__:
428 if '_changeid' in self.__dict__:
429 return self._changeid
429 return self._changeid
430 elif '_changectx' in self.__dict__:
430 elif '_changectx' in self.__dict__:
431 return self._changectx.rev()
431 return self._changectx.rev()
432 else:
432 else:
433 return self._filelog.linkrev(self._filerev)
433 return self._filelog.linkrev(self._filerev)
434
434
435 @propertycache
435 @propertycache
436 def _filenode(self):
436 def _filenode(self):
437 if '_fileid' in self.__dict__:
437 if '_fileid' in self.__dict__:
438 return self._filelog.lookup(self._fileid)
438 return self._filelog.lookup(self._fileid)
439 else:
439 else:
440 return self._changectx.filenode(self._path)
440 return self._changectx.filenode(self._path)
441
441
442 @propertycache
442 @propertycache
443 def _filerev(self):
443 def _filerev(self):
444 return self._filelog.rev(self._filenode)
444 return self._filelog.rev(self._filenode)
445
445
446 @propertycache
446 @propertycache
447 def _repopath(self):
447 def _repopath(self):
448 return self._path
448 return self._path
449
449
450 def __nonzero__(self):
450 def __nonzero__(self):
451 try:
451 try:
452 self._filenode
452 self._filenode
453 return True
453 return True
454 except error.LookupError:
454 except error.LookupError:
455 # file is missing
455 # file is missing
456 return False
456 return False
457
457
458 def __str__(self):
458 def __str__(self):
459 return "%s@%s" % (self.path(), short(self.node()))
459 return "%s@%s" % (self.path(), self._changectx)
460
460
461 def __repr__(self):
461 def __repr__(self):
462 return "<%s %s>" % (type(self).__name__, str(self))
462 return "<%s %s>" % (type(self).__name__, str(self))
463
463
464 def __hash__(self):
464 def __hash__(self):
465 try:
465 try:
466 return hash((self._path, self._filenode))
466 return hash((self._path, self._filenode))
467 except AttributeError:
467 except AttributeError:
468 return id(self)
468 return id(self)
469
469
470 def __eq__(self, other):
470 def __eq__(self, other):
471 try:
471 try:
472 return (type(self) == type(other) and self._path == other._path
472 return (type(self) == type(other) and self._path == other._path
473 and self._filenode == other._filenode)
473 and self._filenode == other._filenode)
474 except AttributeError:
474 except AttributeError:
475 return False
475 return False
476
476
477 def __ne__(self, other):
477 def __ne__(self, other):
478 return not (self == other)
478 return not (self == other)
479
479
480 def filerev(self):
480 def filerev(self):
481 return self._filerev
481 return self._filerev
482 def filenode(self):
482 def filenode(self):
483 return self._filenode
483 return self._filenode
484 def flags(self):
484 def flags(self):
485 return self._changectx.flags(self._path)
485 return self._changectx.flags(self._path)
486 def filelog(self):
486 def filelog(self):
487 return self._filelog
487 return self._filelog
488 def rev(self):
488 def rev(self):
489 return self._changeid
489 return self._changeid
490 def linkrev(self):
490 def linkrev(self):
491 return self._filelog.linkrev(self._filerev)
491 return self._filelog.linkrev(self._filerev)
492 def node(self):
492 def node(self):
493 return self._changectx.node()
493 return self._changectx.node()
494 def hex(self):
494 def hex(self):
495 return self._changectx.hex()
495 return self._changectx.hex()
496 def user(self):
496 def user(self):
497 return self._changectx.user()
497 return self._changectx.user()
498 def date(self):
498 def date(self):
499 return self._changectx.date()
499 return self._changectx.date()
500 def files(self):
500 def files(self):
501 return self._changectx.files()
501 return self._changectx.files()
502 def description(self):
502 def description(self):
503 return self._changectx.description()
503 return self._changectx.description()
504 def branch(self):
504 def branch(self):
505 return self._changectx.branch()
505 return self._changectx.branch()
506 def extra(self):
506 def extra(self):
507 return self._changectx.extra()
507 return self._changectx.extra()
508 def phase(self):
508 def phase(self):
509 return self._changectx.phase()
509 return self._changectx.phase()
510 def phasestr(self):
510 def phasestr(self):
511 return self._changectx.phasestr()
511 return self._changectx.phasestr()
512 def manifest(self):
512 def manifest(self):
513 return self._changectx.manifest()
513 return self._changectx.manifest()
514 def changectx(self):
514 def changectx(self):
515 return self._changectx
515 return self._changectx
516
516
517 def path(self):
517 def path(self):
518 return self._path
518 return self._path
519
519
520 def isbinary(self):
520 def isbinary(self):
521 try:
521 try:
522 return util.binary(self.data())
522 return util.binary(self.data())
523 except IOError:
523 except IOError:
524 return False
524 return False
525
525
526 def cmp(self, fctx):
526 def cmp(self, fctx):
527 """compare with other file context
527 """compare with other file context
528
528
529 returns True if different than fctx.
529 returns True if different than fctx.
530 """
530 """
531 if (fctx._filerev is None
531 if (fctx._filerev is None
532 and (self._repo._encodefilterpats
532 and (self._repo._encodefilterpats
533 # if file data starts with '\1\n', empty metadata block is
533 # if file data starts with '\1\n', empty metadata block is
534 # prepended, which adds 4 bytes to filelog.size().
534 # prepended, which adds 4 bytes to filelog.size().
535 or self.size() - 4 == fctx.size())
535 or self.size() - 4 == fctx.size())
536 or self.size() == fctx.size()):
536 or self.size() == fctx.size()):
537 return self._filelog.cmp(self._filenode, fctx.data())
537 return self._filelog.cmp(self._filenode, fctx.data())
538
538
539 return True
539 return True
540
540
541 def parents(self):
541 def parents(self):
542 p = self._path
542 p = self._path
543 fl = self._filelog
543 fl = self._filelog
544 pl = [(p, n, fl) for n in self._filelog.parents(self._filenode)]
544 pl = [(p, n, fl) for n in self._filelog.parents(self._filenode)]
545
545
546 r = self._filelog.renamed(self._filenode)
546 r = self._filelog.renamed(self._filenode)
547 if r:
547 if r:
548 pl[0] = (r[0], r[1], None)
548 pl[0] = (r[0], r[1], None)
549
549
550 return [filectx(self._repo, p, fileid=n, filelog=l)
550 return [filectx(self._repo, p, fileid=n, filelog=l)
551 for p, n, l in pl if n != nullid]
551 for p, n, l in pl if n != nullid]
552
552
553 def p1(self):
553 def p1(self):
554 return self.parents()[0]
554 return self.parents()[0]
555
555
556 def p2(self):
556 def p2(self):
557 p = self.parents()
557 p = self.parents()
558 if len(p) == 2:
558 if len(p) == 2:
559 return p[1]
559 return p[1]
560 return filectx(self._repo, self._path, fileid=-1, filelog=self._filelog)
560 return filectx(self._repo, self._path, fileid=-1, filelog=self._filelog)
561
561
562 def annotate(self, follow=False, linenumber=None, diffopts=None):
562 def annotate(self, follow=False, linenumber=None, diffopts=None):
563 '''returns a list of tuples of (ctx, line) for each line
563 '''returns a list of tuples of (ctx, line) for each line
564 in the file, where ctx is the filectx of the node where
564 in the file, where ctx is the filectx of the node where
565 that line was last changed.
565 that line was last changed.
566 This returns tuples of ((ctx, linenumber), line) for each line,
566 This returns tuples of ((ctx, linenumber), line) for each line,
567 if "linenumber" parameter is NOT "None".
567 if "linenumber" parameter is NOT "None".
568 In such tuples, linenumber means one at the first appearance
568 In such tuples, linenumber means one at the first appearance
569 in the managed file.
569 in the managed file.
570 To reduce annotation cost,
570 To reduce annotation cost,
571 this returns fixed value(False is used) as linenumber,
571 this returns fixed value(False is used) as linenumber,
572 if "linenumber" parameter is "False".'''
572 if "linenumber" parameter is "False".'''
573
573
574 def decorate_compat(text, rev):
574 def decorate_compat(text, rev):
575 return ([rev] * len(text.splitlines()), text)
575 return ([rev] * len(text.splitlines()), text)
576
576
577 def without_linenumber(text, rev):
577 def without_linenumber(text, rev):
578 return ([(rev, False)] * len(text.splitlines()), text)
578 return ([(rev, False)] * len(text.splitlines()), text)
579
579
580 def with_linenumber(text, rev):
580 def with_linenumber(text, rev):
581 size = len(text.splitlines())
581 size = len(text.splitlines())
582 return ([(rev, i) for i in xrange(1, size + 1)], text)
582 return ([(rev, i) for i in xrange(1, size + 1)], text)
583
583
584 decorate = (((linenumber is None) and decorate_compat) or
584 decorate = (((linenumber is None) and decorate_compat) or
585 (linenumber and with_linenumber) or
585 (linenumber and with_linenumber) or
586 without_linenumber)
586 without_linenumber)
587
587
588 def pair(parent, child):
588 def pair(parent, child):
589 blocks = mdiff.allblocks(parent[1], child[1], opts=diffopts,
589 blocks = mdiff.allblocks(parent[1], child[1], opts=diffopts,
590 refine=True)
590 refine=True)
591 for (a1, a2, b1, b2), t in blocks:
591 for (a1, a2, b1, b2), t in blocks:
592 # Changed blocks ('!') or blocks made only of blank lines ('~')
592 # Changed blocks ('!') or blocks made only of blank lines ('~')
593 # belong to the child.
593 # belong to the child.
594 if t == '=':
594 if t == '=':
595 child[0][b1:b2] = parent[0][a1:a2]
595 child[0][b1:b2] = parent[0][a1:a2]
596 return child
596 return child
597
597
598 getlog = util.lrucachefunc(lambda x: self._repo.file(x))
598 getlog = util.lrucachefunc(lambda x: self._repo.file(x))
599
599
600 def parents(f):
600 def parents(f):
601 pl = f.parents()
601 pl = f.parents()
602
602
603 # Don't return renamed parents if we aren't following.
603 # Don't return renamed parents if we aren't following.
604 if not follow:
604 if not follow:
605 pl = [p for p in pl if p.path() == f.path()]
605 pl = [p for p in pl if p.path() == f.path()]
606
606
607 # renamed filectx won't have a filelog yet, so set it
607 # renamed filectx won't have a filelog yet, so set it
608 # from the cache to save time
608 # from the cache to save time
609 for p in pl:
609 for p in pl:
610 if not '_filelog' in p.__dict__:
610 if not '_filelog' in p.__dict__:
611 p._filelog = getlog(p.path())
611 p._filelog = getlog(p.path())
612
612
613 return pl
613 return pl
614
614
615 # use linkrev to find the first changeset where self appeared
615 # use linkrev to find the first changeset where self appeared
616 if self.rev() != self.linkrev():
616 if self.rev() != self.linkrev():
617 base = self.filectx(self.filenode())
617 base = self.filectx(self.filenode())
618 else:
618 else:
619 base = self
619 base = self
620
620
621 # This algorithm would prefer to be recursive, but Python is a
621 # This algorithm would prefer to be recursive, but Python is a
622 # bit recursion-hostile. Instead we do an iterative
622 # bit recursion-hostile. Instead we do an iterative
623 # depth-first search.
623 # depth-first search.
624
624
625 visit = [base]
625 visit = [base]
626 hist = {}
626 hist = {}
627 pcache = {}
627 pcache = {}
628 needed = {base: 1}
628 needed = {base: 1}
629 while visit:
629 while visit:
630 f = visit[-1]
630 f = visit[-1]
631 pcached = f in pcache
631 pcached = f in pcache
632 if not pcached:
632 if not pcached:
633 pcache[f] = parents(f)
633 pcache[f] = parents(f)
634
634
635 ready = True
635 ready = True
636 pl = pcache[f]
636 pl = pcache[f]
637 for p in pl:
637 for p in pl:
638 if p not in hist:
638 if p not in hist:
639 ready = False
639 ready = False
640 visit.append(p)
640 visit.append(p)
641 if not pcached:
641 if not pcached:
642 needed[p] = needed.get(p, 0) + 1
642 needed[p] = needed.get(p, 0) + 1
643 if ready:
643 if ready:
644 visit.pop()
644 visit.pop()
645 reusable = f in hist
645 reusable = f in hist
646 if reusable:
646 if reusable:
647 curr = hist[f]
647 curr = hist[f]
648 else:
648 else:
649 curr = decorate(f.data(), f)
649 curr = decorate(f.data(), f)
650 for p in pl:
650 for p in pl:
651 if not reusable:
651 if not reusable:
652 curr = pair(hist[p], curr)
652 curr = pair(hist[p], curr)
653 if needed[p] == 1:
653 if needed[p] == 1:
654 del hist[p]
654 del hist[p]
655 del needed[p]
655 del needed[p]
656 else:
656 else:
657 needed[p] -= 1
657 needed[p] -= 1
658
658
659 hist[f] = curr
659 hist[f] = curr
660 pcache[f] = []
660 pcache[f] = []
661
661
662 return zip(hist[base][0], hist[base][1].splitlines(True))
662 return zip(hist[base][0], hist[base][1].splitlines(True))
663
663
664 def ancestor(self, fc2, actx):
664 def ancestor(self, fc2, actx):
665 """
665 """
666 find the common ancestor file context, if any, of self, and fc2
666 find the common ancestor file context, if any, of self, and fc2
667
667
668 actx must be the changectx of the common ancestor
668 actx must be the changectx of the common ancestor
669 of self's and fc2's respective changesets.
669 of self's and fc2's respective changesets.
670 """
670 """
671
671
672 # the easy case: no (relevant) renames
672 # the easy case: no (relevant) renames
673 if fc2.path() == self.path() and self.path() in actx:
673 if fc2.path() == self.path() and self.path() in actx:
674 return actx[self.path()]
674 return actx[self.path()]
675
675
676 # the next easiest cases: unambiguous predecessor (name trumps
676 # the next easiest cases: unambiguous predecessor (name trumps
677 # history)
677 # history)
678 if self.path() in actx and fc2.path() not in actx:
678 if self.path() in actx and fc2.path() not in actx:
679 return actx[self.path()]
679 return actx[self.path()]
680 if fc2.path() in actx and self.path() not in actx:
680 if fc2.path() in actx and self.path() not in actx:
681 return actx[fc2.path()]
681 return actx[fc2.path()]
682
682
683 # prime the ancestor cache for the working directory
683 # prime the ancestor cache for the working directory
684 acache = {}
684 acache = {}
685 for c in (self, fc2):
685 for c in (self, fc2):
686 if c.filenode() is None:
686 if c.filenode() is None:
687 pl = [(n.path(), n.filenode()) for n in c.parents()]
687 pl = [(n.path(), n.filenode()) for n in c.parents()]
688 acache[(c._path, None)] = pl
688 acache[(c._path, None)] = pl
689
689
690 flcache = {self._repopath:self._filelog, fc2._repopath:fc2._filelog}
690 flcache = {self._repopath:self._filelog, fc2._repopath:fc2._filelog}
691 def parents(vertex):
691 def parents(vertex):
692 if vertex in acache:
692 if vertex in acache:
693 return acache[vertex]
693 return acache[vertex]
694 f, n = vertex
694 f, n = vertex
695 if f not in flcache:
695 if f not in flcache:
696 flcache[f] = self._repo.file(f)
696 flcache[f] = self._repo.file(f)
697 fl = flcache[f]
697 fl = flcache[f]
698 pl = [(f, p) for p in fl.parents(n) if p != nullid]
698 pl = [(f, p) for p in fl.parents(n) if p != nullid]
699 re = fl.renamed(n)
699 re = fl.renamed(n)
700 if re:
700 if re:
701 pl.append(re)
701 pl.append(re)
702 acache[vertex] = pl
702 acache[vertex] = pl
703 return pl
703 return pl
704
704
705 a, b = (self._path, self._filenode), (fc2._path, fc2._filenode)
705 a, b = (self._path, self._filenode), (fc2._path, fc2._filenode)
706 v = ancestor.genericancestor(a, b, parents)
706 v = ancestor.genericancestor(a, b, parents)
707 if v:
707 if v:
708 f, n = v
708 f, n = v
709 return filectx(self._repo, f, fileid=n, filelog=flcache[f])
709 return filectx(self._repo, f, fileid=n, filelog=flcache[f])
710
710
711 return None
711 return None
712
712
713 def ancestors(self, followfirst=False):
713 def ancestors(self, followfirst=False):
714 visit = {}
714 visit = {}
715 c = self
715 c = self
716 cut = followfirst and 1 or None
716 cut = followfirst and 1 or None
717 while True:
717 while True:
718 for parent in c.parents()[:cut]:
718 for parent in c.parents()[:cut]:
719 visit[(parent.rev(), parent.node())] = parent
719 visit[(parent.rev(), parent.node())] = parent
720 if not visit:
720 if not visit:
721 break
721 break
722 c = visit.pop(max(visit))
722 c = visit.pop(max(visit))
723 yield c
723 yield c
724
724
725 def copies(self, c2):
725 def copies(self, c2):
726 if not util.safehasattr(self, "_copycache"):
726 if not util.safehasattr(self, "_copycache"):
727 self._copycache = {}
727 self._copycache = {}
728 sc2 = str(c2)
728 sc2 = str(c2)
729 if sc2 not in self._copycache:
729 if sc2 not in self._copycache:
730 self._copycache[sc2] = copies.pathcopies(c2)
730 self._copycache[sc2] = copies.pathcopies(c2)
731 return self._copycache[sc2]
731 return self._copycache[sc2]
732
732
733 class filectx(basefilectx):
733 class filectx(basefilectx):
734 """A filecontext object makes access to data related to a particular
734 """A filecontext object makes access to data related to a particular
735 filerevision convenient."""
735 filerevision convenient."""
736 def __init__(self, repo, path, changeid=None, fileid=None,
736 def __init__(self, repo, path, changeid=None, fileid=None,
737 filelog=None, changectx=None):
737 filelog=None, changectx=None):
738 """changeid can be a changeset revision, node, or tag.
738 """changeid can be a changeset revision, node, or tag.
739 fileid can be a file revision or node."""
739 fileid can be a file revision or node."""
740 self._repo = repo
740 self._repo = repo
741 self._path = path
741 self._path = path
742
742
743 assert (changeid is not None
743 assert (changeid is not None
744 or fileid is not None
744 or fileid is not None
745 or changectx is not None), \
745 or changectx is not None), \
746 ("bad args: changeid=%r, fileid=%r, changectx=%r"
746 ("bad args: changeid=%r, fileid=%r, changectx=%r"
747 % (changeid, fileid, changectx))
747 % (changeid, fileid, changectx))
748
748
749 if filelog is not None:
749 if filelog is not None:
750 self._filelog = filelog
750 self._filelog = filelog
751
751
752 if changeid is not None:
752 if changeid is not None:
753 self._changeid = changeid
753 self._changeid = changeid
754 if changectx is not None:
754 if changectx is not None:
755 self._changectx = changectx
755 self._changectx = changectx
756 if fileid is not None:
756 if fileid is not None:
757 self._fileid = fileid
757 self._fileid = fileid
758
758
759 @propertycache
759 @propertycache
760 def _changectx(self):
760 def _changectx(self):
761 try:
761 try:
762 return changectx(self._repo, self._changeid)
762 return changectx(self._repo, self._changeid)
763 except error.RepoLookupError:
763 except error.RepoLookupError:
764 # Linkrev may point to any revision in the repository. When the
764 # Linkrev may point to any revision in the repository. When the
765 # repository is filtered this may lead to `filectx` trying to build
765 # repository is filtered this may lead to `filectx` trying to build
766 # `changectx` for filtered revision. In such case we fallback to
766 # `changectx` for filtered revision. In such case we fallback to
767 # creating `changectx` on the unfiltered version of the reposition.
767 # creating `changectx` on the unfiltered version of the reposition.
768 # This fallback should not be an issue because `changectx` from
768 # This fallback should not be an issue because `changectx` from
769 # `filectx` are not used in complex operations that care about
769 # `filectx` are not used in complex operations that care about
770 # filtering.
770 # filtering.
771 #
771 #
772 # This fallback is a cheap and dirty fix that prevent several
772 # This fallback is a cheap and dirty fix that prevent several
773 # crashes. It does not ensure the behavior is correct. However the
773 # crashes. It does not ensure the behavior is correct. However the
774 # behavior was not correct before filtering either and "incorrect
774 # behavior was not correct before filtering either and "incorrect
775 # behavior" is seen as better as "crash"
775 # behavior" is seen as better as "crash"
776 #
776 #
777 # Linkrevs have several serious troubles with filtering that are
777 # Linkrevs have several serious troubles with filtering that are
778 # complicated to solve. Proper handling of the issue here should be
778 # complicated to solve. Proper handling of the issue here should be
779 # considered when solving linkrev issue are on the table.
779 # considered when solving linkrev issue are on the table.
780 return changectx(self._repo.unfiltered(), self._changeid)
780 return changectx(self._repo.unfiltered(), self._changeid)
781
781
782 def filectx(self, fileid):
782 def filectx(self, fileid):
783 '''opens an arbitrary revision of the file without
783 '''opens an arbitrary revision of the file without
784 opening a new filelog'''
784 opening a new filelog'''
785 return filectx(self._repo, self._path, fileid=fileid,
785 return filectx(self._repo, self._path, fileid=fileid,
786 filelog=self._filelog)
786 filelog=self._filelog)
787
787
788 def data(self):
788 def data(self):
789 return self._filelog.read(self._filenode)
789 return self._filelog.read(self._filenode)
790 def size(self):
790 def size(self):
791 return self._filelog.size(self._filerev)
791 return self._filelog.size(self._filerev)
792
792
793 def renamed(self):
793 def renamed(self):
794 """check if file was actually renamed in this changeset revision
794 """check if file was actually renamed in this changeset revision
795
795
796 If rename logged in file revision, we report copy for changeset only
796 If rename logged in file revision, we report copy for changeset only
797 if file revisions linkrev points back to the changeset in question
797 if file revisions linkrev points back to the changeset in question
798 or both changeset parents contain different file revisions.
798 or both changeset parents contain different file revisions.
799 """
799 """
800
800
801 renamed = self._filelog.renamed(self._filenode)
801 renamed = self._filelog.renamed(self._filenode)
802 if not renamed:
802 if not renamed:
803 return renamed
803 return renamed
804
804
805 if self.rev() == self.linkrev():
805 if self.rev() == self.linkrev():
806 return renamed
806 return renamed
807
807
808 name = self.path()
808 name = self.path()
809 fnode = self._filenode
809 fnode = self._filenode
810 for p in self._changectx.parents():
810 for p in self._changectx.parents():
811 try:
811 try:
812 if fnode == p.filenode(name):
812 if fnode == p.filenode(name):
813 return None
813 return None
814 except error.LookupError:
814 except error.LookupError:
815 pass
815 pass
816 return renamed
816 return renamed
817
817
818 def children(self):
818 def children(self):
819 # hard for renames
819 # hard for renames
820 c = self._filelog.children(self._filenode)
820 c = self._filelog.children(self._filenode)
821 return [filectx(self._repo, self._path, fileid=x,
821 return [filectx(self._repo, self._path, fileid=x,
822 filelog=self._filelog) for x in c]
822 filelog=self._filelog) for x in c]
823
823
824 class workingctx(basectx):
824 class workingctx(basectx):
825 """A workingctx object makes access to data related to
825 """A workingctx object makes access to data related to
826 the current working directory convenient.
826 the current working directory convenient.
827 date - any valid date string or (unixtime, offset), or None.
827 date - any valid date string or (unixtime, offset), or None.
828 user - username string, or None.
828 user - username string, or None.
829 extra - a dictionary of extra values, or None.
829 extra - a dictionary of extra values, or None.
830 changes - a list of file lists as returned by localrepo.status()
830 changes - a list of file lists as returned by localrepo.status()
831 or None to use the repository status.
831 or None to use the repository status.
832 """
832 """
833 def __init__(self, repo, text="", user=None, date=None, extra=None,
833 def __init__(self, repo, text="", user=None, date=None, extra=None,
834 changes=None):
834 changes=None):
835 self._repo = repo
835 self._repo = repo
836 self._rev = None
836 self._rev = None
837 self._node = None
837 self._node = None
838 self._text = text
838 self._text = text
839 if date:
839 if date:
840 self._date = util.parsedate(date)
840 self._date = util.parsedate(date)
841 if user:
841 if user:
842 self._user = user
842 self._user = user
843 if changes:
843 if changes:
844 self._status = list(changes[:4])
844 self._status = list(changes[:4])
845 self._unknown = changes[4]
845 self._unknown = changes[4]
846 self._ignored = changes[5]
846 self._ignored = changes[5]
847 self._clean = changes[6]
847 self._clean = changes[6]
848 else:
848 else:
849 self._unknown = None
849 self._unknown = None
850 self._ignored = None
850 self._ignored = None
851 self._clean = None
851 self._clean = None
852
852
853 self._extra = {}
853 self._extra = {}
854 if extra:
854 if extra:
855 self._extra = extra.copy()
855 self._extra = extra.copy()
856 if 'branch' not in self._extra:
856 if 'branch' not in self._extra:
857 try:
857 try:
858 branch = encoding.fromlocal(self._repo.dirstate.branch())
858 branch = encoding.fromlocal(self._repo.dirstate.branch())
859 except UnicodeDecodeError:
859 except UnicodeDecodeError:
860 raise util.Abort(_('branch name not in UTF-8!'))
860 raise util.Abort(_('branch name not in UTF-8!'))
861 self._extra['branch'] = branch
861 self._extra['branch'] = branch
862 if self._extra['branch'] == '':
862 if self._extra['branch'] == '':
863 self._extra['branch'] = 'default'
863 self._extra['branch'] = 'default'
864
864
865 def __str__(self):
865 def __str__(self):
866 return str(self._parents[0]) + "+"
866 return str(self._parents[0]) + "+"
867
867
868 def __nonzero__(self):
868 def __nonzero__(self):
869 return True
869 return True
870
870
871 def __contains__(self, key):
871 def __contains__(self, key):
872 return self._repo.dirstate[key] not in "?r"
872 return self._repo.dirstate[key] not in "?r"
873
873
874 def _buildflagfunc(self):
874 def _buildflagfunc(self):
875 # Create a fallback function for getting file flags when the
875 # Create a fallback function for getting file flags when the
876 # filesystem doesn't support them
876 # filesystem doesn't support them
877
877
878 copiesget = self._repo.dirstate.copies().get
878 copiesget = self._repo.dirstate.copies().get
879
879
880 if len(self._parents) < 2:
880 if len(self._parents) < 2:
881 # when we have one parent, it's easy: copy from parent
881 # when we have one parent, it's easy: copy from parent
882 man = self._parents[0].manifest()
882 man = self._parents[0].manifest()
883 def func(f):
883 def func(f):
884 f = copiesget(f, f)
884 f = copiesget(f, f)
885 return man.flags(f)
885 return man.flags(f)
886 else:
886 else:
887 # merges are tricky: we try to reconstruct the unstored
887 # merges are tricky: we try to reconstruct the unstored
888 # result from the merge (issue1802)
888 # result from the merge (issue1802)
889 p1, p2 = self._parents
889 p1, p2 = self._parents
890 pa = p1.ancestor(p2)
890 pa = p1.ancestor(p2)
891 m1, m2, ma = p1.manifest(), p2.manifest(), pa.manifest()
891 m1, m2, ma = p1.manifest(), p2.manifest(), pa.manifest()
892
892
893 def func(f):
893 def func(f):
894 f = copiesget(f, f) # may be wrong for merges with copies
894 f = copiesget(f, f) # may be wrong for merges with copies
895 fl1, fl2, fla = m1.flags(f), m2.flags(f), ma.flags(f)
895 fl1, fl2, fla = m1.flags(f), m2.flags(f), ma.flags(f)
896 if fl1 == fl2:
896 if fl1 == fl2:
897 return fl1
897 return fl1
898 if fl1 == fla:
898 if fl1 == fla:
899 return fl2
899 return fl2
900 if fl2 == fla:
900 if fl2 == fla:
901 return fl1
901 return fl1
902 return '' # punt for conflicts
902 return '' # punt for conflicts
903
903
904 return func
904 return func
905
905
906 @propertycache
906 @propertycache
907 def _flagfunc(self):
907 def _flagfunc(self):
908 return self._repo.dirstate.flagfunc(self._buildflagfunc)
908 return self._repo.dirstate.flagfunc(self._buildflagfunc)
909
909
910 @propertycache
910 @propertycache
911 def _manifest(self):
911 def _manifest(self):
912 """generate a manifest corresponding to the working directory"""
912 """generate a manifest corresponding to the working directory"""
913
913
914 man = self._parents[0].manifest().copy()
914 man = self._parents[0].manifest().copy()
915 if len(self._parents) > 1:
915 if len(self._parents) > 1:
916 man2 = self.p2().manifest()
916 man2 = self.p2().manifest()
917 def getman(f):
917 def getman(f):
918 if f in man:
918 if f in man:
919 return man
919 return man
920 return man2
920 return man2
921 else:
921 else:
922 getman = lambda f: man
922 getman = lambda f: man
923
923
924 copied = self._repo.dirstate.copies()
924 copied = self._repo.dirstate.copies()
925 ff = self._flagfunc
925 ff = self._flagfunc
926 modified, added, removed, deleted = self._status
926 modified, added, removed, deleted = self._status
927 for i, l in (("a", added), ("m", modified)):
927 for i, l in (("a", added), ("m", modified)):
928 for f in l:
928 for f in l:
929 orig = copied.get(f, f)
929 orig = copied.get(f, f)
930 man[f] = getman(orig).get(orig, nullid) + i
930 man[f] = getman(orig).get(orig, nullid) + i
931 try:
931 try:
932 man.set(f, ff(f))
932 man.set(f, ff(f))
933 except OSError:
933 except OSError:
934 pass
934 pass
935
935
936 for f in deleted + removed:
936 for f in deleted + removed:
937 if f in man:
937 if f in man:
938 del man[f]
938 del man[f]
939
939
940 return man
940 return man
941
941
942 def __iter__(self):
942 def __iter__(self):
943 d = self._repo.dirstate
943 d = self._repo.dirstate
944 for f in d:
944 for f in d:
945 if d[f] != 'r':
945 if d[f] != 'r':
946 yield f
946 yield f
947
947
948 @propertycache
948 @propertycache
949 def _status(self):
949 def _status(self):
950 return self._repo.status()[:4]
950 return self._repo.status()[:4]
951
951
952 @propertycache
952 @propertycache
953 def _user(self):
953 def _user(self):
954 return self._repo.ui.username()
954 return self._repo.ui.username()
955
955
956 @propertycache
956 @propertycache
957 def _date(self):
957 def _date(self):
958 return util.makedate()
958 return util.makedate()
959
959
960 @propertycache
960 @propertycache
961 def _parents(self):
961 def _parents(self):
962 p = self._repo.dirstate.parents()
962 p = self._repo.dirstate.parents()
963 if p[1] == nullid:
963 if p[1] == nullid:
964 p = p[:-1]
964 p = p[:-1]
965 return [changectx(self._repo, x) for x in p]
965 return [changectx(self._repo, x) for x in p]
966
966
967 def status(self, ignored=False, clean=False, unknown=False):
967 def status(self, ignored=False, clean=False, unknown=False):
968 """Explicit status query
968 """Explicit status query
969 Unless this method is used to query the working copy status, the
969 Unless this method is used to query the working copy status, the
970 _status property will implicitly read the status using its default
970 _status property will implicitly read the status using its default
971 arguments."""
971 arguments."""
972 stat = self._repo.status(ignored=ignored, clean=clean, unknown=unknown)
972 stat = self._repo.status(ignored=ignored, clean=clean, unknown=unknown)
973 self._unknown = self._ignored = self._clean = None
973 self._unknown = self._ignored = self._clean = None
974 if unknown:
974 if unknown:
975 self._unknown = stat[4]
975 self._unknown = stat[4]
976 if ignored:
976 if ignored:
977 self._ignored = stat[5]
977 self._ignored = stat[5]
978 if clean:
978 if clean:
979 self._clean = stat[6]
979 self._clean = stat[6]
980 self._status = stat[:4]
980 self._status = stat[:4]
981 return stat
981 return stat
982
982
983 def user(self):
983 def user(self):
984 return self._user or self._repo.ui.username()
984 return self._user or self._repo.ui.username()
985 def date(self):
985 def date(self):
986 return self._date
986 return self._date
987 def description(self):
987 def description(self):
988 return self._text
988 return self._text
989 def files(self):
989 def files(self):
990 return sorted(self._status[0] + self._status[1] + self._status[2])
990 return sorted(self._status[0] + self._status[1] + self._status[2])
991
991
992 def modified(self):
992 def modified(self):
993 return self._status[0]
993 return self._status[0]
994 def added(self):
994 def added(self):
995 return self._status[1]
995 return self._status[1]
996 def removed(self):
996 def removed(self):
997 return self._status[2]
997 return self._status[2]
998 def deleted(self):
998 def deleted(self):
999 return self._status[3]
999 return self._status[3]
1000 def unknown(self):
1000 def unknown(self):
1001 assert self._unknown is not None # must call status first
1001 assert self._unknown is not None # must call status first
1002 return self._unknown
1002 return self._unknown
1003 def ignored(self):
1003 def ignored(self):
1004 assert self._ignored is not None # must call status first
1004 assert self._ignored is not None # must call status first
1005 return self._ignored
1005 return self._ignored
1006 def clean(self):
1006 def clean(self):
1007 assert self._clean is not None # must call status first
1007 assert self._clean is not None # must call status first
1008 return self._clean
1008 return self._clean
1009 def branch(self):
1009 def branch(self):
1010 return encoding.tolocal(self._extra['branch'])
1010 return encoding.tolocal(self._extra['branch'])
1011 def closesbranch(self):
1011 def closesbranch(self):
1012 return 'close' in self._extra
1012 return 'close' in self._extra
1013 def extra(self):
1013 def extra(self):
1014 return self._extra
1014 return self._extra
1015
1015
1016 def tags(self):
1016 def tags(self):
1017 t = []
1017 t = []
1018 for p in self.parents():
1018 for p in self.parents():
1019 t.extend(p.tags())
1019 t.extend(p.tags())
1020 return t
1020 return t
1021
1021
1022 def bookmarks(self):
1022 def bookmarks(self):
1023 b = []
1023 b = []
1024 for p in self.parents():
1024 for p in self.parents():
1025 b.extend(p.bookmarks())
1025 b.extend(p.bookmarks())
1026 return b
1026 return b
1027
1027
1028 def phase(self):
1028 def phase(self):
1029 phase = phases.draft # default phase to draft
1029 phase = phases.draft # default phase to draft
1030 for p in self.parents():
1030 for p in self.parents():
1031 phase = max(phase, p.phase())
1031 phase = max(phase, p.phase())
1032 return phase
1032 return phase
1033
1033
1034 def hidden(self):
1034 def hidden(self):
1035 return False
1035 return False
1036
1036
1037 def children(self):
1037 def children(self):
1038 return []
1038 return []
1039
1039
1040 def flags(self, path):
1040 def flags(self, path):
1041 if '_manifest' in self.__dict__:
1041 if '_manifest' in self.__dict__:
1042 try:
1042 try:
1043 return self._manifest.flags(path)
1043 return self._manifest.flags(path)
1044 except KeyError:
1044 except KeyError:
1045 return ''
1045 return ''
1046
1046
1047 try:
1047 try:
1048 return self._flagfunc(path)
1048 return self._flagfunc(path)
1049 except OSError:
1049 except OSError:
1050 return ''
1050 return ''
1051
1051
1052 def filectx(self, path, filelog=None):
1052 def filectx(self, path, filelog=None):
1053 """get a file context from the working directory"""
1053 """get a file context from the working directory"""
1054 return workingfilectx(self._repo, path, workingctx=self,
1054 return workingfilectx(self._repo, path, workingctx=self,
1055 filelog=filelog)
1055 filelog=filelog)
1056
1056
1057 def ancestor(self, c2):
1057 def ancestor(self, c2):
1058 """return the ancestor context of self and c2"""
1058 """return the ancestor context of self and c2"""
1059 return self._parents[0].ancestor(c2) # punt on two parents for now
1059 return self._parents[0].ancestor(c2) # punt on two parents for now
1060
1060
1061 def walk(self, match):
1061 def walk(self, match):
1062 return sorted(self._repo.dirstate.walk(match, sorted(self.substate),
1062 return sorted(self._repo.dirstate.walk(match, sorted(self.substate),
1063 True, False))
1063 True, False))
1064
1064
1065 def dirty(self, missing=False, merge=True, branch=True):
1065 def dirty(self, missing=False, merge=True, branch=True):
1066 "check whether a working directory is modified"
1066 "check whether a working directory is modified"
1067 # check subrepos first
1067 # check subrepos first
1068 for s in sorted(self.substate):
1068 for s in sorted(self.substate):
1069 if self.sub(s).dirty():
1069 if self.sub(s).dirty():
1070 return True
1070 return True
1071 # check current working dir
1071 # check current working dir
1072 return ((merge and self.p2()) or
1072 return ((merge and self.p2()) or
1073 (branch and self.branch() != self.p1().branch()) or
1073 (branch and self.branch() != self.p1().branch()) or
1074 self.modified() or self.added() or self.removed() or
1074 self.modified() or self.added() or self.removed() or
1075 (missing and self.deleted()))
1075 (missing and self.deleted()))
1076
1076
1077 def add(self, list, prefix=""):
1077 def add(self, list, prefix=""):
1078 join = lambda f: os.path.join(prefix, f)
1078 join = lambda f: os.path.join(prefix, f)
1079 wlock = self._repo.wlock()
1079 wlock = self._repo.wlock()
1080 ui, ds = self._repo.ui, self._repo.dirstate
1080 ui, ds = self._repo.ui, self._repo.dirstate
1081 try:
1081 try:
1082 rejected = []
1082 rejected = []
1083 for f in list:
1083 for f in list:
1084 scmutil.checkportable(ui, join(f))
1084 scmutil.checkportable(ui, join(f))
1085 p = self._repo.wjoin(f)
1085 p = self._repo.wjoin(f)
1086 try:
1086 try:
1087 st = os.lstat(p)
1087 st = os.lstat(p)
1088 except OSError:
1088 except OSError:
1089 ui.warn(_("%s does not exist!\n") % join(f))
1089 ui.warn(_("%s does not exist!\n") % join(f))
1090 rejected.append(f)
1090 rejected.append(f)
1091 continue
1091 continue
1092 if st.st_size > 10000000:
1092 if st.st_size > 10000000:
1093 ui.warn(_("%s: up to %d MB of RAM may be required "
1093 ui.warn(_("%s: up to %d MB of RAM may be required "
1094 "to manage this file\n"
1094 "to manage this file\n"
1095 "(use 'hg revert %s' to cancel the "
1095 "(use 'hg revert %s' to cancel the "
1096 "pending addition)\n")
1096 "pending addition)\n")
1097 % (f, 3 * st.st_size // 1000000, join(f)))
1097 % (f, 3 * st.st_size // 1000000, join(f)))
1098 if not (stat.S_ISREG(st.st_mode) or stat.S_ISLNK(st.st_mode)):
1098 if not (stat.S_ISREG(st.st_mode) or stat.S_ISLNK(st.st_mode)):
1099 ui.warn(_("%s not added: only files and symlinks "
1099 ui.warn(_("%s not added: only files and symlinks "
1100 "supported currently\n") % join(f))
1100 "supported currently\n") % join(f))
1101 rejected.append(p)
1101 rejected.append(p)
1102 elif ds[f] in 'amn':
1102 elif ds[f] in 'amn':
1103 ui.warn(_("%s already tracked!\n") % join(f))
1103 ui.warn(_("%s already tracked!\n") % join(f))
1104 elif ds[f] == 'r':
1104 elif ds[f] == 'r':
1105 ds.normallookup(f)
1105 ds.normallookup(f)
1106 else:
1106 else:
1107 ds.add(f)
1107 ds.add(f)
1108 return rejected
1108 return rejected
1109 finally:
1109 finally:
1110 wlock.release()
1110 wlock.release()
1111
1111
1112 def forget(self, files, prefix=""):
1112 def forget(self, files, prefix=""):
1113 join = lambda f: os.path.join(prefix, f)
1113 join = lambda f: os.path.join(prefix, f)
1114 wlock = self._repo.wlock()
1114 wlock = self._repo.wlock()
1115 try:
1115 try:
1116 rejected = []
1116 rejected = []
1117 for f in files:
1117 for f in files:
1118 if f not in self._repo.dirstate:
1118 if f not in self._repo.dirstate:
1119 self._repo.ui.warn(_("%s not tracked!\n") % join(f))
1119 self._repo.ui.warn(_("%s not tracked!\n") % join(f))
1120 rejected.append(f)
1120 rejected.append(f)
1121 elif self._repo.dirstate[f] != 'a':
1121 elif self._repo.dirstate[f] != 'a':
1122 self._repo.dirstate.remove(f)
1122 self._repo.dirstate.remove(f)
1123 else:
1123 else:
1124 self._repo.dirstate.drop(f)
1124 self._repo.dirstate.drop(f)
1125 return rejected
1125 return rejected
1126 finally:
1126 finally:
1127 wlock.release()
1127 wlock.release()
1128
1128
1129 def ancestors(self):
1129 def ancestors(self):
1130 for a in self._repo.changelog.ancestors(
1130 for a in self._repo.changelog.ancestors(
1131 [p.rev() for p in self._parents]):
1131 [p.rev() for p in self._parents]):
1132 yield changectx(self._repo, a)
1132 yield changectx(self._repo, a)
1133
1133
1134 def undelete(self, list):
1134 def undelete(self, list):
1135 pctxs = self.parents()
1135 pctxs = self.parents()
1136 wlock = self._repo.wlock()
1136 wlock = self._repo.wlock()
1137 try:
1137 try:
1138 for f in list:
1138 for f in list:
1139 if self._repo.dirstate[f] != 'r':
1139 if self._repo.dirstate[f] != 'r':
1140 self._repo.ui.warn(_("%s not removed!\n") % f)
1140 self._repo.ui.warn(_("%s not removed!\n") % f)
1141 else:
1141 else:
1142 fctx = f in pctxs[0] and pctxs[0][f] or pctxs[1][f]
1142 fctx = f in pctxs[0] and pctxs[0][f] or pctxs[1][f]
1143 t = fctx.data()
1143 t = fctx.data()
1144 self._repo.wwrite(f, t, fctx.flags())
1144 self._repo.wwrite(f, t, fctx.flags())
1145 self._repo.dirstate.normal(f)
1145 self._repo.dirstate.normal(f)
1146 finally:
1146 finally:
1147 wlock.release()
1147 wlock.release()
1148
1148
1149 def copy(self, source, dest):
1149 def copy(self, source, dest):
1150 p = self._repo.wjoin(dest)
1150 p = self._repo.wjoin(dest)
1151 if not os.path.lexists(p):
1151 if not os.path.lexists(p):
1152 self._repo.ui.warn(_("%s does not exist!\n") % dest)
1152 self._repo.ui.warn(_("%s does not exist!\n") % dest)
1153 elif not (os.path.isfile(p) or os.path.islink(p)):
1153 elif not (os.path.isfile(p) or os.path.islink(p)):
1154 self._repo.ui.warn(_("copy failed: %s is not a file or a "
1154 self._repo.ui.warn(_("copy failed: %s is not a file or a "
1155 "symbolic link\n") % dest)
1155 "symbolic link\n") % dest)
1156 else:
1156 else:
1157 wlock = self._repo.wlock()
1157 wlock = self._repo.wlock()
1158 try:
1158 try:
1159 if self._repo.dirstate[dest] in '?r':
1159 if self._repo.dirstate[dest] in '?r':
1160 self._repo.dirstate.add(dest)
1160 self._repo.dirstate.add(dest)
1161 self._repo.dirstate.copy(source, dest)
1161 self._repo.dirstate.copy(source, dest)
1162 finally:
1162 finally:
1163 wlock.release()
1163 wlock.release()
1164
1164
1165 def markcommitted(self, node):
1165 def markcommitted(self, node):
1166 """Perform post-commit cleanup necessary after committing this ctx
1166 """Perform post-commit cleanup necessary after committing this ctx
1167
1167
1168 Specifically, this updates backing stores this working context
1168 Specifically, this updates backing stores this working context
1169 wraps to reflect the fact that the changes reflected by this
1169 wraps to reflect the fact that the changes reflected by this
1170 workingctx have been committed. For example, it marks
1170 workingctx have been committed. For example, it marks
1171 modified and added files as normal in the dirstate.
1171 modified and added files as normal in the dirstate.
1172
1172
1173 """
1173 """
1174
1174
1175 for f in self.modified() + self.added():
1175 for f in self.modified() + self.added():
1176 self._repo.dirstate.normal(f)
1176 self._repo.dirstate.normal(f)
1177 for f in self.removed():
1177 for f in self.removed():
1178 self._repo.dirstate.drop(f)
1178 self._repo.dirstate.drop(f)
1179 self._repo.dirstate.setparents(node)
1179 self._repo.dirstate.setparents(node)
1180
1180
1181 def dirs(self):
1181 def dirs(self):
1182 return self._repo.dirstate.dirs()
1182 return self._repo.dirstate.dirs()
1183
1183
1184 class workingfilectx(basefilectx):
1184 class workingfilectx(basefilectx):
1185 """A workingfilectx object makes access to data related to a particular
1185 """A workingfilectx object makes access to data related to a particular
1186 file in the working directory convenient."""
1186 file in the working directory convenient."""
1187 def __init__(self, repo, path, filelog=None, workingctx=None):
1187 def __init__(self, repo, path, filelog=None, workingctx=None):
1188 """changeid can be a changeset revision, node, or tag.
1188 """changeid can be a changeset revision, node, or tag.
1189 fileid can be a file revision or node."""
1189 fileid can be a file revision or node."""
1190 self._repo = repo
1190 self._repo = repo
1191 self._path = path
1191 self._path = path
1192 self._changeid = None
1192 self._changeid = None
1193 self._filerev = self._filenode = None
1193 self._filerev = self._filenode = None
1194
1194
1195 if filelog is not None:
1195 if filelog is not None:
1196 self._filelog = filelog
1196 self._filelog = filelog
1197 if workingctx:
1197 if workingctx:
1198 self._changectx = workingctx
1198 self._changectx = workingctx
1199
1199
1200 @propertycache
1200 @propertycache
1201 def _changectx(self):
1201 def _changectx(self):
1202 return workingctx(self._repo)
1202 return workingctx(self._repo)
1203
1203
1204 def __nonzero__(self):
1204 def __nonzero__(self):
1205 return True
1205 return True
1206
1206
1207 def __str__(self):
1207 def __str__(self):
1208 return "%s@%s" % (self.path(), self._changectx)
1208 return "%s@%s" % (self.path(), self._changectx)
1209
1209
1210 def __repr__(self):
1210 def __repr__(self):
1211 return "<workingfilectx %s>" % str(self)
1211 return "<workingfilectx %s>" % str(self)
1212
1212
1213 def data(self):
1213 def data(self):
1214 return self._repo.wread(self._path)
1214 return self._repo.wread(self._path)
1215 def renamed(self):
1215 def renamed(self):
1216 rp = self._repo.dirstate.copied(self._path)
1216 rp = self._repo.dirstate.copied(self._path)
1217 if not rp:
1217 if not rp:
1218 return None
1218 return None
1219 return rp, self._changectx._parents[0]._manifest.get(rp, nullid)
1219 return rp, self._changectx._parents[0]._manifest.get(rp, nullid)
1220
1220
1221 def parents(self):
1221 def parents(self):
1222 '''return parent filectxs, following copies if necessary'''
1222 '''return parent filectxs, following copies if necessary'''
1223 def filenode(ctx, path):
1223 def filenode(ctx, path):
1224 return ctx._manifest.get(path, nullid)
1224 return ctx._manifest.get(path, nullid)
1225
1225
1226 path = self._path
1226 path = self._path
1227 fl = self._filelog
1227 fl = self._filelog
1228 pcl = self._changectx._parents
1228 pcl = self._changectx._parents
1229 renamed = self.renamed()
1229 renamed = self.renamed()
1230
1230
1231 if renamed:
1231 if renamed:
1232 pl = [renamed + (None,)]
1232 pl = [renamed + (None,)]
1233 else:
1233 else:
1234 pl = [(path, filenode(pcl[0], path), fl)]
1234 pl = [(path, filenode(pcl[0], path), fl)]
1235
1235
1236 for pc in pcl[1:]:
1236 for pc in pcl[1:]:
1237 pl.append((path, filenode(pc, path), fl))
1237 pl.append((path, filenode(pc, path), fl))
1238
1238
1239 return [filectx(self._repo, p, fileid=n, filelog=l)
1239 return [filectx(self._repo, p, fileid=n, filelog=l)
1240 for p, n, l in pl if n != nullid]
1240 for p, n, l in pl if n != nullid]
1241
1241
1242 def children(self):
1242 def children(self):
1243 return []
1243 return []
1244
1244
1245 def size(self):
1245 def size(self):
1246 return os.lstat(self._repo.wjoin(self._path)).st_size
1246 return os.lstat(self._repo.wjoin(self._path)).st_size
1247 def date(self):
1247 def date(self):
1248 t, tz = self._changectx.date()
1248 t, tz = self._changectx.date()
1249 try:
1249 try:
1250 return (int(os.lstat(self._repo.wjoin(self._path)).st_mtime), tz)
1250 return (int(os.lstat(self._repo.wjoin(self._path)).st_mtime), tz)
1251 except OSError, err:
1251 except OSError, err:
1252 if err.errno != errno.ENOENT:
1252 if err.errno != errno.ENOENT:
1253 raise
1253 raise
1254 return (t, tz)
1254 return (t, tz)
1255
1255
1256 def cmp(self, fctx):
1256 def cmp(self, fctx):
1257 """compare with other file context
1257 """compare with other file context
1258
1258
1259 returns True if different than fctx.
1259 returns True if different than fctx.
1260 """
1260 """
1261 # fctx should be a filectx (not a workingfilectx)
1261 # fctx should be a filectx (not a workingfilectx)
1262 # invert comparison to reuse the same code path
1262 # invert comparison to reuse the same code path
1263 return fctx.cmp(self)
1263 return fctx.cmp(self)
1264
1264
1265 class memctx(object):
1265 class memctx(object):
1266 """Use memctx to perform in-memory commits via localrepo.commitctx().
1266 """Use memctx to perform in-memory commits via localrepo.commitctx().
1267
1267
1268 Revision information is supplied at initialization time while
1268 Revision information is supplied at initialization time while
1269 related files data and is made available through a callback
1269 related files data and is made available through a callback
1270 mechanism. 'repo' is the current localrepo, 'parents' is a
1270 mechanism. 'repo' is the current localrepo, 'parents' is a
1271 sequence of two parent revisions identifiers (pass None for every
1271 sequence of two parent revisions identifiers (pass None for every
1272 missing parent), 'text' is the commit message and 'files' lists
1272 missing parent), 'text' is the commit message and 'files' lists
1273 names of files touched by the revision (normalized and relative to
1273 names of files touched by the revision (normalized and relative to
1274 repository root).
1274 repository root).
1275
1275
1276 filectxfn(repo, memctx, path) is a callable receiving the
1276 filectxfn(repo, memctx, path) is a callable receiving the
1277 repository, the current memctx object and the normalized path of
1277 repository, the current memctx object and the normalized path of
1278 requested file, relative to repository root. It is fired by the
1278 requested file, relative to repository root. It is fired by the
1279 commit function for every file in 'files', but calls order is
1279 commit function for every file in 'files', but calls order is
1280 undefined. If the file is available in the revision being
1280 undefined. If the file is available in the revision being
1281 committed (updated or added), filectxfn returns a memfilectx
1281 committed (updated or added), filectxfn returns a memfilectx
1282 object. If the file was removed, filectxfn raises an
1282 object. If the file was removed, filectxfn raises an
1283 IOError. Moved files are represented by marking the source file
1283 IOError. Moved files are represented by marking the source file
1284 removed and the new file added with copy information (see
1284 removed and the new file added with copy information (see
1285 memfilectx).
1285 memfilectx).
1286
1286
1287 user receives the committer name and defaults to current
1287 user receives the committer name and defaults to current
1288 repository username, date is the commit date in any format
1288 repository username, date is the commit date in any format
1289 supported by util.parsedate() and defaults to current date, extra
1289 supported by util.parsedate() and defaults to current date, extra
1290 is a dictionary of metadata or is left empty.
1290 is a dictionary of metadata or is left empty.
1291 """
1291 """
1292 def __init__(self, repo, parents, text, files, filectxfn, user=None,
1292 def __init__(self, repo, parents, text, files, filectxfn, user=None,
1293 date=None, extra=None):
1293 date=None, extra=None):
1294 self._repo = repo
1294 self._repo = repo
1295 self._rev = None
1295 self._rev = None
1296 self._node = None
1296 self._node = None
1297 self._text = text
1297 self._text = text
1298 self._date = date and util.parsedate(date) or util.makedate()
1298 self._date = date and util.parsedate(date) or util.makedate()
1299 self._user = user
1299 self._user = user
1300 parents = [(p or nullid) for p in parents]
1300 parents = [(p or nullid) for p in parents]
1301 p1, p2 = parents
1301 p1, p2 = parents
1302 self._parents = [changectx(self._repo, p) for p in (p1, p2)]
1302 self._parents = [changectx(self._repo, p) for p in (p1, p2)]
1303 files = sorted(set(files))
1303 files = sorted(set(files))
1304 self._status = [files, [], [], [], []]
1304 self._status = [files, [], [], [], []]
1305 self._filectxfn = filectxfn
1305 self._filectxfn = filectxfn
1306
1306
1307 self._extra = extra and extra.copy() or {}
1307 self._extra = extra and extra.copy() or {}
1308 if self._extra.get('branch', '') == '':
1308 if self._extra.get('branch', '') == '':
1309 self._extra['branch'] = 'default'
1309 self._extra['branch'] = 'default'
1310
1310
1311 def __str__(self):
1311 def __str__(self):
1312 return str(self._parents[0]) + "+"
1312 return str(self._parents[0]) + "+"
1313
1313
1314 def __int__(self):
1314 def __int__(self):
1315 return self._rev
1315 return self._rev
1316
1316
1317 def __nonzero__(self):
1317 def __nonzero__(self):
1318 return True
1318 return True
1319
1319
1320 def __getitem__(self, key):
1320 def __getitem__(self, key):
1321 return self.filectx(key)
1321 return self.filectx(key)
1322
1322
1323 def p1(self):
1323 def p1(self):
1324 return self._parents[0]
1324 return self._parents[0]
1325 def p2(self):
1325 def p2(self):
1326 return self._parents[1]
1326 return self._parents[1]
1327
1327
1328 def user(self):
1328 def user(self):
1329 return self._user or self._repo.ui.username()
1329 return self._user or self._repo.ui.username()
1330 def date(self):
1330 def date(self):
1331 return self._date
1331 return self._date
1332 def description(self):
1332 def description(self):
1333 return self._text
1333 return self._text
1334 def files(self):
1334 def files(self):
1335 return self.modified()
1335 return self.modified()
1336 def modified(self):
1336 def modified(self):
1337 return self._status[0]
1337 return self._status[0]
1338 def added(self):
1338 def added(self):
1339 return self._status[1]
1339 return self._status[1]
1340 def removed(self):
1340 def removed(self):
1341 return self._status[2]
1341 return self._status[2]
1342 def deleted(self):
1342 def deleted(self):
1343 return self._status[3]
1343 return self._status[3]
1344 def unknown(self):
1344 def unknown(self):
1345 return self._status[4]
1345 return self._status[4]
1346 def ignored(self):
1346 def ignored(self):
1347 return self._status[5]
1347 return self._status[5]
1348 def clean(self):
1348 def clean(self):
1349 return self._status[6]
1349 return self._status[6]
1350 def branch(self):
1350 def branch(self):
1351 return encoding.tolocal(self._extra['branch'])
1351 return encoding.tolocal(self._extra['branch'])
1352 def extra(self):
1352 def extra(self):
1353 return self._extra
1353 return self._extra
1354 def flags(self, f):
1354 def flags(self, f):
1355 return self[f].flags()
1355 return self[f].flags()
1356
1356
1357 def parents(self):
1357 def parents(self):
1358 """return contexts for each parent changeset"""
1358 """return contexts for each parent changeset"""
1359 return self._parents
1359 return self._parents
1360
1360
1361 def filectx(self, path, filelog=None):
1361 def filectx(self, path, filelog=None):
1362 """get a file context from the working directory"""
1362 """get a file context from the working directory"""
1363 return self._filectxfn(self._repo, self, path)
1363 return self._filectxfn(self._repo, self, path)
1364
1364
1365 def commit(self):
1365 def commit(self):
1366 """commit context to the repo"""
1366 """commit context to the repo"""
1367 return self._repo.commitctx(self)
1367 return self._repo.commitctx(self)
1368
1368
1369 class memfilectx(object):
1369 class memfilectx(object):
1370 """memfilectx represents an in-memory file to commit.
1370 """memfilectx represents an in-memory file to commit.
1371
1371
1372 See memctx for more details.
1372 See memctx for more details.
1373 """
1373 """
1374 def __init__(self, path, data, islink=False, isexec=False, copied=None):
1374 def __init__(self, path, data, islink=False, isexec=False, copied=None):
1375 """
1375 """
1376 path is the normalized file path relative to repository root.
1376 path is the normalized file path relative to repository root.
1377 data is the file content as a string.
1377 data is the file content as a string.
1378 islink is True if the file is a symbolic link.
1378 islink is True if the file is a symbolic link.
1379 isexec is True if the file is executable.
1379 isexec is True if the file is executable.
1380 copied is the source file path if current file was copied in the
1380 copied is the source file path if current file was copied in the
1381 revision being committed, or None."""
1381 revision being committed, or None."""
1382 self._path = path
1382 self._path = path
1383 self._data = data
1383 self._data = data
1384 self._flags = (islink and 'l' or '') + (isexec and 'x' or '')
1384 self._flags = (islink and 'l' or '') + (isexec and 'x' or '')
1385 self._copied = None
1385 self._copied = None
1386 if copied:
1386 if copied:
1387 self._copied = (copied, nullid)
1387 self._copied = (copied, nullid)
1388
1388
1389 def __nonzero__(self):
1389 def __nonzero__(self):
1390 return True
1390 return True
1391 def __str__(self):
1391 def __str__(self):
1392 return "%s@%s" % (self.path(), self._changectx)
1392 return "%s@%s" % (self.path(), self._changectx)
1393 def path(self):
1393 def path(self):
1394 return self._path
1394 return self._path
1395 def data(self):
1395 def data(self):
1396 return self._data
1396 return self._data
1397 def flags(self):
1397 def flags(self):
1398 return self._flags
1398 return self._flags
1399 def isexec(self):
1399 def isexec(self):
1400 return 'x' in self._flags
1400 return 'x' in self._flags
1401 def islink(self):
1401 def islink(self):
1402 return 'l' in self._flags
1402 return 'l' in self._flags
1403 def renamed(self):
1403 def renamed(self):
1404 return self._copied
1404 return self._copied
General Comments 0
You need to be logged in to leave comments. Login now