overrides.py
1865 lines
| 60.9 KiB
| text/x-python
|
PythonLexer
various
|
r15168 | # Copyright 2009-2010 Gregory P. Ward | ||
# Copyright 2009-2010 Intelerad Medical Systems Incorporated | ||||
# Copyright 2010-2011 Fog Creek Software | ||||
# Copyright 2010-2011 Unity Technologies | ||||
# | ||||
# This software may be used and distributed according to the terms of the | ||||
# GNU General Public License version 2 or any later version. | ||||
'''Overridden Mercurial commands and functions for the largefiles extension''' | ||||
import copy | ||||
liscju
|
r29311 | import os | ||
various
|
r15168 | |||
from mercurial.i18n import _ | ||||
Gregory Szorc
|
r43355 | from mercurial.pycompat import open | ||
Augie Fackler
|
r43346 | from mercurial.hgweb import webcommands | ||
Matt Harbison
|
r41092 | |||
liscju
|
r29311 | from mercurial import ( | ||
archival, | ||||
cmdutil, | ||||
Matt Harbison
|
r41092 | copies as copiesmod, | ||
liscju
|
r29311 | error, | ||
Matt Harbison
|
r41092 | exchange, | ||
Martin von Zweigbergk
|
r41719 | extensions, | ||
Matt Harbison
|
r41091 | exthelper, | ||
Matt Harbison
|
r41092 | filemerge, | ||
liscju
|
r29311 | hg, | ||
Yuya Nishihara
|
r35903 | logcmdutil, | ||
liscju
|
r29318 | match as matchmod, | ||
Matt Harbison
|
r41092 | merge, | ||
Augie Fackler
|
r45383 | mergestate as mergestatemod, | ||
liscju
|
r29311 | pathutil, | ||
Pulkit Goyal
|
r35349 | pycompat, | ||
liscju
|
r29311 | scmutil, | ||
Yuya Nishihara
|
r31023 | smartset, | ||
Matt Harbison
|
r41092 | subrepo, | ||
url as urlmod, | ||||
liscju
|
r29311 | util, | ||
) | ||||
r46662 | from mercurial.upgrade_utils import ( | |||
actions as upgrade_actions, | ||||
) | ||||
liscju
|
r29311 | from . import ( | ||
lfcommands, | ||||
lfutil, | ||||
storefactory, | ||||
) | ||||
various
|
r15168 | |||
r49558 | ACTION_ADD = mergestatemod.ACTION_ADD | |||
ACTION_DELETED_CHANGED = mergestatemod.ACTION_DELETED_CHANGED | ||||
ACTION_GET = mergestatemod.ACTION_GET | ||||
ACTION_KEEP = mergestatemod.ACTION_KEEP | ||||
ACTION_REMOVE = mergestatemod.ACTION_REMOVE | ||||
Matt Harbison
|
r41091 | eh = exthelper.exthelper() | ||
Martin von Zweigbergk
|
r43982 | lfstatus = lfutil.lfstatus | ||
r49560 | MERGE_ACTION_LARGEFILE_MARK_REMOVED = mergestatemod.MergeAction('lfmr') | |||
Pulkit Goyal
|
r45855 | |||
Na'Tosha Bard
|
r15792 | # -- Utility functions: commonly/repeatedly needed functionality --------------- | ||
Augie Fackler
|
r43346 | |||
Matt Harbison
|
r23617 | def composelargefilematcher(match, manifest): | ||
Augie Fackler
|
r46554 | """create a matcher that matches only the largefiles in the original | ||
matcher""" | ||||
Matt Harbison
|
r23617 | m = copy.copy(match) | ||
lfile = lambda f: lfutil.standin(f) in manifest | ||||
Augie Fackler
|
r36329 | m._files = [lf for lf in m._files if lfile(lf)] | ||
Martin von Zweigbergk
|
r32323 | m._fileset = set(m._files) | ||
Martin von Zweigbergk
|
r32387 | m.always = lambda: False | ||
Matt Harbison
|
r23617 | origmatchfn = m.matchfn | ||
m.matchfn = lambda f: lfile(f) and origmatchfn(f) | ||||
return m | ||||
Augie Fackler
|
r43346 | |||
Matt Harbison
|
r23769 | def composenormalfilematcher(match, manifest, exclude=None): | ||
excluded = set() | ||||
if exclude is not None: | ||||
excluded.update(exclude) | ||||
Matt Harbison
|
r23428 | m = copy.copy(match) | ||
Augie Fackler
|
r43346 | notlfile = lambda f: not ( | ||
lfutil.isstandin(f) or lfutil.standin(f) in manifest or f in excluded | ||||
) | ||||
Augie Fackler
|
r36329 | m._files = [lf for lf in m._files if notlfile(lf)] | ||
Martin von Zweigbergk
|
r32323 | m._fileset = set(m._files) | ||
Martin von Zweigbergk
|
r32387 | m.always = lambda: False | ||
Matt Harbison
|
r23428 | origmatchfn = m.matchfn | ||
m.matchfn = lambda f: notlfile(f) and origmatchfn(f) | ||||
return m | ||||
Augie Fackler
|
r43346 | |||
Martin von Zweigbergk
|
r41803 | def addlargefiles(ui, repo, isaddremove, matcher, uipathfn, **opts): | ||
Augie Fackler
|
r43906 | large = opts.get('large') | ||
Greg Ward
|
r15227 | lfsize = lfutil.getminsize( | ||
Augie Fackler
|
r43906 | ui, lfutil.islfilesrepo(repo), opts.get('lfsize') | ||
Augie Fackler
|
r43346 | ) | ||
various
|
r15168 | |||
lfmatcher = None | ||||
Michal Sznajder
|
r15739 | if lfutil.islfilesrepo(repo): | ||
Augie Fackler
|
r43347 | lfpats = ui.configlist(lfutil.longname, b'patterns') | ||
various
|
r15168 | if lfpats: | ||
Augie Fackler
|
r43347 | lfmatcher = matchmod.match(repo.root, b'', list(lfpats)) | ||
various
|
r15168 | |||
lfnames = [] | ||||
Matt Harbison
|
r25440 | m = matcher | ||
various
|
r15168 | wctx = repo[None] | ||
Martin von Zweigbergk
|
r32382 | for f in wctx.walk(matchmod.badmatch(m, lambda x, y: None)): | ||
various
|
r15168 | exact = m.exact(f) | ||
lfile = lfutil.standin(f) in wctx | ||||
nfile = f in wctx | ||||
exists = lfile or nfile | ||||
# Don't warn the user when they attempt to add a normal tracked file. | ||||
# The normal add code will do that for us. | ||||
if exact and exists: | ||||
if lfile: | ||||
Augie Fackler
|
r43347 | ui.warn(_(b'%s already a largefile\n') % uipathfn(f)) | ||
various
|
r15168 | continue | ||
Matt Harbison
|
r17232 | if (exact or not exists) and not lfutil.isstandin(f): | ||
Matt Harbison
|
r17231 | # In case the file was removed previously, but not committed | ||
# (issue3507) | ||||
Matt Harbison
|
r23733 | if not repo.wvfs.exists(f): | ||
Matt Harbison
|
r17231 | continue | ||
Augie Fackler
|
r43346 | abovemin = ( | ||
lfsize and repo.wvfs.lstat(f).st_size >= lfsize * 1024 * 1024 | ||||
) | ||||
Greg Ward
|
r15255 | if large or abovemin or (lfmatcher and lfmatcher(f)): | ||
various
|
r15168 | lfnames.append(f) | ||
if ui.verbose or not exact: | ||||
Augie Fackler
|
r43347 | ui.status(_(b'adding %s as a largefile\n') % uipathfn(f)) | ||
various
|
r15168 | |||
bad = [] | ||||
Greg Ward
|
r15252 | # Need to lock, otherwise there could be a race condition between | ||
# when standins are created and added to the repo. | ||||
Bryan O'Sullivan
|
r27821 | with repo.wlock(): | ||
Augie Fackler
|
r43906 | if not opts.get('dry_run'): | ||
Mads Kiilerich
|
r23041 | standins = [] | ||
various
|
r15168 | lfdirstate = lfutil.openlfdirstate(ui, repo) | ||
for f in lfnames: | ||||
standinname = lfutil.standin(f) | ||||
Augie Fackler
|
r43346 | lfutil.writestandin( | ||
repo, | ||||
standinname, | ||||
Augie Fackler
|
r43347 | hash=b'', | ||
Augie Fackler
|
r43346 | executable=lfutil.getexecutable(repo.wjoin(f)), | ||
) | ||||
various
|
r15168 | standins.append(standinname) | ||
r48448 | lfdirstate.set_tracked(f) | |||
Pulkit Goyal
|
r48982 | lfdirstate.write(repo.currenttransaction()) | ||
Augie Fackler
|
r43346 | bad += [ | ||
lfutil.splitstandin(f) | ||||
for f in repo[None].add(standins) | ||||
if f in m.files() | ||||
] | ||||
Matt Harbison
|
r23768 | |||
added = [f for f in lfnames if f not in bad] | ||||
return added, bad | ||||
various
|
r15168 | |||
Augie Fackler
|
r43346 | |||
Martin von Zweigbergk
|
r41803 | def removelargefiles(ui, repo, isaddremove, matcher, uipathfn, dryrun, **opts): | ||
Augie Fackler
|
r43906 | after = opts.get('after') | ||
Matt Harbison
|
r23741 | m = composelargefilematcher(matcher, repo[None].manifest()) | ||
Martin von Zweigbergk
|
r43588 | with lfstatus(repo): | ||
Matt Harbison
|
r23741 | s = repo.status(match=m, clean=not isaddremove) | ||
Na'Tosha Bard
|
r15792 | manifest = repo[None].manifest() | ||
Augie Fackler
|
r43346 | modified, added, deleted, clean = [ | ||
[f for f in list if lfutil.standin(f) in manifest] | ||||
for list in (s.modified, s.added, s.deleted, s.clean) | ||||
] | ||||
various
|
r15168 | |||
Mads Kiilerich
|
r18066 | def warn(files, msg): | ||
various
|
r15168 | for f in files: | ||
Martin von Zweigbergk
|
r41803 | ui.warn(msg % uipathfn(f)) | ||
Matt Harbison
|
r17576 | return int(len(files) > 0) | ||
Na'Tosha Bard
|
r15786 | if after: | ||
Martin von Zweigbergk
|
r22630 | remove = deleted | ||
Augie Fackler
|
r43346 | result = warn( | ||
Augie Fackler
|
r43347 | modified + added + clean, _(b'not removing %s: file still exists\n') | ||
Augie Fackler
|
r43346 | ) | ||
various
|
r15168 | else: | ||
Martin von Zweigbergk
|
r22630 | remove = deleted + clean | ||
Augie Fackler
|
r43346 | result = warn( | ||
modified, | ||||
_( | ||||
Augie Fackler
|
r43347 | b'not removing %s: file is modified (use -f' | ||
b' to force removal)\n' | ||||
Augie Fackler
|
r43346 | ), | ||
) | ||||
result = ( | ||||
warn( | ||||
added, | ||||
_( | ||||
Augie Fackler
|
r43347 | b'not removing %s: file has been marked for add' | ||
b' (use forget to undo)\n' | ||||
Augie Fackler
|
r43346 | ), | ||
) | ||||
or result | ||||
) | ||||
various
|
r15168 | |||
# Need to lock because standin files are deleted then removed from the | ||||
Mads Kiilerich
|
r17424 | # repository and we could race in-between. | ||
Bryan O'Sullivan
|
r27822 | with repo.wlock(): | ||
various
|
r15168 | lfdirstate = lfutil.openlfdirstate(ui, repo) | ||
Matt Harbison
|
r23658 | for f in sorted(remove): | ||
Matt Harbison
|
r23766 | if ui.verbose or not m.exact(f): | ||
Augie Fackler
|
r43347 | ui.status(_(b'removing %s\n') % uipathfn(f)) | ||
Matt Harbison
|
r23592 | |||
Sushil khanchi
|
r37168 | if not dryrun: | ||
Matt Harbison
|
r23592 | if not after: | ||
Mads Kiilerich
|
r31309 | repo.wvfs.unlinkpath(f, ignoremissing=True) | ||
Matt Harbison
|
r23592 | |||
Sushil khanchi
|
r37168 | if dryrun: | ||
Matt Harbison
|
r23592 | return result | ||
various
|
r15168 | remove = [lfutil.standin(f) for f in remove] | ||
Na'Tosha Bard
|
r15792 | # If this is being called by addremove, let the original addremove | ||
# function handle this. | ||||
Mads Kiilerich
|
r23038 | if not isaddremove: | ||
Mads Kiilerich
|
r18153 | for f in remove: | ||
Mads Kiilerich
|
r31309 | repo.wvfs.unlinkpath(f, ignoremissing=True) | ||
Mads Kiilerich
|
r18153 | repo[None].forget(remove) | ||
Matt Harbison
|
r23721 | |||
for f in remove: | ||||
r48453 | lfdirstate.set_untracked(lfutil.splitstandin(f)) | |||
Matt Harbison
|
r23721 | |||
Pulkit Goyal
|
r48982 | lfdirstate.write(repo.currenttransaction()) | ||
various
|
r15168 | |||
Matt Harbison
|
r17576 | return result | ||
Augie Fackler
|
r43346 | |||
Martin Geisler
|
r16449 | # For overriding mercurial.hgweb.webcommands so that largefiles will | ||
# appear at their right place in the manifests. | ||||
Augie Fackler
|
r43347 | @eh.wrapfunction(webcommands, b'decodepath') | ||
Martin Geisler
|
r16449 | def decodepath(orig, path): | ||
return lfutil.splitstandin(path) or path | ||||
Augie Fackler
|
r43346 | |||
Na'Tosha Bard
|
r15792 | # -- Wrappers: modify existing commands -------------------------------- | ||
Augie Fackler
|
r43346 | |||
@eh.wrapcommand( | ||||
Augie Fackler
|
r43347 | b'add', | ||
Augie Fackler
|
r43346 | opts=[ | ||
Augie Fackler
|
r43347 | (b'', b'large', None, _(b'add as largefile')), | ||
(b'', b'normal', None, _(b'add as normal file')), | ||||
Augie Fackler
|
r43346 | ( | ||
Augie Fackler
|
r43347 | b'', | ||
b'lfsize', | ||||
b'', | ||||
Augie Fackler
|
r43346 | _( | ||
Augie Fackler
|
r43347 | b'add all files above this size (in megabytes) ' | ||
b'as largefiles (default: 10)' | ||||
Augie Fackler
|
r43346 | ), | ||
), | ||||
], | ||||
) | ||||
Na'Tosha Bard
|
r16247 | def overrideadd(orig, ui, repo, *pats, **opts): | ||
Augie Fackler
|
r43906 | if opts.get('normal') and opts.get('large'): | ||
Augie Fackler
|
r43347 | raise error.Abort(_(b'--normal cannot be used with --large')) | ||
Matt Harbison
|
r23886 | return orig(ui, repo, *pats, **opts) | ||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @eh.wrapfunction(cmdutil, b'add') | ||
Martin von Zweigbergk
|
r41799 | def cmdutiladd(orig, ui, repo, matcher, prefix, uipathfn, explicitonly, **opts): | ||
Matt Harbison
|
r23886 | # The --normal flag short circuits this override | ||
Augie Fackler
|
r43906 | if opts.get('normal'): | ||
Martin von Zweigbergk
|
r41799 | return orig(ui, repo, matcher, prefix, uipathfn, explicitonly, **opts) | ||
Na'Tosha Bard
|
r15792 | |||
Martin von Zweigbergk
|
r41803 | ladded, lbad = addlargefiles(ui, repo, False, matcher, uipathfn, **opts) | ||
Augie Fackler
|
r43346 | normalmatcher = composenormalfilematcher( | ||
matcher, repo[None].manifest(), ladded | ||||
) | ||||
Martin von Zweigbergk
|
r41799 | bad = orig(ui, repo, normalmatcher, prefix, uipathfn, explicitonly, **opts) | ||
Matt Harbison
|
r23886 | |||
bad.extend(f for f in lbad) | ||||
return bad | ||||
Na'Tosha Bard
|
r15792 | |||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @eh.wrapfunction(cmdutil, b'remove') | ||
Augie Fackler
|
r43346 | def cmdutilremove( | ||
orig, ui, repo, matcher, prefix, uipathfn, after, force, subrepos, dryrun | ||||
): | ||||
Matt Harbison
|
r23782 | normalmatcher = composenormalfilematcher(matcher, repo[None].manifest()) | ||
Augie Fackler
|
r43346 | result = orig( | ||
ui, | ||||
repo, | ||||
normalmatcher, | ||||
prefix, | ||||
uipathfn, | ||||
after, | ||||
force, | ||||
subrepos, | ||||
dryrun, | ||||
) | ||||
return ( | ||||
removelargefiles( | ||||
ui, repo, False, matcher, uipathfn, dryrun, after=after, force=force | ||||
) | ||||
or result | ||||
) | ||||
Na'Tosha Bard
|
r15792 | |||
Augie Fackler
|
r43347 | @eh.wrapfunction(subrepo.hgsubrepo, b'status') | ||
Matt Harbison
|
r16515 | def overridestatusfn(orig, repo, rev2, **opts): | ||
Martin von Zweigbergk
|
r43588 | with lfstatus(repo._repo): | ||
Matt Harbison
|
r16515 | return orig(repo, rev2, **opts) | ||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @eh.wrapcommand(b'status') | ||
Na'Tosha Bard
|
r16247 | def overridestatus(orig, ui, repo, *pats, **opts): | ||
Martin von Zweigbergk
|
r43588 | with lfstatus(repo): | ||
various
|
r15168 | return orig(ui, repo, *pats, **opts) | ||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @eh.wrapfunction(subrepo.hgsubrepo, b'dirty') | ||
Matt Harbison
|
r33364 | def overridedirty(orig, repo, ignoreupdate=False, missing=False): | ||
Martin von Zweigbergk
|
r43588 | with lfstatus(repo._repo): | ||
Matt Harbison
|
r33364 | return orig(repo, ignoreupdate=ignoreupdate, missing=missing) | ||
Matt Harbison
|
r16516 | |||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @eh.wrapcommand(b'log') | ||
Na'Tosha Bard
|
r16247 | def overridelog(orig, ui, repo, *pats, **opts): | ||
Augie Fackler
|
r43346 | def overridematchandpats( | ||
orig, | ||||
ctx, | ||||
pats=(), | ||||
opts=None, | ||||
globbed=False, | ||||
Augie Fackler
|
r43347 | default=b'relpath', | ||
Augie Fackler
|
r43346 | badfn=None, | ||
): | ||||
Mads Kiilerich
|
r18341 | """Matcher that merges root directory with .hglf, suitable for log. | ||
It is still possible to match .hglf directly. | ||||
For any listed files run log on the standin too. | ||||
matchfn tries both the given filename and with .hglf stripped. | ||||
""" | ||||
Pierre-Yves David
|
r26339 | if opts is None: | ||
opts = {} | ||||
Martin von Zweigbergk
|
r41719 | matchandpats = orig(ctx, pats, opts, globbed, default, badfn=badfn) | ||
Lucas Moscovicz
|
r21110 | m, p = copy.copy(matchandpats) | ||
Siddharth Agarwal
|
r22170 | if m.always(): | ||
# We want to match everything anyway, so there's no benefit trying | ||||
# to add standins. | ||||
return matchandpats | ||||
Lucas Moscovicz
|
r21110 | pats = set(p) | ||
Matt Harbison
|
r24206 | |||
def fixpats(pat, tostandin=lfutil.standin): | ||||
Augie Fackler
|
r43347 | if pat.startswith(b'set:'): | ||
Matt Harbison
|
r24813 | return pat | ||
liscju
|
r29318 | kindpat = matchmod._patsplit(pat, None) | ||
Matt Harbison
|
r24206 | |||
if kindpat[0] is not None: | ||||
Augie Fackler
|
r43347 | return kindpat[0] + b':' + tostandin(kindpat[1]) | ||
Matt Harbison
|
r24206 | return tostandin(kindpat[1]) | ||
Martin von Zweigbergk
|
r41816 | cwd = repo.getcwd() | ||
if cwd: | ||||
Matt Harbison
|
r24208 | hglf = lfutil.shortname | ||
Augie Fackler
|
r43346 | back = util.pconvert(repo.pathto(hglf)[: -len(hglf)]) | ||
Matt Harbison
|
r24206 | |||
def tostandin(f): | ||||
Mads Kiilerich
|
r26781 | # The file may already be a standin, so truncate the back | ||
Matt Harbison
|
r24208 | # prefix and test before mangling it. This avoids turning | ||
Matt Harbison
|
r24207 | # 'glob:../.hglf/foo*' into 'glob:../.hglf/../.hglf/foo*'. | ||
Augie Fackler
|
r43346 | if f.startswith(back) and lfutil.splitstandin(f[len(back) :]): | ||
Matt Harbison
|
r24207 | return f | ||
Matt Harbison
|
r24208 | # An absolute path is from outside the repo, so truncate the | ||
# path to the root before building the standin. Otherwise cwd | ||||
# is somewhere in the repo, relative to root, and needs to be | ||||
# prepended before building the standin. | ||||
Martin von Zweigbergk
|
r41816 | if os.path.isabs(cwd): | ||
Augie Fackler
|
r43346 | f = f[len(back) :] | ||
Matt Harbison
|
r24208 | else: | ||
Augie Fackler
|
r43347 | f = cwd + b'/' + f | ||
Matt Harbison
|
r24208 | return back + lfutil.standin(f) | ||
Augie Fackler
|
r43346 | |||
Lucas Moscovicz
|
r21110 | else: | ||
Augie Fackler
|
r43346 | |||
Matt Harbison
|
r24207 | def tostandin(f): | ||
FUJIWARA Katsunori
|
r31614 | if lfutil.isstandin(f): | ||
Matt Harbison
|
r24207 | return f | ||
return lfutil.standin(f) | ||||
Augie Fackler
|
r43346 | |||
Martin von Zweigbergk
|
r32301 | pats.update(fixpats(f, tostandin) for f in p) | ||
Lucas Moscovicz
|
r21110 | |||
Wei, Elson
|
r19472 | for i in range(0, len(m._files)): | ||
Matt Harbison
|
r24206 | # Don't add '.hglf' to m.files, since that is already covered by '.' | ||
Augie Fackler
|
r43347 | if m._files[i] == b'.': | ||
Matt Harbison
|
r24206 | continue | ||
Wei, Elson
|
r19472 | standin = lfutil.standin(m._files[i]) | ||
Matt Harbison
|
r23976 | # If the "standin" is a directory, append instead of replace to | ||
# support naming a directory on the command line with only | ||||
# largefiles. The original directory is kept to support normal | ||||
# files. | ||||
FUJIWARA Katsunori
|
r31655 | if standin in ctx: | ||
Wei, Elson
|
r19472 | m._files[i] = standin | ||
FUJIWARA Katsunori
|
r31655 | elif m._files[i] not in ctx and repo.wvfs.isdir(standin): | ||
Mads Kiilerich
|
r21275 | m._files.append(standin) | ||
Lucas Moscovicz
|
r21110 | |||
Martin von Zweigbergk
|
r32323 | m._fileset = set(m._files) | ||
Martin von Zweigbergk
|
r32387 | m.always = lambda: False | ||
Mads Kiilerich
|
r18341 | origmatchfn = m.matchfn | ||
Augie Fackler
|
r43346 | |||
Mads Kiilerich
|
r18341 | def lfmatchfn(f): | ||
lf = lfutil.splitstandin(f) | ||||
if lf is not None and origmatchfn(lf): | ||||
return True | ||||
r = origmatchfn(f) | ||||
return r | ||||
Augie Fackler
|
r43346 | |||
Mads Kiilerich
|
r18341 | m.matchfn = lfmatchfn | ||
Lucas Moscovicz
|
r21110 | |||
Augie Fackler
|
r43347 | ui.debug(b'updated patterns: %s\n' % b', '.join(sorted(pats))) | ||
Lucas Moscovicz
|
r21110 | return m, pats | ||
Siddharth Agarwal
|
r22169 | # For hg log --patch, the match object is used in two different senses: | ||
# (1) to determine what revisions should be printed out, and | ||||
# (2) to determine what files to print out diffs for. | ||||
# The magic matchandpats override should be used for case (1) but not for | ||||
# case (2). | ||||
Martin von Zweigbergk
|
r41719 | oldmatchandpats = scmutil.matchandpats | ||
Augie Fackler
|
r43346 | |||
Martin von Zweigbergk
|
r41719 | def overridemakefilematcher(orig, repo, pats, opts, badfn=None): | ||
Martin von Zweigbergk
|
r24534 | wctx = repo[None] | ||
Matt Harbison
|
r25467 | match, pats = oldmatchandpats(wctx, pats, opts, badfn=badfn) | ||
Yuya Nishihara
|
r36019 | return lambda ctx: match | ||
Siddharth Agarwal
|
r22169 | |||
Augie Fackler
|
r43346 | wrappedmatchandpats = extensions.wrappedfunction( | ||
Augie Fackler
|
r43347 | scmutil, b'matchandpats', overridematchandpats | ||
Augie Fackler
|
r43346 | ) | ||
Martin von Zweigbergk
|
r41719 | wrappedmakefilematcher = extensions.wrappedfunction( | ||
Augie Fackler
|
r43347 | logcmdutil, b'_makenofollowfilematcher', overridemakefilematcher | ||
Augie Fackler
|
r43346 | ) | ||
Martin von Zweigbergk
|
r41719 | with wrappedmatchandpats, wrappedmakefilematcher: | ||
Matt Harbison
|
r17577 | return orig(ui, repo, *pats, **opts) | ||
various
|
r15168 | |||
Augie Fackler
|
r43346 | |||
@eh.wrapcommand( | ||||
Augie Fackler
|
r43347 | b'verify', | ||
Augie Fackler
|
r43346 | opts=[ | ||
( | ||||
Augie Fackler
|
r43347 | b'', | ||
b'large', | ||||
Augie Fackler
|
r43346 | None, | ||
Augie Fackler
|
r43347 | _(b'verify that all largefiles in current revision exists'), | ||
Augie Fackler
|
r43346 | ), | ||
( | ||||
Augie Fackler
|
r43347 | b'', | ||
b'lfa', | ||||
Augie Fackler
|
r43346 | None, | ||
Augie Fackler
|
r43347 | _(b'verify largefiles in all revisions, not just current'), | ||
Augie Fackler
|
r43346 | ), | ||
( | ||||
Augie Fackler
|
r43347 | b'', | ||
b'lfc', | ||||
Augie Fackler
|
r43346 | None, | ||
Augie Fackler
|
r43347 | _(b'verify local largefile contents, not just existence'), | ||
Augie Fackler
|
r43346 | ), | ||
], | ||||
) | ||||
Na'Tosha Bard
|
r16247 | def overrideverify(orig, ui, repo, *pats, **opts): | ||
Augie Fackler
|
r43906 | large = opts.pop('large', False) | ||
all = opts.pop('lfa', False) | ||||
contents = opts.pop('lfc', False) | ||||
various
|
r15168 | |||
result = orig(ui, repo, *pats, **opts) | ||||
Mads Kiilerich
|
r18547 | if large or all or contents: | ||
various
|
r15168 | result = result or lfcommands.verifylfiles(ui, repo, all, contents) | ||
return result | ||||
Augie Fackler
|
r43346 | |||
@eh.wrapcommand( | ||||
Augie Fackler
|
r43347 | b'debugstate', | ||
opts=[(b'', b'large', None, _(b'display largefiles dirstate'))], | ||||
Augie Fackler
|
r43346 | ) | ||
Mads Kiilerich
|
r18144 | def overridedebugstate(orig, ui, repo, *pats, **opts): | ||
Augie Fackler
|
r43906 | large = opts.pop('large', False) | ||
Mads Kiilerich
|
r18144 | if large: | ||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r49801 | class fakerepo: | ||
Mads Kiilerich
|
r21088 | dirstate = lfutil.openlfdirstate(ui, repo) | ||
Augie Fackler
|
r43346 | |||
Mads Kiilerich
|
r21088 | orig(ui, fakerepo, *pats, **opts) | ||
Mads Kiilerich
|
r18144 | else: | ||
orig(ui, repo, *pats, **opts) | ||||
Augie Fackler
|
r43346 | |||
Martin Geisler
|
r15663 | # Before starting the manifest merge, merge.updates will call | ||
Mads Kiilerich
|
r23543 | # _checkunknownfile to check if there are any files in the merged-in | ||
Martin Geisler
|
r15663 | # changeset that collide with unknown files in the working copy. | ||
# | ||||
# The largefiles are seen as unknown, so this prevents us from merging | ||||
# in a file 'foo' if we already have a largefile with the same name. | ||||
# | ||||
# The overridden function filters the unknown files by removing any | ||||
# largefiles. This makes the merge proceed and we can then handle this | ||||
Martin von Zweigbergk
|
r23307 | # case further in the overridden calculateupdates function below. | ||
Augie Fackler
|
r43347 | @eh.wrapfunction(merge, b'_checkunknownfile') | ||
Martin von Zweigbergk
|
r23653 | def overridecheckunknownfile(origfn, repo, wctx, mctx, f, f2=None): | ||
FUJIWARA Katsunori
|
r19161 | if lfutil.standin(repo.dirstate.normalize(f)) in wctx: | ||
Matt Mackall
|
r16093 | return False | ||
Martin von Zweigbergk
|
r23653 | return origfn(repo, wctx, mctx, f, f2) | ||
Martin Geisler
|
r15663 | |||
Augie Fackler
|
r43346 | |||
Martin Geisler
|
r15663 | # The manifest merge handles conflicts on the manifest level. We want | ||
# to handle changes in largefile-ness of files at this level too. | ||||
# | ||||
Martin von Zweigbergk
|
r23307 | # The strategy is to run the original calculateupdates and then process | ||
Martin Geisler
|
r15663 | # the action list it outputs. There are two cases we need to deal with: | ||
# | ||||
# 1. Normal file in p1, largefile in p2. Here the largefile is | ||||
# detected via its standin file, which will enter the working copy | ||||
# with a "get" action. It is not "merge" since the standin is all | ||||
# Mercurial is concerned with at this level -- the link to the | ||||
# existing normal file is not relevant here. | ||||
# | ||||
# 2. Largefile in p1, normal file in p2. Here we get a "merge" action | ||||
# since the largefile will be present in the working copy and | ||||
# different from the normal file in p2. Mercurial therefore | ||||
# triggers a merge action. | ||||
# | ||||
# In both cases, we prompt the user and emit new actions to either | ||||
# remove the standin (if the normal file was kept) or to remove the | ||||
# normal file and get the standin (if the largefile was kept). The | ||||
# default prompt answer is to use the largefile version since it was | ||||
# presumably changed on purpose. | ||||
# | ||||
# Finally, the merge.applyupdates function will then take care of | ||||
# writing the files into the working copy and lfcommands.updatelfiles | ||||
# will update the largefiles. | ||||
Augie Fackler
|
r43347 | @eh.wrapfunction(merge, b'calculateupdates') | ||
Augie Fackler
|
r43346 | def overridecalculateupdates( | ||
origfn, repo, p1, p2, pas, branchmerge, force, acceptremote, *args, **kwargs | ||||
): | ||||
Siddharth Agarwal
|
r18605 | overwrite = force and not branchmerge | ||
Pulkit Goyal
|
r45831 | mresult = origfn( | ||
Augie Fackler
|
r43346 | repo, p1, p2, pas, branchmerge, force, acceptremote, *args, **kwargs | ||
) | ||||
Mads Kiilerich
|
r19952 | |||
if overwrite: | ||||
Pulkit Goyal
|
r45831 | return mresult | ||
Martin Geisler
|
r15663 | |||
Martin von Zweigbergk
|
r23529 | # Convert to dictionary with filename as key and action as value. | ||
Martin von Zweigbergk
|
r23530 | lfiles = set() | ||
Pulkit Goyal
|
r45905 | for f in mresult.files(): | ||
Mads Kiilerich
|
r27905 | splitstandin = lfutil.splitstandin(f) | ||
Raphaël Gomès
|
r43000 | if splitstandin is not None and splitstandin in p1: | ||
Martin von Zweigbergk
|
r23641 | lfiles.add(splitstandin) | ||
elif lfutil.standin(f) in p1: | ||||
lfiles.add(f) | ||||
Martin Geisler
|
r15663 | |||
Mads Kiilerich
|
r27904 | for lfile in sorted(lfiles): | ||
Martin von Zweigbergk
|
r23530 | standin = lfutil.standin(lfile) | ||
Pulkit Goyal
|
r45904 | (lm, largs, lmsg) = mresult.getfile(lfile, (None, None, None)) | ||
(sm, sargs, smsg) = mresult.getfile(standin, (None, None, None)) | ||||
r49558 | ||||
if sm in (ACTION_GET, ACTION_DELETED_CHANGED) and lm != ACTION_REMOVE: | ||||
if sm == ACTION_DELETED_CHANGED: | ||||
Siddharth Agarwal
|
r26962 | f1, f2, fa, move, anc = sargs | ||
Siddharth Agarwal
|
r27655 | sargs = (p2[f2].flags(), False) | ||
Martin Geisler
|
r15663 | # Case 1: normal file in the working copy, largefile in | ||
# the second parent | ||||
Augie Fackler
|
r43346 | usermsg = ( | ||
_( | ||||
Augie Fackler
|
r43347 | b'remote turned local normal file %s into a largefile\n' | ||
b'use (l)argefile or keep (n)ormal file?' | ||||
b'$$ &Largefile $$ &Normal file' | ||||
Augie Fackler
|
r43346 | ) | ||
% lfile | ||||
) | ||||
if repo.ui.promptchoice(usermsg, 0) == 0: # pick remote largefile | ||||
r49558 | mresult.addfile( | |||
lfile, ACTION_REMOVE, None, b'replaced by standin' | ||||
) | ||||
mresult.addfile(standin, ACTION_GET, sargs, b'replaces standin') | ||||
Augie Fackler
|
r43346 | else: # keep local normal file | ||
r49558 | mresult.addfile(lfile, ACTION_KEEP, None, b'replaces standin') | |||
Martin von Zweigbergk
|
r23493 | if branchmerge: | ||
Pulkit Goyal
|
r45839 | mresult.addfile( | ||
Augie Fackler
|
r46554 | standin, | ||
r49558 | ACTION_KEEP, | |||
Augie Fackler
|
r46554 | None, | ||
b'replaced by non-standin', | ||||
Pulkit Goyal
|
r45831 | ) | ||
Martin von Zweigbergk
|
r23493 | else: | ||
Pulkit Goyal
|
r45839 | mresult.addfile( | ||
Augie Fackler
|
r46554 | standin, | ||
r49558 | ACTION_REMOVE, | |||
Augie Fackler
|
r46554 | None, | ||
b'replaced by non-standin', | ||||
Pulkit Goyal
|
r45831 | ) | ||
r49558 | if lm in (ACTION_GET, ACTION_DELETED_CHANGED) and sm != ACTION_REMOVE: | |||
if lm == ACTION_DELETED_CHANGED: | ||||
Siddharth Agarwal
|
r26962 | f1, f2, fa, move, anc = largs | ||
Siddharth Agarwal
|
r27655 | largs = (p2[f2].flags(), False) | ||
Martin Geisler
|
r15663 | # Case 2: largefile in the working copy, normal file in | ||
# the second parent | ||||
Augie Fackler
|
r43346 | usermsg = ( | ||
_( | ||||
Augie Fackler
|
r43347 | b'remote turned local largefile %s into a normal file\n' | ||
b'keep (l)argefile or use (n)ormal file?' | ||||
b'$$ &Largefile $$ &Normal file' | ||||
Augie Fackler
|
r43346 | ) | ||
% lfile | ||||
) | ||||
if repo.ui.promptchoice(usermsg, 0) == 0: # keep local largefile | ||||
FUJIWARA Katsunori
|
r22196 | if branchmerge: | ||
# largefile can be restored from standin safely | ||||
Pulkit Goyal
|
r45839 | mresult.addfile( | ||
Augie Fackler
|
r46554 | lfile, | ||
r49558 | ACTION_KEEP, | |||
Augie Fackler
|
r46554 | None, | ||
b'replaced by standin', | ||||
Pulkit Goyal
|
r45831 | ) | ||
r49558 | mresult.addfile( | |||
standin, ACTION_KEEP, None, b'replaces standin' | ||||
) | ||||
FUJIWARA Katsunori
|
r22196 | else: | ||
# "lfile" should be marked as "removed" without | ||||
# removal of itself | ||||
Pulkit Goyal
|
r45839 | mresult.addfile( | ||
Pulkit Goyal
|
r45855 | lfile, | ||
MERGE_ACTION_LARGEFILE_MARK_REMOVED, | ||||
None, | ||||
b'forget non-standin largefile', | ||||
Augie Fackler
|
r43346 | ) | ||
FUJIWARA Katsunori
|
r22196 | |||
# linear-merge should treat this largefile as 're-added' | ||||
r49558 | mresult.addfile(standin, ACTION_ADD, None, b'keep standin') | |||
Augie Fackler
|
r43346 | else: # pick remote normal file | ||
r49558 | mresult.addfile(lfile, ACTION_GET, largs, b'replaces standin') | |||
Pulkit Goyal
|
r45839 | mresult.addfile( | ||
Augie Fackler
|
r46554 | standin, | ||
r49558 | ACTION_REMOVE, | |||
Augie Fackler
|
r46554 | None, | ||
b'replaced by non-standin', | ||||
Pulkit Goyal
|
r45831 | ) | ||
Martin Geisler
|
r15663 | |||
Pulkit Goyal
|
r45831 | return mresult | ||
Martin Geisler
|
r15663 | |||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r45383 | @eh.wrapfunction(mergestatemod, b'recordupdates') | ||
Valentin Gatien-Baron
|
r42656 | def mergerecordupdates(orig, repo, actions, branchmerge, getfiledata): | ||
Pulkit Goyal
|
r45855 | if MERGE_ACTION_LARGEFILE_MARK_REMOVED in actions: | ||
Mads Kiilerich
|
r23695 | lfdirstate = lfutil.openlfdirstate(repo.ui, repo) | ||
r48449 | with lfdirstate.parentchange(): | |||
for lfile, args, msg in actions[ | ||||
MERGE_ACTION_LARGEFILE_MARK_REMOVED | ||||
]: | ||||
# this should be executed before 'orig', to execute 'remove' | ||||
# before all other actions | ||||
r48498 | repo.dirstate.update_file( | |||
lfile, p1_tracked=True, wc_tracked=False | ||||
) | ||||
r48449 | # make sure lfile doesn't get synclfdirstate'd as normal | |||
r48554 | lfdirstate.update_file(lfile, p1_tracked=False, wc_tracked=True) | |||
Pulkit Goyal
|
r48982 | lfdirstate.write(repo.currenttransaction()) | ||
FUJIWARA Katsunori
|
r22196 | |||
Valentin Gatien-Baron
|
r42656 | return orig(repo, actions, branchmerge, getfiledata) | ||
FUJIWARA Katsunori
|
r22196 | |||
Augie Fackler
|
r43346 | |||
Greg Ward
|
r15252 | # Override filemerge to prompt the user about how they wish to merge | ||
Mads Kiilerich
|
r20295 | # largefiles. This will handle identical edits without prompting the user. | ||
Martin von Zweigbergk
|
r49261 | @eh.wrapfunction(filemerge, b'filemerge') | ||
Augie Fackler
|
r43346 | def overridefilemerge( | ||
Martin von Zweigbergk
|
r49260 | origfn, repo, wctx, mynode, orig, fcd, fco, fca, labels=None | ||
Augie Fackler
|
r43346 | ): | ||
Siddharth Agarwal
|
r27050 | if not lfutil.isstandin(orig) or fcd.isabsent() or fco.isabsent(): | ||
Martin von Zweigbergk
|
r49260 | return origfn(repo, wctx, mynode, orig, fcd, fco, fca, labels=labels) | ||
Mads Kiilerich
|
r20298 | |||
FUJIWARA Katsunori
|
r31740 | ahash = lfutil.readasstandin(fca).lower() | ||
dhash = lfutil.readasstandin(fcd).lower() | ||||
ohash = lfutil.readasstandin(fco).lower() | ||||
Augie Fackler
|
r43346 | if ( | ||
ohash != ahash | ||||
and ohash != dhash | ||||
and ( | ||||
dhash == ahash | ||||
or repo.ui.promptchoice( | ||||
_( | ||||
Augie Fackler
|
r43347 | b'largefile %s has a merge conflict\nancestor was %s\n' | ||
b'you can keep (l)ocal %s or take (o)ther %s.\n' | ||||
b'what do you want to do?' | ||||
b'$$ &Local $$ &Other' | ||||
Augie Fackler
|
r43346 | ) | ||
% (lfutil.splitstandin(orig), ahash, dhash, ohash), | ||||
0, | ||||
) | ||||
== 1 | ||||
) | ||||
): | ||||
Mads Kiilerich
|
r20298 | repo.wwrite(fcd.path(), fco.data(), fco.flags()) | ||
Martin von Zweigbergk
|
r49337 | return 0, False | ||
various
|
r15168 | |||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @eh.wrapfunction(copiesmod, b'pathcopies') | ||
Durham Goode
|
r24782 | def copiespathcopies(orig, ctx1, ctx2, match=None): | ||
copies = orig(ctx1, ctx2, match=match) | ||||
Matt Harbison
|
r24230 | updated = {} | ||
Gregory Szorc
|
r49768 | for k, v in copies.items(): | ||
Matt Harbison
|
r24230 | updated[lfutil.splitstandin(k) or k] = lfutil.splitstandin(v) or v | ||
return updated | ||||
Augie Fackler
|
r43346 | |||
Greg Ward
|
r15252 | # Copy first changes the matchers to match standins instead of | ||
# largefiles. Then it overrides util.copyfile in that function it | ||||
# checks if the destination largefile already exists. It also keeps a | ||||
# list of copied files so that the largefiles can be copied and the | ||||
# dirstate updated. | ||||
Augie Fackler
|
r43347 | @eh.wrapfunction(cmdutil, b'copy') | ||
Na'Tosha Bard
|
r16247 | def overridecopy(orig, ui, repo, pats, opts, rename=False): | ||
Greg Ward
|
r15252 | # doesn't remove largefile on rename | ||
various
|
r15168 | if len(pats) < 2: | ||
# this isn't legal, let the original function deal with it | ||||
return orig(ui, repo, pats, opts, rename) | ||||
Greg Ward
|
r15254 | # This could copy both lfiles and normal files in one command, | ||
# but we don't want to do that. First replace their matcher to | ||||
# only match normal files and run it, then replace it to just | ||||
# match largefiles and run it again. | ||||
various
|
r15168 | nonormalfiles = False | ||
nolfiles = False | ||||
Martin von Zweigbergk
|
r41722 | manifest = repo[None].manifest() | ||
Augie Fackler
|
r43346 | |||
def normalfilesmatchfn( | ||||
orig, | ||||
ctx, | ||||
pats=(), | ||||
opts=None, | ||||
globbed=False, | ||||
Augie Fackler
|
r43347 | default=b'relpath', | ||
Augie Fackler
|
r43346 | badfn=None, | ||
): | ||||
Martin von Zweigbergk
|
r41722 | if opts is None: | ||
opts = {} | ||||
match = orig(ctx, pats, opts, globbed, default, badfn=badfn) | ||||
return composenormalfilematcher(match, manifest) | ||||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | with extensions.wrappedfunction(scmutil, b'match', normalfilesmatchfn): | ||
Martin von Zweigbergk
|
r41722 | try: | ||
result = orig(ui, repo, pats, opts, rename) | ||||
except error.Abort as e: | ||||
Martin von Zweigbergk
|
r46274 | if e.message != _(b'no files to copy'): | ||
Martin von Zweigbergk
|
r41722 | raise e | ||
else: | ||||
nonormalfiles = True | ||||
result = 0 | ||||
various
|
r15168 | |||
# The first rename can cause our current working directory to be removed. | ||||
# In that case there is nothing left to copy/rename so just quit. | ||||
try: | ||||
repo.getcwd() | ||||
except OSError: | ||||
return result | ||||
Matt Harbison
|
r24006 | def makestandin(relpath): | ||
path = pathutil.canonpath(repo.root, repo.getcwd(), relpath) | ||||
liscju
|
r28715 | return repo.wvfs.join(lfutil.standin(path)) | ||
Matt Harbison
|
r24006 | |||
fullpats = scmutil.expandpats(pats) | ||||
dest = fullpats[-1] | ||||
if os.path.isdir(dest): | ||||
if not os.path.isdir(makestandin(dest)): | ||||
os.makedirs(makestandin(dest)) | ||||
various
|
r15168 | try: | ||
Matt Mackall
|
r25079 | # When we call orig below it creates the standins but we don't add | ||
# them to the dir state until later so lock during that time. | ||||
wlock = repo.wlock() | ||||
various
|
r15168 | |||
Matt Mackall
|
r25079 | manifest = repo[None].manifest() | ||
Augie Fackler
|
r43346 | |||
def overridematch( | ||||
orig, | ||||
ctx, | ||||
pats=(), | ||||
opts=None, | ||||
globbed=False, | ||||
Augie Fackler
|
r43347 | default=b'relpath', | ||
Augie Fackler
|
r43346 | badfn=None, | ||
): | ||||
Pierre-Yves David
|
r26341 | if opts is None: | ||
opts = {} | ||||
Matt Mackall
|
r25079 | newpats = [] | ||
# The patterns were previously mangled to add the standin | ||||
# directory; we need to remove that now | ||||
various
|
r15168 | for pat in pats: | ||
liscju
|
r29318 | if matchmod.patkind(pat) is None and lfutil.shortname in pat: | ||
Augie Fackler
|
r43347 | newpats.append(pat.replace(lfutil.shortname, b'')) | ||
various
|
r15168 | else: | ||
Matt Mackall
|
r25079 | newpats.append(pat) | ||
Martin von Zweigbergk
|
r41721 | match = orig(ctx, newpats, opts, globbed, default, badfn=badfn) | ||
Matt Mackall
|
r25079 | m = copy.copy(match) | ||
lfile = lambda f: lfutil.standin(f) in manifest | ||||
m._files = [lfutil.standin(f) for f in m._files if lfile(f)] | ||||
Martin von Zweigbergk
|
r32323 | m._fileset = set(m._files) | ||
Matt Mackall
|
r25079 | origmatchfn = m.matchfn | ||
Augie Fackler
|
r43346 | |||
FUJIWARA Katsunori
|
r31613 | def matchfn(f): | ||
lfile = lfutil.splitstandin(f) | ||||
Augie Fackler
|
r43346 | return ( | ||
lfile is not None | ||||
and (f in manifest) | ||||
and origmatchfn(lfile) | ||||
or None | ||||
) | ||||
FUJIWARA Katsunori
|
r31613 | m.matchfn = matchfn | ||
Matt Mackall
|
r25079 | return m | ||
Augie Fackler
|
r43346 | |||
Matt Mackall
|
r25079 | listpats = [] | ||
for pat in pats: | ||||
liscju
|
r29318 | if matchmod.patkind(pat) is not None: | ||
Matt Mackall
|
r25079 | listpats.append(pat) | ||
else: | ||||
listpats.append(makestandin(pat)) | ||||
various
|
r15168 | |||
Martin von Zweigbergk
|
r41720 | copiedfiles = [] | ||
Augie Fackler
|
r43346 | |||
Martin von Zweigbergk
|
r41720 | def overridecopyfile(orig, src, dest, *args, **kwargs): | ||
Augie Fackler
|
r43346 | if lfutil.shortname in src and dest.startswith( | ||
repo.wjoin(lfutil.shortname) | ||||
): | ||||
Augie Fackler
|
r43347 | destlfile = dest.replace(lfutil.shortname, b'') | ||
if not opts[b'force'] and os.path.exists(destlfile): | ||||
raise IOError( | ||||
b'', _(b'destination largefile already exists') | ||||
) | ||||
Martin von Zweigbergk
|
r41720 | copiedfiles.append((src, dest)) | ||
orig(src, dest, *args, **kwargs) | ||||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | with extensions.wrappedfunction(util, b'copyfile', overridecopyfile): | ||
with extensions.wrappedfunction(scmutil, b'match', overridematch): | ||||
Augie Fackler
|
r41926 | result += orig(ui, repo, listpats, opts, rename) | ||
Matt Harbison
|
r21196 | |||
Matt Mackall
|
r25079 | lfdirstate = lfutil.openlfdirstate(ui, repo) | ||
for (src, dest) in copiedfiles: | ||||
Augie Fackler
|
r43346 | if lfutil.shortname in src and dest.startswith( | ||
repo.wjoin(lfutil.shortname) | ||||
): | ||||
Augie Fackler
|
r43347 | srclfile = src.replace(repo.wjoin(lfutil.standin(b'')), b'') | ||
destlfile = dest.replace(repo.wjoin(lfutil.standin(b'')), b'') | ||||
destlfiledir = repo.wvfs.dirname(repo.wjoin(destlfile)) or b'.' | ||||
Matt Mackall
|
r25079 | if not os.path.isdir(destlfiledir): | ||
os.makedirs(destlfiledir) | ||||
if rename: | ||||
os.rename(repo.wjoin(srclfile), repo.wjoin(destlfile)) | ||||
Matt Harbison
|
r17245 | |||
Matt Mackall
|
r25079 | # The file is gone, but this deletes any empty parent | ||
# directories as a side-effect. | ||||
Mads Kiilerich
|
r31309 | repo.wvfs.unlinkpath(srclfile, ignoremissing=True) | ||
r48455 | lfdirstate.set_untracked(srclfile) | |||
Matt Mackall
|
r25079 | else: | ||
Augie Fackler
|
r43346 | util.copyfile(repo.wjoin(srclfile), repo.wjoin(destlfile)) | ||
Matt Mackall
|
r25079 | |||
r48450 | lfdirstate.set_tracked(destlfile) | |||
Pulkit Goyal
|
r48982 | lfdirstate.write(repo.currenttransaction()) | ||
Pierre-Yves David
|
r26587 | except error.Abort as e: | ||
Martin von Zweigbergk
|
r46274 | if e.message != _(b'no files to copy'): | ||
Matt Mackall
|
r25079 | raise e | ||
else: | ||||
nolfiles = True | ||||
various
|
r15168 | finally: | ||
wlock.release() | ||||
if nolfiles and nonormalfiles: | ||||
Augie Fackler
|
r43347 | raise error.Abort(_(b'no files to copy')) | ||
various
|
r15168 | |||
return result | ||||
Augie Fackler
|
r43346 | |||
Greg Ward
|
r15254 | # When the user calls revert, we have to be careful to not revert any | ||
# changes to other largefiles accidentally. This means we have to keep | ||||
# track of the largefiles that are being reverted so we only pull down | ||||
# the necessary largefiles. | ||||
various
|
r15168 | # | ||
Greg Ward
|
r15254 | # Standins are only updated (to match the hash of largefiles) before | ||
# commits. Update the standins then run the original revert, changing | ||||
# the matcher to hit standins instead of largefiles. Based on the | ||||
Mads Kiilerich
|
r21094 | # resulting standins update the largefiles. | ||
Augie Fackler
|
r43347 | @eh.wrapfunction(cmdutil, b'revert') | ||
Martin von Zweigbergk
|
r45935 | def overriderevert(orig, ui, repo, ctx, *pats, **opts): | ||
Greg Ward
|
r15254 | # Because we put the standins in a bad state (by updating them) | ||
# and then return them to a correct state we need to lock to | ||||
# prevent others from changing them in their incorrect state. | ||||
Bryan O'Sullivan
|
r27823 | with repo.wlock(): | ||
various
|
r15168 | lfdirstate = lfutil.openlfdirstate(ui, repo) | ||
Mads Kiilerich
|
r23039 | s = lfutil.lfdirstatestatus(lfdirstate, repo) | ||
Pulkit Goyal
|
r48982 | lfdirstate.write(repo.currenttransaction()) | ||
Martin von Zweigbergk
|
r22919 | for lfile in s.modified: | ||
FUJIWARA Katsunori
|
r31659 | lfutil.updatestandin(repo, lfile, lfutil.standin(lfile)) | ||
Martin von Zweigbergk
|
r22919 | for lfile in s.deleted: | ||
FUJIWARA Katsunori
|
r31618 | fstandin = lfutil.standin(lfile) | ||
Augie Fackler
|
r43346 | if repo.wvfs.exists(fstandin): | ||
FUJIWARA Katsunori
|
r31618 | repo.wvfs.unlink(fstandin) | ||
various
|
r15168 | |||
Mads Kiilerich
|
r21094 | oldstandins = lfutil.getstandinsstate(repo) | ||
Augie Fackler
|
r43346 | def overridematch( | ||
orig, | ||||
mctx, | ||||
pats=(), | ||||
opts=None, | ||||
globbed=False, | ||||
Augie Fackler
|
r43347 | default=b'relpath', | ||
Augie Fackler
|
r43346 | badfn=None, | ||
): | ||||
Pierre-Yves David
|
r26343 | if opts is None: | ||
opts = {} | ||||
Martin von Zweigbergk
|
r41723 | match = orig(mctx, pats, opts, globbed, default, badfn=badfn) | ||
Mads Kiilerich
|
r21095 | m = copy.copy(match) | ||
Matt Harbison
|
r24133 | |||
# revert supports recursing into subrepos, and though largefiles | ||||
# currently doesn't work correctly in that case, this match is | ||||
# called, so the lfdirstate above may not be the correct one for | ||||
# this invocation of match. | ||||
Augie Fackler
|
r43346 | lfdirstate = lfutil.openlfdirstate( | ||
mctx.repo().ui, mctx.repo(), False | ||||
) | ||||
Matt Harbison
|
r24133 | |||
FUJIWARA Katsunori
|
r31654 | wctx = repo[None] | ||
FUJIWARA Katsunori
|
r31656 | matchfiles = [] | ||
for f in m._files: | ||||
Martin von Zweigbergk
|
r24437 | standin = lfutil.standin(f) | ||
Martin von Zweigbergk
|
r24438 | if standin in ctx or standin in mctx: | ||
FUJIWARA Katsunori
|
r31656 | matchfiles.append(standin) | ||
r48918 | elif standin in wctx or lfdirstate.get_entry(f).removed: | |||
FUJIWARA Katsunori
|
r31656 | continue | ||
else: | ||||
matchfiles.append(f) | ||||
m._files = matchfiles | ||||
Martin von Zweigbergk
|
r32323 | m._fileset = set(m._files) | ||
Mads Kiilerich
|
r21095 | origmatchfn = m.matchfn | ||
Augie Fackler
|
r43346 | |||
Mads Kiilerich
|
r21095 | def matchfn(f): | ||
FUJIWARA Katsunori
|
r31613 | lfile = lfutil.splitstandin(f) | ||
if lfile is not None: | ||||
Augie Fackler
|
r43346 | return origmatchfn(lfile) and (f in ctx or f in mctx) | ||
Mads Kiilerich
|
r21095 | return origmatchfn(f) | ||
Augie Fackler
|
r43346 | |||
Mads Kiilerich
|
r21095 | m.matchfn = matchfn | ||
return m | ||||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | with extensions.wrappedfunction(scmutil, b'match', overridematch): | ||
Martin von Zweigbergk
|
r45935 | orig(ui, repo, ctx, *pats, **opts) | ||
Greg Ward
|
r15254 | |||
Mads Kiilerich
|
r21094 | newstandins = lfutil.getstandinsstate(repo) | ||
filelist = lfutil.getlfilestoupdate(oldstandins, newstandins) | ||||
FUJIWARA Katsunori
|
r21934 | # lfdirstate should be 'normallookup'-ed for updated files, | ||
# because reverting doesn't touch dirstate for 'normal' files | ||||
# when target revision is explicitly specified: in such case, | ||||
# 'n' and valid timestamp in dirstate doesn't ensure 'clean' | ||||
# of target (standin) file. | ||||
Augie Fackler
|
r43346 | lfcommands.updatelfiles( | ||
ui, repo, filelist, printmessage=False, normallookup=True | ||||
) | ||||
Mads Kiilerich
|
r21094 | |||
FUJIWARA Katsunori
|
r23183 | # after pulling changesets, we need to take some extra care to get | ||
# largefiles updated remotely | ||||
Augie Fackler
|
r43346 | @eh.wrapcommand( | ||
Augie Fackler
|
r43347 | b'pull', | ||
Augie Fackler
|
r43346 | opts=[ | ||
( | ||||
Augie Fackler
|
r43347 | b'', | ||
b'all-largefiles', | ||||
Augie Fackler
|
r43346 | None, | ||
Augie Fackler
|
r43347 | _(b'download all pulled versions of largefiles (DEPRECATED)'), | ||
Augie Fackler
|
r43346 | ), | ||
( | ||||
Augie Fackler
|
r43347 | b'', | ||
b'lfrev', | ||||
Augie Fackler
|
r43346 | [], | ||
Augie Fackler
|
r43347 | _(b'download largefiles for these revisions'), | ||
_(b'REV'), | ||||
Augie Fackler
|
r43346 | ), | ||
], | ||||
) | ||||
Na'Tosha Bard
|
r16247 | def overridepull(orig, ui, repo, source=None, **opts): | ||
Na'Tosha Bard
|
r16692 | revsprepull = len(repo) | ||
Mads Kiilerich
|
r18977 | if not source: | ||
Augie Fackler
|
r43347 | source = b'default' | ||
Mads Kiilerich
|
r18977 | repo.lfpullsource = source | ||
FUJIWARA Katsunori
|
r23183 | result = orig(ui, repo, source, **opts) | ||
Mads Kiilerich
|
r18977 | revspostpull = len(repo) | ||
Augie Fackler
|
r43906 | lfrevs = opts.get('lfrev', []) | ||
if opts.get('all_largefiles'): | ||||
Augie Fackler
|
r43347 | lfrevs.append(b'pulled()') | ||
Mads Kiilerich
|
r18978 | if lfrevs and revspostpull > revsprepull: | ||
numcached = 0 | ||||
Augie Fackler
|
r43346 | repo.firstpulled = revsprepull # for pulled() revset expression | ||
Mads Kiilerich
|
r18979 | try: | ||
Martin von Zweigbergk
|
r48928 | for rev in logcmdutil.revrange(repo, lfrevs): | ||
Augie Fackler
|
r43347 | ui.note(_(b'pulling largefiles for revision %d\n') % rev) | ||
Mads Kiilerich
|
r18979 | (cached, missing) = lfcommands.cachelfiles(ui, repo, rev) | ||
numcached += len(cached) | ||||
finally: | ||||
del repo.firstpulled | ||||
Augie Fackler
|
r43347 | ui.status(_(b"%d largefiles cached\n") % numcached) | ||
various
|
r15168 | return result | ||
Augie Fackler
|
r43346 | |||
@eh.wrapcommand( | ||||
Augie Fackler
|
r43347 | b'push', | ||
Augie Fackler
|
r43346 | opts=[ | ||
Augie Fackler
|
r43347 | ( | ||
b'', | ||||
b'lfrev', | ||||
[], | ||||
_(b'upload largefiles for these revisions'), | ||||
_(b'REV'), | ||||
) | ||||
Augie Fackler
|
r43346 | ], | ||
) | ||||
Mads Kiilerich
|
r28878 | def overridepush(orig, ui, repo, *args, **kwargs): | ||
"""Override push command and store --lfrev parameters in opargs""" | ||||
Augie Fackler
|
r43906 | lfrevs = kwargs.pop('lfrev', None) | ||
Mads Kiilerich
|
r28878 | if lfrevs: | ||
Augie Fackler
|
r43906 | opargs = kwargs.setdefault('opargs', {}) | ||
Martin von Zweigbergk
|
r48928 | opargs[b'lfrevs'] = logcmdutil.revrange(repo, lfrevs) | ||
Mads Kiilerich
|
r28878 | return orig(ui, repo, *args, **kwargs) | ||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @eh.wrapfunction(exchange, b'pushoperation') | ||
Mads Kiilerich
|
r28878 | def exchangepushoperation(orig, *args, **kwargs): | ||
"""Override pushoperation constructor and store lfrevs parameter""" | ||||
Augie Fackler
|
r43906 | lfrevs = kwargs.pop('lfrevs', None) | ||
Mads Kiilerich
|
r28878 | pushop = orig(*args, **kwargs) | ||
pushop.lfrevs = lfrevs | ||||
return pushop | ||||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @eh.revsetpredicate(b'pulled()') | ||
Mads Kiilerich
|
r18979 | def pulledrevsetsymbol(repo, subset, x): | ||
FUJIWARA Katsunori
|
r27586 | """Changesets that just has been pulled. | ||
Mads Kiilerich
|
r18979 | |||
Only available with largefiles from pull --lfrev expressions. | ||||
.. container:: verbose | ||||
Some examples: | ||||
- pull largefiles for all new changesets:: | ||||
hg pull -lfrev "pulled()" | ||||
- pull largefiles for all new branch heads:: | ||||
hg pull -lfrev "head(pulled()) and not closed()" | ||||
""" | ||||
try: | ||||
firstpulled = repo.firstpulled | ||||
except AttributeError: | ||||
Augie Fackler
|
r43347 | raise error.Abort(_(b"pulled() only available in --lfrev")) | ||
Yuya Nishihara
|
r31023 | return smartset.baseset([r for r in subset if r >= firstpulled]) | ||
Mads Kiilerich
|
r18979 | |||
Augie Fackler
|
r43346 | |||
@eh.wrapcommand( | ||||
Augie Fackler
|
r43347 | b'clone', | ||
Augie Fackler
|
r43346 | opts=[ | ||
( | ||||
Augie Fackler
|
r43347 | b'', | ||
b'all-largefiles', | ||||
Augie Fackler
|
r43346 | None, | ||
Augie Fackler
|
r43347 | _(b'download all versions of all largefiles'), | ||
Augie Fackler
|
r43346 | ) | ||
], | ||||
) | ||||
Na'Tosha Bard
|
r16644 | def overrideclone(orig, ui, source, dest=None, **opts): | ||
Matt Harbison
|
r17600 | d = dest | ||
if d is None: | ||||
d = hg.defaultdest(source) | ||||
Augie Fackler
|
r43906 | if opts.get('all_largefiles') and not hg.islocal(d): | ||
Augie Fackler
|
r43346 | raise error.Abort( | ||
Augie Fackler
|
r43347 | _(b'--all-largefiles is incompatible with non-local destination %s') | ||
Augie Fackler
|
r43346 | % d | ||
) | ||||
Matt Harbison
|
r17601 | |||
return orig(ui, source, dest, **opts) | ||||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @eh.wrapfunction(hg, b'clone') | ||
Matt Harbison
|
r17601 | def hgclone(orig, ui, opts, *args, **kwargs): | ||
result = orig(ui, opts, *args, **kwargs) | ||||
Matt Harbison
|
r17824 | if result is not None: | ||
Na'Tosha Bard
|
r16644 | sourcerepo, destrepo = result | ||
Matt Harbison
|
r17599 | repo = destrepo.local() | ||
Matt Harbison
|
r24812 | # When cloning to a remote repo (like through SSH), no repo is available | ||
# from the peer. Therefore the largefiles can't be downloaded and the | ||||
# hgrc can't be updated. | ||||
if not repo: | ||||
return result | ||||
Matt Harbison
|
r17599 | # Caching is implicitly limited to 'rev' option, since the dest repo was | ||
Matt Harbison
|
r17824 | # truncated at that point. The user may expect a download count with | ||
# this option, so attempt whether or not this is a largefile repo. | ||||
Augie Fackler
|
r43347 | if opts.get(b'all_largefiles'): | ||
Yuya Nishihara
|
r46025 | success, missing = lfcommands.downloadlfiles(ui, repo) | ||
Matt Harbison
|
r17601 | |||
Matt Harbison
|
r17824 | if missing != 0: | ||
return None | ||||
Matt Harbison
|
r17601 | |||
return result | ||||
Na'Tosha Bard
|
r16644 | |||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @eh.wrapcommand(b'rebase', extension=b'rebase') | ||
Martin von Zweigbergk
|
r46118 | def overriderebasecmd(orig, ui, repo, **opts): | ||
Augie Fackler
|
r43347 | if not util.safehasattr(repo, b'_largefilesenabled'): | ||
FUJIWARA Katsunori
|
r24158 | return orig(ui, repo, **opts) | ||
Augie Fackler
|
r43906 | resuming = opts.get('continue') | ||
FUJIWARA Katsunori
|
r23187 | repo._lfcommithooks.append(lfutil.automatedcommithook(resuming)) | ||
FUJIWARA Katsunori
|
r23190 | repo._lfstatuswriters.append(lambda *msg, **opts: None) | ||
various
|
r15168 | try: | ||
Martin von Zweigbergk
|
r46118 | with ui.configoverride( | ||
{(b'rebase', b'experimental.inmemory'): False}, b"largefiles" | ||||
): | ||||
return orig(ui, repo, **opts) | ||||
various
|
r15168 | finally: | ||
FUJIWARA Katsunori
|
r23190 | repo._lfstatuswriters.pop() | ||
FUJIWARA Katsunori
|
r23187 | repo._lfcommithooks.pop() | ||
various
|
r15168 | |||
Augie Fackler
|
r43346 | |||
Martin von Zweigbergk
|
r46118 | @eh.extsetup | ||
def overriderebase(ui): | ||||
try: | ||||
rebase = extensions.find(b'rebase') | ||||
except KeyError: | ||||
pass | ||||
else: | ||||
def _dorebase(orig, *args, **kwargs): | ||||
kwargs['inmemory'] = False | ||||
return orig(*args, **kwargs) | ||||
extensions.wrapfunction(rebase, b'_dorebase', _dorebase) | ||||
Augie Fackler
|
r43347 | @eh.wrapcommand(b'archive') | ||
Matt Harbison
|
r25811 | def overridearchivecmd(orig, ui, repo, dest, **opts): | ||
Martin von Zweigbergk
|
r43588 | with lfstatus(repo.unfiltered()): | ||
Matt Harbison
|
r25811 | return orig(ui, repo.unfiltered(), dest, **opts) | ||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @eh.wrapfunction(webcommands, b'archive') | ||
Gregory Szorc
|
r36903 | def hgwebarchive(orig, web): | ||
Martin von Zweigbergk
|
r43588 | with lfstatus(web.repo): | ||
Gregory Szorc
|
r36903 | return orig(web) | ||
Matt Harbison
|
r26417 | |||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @eh.wrapfunction(archival, b'archive') | ||
Augie Fackler
|
r43346 | def overridearchive( | ||
orig, | ||||
repo, | ||||
dest, | ||||
node, | ||||
kind, | ||||
decode=True, | ||||
match=None, | ||||
Augie Fackler
|
r43347 | prefix=b'', | ||
Augie Fackler
|
r43346 | mtime=None, | ||
subrepos=None, | ||||
): | ||||
Matt Harbison
|
r26417 | # For some reason setting repo.lfstatus in hgwebarchive only changes the | ||
# unfiltered repo's attr, so check that as well. | ||||
if not repo.lfstatus and not repo.unfiltered().lfstatus: | ||||
Augie Fackler
|
r43346 | return orig( | ||
repo, dest, node, kind, decode, match, prefix, mtime, subrepos | ||||
) | ||||
Matt Harbison
|
r25811 | |||
Greg Ward
|
r15254 | # No need to lock because we are only reading history and | ||
# largefile caches, neither of which are modified. | ||||
Matt Harbison
|
r25601 | if node is not None: | ||
lfcommands.cachelfiles(repo.ui, repo, node) | ||||
various
|
r15168 | |||
if kind not in archival.archivers: | ||||
Augie Fackler
|
r43347 | raise error.Abort(_(b"unknown archive type '%s'") % kind) | ||
various
|
r15168 | |||
ctx = repo[node] | ||||
Augie Fackler
|
r43347 | if kind == b'files': | ||
Na'Tosha Bard
|
r15224 | if prefix: | ||
Augie Fackler
|
r43347 | raise error.Abort(_(b'cannot give prefix when archiving to files')) | ||
Na'Tosha Bard
|
r15224 | else: | ||
prefix = archival.tidyprefix(dest, kind, prefix) | ||||
various
|
r15168 | |||
Na'Tosha Bard
|
r15224 | def write(name, mode, islink, getdata): | ||
Martin von Zweigbergk
|
r40443 | if match and not match(name): | ||
Na'Tosha Bard
|
r15224 | return | ||
data = getdata() | ||||
if decode: | ||||
data = repo.wwritedata(name, data) | ||||
archiver.addfile(prefix + name, mode, islink, data) | ||||
various
|
r15168 | |||
Na'Tosha Bard
|
r15224 | archiver = archival.archivers[kind](dest, mtime or ctx.date()[0]) | ||
various
|
r15168 | |||
Augie Fackler
|
r43347 | if repo.ui.configbool(b"ui", b"archivemeta"): | ||
Augie Fackler
|
r43346 | write( | ||
Augie Fackler
|
r43347 | b'.hg_archival.txt', | ||
Augie Fackler
|
r43346 | 0o644, | ||
False, | ||||
lambda: archival.buildmetadata(ctx), | ||||
) | ||||
various
|
r15168 | |||
for f in ctx: | ||||
ff = ctx.flags(f) | ||||
getdata = ctx[f].data | ||||
FUJIWARA Katsunori
|
r31613 | lfile = lfutil.splitstandin(f) | ||
if lfile is not None: | ||||
Matt Harbison
|
r25601 | if node is not None: | ||
path = lfutil.findfile(repo, getdata().strip()) | ||||
if path is None: | ||||
Pierre-Yves David
|
r26587 | raise error.Abort( | ||
Augie Fackler
|
r43346 | _( | ||
Augie Fackler
|
r43347 | b'largefile %s not found in repo store or system cache' | ||
Augie Fackler
|
r43346 | ) | ||
% lfile | ||||
) | ||||
Matt Harbison
|
r25601 | else: | ||
FUJIWARA Katsunori
|
r31613 | path = lfile | ||
Matt Harbison
|
r25601 | |||
FUJIWARA Katsunori
|
r31613 | f = lfile | ||
various
|
r15168 | |||
Bryan O'Sullivan
|
r27772 | getdata = lambda: util.readfile(path) | ||
Augie Fackler
|
r43347 | write(f, b'x' in ff and 0o755 or 0o644, b'l' in ff, getdata) | ||
various
|
r15168 | |||
if subrepos: | ||||
Mads Kiilerich
|
r18364 | for subpath in sorted(ctx.substate): | ||
Matt Harbison
|
r25601 | sub = ctx.workingsub(subpath) | ||
Martin von Zweigbergk
|
r40443 | submatch = matchmod.subdirmatcher(subpath, match) | ||
Augie Fackler
|
r43347 | subprefix = prefix + subpath + b'/' | ||
Matt Harbison
|
r44467 | |||
# TODO: Only hgsubrepo instances have `_repo`, so figure out how to | ||||
# infer and possibly set lfstatus in hgsubrepoarchive. That would | ||||
# allow only hgsubrepos to set this, instead of the current scheme | ||||
# where the parent sets this for the child. | ||||
with ( | ||||
util.safehasattr(sub, '_repo') | ||||
and lfstatus(sub._repo) | ||||
or util.nullcontextmanager() | ||||
): | ||||
Martin von Zweigbergk
|
r43590 | sub.archive(archiver, subprefix, submatch) | ||
various
|
r15168 | |||
archiver.done() | ||||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @eh.wrapfunction(subrepo.hgsubrepo, b'archive') | ||
Matt Harbison
|
r31099 | def hgsubrepoarchive(orig, repo, archiver, prefix, match=None, decode=True): | ||
Augie Fackler
|
r43347 | lfenabled = util.safehasattr(repo._repo, b'_largefilesenabled') | ||
Matt Harbison
|
r32835 | if not lfenabled or not repo._repo.lfstatus: | ||
Matt Harbison
|
r31099 | return orig(repo, archiver, prefix, match, decode) | ||
Matt Harbison
|
r25811 | |||
Augie Fackler
|
r43347 | repo._get(repo._state + (b'hg',)) | ||
Matt Harbison
|
r16578 | rev = repo._state[1] | ||
ctx = repo._repo[rev] | ||||
Matt Harbison
|
r25601 | if ctx.node() is not None: | ||
lfcommands.cachelfiles(repo.ui, repo._repo, ctx.node()) | ||||
Matt Harbison
|
r16578 | |||
def write(name, mode, islink, getdata): | ||||
Matt Harbison
|
r17108 | # At this point, the standin has been replaced with the largefile name, | ||
# so the normal matcher works here without the lfutil variants. | ||||
if match and not match(f): | ||||
return | ||||
Matt Harbison
|
r16578 | data = getdata() | ||
Matt Harbison
|
r31099 | if decode: | ||
data = repo._repo.wwritedata(name, data) | ||||
Matt Harbison
|
r16578 | |||
Martin von Zweigbergk
|
r41780 | archiver.addfile(prefix + name, mode, islink, data) | ||
Matt Harbison
|
r16578 | |||
for f in ctx: | ||||
ff = ctx.flags(f) | ||||
getdata = ctx[f].data | ||||
FUJIWARA Katsunori
|
r31613 | lfile = lfutil.splitstandin(f) | ||
if lfile is not None: | ||||
Matt Harbison
|
r25601 | if ctx.node() is not None: | ||
path = lfutil.findfile(repo._repo, getdata().strip()) | ||||
if path is None: | ||||
Pierre-Yves David
|
r26587 | raise error.Abort( | ||
Augie Fackler
|
r43346 | _( | ||
Augie Fackler
|
r43347 | b'largefile %s not found in repo store or system cache' | ||
Augie Fackler
|
r43346 | ) | ||
% lfile | ||||
) | ||||
Matt Harbison
|
r25601 | else: | ||
FUJIWARA Katsunori
|
r31613 | path = lfile | ||
Matt Harbison
|
r25601 | |||
FUJIWARA Katsunori
|
r31613 | f = lfile | ||
Matt Harbison
|
r16578 | |||
Bryan O'Sullivan
|
r27772 | getdata = lambda: util.readfile(os.path.join(prefix, path)) | ||
Matt Harbison
|
r16578 | |||
Augie Fackler
|
r43347 | write(f, b'x' in ff and 0o755 or 0o644, b'l' in ff, getdata) | ||
Matt Harbison
|
r16578 | |||
Mads Kiilerich
|
r18364 | for subpath in sorted(ctx.substate): | ||
Matt Harbison
|
r25601 | sub = ctx.workingsub(subpath) | ||
liscju
|
r29318 | submatch = matchmod.subdirmatcher(subpath, match) | ||
Augie Fackler
|
r43347 | subprefix = prefix + subpath + b'/' | ||
Matt Harbison
|
r44467 | # TODO: Only hgsubrepo instances have `_repo`, so figure out how to | ||
# infer and possibly set lfstatus at the top of this function. That | ||||
# would allow only hgsubrepos to set this, instead of the current scheme | ||||
# where the parent sets this for the child. | ||||
with ( | ||||
util.safehasattr(sub, '_repo') | ||||
and lfstatus(sub._repo) | ||||
or util.nullcontextmanager() | ||||
): | ||||
Martin von Zweigbergk
|
r43590 | sub.archive(archiver, subprefix, submatch, decode) | ||
Matt Harbison
|
r16578 | |||
Augie Fackler
|
r43346 | |||
Greg Ward
|
r15254 | # If a largefile is modified, the change is not reflected in its | ||
# standin until a commit. cmdutil.bailifchanged() raises an exception | ||||
# if the repo has uncommitted changes. Wrap it to also check if | ||||
Matt Harbison
|
r23441 | # largefiles were changed. This is used by bisect, backout and fetch. | ||
Augie Fackler
|
r43347 | @eh.wrapfunction(cmdutil, b'bailifchanged') | ||
FUJIWARA Katsunori
|
r24472 | def overridebailifchanged(orig, repo, *args, **kwargs): | ||
orig(repo, *args, **kwargs) | ||||
Martin von Zweigbergk
|
r43588 | with lfstatus(repo): | ||
s = repo.status() | ||||
Martin von Zweigbergk
|
r22919 | if s.modified or s.added or s.removed or s.deleted: | ||
Augie Fackler
|
r43347 | raise error.Abort(_(b'uncommitted changes')) | ||
various
|
r15168 | |||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @eh.wrapfunction(cmdutil, b'postcommitstatus') | ||
Matt Harbison
|
r27944 | def postcommitstatus(orig, repo, *args, **kwargs): | ||
Martin von Zweigbergk
|
r43588 | with lfstatus(repo): | ||
Matt Harbison
|
r27944 | return orig(repo, *args, **kwargs) | ||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @eh.wrapfunction(cmdutil, b'forget') | ||
Augie Fackler
|
r43346 | def cmdutilforget( | ||
orig, ui, repo, match, prefix, uipathfn, explicitonly, dryrun, interactive | ||||
): | ||||
Matt Harbison
|
r23837 | normalmatcher = composenormalfilematcher(match, repo[None].manifest()) | ||
Augie Fackler
|
r43346 | bad, forgot = orig( | ||
ui, | ||||
repo, | ||||
normalmatcher, | ||||
prefix, | ||||
uipathfn, | ||||
explicitonly, | ||||
dryrun, | ||||
interactive, | ||||
) | ||||
Matt Harbison
|
r23837 | m = composelargefilematcher(match, repo[None].manifest()) | ||
various
|
r15168 | |||
Martin von Zweigbergk
|
r43588 | with lfstatus(repo): | ||
various
|
r15168 | s = repo.status(match=m, clean=True) | ||
FUJIWARA Katsunori
|
r31654 | manifest = repo[None].manifest() | ||
Martin von Zweigbergk
|
r22919 | forget = sorted(s.modified + s.added + s.deleted + s.clean) | ||
FUJIWARA Katsunori
|
r31654 | forget = [f for f in forget if lfutil.standin(f) in manifest] | ||
various
|
r15168 | |||
for f in forget: | ||||
FUJIWARA Katsunori
|
r31618 | fstandin = lfutil.standin(f) | ||
if fstandin not in repo.dirstate and not repo.wvfs.isdir(fstandin): | ||||
Augie Fackler
|
r43346 | ui.warn( | ||
Augie Fackler
|
r43347 | _(b'not removing %s: file is already untracked\n') % uipathfn(f) | ||
Augie Fackler
|
r43346 | ) | ||
Matt Harbison
|
r23837 | bad.append(f) | ||
various
|
r15168 | |||
for f in forget: | ||||
if ui.verbose or not m.exact(f): | ||||
Augie Fackler
|
r43347 | ui.status(_(b'removing %s\n') % uipathfn(f)) | ||
various
|
r15168 | |||
# Need to lock because standin files are deleted then removed from the | ||||
Mads Kiilerich
|
r17424 | # repository and we could race in-between. | ||
Bryan O'Sullivan
|
r27824 | with repo.wlock(): | ||
various
|
r15168 | lfdirstate = lfutil.openlfdirstate(ui, repo) | ||
for f in forget: | ||||
r48454 | lfdirstate.set_untracked(f) | |||
Pulkit Goyal
|
r48982 | lfdirstate.write(repo.currenttransaction()) | ||
Mads Kiilerich
|
r18153 | standins = [lfutil.standin(f) for f in forget] | ||
for f in standins: | ||||
Mads Kiilerich
|
r31309 | repo.wvfs.unlinkpath(f, ignoremissing=True) | ||
Matt Harbison
|
r23837 | rejected = repo[None].forget(standins) | ||
various
|
r15168 | |||
Matt Harbison
|
r23837 | bad.extend(f for f in rejected if f in m.files()) | ||
forgot.extend(f for f in forget if f not in rejected) | ||||
return bad, forgot | ||||
Matt Harbison
|
r17579 | |||
Augie Fackler
|
r43346 | |||
FUJIWARA Katsunori
|
r21884 | def _getoutgoings(repo, other, missing, addfunc): | ||
FUJIWARA Katsunori
|
r21882 | """get pairs of filename and largefile hash in outgoing revisions | ||
in 'missing'. | ||||
FUJIWARA Katsunori
|
r21884 | largefiles already existing on 'other' repository are ignored. | ||
FUJIWARA Katsunori
|
r21882 | 'addfunc' is invoked with each unique pairs of filename and | ||
largefile hash value. | ||||
""" | ||||
knowns = set() | ||||
FUJIWARA Katsunori
|
r21884 | lfhashes = set() | ||
Augie Fackler
|
r43346 | |||
FUJIWARA Katsunori
|
r21882 | def dedup(fn, lfhash): | ||
k = (fn, lfhash) | ||||
if k not in knowns: | ||||
knowns.add(k) | ||||
FUJIWARA Katsunori
|
r21884 | lfhashes.add(lfhash) | ||
Augie Fackler
|
r43346 | |||
FUJIWARA Katsunori
|
r21882 | lfutil.getlfilestoupload(repo, missing, dedup) | ||
FUJIWARA Katsunori
|
r21884 | if lfhashes: | ||
liscju
|
r29355 | lfexists = storefactory.openstore(repo, other).exists(lfhashes) | ||
FUJIWARA Katsunori
|
r21884 | for fn, lfhash in knowns: | ||
Augie Fackler
|
r43346 | if not lfexists[lfhash]: # lfhash doesn't exist on "other" | ||
FUJIWARA Katsunori
|
r21884 | addfunc(fn, lfhash) | ||
FUJIWARA Katsunori
|
r21882 | |||
Augie Fackler
|
r43346 | |||
FUJIWARA Katsunori
|
r21052 | def outgoinghook(ui, repo, other, opts, missing): | ||
Augie Fackler
|
r43347 | if opts.pop(b'large', None): | ||
FUJIWARA Katsunori
|
r21883 | lfhashes = set() | ||
if ui.debugflag: | ||||
toupload = {} | ||||
Augie Fackler
|
r43346 | |||
FUJIWARA Katsunori
|
r21883 | def addfunc(fn, lfhash): | ||
if fn not in toupload: | ||||
toupload[fn] = [] | ||||
toupload[fn].append(lfhash) | ||||
lfhashes.add(lfhash) | ||||
Augie Fackler
|
r43346 | |||
FUJIWARA Katsunori
|
r21883 | def showhashes(fn): | ||
for lfhash in sorted(toupload[fn]): | ||||
Augie Fackler
|
r43347 | ui.debug(b' %s\n' % lfhash) | ||
Augie Fackler
|
r43346 | |||
FUJIWARA Katsunori
|
r21883 | else: | ||
toupload = set() | ||||
Augie Fackler
|
r43346 | |||
FUJIWARA Katsunori
|
r21883 | def addfunc(fn, lfhash): | ||
toupload.add(fn) | ||||
lfhashes.add(lfhash) | ||||
Augie Fackler
|
r43346 | |||
FUJIWARA Katsunori
|
r21883 | def showhashes(fn): | ||
pass | ||||
Augie Fackler
|
r43346 | |||
FUJIWARA Katsunori
|
r21884 | _getoutgoings(repo, other, missing, addfunc) | ||
FUJIWARA Katsunori
|
r21883 | |||
FUJIWARA Katsunori
|
r21052 | if not toupload: | ||
Augie Fackler
|
r43347 | ui.status(_(b'largefiles: no files to upload\n')) | ||
various
|
r15168 | else: | ||
Augie Fackler
|
r43346 | ui.status( | ||
Augie Fackler
|
r43347 | _(b'largefiles to upload (%d entities):\n') % (len(lfhashes)) | ||
Augie Fackler
|
r43346 | ) | ||
FUJIWARA Katsunori
|
r21052 | for file in sorted(toupload): | ||
Augie Fackler
|
r43347 | ui.status(lfutil.splitstandin(file) + b'\n') | ||
FUJIWARA Katsunori
|
r21883 | showhashes(file) | ||
Augie Fackler
|
r43347 | ui.status(b'\n') | ||
various
|
r15168 | |||
Augie Fackler
|
r43346 | |||
@eh.wrapcommand( | ||||
Augie Fackler
|
r43347 | b'outgoing', opts=[(b'', b'large', None, _(b'display outgoing largefiles'))] | ||
Augie Fackler
|
r43346 | ) | ||
Matt Harbison
|
r41091 | def _outgoingcmd(orig, *args, **kwargs): | ||
# Nothing to do here other than add the extra help option- the hook above | ||||
# processes it. | ||||
return orig(*args, **kwargs) | ||||
Augie Fackler
|
r43346 | |||
FUJIWARA Katsunori
|
r21048 | def summaryremotehook(ui, repo, opts, changes): | ||
Augie Fackler
|
r43347 | largeopt = opts.get(b'large', False) | ||
FUJIWARA Katsunori
|
r21048 | if changes is None: | ||
if largeopt: | ||||
Augie Fackler
|
r43346 | return (False, True) # only outgoing check is needed | ||
FUJIWARA Katsunori
|
r21048 | else: | ||
return (False, False) | ||||
elif largeopt: | ||||
url, branch, peer, outgoing = changes[1] | ||||
if peer is None: | ||||
# i18n: column positioning for "hg summary" | ||||
Augie Fackler
|
r43347 | ui.status(_(b'largefiles: (no remote repo)\n')) | ||
FUJIWARA Katsunori
|
r21048 | return | ||
toupload = set() | ||||
FUJIWARA Katsunori
|
r21882 | lfhashes = set() | ||
Augie Fackler
|
r43346 | |||
FUJIWARA Katsunori
|
r21882 | def addfunc(fn, lfhash): | ||
toupload.add(fn) | ||||
lfhashes.add(lfhash) | ||||
Augie Fackler
|
r43346 | |||
FUJIWARA Katsunori
|
r21884 | _getoutgoings(repo, peer, outgoing.missing, addfunc) | ||
FUJIWARA Katsunori
|
r21882 | |||
FUJIWARA Katsunori
|
r21048 | if not toupload: | ||
# i18n: column positioning for "hg summary" | ||||
Augie Fackler
|
r43347 | ui.status(_(b'largefiles: (no files to upload)\n')) | ||
FUJIWARA Katsunori
|
r21048 | else: | ||
# i18n: column positioning for "hg summary" | ||||
Augie Fackler
|
r43346 | ui.status( | ||
Augie Fackler
|
r43347 | _(b'largefiles: %d entities for %d files to upload\n') | ||
Augie Fackler
|
r43346 | % (len(lfhashes), len(toupload)) | ||
) | ||||
FUJIWARA Katsunori
|
r21048 | |||
Augie Fackler
|
r43346 | |||
@eh.wrapcommand( | ||||
Augie Fackler
|
r43347 | b'summary', opts=[(b'', b'large', None, _(b'display outgoing largefiles'))] | ||
Augie Fackler
|
r43346 | ) | ||
Na'Tosha Bard
|
r16247 | def overridesummary(orig, ui, repo, *pats, **opts): | ||
Martin von Zweigbergk
|
r43588 | with lfstatus(repo): | ||
Na'Tosha Bard
|
r15787 | orig(ui, repo, *pats, **opts) | ||
various
|
r15168 | |||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @eh.wrapfunction(scmutil, b'addremove') | ||
Martin von Zweigbergk
|
r41801 | def scmutiladdremove(orig, repo, matcher, prefix, uipathfn, opts=None): | ||
Pierre-Yves David
|
r26344 | if opts is None: | ||
opts = {} | ||||
Na'Tosha Bard
|
r16636 | if not lfutil.islfilesrepo(repo): | ||
Martin von Zweigbergk
|
r41801 | return orig(repo, matcher, prefix, uipathfn, opts) | ||
Na'Tosha Bard
|
r15792 | # Get the list of missing largefiles so we can remove them | ||
Matt Harbison
|
r17658 | lfdirstate = lfutil.openlfdirstate(repo.ui, repo) | ||
r49213 | unsure, s, mtime_boundary = lfdirstate.status( | |||
Augie Fackler
|
r43346 | matchmod.always(), | ||
subrepos=[], | ||||
ignored=False, | ||||
clean=False, | ||||
unknown=False, | ||||
) | ||||
various
|
r15168 | |||
Na'Tosha Bard
|
r15792 | # Call into the normal remove code, but the removing of the standin, we want | ||
# to have handled by original addremove. Monkey patching here makes sure | ||||
# we don't remove the standin in the largefiles code, preventing a very | ||||
# confused state later. | ||||
Martin von Zweigbergk
|
r22919 | if s.deleted: | ||
Matt Harbison
|
r23741 | m = copy.copy(matcher) | ||
# The m._files and m._map attributes are not changed to the deleted list | ||||
# because that affects the m.exact() test, which in turn governs whether | ||||
# or not the file name is printed, and how. Simply limit the original | ||||
# matches to those in the deleted status list. | ||||
matchfn = m.matchfn | ||||
m.matchfn = lambda f: f in s.deleted and matchfn(f) | ||||
Augie Fackler
|
r43346 | removelargefiles( | ||
repo.ui, | ||||
repo, | ||||
True, | ||||
m, | ||||
uipathfn, | ||||
Augie Fackler
|
r43347 | opts.get(b'dry_run'), | ||
Augie Fackler
|
r43346 | **pycompat.strkwargs(opts) | ||
) | ||||
Na'Tosha Bard
|
r15792 | # Call into the normal add code, and any files that *should* be added as | ||
# largefiles will be | ||||
Augie Fackler
|
r43346 | added, bad = addlargefiles( | ||
repo.ui, repo, True, matcher, uipathfn, **pycompat.strkwargs(opts) | ||||
) | ||||
Na'Tosha Bard
|
r15792 | # Now that we've handled largefiles, hand off to the original addremove | ||
# function to take care of the rest. Make sure it doesn't do anything with | ||||
Matt Harbison
|
r23533 | # largefiles by passing a matcher that will ignore them. | ||
Matt Harbison
|
r23769 | matcher = composenormalfilematcher(matcher, repo[None].manifest(), added) | ||
Martin von Zweigbergk
|
r41801 | return orig(repo, matcher, prefix, uipathfn, opts) | ||
various
|
r15168 | |||
Augie Fackler
|
r43346 | |||
Greg Ward
|
r15254 | # Calling purge with --all will cause the largefiles to be deleted. | ||
various
|
r15168 | # Override repo.status to prevent this from happening. | ||
Valentin Gatien-Baron
|
r47080 | @eh.wrapcommand(b'purge') | ||
Na'Tosha Bard
|
r16247 | def overridepurge(orig, ui, repo, *dirs, **opts): | ||
Pierre-Yves David
|
r23635 | # XXX Monkey patching a repoview will not work. The assigned attribute will | ||
# be set on the unfiltered repo, but we will only lookup attributes in the | ||||
# unfiltered repo if the lookup in the repoview object itself fails. As the | ||||
# monkey patched method exists on the repoview class the lookup will not | ||||
# fail. As a result, the original version will shadow the monkey patched | ||||
# one, defeating the monkey patch. | ||||
# | ||||
# As a work around we use an unfiltered repo here. We should do something | ||||
# cleaner instead. | ||||
Pierre-Yves David
|
r18012 | repo = repo.unfiltered() | ||
various
|
r15168 | oldstatus = repo.status | ||
Augie Fackler
|
r43346 | |||
def overridestatus( | ||||
Augie Fackler
|
r43347 | node1=b'.', | ||
Augie Fackler
|
r43346 | node2=None, | ||
match=None, | ||||
ignored=False, | ||||
clean=False, | ||||
unknown=False, | ||||
listsubrepos=False, | ||||
): | ||||
r = oldstatus( | ||||
node1, node2, match, ignored, clean, unknown, listsubrepos | ||||
) | ||||
various
|
r15168 | lfdirstate = lfutil.openlfdirstate(ui, repo) | ||
r48918 | unknown = [ | |||
f for f in r.unknown if not lfdirstate.get_entry(f).any_tracked | ||||
] | ||||
ignored = [ | ||||
f for f in r.ignored if not lfdirstate.get_entry(f).any_tracked | ||||
] | ||||
Augie Fackler
|
r43346 | return scmutil.status( | ||
r.modified, r.added, r.removed, r.deleted, unknown, ignored, r.clean | ||||
) | ||||
Na'Tosha Bard
|
r16247 | repo.status = overridestatus | ||
various
|
r15168 | orig(ui, repo, *dirs, **opts) | ||
repo.status = oldstatus | ||||
Pulkit Goyal
|
r35349 | |||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @eh.wrapcommand(b'rollback') | ||
Na'Tosha Bard
|
r16247 | def overriderollback(orig, ui, repo, **opts): | ||
Bryan O'Sullivan
|
r27825 | with repo.wlock(): | ||
FUJIWARA Katsunori
|
r22283 | before = repo.dirstate.parents() | ||
Augie Fackler
|
r44937 | orphans = { | ||
Augie Fackler
|
r43346 | f | ||
for f in repo.dirstate | ||||
r48918 | if lfutil.isstandin(f) and not repo.dirstate.get_entry(f).removed | |||
Augie Fackler
|
r44937 | } | ||
FUJIWARA Katsunori
|
r22094 | result = orig(ui, repo, **opts) | ||
FUJIWARA Katsunori
|
r22283 | after = repo.dirstate.parents() | ||
if before == after: | ||||
Augie Fackler
|
r43346 | return result # no need to restore standins | ||
FUJIWARA Katsunori
|
r22283 | |||
Augie Fackler
|
r43347 | pctx = repo[b'.'] | ||
FUJIWARA Katsunori
|
r22285 | for f in repo.dirstate: | ||
if lfutil.isstandin(f): | ||||
FUJIWARA Katsunori
|
r22286 | orphans.discard(f) | ||
r48918 | if repo.dirstate.get_entry(f).removed: | |||
FUJIWARA Katsunori
|
r22285 | repo.wvfs.unlinkpath(f, ignoremissing=True) | ||
elif f in pctx: | ||||
fctx = pctx[f] | ||||
repo.wwrite(f, fctx.data(), fctx.flags()) | ||||
else: | ||||
# content of standin is not so important in 'a', | ||||
# 'm' or 'n' (coming from the 2nd parent) cases | ||||
Augie Fackler
|
r43347 | lfutil.writestandin(repo, f, b'', False) | ||
FUJIWARA Katsunori
|
r22286 | for standin in orphans: | ||
repo.wvfs.unlinkpath(standin, ignoremissing=True) | ||||
FUJIWARA Katsunori
|
r22094 | |||
various
|
r15168 | return result | ||
Na'Tosha Bard
|
r15383 | |||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @eh.wrapcommand(b'transplant', extension=b'transplant') | ||
Na'Tosha Bard
|
r16247 | def overridetransplant(orig, ui, repo, *revs, **opts): | ||
Augie Fackler
|
r43906 | resuming = opts.get('continue') | ||
FUJIWARA Katsunori
|
r23274 | repo._lfcommithooks.append(lfutil.automatedcommithook(resuming)) | ||
FUJIWARA Katsunori
|
r23275 | repo._lfstatuswriters.append(lambda *msg, **opts: None) | ||
Na'Tosha Bard
|
r15982 | try: | ||
result = orig(ui, repo, *revs, **opts) | ||||
finally: | ||||
FUJIWARA Katsunori
|
r23275 | repo._lfstatuswriters.pop() | ||
FUJIWARA Katsunori
|
r23274 | repo._lfcommithooks.pop() | ||
Na'Tosha Bard
|
r15383 | return result | ||
Na'Tosha Bard
|
r16439 | |||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @eh.wrapcommand(b'cat') | ||
Na'Tosha Bard
|
r16439 | def overridecat(orig, ui, repo, file1, *pats, **opts): | ||
Pulkit Goyal
|
r35349 | opts = pycompat.byteskwargs(opts) | ||
Martin von Zweigbergk
|
r48930 | ctx = logcmdutil.revsingle(repo, opts.get(b'rev')) | ||
Mads Kiilerich
|
r18491 | err = 1 | ||
notbad = set() | ||||
m = scmutil.match(ctx, (file1,) + pats, opts) | ||||
origmatchfn = m.matchfn | ||||
Augie Fackler
|
r43346 | |||
Mads Kiilerich
|
r18491 | def lfmatchfn(f): | ||
Mads Kiilerich
|
r21087 | if origmatchfn(f): | ||
return True | ||||
Mads Kiilerich
|
r18491 | lf = lfutil.splitstandin(f) | ||
if lf is None: | ||||
Mads Kiilerich
|
r21087 | return False | ||
Mads Kiilerich
|
r18491 | notbad.add(lf) | ||
return origmatchfn(lf) | ||||
Augie Fackler
|
r43346 | |||
Mads Kiilerich
|
r18491 | m.matchfn = lfmatchfn | ||
Mads Kiilerich
|
r18974 | origbadfn = m.bad | ||
Augie Fackler
|
r43346 | |||
Mads Kiilerich
|
r18974 | def lfbadfn(f, msg): | ||
if not f in notbad: | ||||
Mads Kiilerich
|
r21086 | origbadfn(f, msg) | ||
Augie Fackler
|
r43346 | |||
Mads Kiilerich
|
r18974 | m.bad = lfbadfn | ||
Drew Gottlieb
|
r24670 | |||
origvisitdirfn = m.visitdir | ||||
Augie Fackler
|
r43346 | |||
Drew Gottlieb
|
r24670 | def lfvisitdirfn(dir): | ||
if dir == lfutil.shortname: | ||||
return True | ||||
ret = origvisitdirfn(dir) | ||||
if ret: | ||||
return ret | ||||
lf = lfutil.splitstandin(dir) | ||||
if lf is None: | ||||
return False | ||||
return origvisitdirfn(lf) | ||||
Augie Fackler
|
r43346 | |||
Drew Gottlieb
|
r24670 | m.visitdir = lfvisitdirfn | ||
Mads Kiilerich
|
r18491 | for f in ctx.walk(m): | ||
Augie Fackler
|
r43347 | with cmdutil.makefileobj(ctx, opts.get(b'output'), pathname=f) as fp: | ||
Mads Kiilerich
|
r30142 | lf = lfutil.splitstandin(f) | ||
if lf is None or origmatchfn(f): | ||||
# duplicating unreachable code from commands.cat | ||||
data = ctx[f].data() | ||||
Augie Fackler
|
r43347 | if opts.get(b'decode'): | ||
Mads Kiilerich
|
r30142 | data = repo.wwritedata(f, data) | ||
fp.write(data) | ||||
else: | ||||
FUJIWARA Katsunori
|
r31735 | hash = lfutil.readasstandin(ctx[f]) | ||
Mads Kiilerich
|
r30142 | if not lfutil.inusercache(repo.ui, hash): | ||
store = storefactory.openstore(repo) | ||||
success, missing = store.get([(lf, hash)]) | ||||
if len(success) != 1: | ||||
raise error.Abort( | ||||
Augie Fackler
|
r43346 | _( | ||
Augie Fackler
|
r43347 | b'largefile %s is not in cache and could not be ' | ||
b'downloaded' | ||||
Augie Fackler
|
r43346 | ) | ||
% lf | ||||
) | ||||
Mads Kiilerich
|
r30142 | path = lfutil.usercachepath(repo.ui, hash) | ||
Augie Fackler
|
r43347 | with open(path, b"rb") as fpin: | ||
Mads Kiilerich
|
r30181 | for chunk in util.filechunkiter(fpin): | ||
Mads Kiilerich
|
r30142 | fp.write(chunk) | ||
Mads Kiilerich
|
r18974 | err = 0 | ||
Mads Kiilerich
|
r18491 | return err | ||
Matt Harbison
|
r17878 | |||
Augie Fackler
|
r43346 | |||
Martin von Zweigbergk
|
r46134 | @eh.wrapfunction(merge, b'_update') | ||
Augie Fackler
|
r43346 | def mergeupdate(orig, repo, node, branchmerge, force, *args, **kwargs): | ||
Augie Fackler
|
r43906 | matcher = kwargs.get('matcher', None) | ||
Augie Fackler
|
r27344 | # note if this is a partial update | ||
partial = matcher and not matcher.always() | ||||
Bryan O'Sullivan
|
r27826 | with repo.wlock(): | ||
FUJIWARA Katsunori
|
r22288 | # branch | | | | ||
# merge | force | partial | action | ||||
# -------+-------+---------+-------------- | ||||
# x | x | x | linear-merge | ||||
# o | x | x | branch-merge | ||||
# x | o | x | overwrite (as clean update) | ||||
# o | o | x | force-branch-merge (*1) | ||||
# x | x | o | (*) | ||||
# o | x | o | (*) | ||||
# x | o | o | overwrite (as revert) | ||||
# o | o | o | (*) | ||||
# | ||||
# (*) don't care | ||||
# (*1) deprecated, but used internally (e.g: "rebase --collapse") | ||||
Mads Kiilerich
|
r24787 | lfdirstate = lfutil.openlfdirstate(repo.ui, repo) | ||
r49213 | unsure, s, mtime_boundary = lfdirstate.status( | |||
Augie Fackler
|
r43346 | matchmod.always(), | ||
subrepos=[], | ||||
ignored=False, | ||||
clean=True, | ||||
unknown=False, | ||||
) | ||||
Mads Kiilerich
|
r30190 | oldclean = set(s.clean) | ||
Augie Fackler
|
r43347 | pctx = repo[b'.'] | ||
FUJIWARA Katsunori
|
r31653 | dctx = repo[node] | ||
Mads Kiilerich
|
r24787 | for lfile in unsure + s.modified: | ||
lfileabs = repo.wvfs.join(lfile) | ||||
liscju
|
r28715 | if not repo.wvfs.exists(lfileabs): | ||
Mads Kiilerich
|
r24787 | continue | ||
FUJIWARA Katsunori
|
r31617 | lfhash = lfutil.hashfile(lfileabs) | ||
Mads Kiilerich
|
r24787 | standin = lfutil.standin(lfile) | ||
Augie Fackler
|
r43346 | lfutil.writestandin( | ||
repo, standin, lfhash, lfutil.getexecutable(lfileabs) | ||||
) | ||||
if standin in pctx and lfhash == lfutil.readasstandin( | ||||
pctx[standin] | ||||
): | ||||
Mads Kiilerich
|
r30190 | oldclean.add(lfile) | ||
Mads Kiilerich
|
r24787 | for lfile in s.added: | ||
FUJIWARA Katsunori
|
r31653 | fstandin = lfutil.standin(lfile) | ||
if fstandin not in dctx: | ||||
# in this case, content of standin file is meaningless | ||||
# (in dctx, lfile is unknown, or normal file) | ||||
continue | ||||
FUJIWARA Katsunori
|
r31659 | lfutil.updatestandin(repo, lfile, fstandin) | ||
Mads Kiilerich
|
r30190 | # mark all clean largefiles as dirty, just in case the update gets | ||
# interrupted before largefiles and lfdirstate are synchronized | ||||
for lfile in oldclean: | ||||
r48521 | lfdirstate.set_possibly_dirty(lfile) | |||
Pulkit Goyal
|
r48982 | lfdirstate.write(repo.currenttransaction()) | ||
FUJIWARA Katsunori
|
r22288 | |||
Mads Kiilerich
|
r24787 | oldstandins = lfutil.getstandinsstate(repo) | ||
Martin von Zweigbergk
|
r46118 | wc = kwargs.get('wc') | ||
if wc and wc.isinmemory(): | ||||
# largefiles is not a good candidate for in-memory merge (large | ||||
# files, custom dirstate, matcher usage). | ||||
raise error.ProgrammingError( | ||||
b'largefiles is not compatible with in-memory merge' | ||||
) | ||||
r48502 | with lfdirstate.parentchange(): | |||
result = orig(repo, node, branchmerge, force, *args, **kwargs) | ||||
FUJIWARA Katsunori
|
r22288 | |||
r48502 | newstandins = lfutil.getstandinsstate(repo) | |||
filelist = lfutil.getlfilestoupdate(oldstandins, newstandins) | ||||
Mads Kiilerich
|
r30190 | |||
r48502 | # to avoid leaving all largefiles as dirty and thus rehash them, mark | |||
# all the ones that didn't change as clean | ||||
for lfile in oldclean.difference(filelist): | ||||
r48503 | lfdirstate.update_file(lfile, p1_tracked=True, wc_tracked=True) | |||
Pulkit Goyal
|
r48982 | lfdirstate.write(repo.currenttransaction()) | ||
Mads Kiilerich
|
r30190 | |||
r48502 | if branchmerge or force or partial: | |||
filelist.extend(s.deleted + s.removed) | ||||
FUJIWARA Katsunori
|
r22288 | |||
r48502 | lfcommands.updatelfiles( | |||
repo.ui, repo, filelist=filelist, normallookup=partial | ||||
) | ||||
FUJIWARA Katsunori
|
r22288 | |||
return result | ||||
FUJIWARA Katsunori
|
r22289 | |||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @eh.wrapfunction(scmutil, b'marktouched') | ||
FUJIWARA Katsunori
|
r22289 | def scmutilmarktouched(orig, repo, files, *args, **kwargs): | ||
result = orig(repo, files, *args, **kwargs) | ||||
FUJIWARA Katsunori
|
r31613 | filelist = [] | ||
for f in files: | ||||
lf = lfutil.splitstandin(f) | ||||
if lf is not None: | ||||
filelist.append(lf) | ||||
FUJIWARA Katsunori
|
r22289 | if filelist: | ||
Augie Fackler
|
r43346 | lfcommands.updatelfiles( | ||
repo.ui, | ||||
repo, | ||||
filelist=filelist, | ||||
printmessage=False, | ||||
normallookup=True, | ||||
) | ||||
FUJIWARA Katsunori
|
r22289 | |||
return result | ||||
Boris Feld
|
r35304 | |||
Augie Fackler
|
r43346 | |||
r46662 | @eh.wrapfunction(upgrade_actions, b'preservedrequirements') | |||
@eh.wrapfunction(upgrade_actions, b'supporteddestrequirements') | ||||
Boris Feld
|
r35304 | def upgraderequirements(orig, repo): | ||
reqs = orig(repo) | ||||
Augie Fackler
|
r43347 | if b'largefiles' in repo.requirements: | ||
reqs.add(b'largefiles') | ||||
Boris Feld
|
r35304 | return reqs | ||
Boris Feld
|
r35580 | |||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | _lfscheme = b'largefile://' | ||
Matt Harbison
|
r41092 | |||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | @eh.wrapfunction(urlmod, b'open') | ||
Jordi Gutiérrez Hermoso
|
r47202 | def openlargefile(orig, ui, url_, data=None, **kwargs): | ||
Boris Feld
|
r35580 | if url_.startswith(_lfscheme): | ||
if data: | ||||
Augie Fackler
|
r43347 | msg = b"cannot use data on a 'largefile://' url" | ||
Boris Feld
|
r35580 | raise error.ProgrammingError(msg) | ||
Augie Fackler
|
r43346 | lfid = url_[len(_lfscheme) :] | ||
Boris Feld
|
r35580 | return storefactory.getlfile(ui, lfid) | ||
else: | ||||
Jordi Gutiérrez Hermoso
|
r47202 | return orig(ui, url_, data=data, **kwargs) | ||