Mercurial > hg
changeset 23958:df463ca0adef stable
largefiles: revert to lfilesrepo.status() being an unfiltered method
This effectively reverts 67d63ec85eb7, which caused some normal file copies to
not be displayed as copies. Other normal file copies could be displayed- the
exact reason isn't clear. This also adds two tests that were failing prior to
this backout, so that this can be sorted out next cycle.
The difference between copy cases that worked and those that didn't seemed to be
in copies.pathcopies(). When largefiles isn't enabled for the changed test, or
lfstatus is not set in the commands.status() override, 'y.ancestor(x) == x'.
That wasn't true otherwise, which fell through to the _chain() method. In this
case, the copy is removed in the criss cross loop.
'y.ancestor(x)' returns a context.changectx type, while 'x' is a lfilesctx type
in the failing case. I tried adding the ancestor method to the lfilesctx class
to change the type of the ancestor context, however the context when printed as
a string then gains a '+'. This points to it being a context.committablectx,
which clearly isn't correct for an ancestor. Possibly the problem is the
lfilesctx needs to subclass context.committablectx in some cases, but
context.changectx in others, within the same invocation? I'm not sure how to
pull that off, and backing out this change is safer during the freeze.
As to the status changing when a path is specified, I haven't looked into it
yet.
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Sun, 25 Jan 2015 22:55:10 -0500 |
parents | 0c4419faacbc |
children | c8e7fa41bfc5 |
files | hgext/largefiles/reposetup.py tests/test-copy.t tests/test-subrepo-recursion.t |
diffstat | 3 files changed, 23 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/largefiles/reposetup.py Sun Jan 25 20:13:54 2015 -0600 +++ b/hgext/largefiles/reposetup.py Sun Jan 25 22:55:10 2015 -0500 @@ -12,7 +12,7 @@ from mercurial import error, manifest, match as match_, util from mercurial.i18n import _ -from mercurial import scmutil +from mercurial import scmutil, localrepo import lfcommands import lfutil @@ -34,7 +34,7 @@ # their actual contents. def __getitem__(self, changeid): ctx = super(lfilesrepo, self).__getitem__(changeid) - if self.unfiltered().lfstatus: + if self.lfstatus: class lfilesmanifestdict(manifest.manifestdict): def __contains__(self, filename): orig = super(lfilesmanifestdict, self).__contains__ @@ -72,20 +72,19 @@ # appropriate list in the result. Also removes standin files # from the listing. Revert to the original status if # self.lfstatus is False. + # XXX large file status is buggy when used on repo proxy. + # XXX this needs to be investigated. + @localrepo.unfilteredmethod def status(self, node1='.', node2=None, match=None, ignored=False, clean=False, unknown=False, listsubrepos=False): listignored, listclean, listunknown = ignored, clean, unknown orig = super(lfilesrepo, self).status - - # When various overrides set repo.lfstatus, the change is redirected - # to the unfiltered repo, and self.lfstatus is always false when - # this repo is filtered. - if not self.unfiltered().lfstatus: + if not self.lfstatus: return orig(node1, node2, match, listignored, listclean, listunknown, listsubrepos) # some calls in this function rely on the old version of status - self.unfiltered().lfstatus = False + self.lfstatus = False ctx1 = self[node1] ctx2 = self[node2] working = ctx2.rev() is None @@ -241,7 +240,7 @@ if wlock: wlock.release() - self.unfiltered().lfstatus = True + self.lfstatus = True return scmutil.status(*result) def commitctx(self, ctx, *args, **kwargs):
--- a/tests/test-copy.t Sun Jan 25 20:13:54 2015 -0600 +++ b/tests/test-copy.t Sun Jan 25 22:55:10 2015 -0500 @@ -180,6 +180,13 @@ $ hg st -C M bar foo + +XXX: filtering lfilesrepo.status() in 3.3-rc causes the copy source to not be +displayed. + $ hg st -C --config extensions.largefiles= + M bar + foo + $ hg commit -m3 should show no parents for tip
--- a/tests/test-subrepo-recursion.t Sun Jan 25 20:13:54 2015 -0600 +++ b/tests/test-subrepo-recursion.t Sun Jan 25 22:55:10 2015 -0500 @@ -162,6 +162,14 @@ M ../foo/bar/z.txt M ../foo/y.txt ? a.txt + +XXX: filtering lfilesrepo.status() in 3.3-rc causes these files to be listed as +added instead of modified. + $ hg status -S .. --config extensions.largefiles= + M ../foo/bar/z.txt + M ../foo/y.txt + ? a.txt + $ hg diff --nodates -S .. diff -r d254738c5f5e foo/y.txt --- a/foo/y.txt