overrides.py
1355 lines
| 51.3 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 os | ||||
import copy | ||||
FUJIWARA Katsunori
|
r23183 | from mercurial import hg, util, cmdutil, scmutil, match as match_, \ | ||
FUJIWARA Katsunori
|
r22285 | archival, pathutil, revset | ||
various
|
r15168 | from mercurial.i18n import _ | ||
from mercurial.node import hex | ||||
import lfutil | ||||
import lfcommands | ||||
Mads Kiilerich
|
r18974 | import basestore | ||
various
|
r15168 | |||
Na'Tosha Bard
|
r15792 | # -- Utility functions: commonly/repeatedly needed functionality --------------- | ||
Matt Harbison
|
r23617 | def composelargefilematcher(match, manifest): | ||
'''create a matcher that matches only the largefiles in the original | ||||
matcher''' | ||||
m = copy.copy(match) | ||||
lfile = lambda f: lfutil.standin(f) in manifest | ||||
m._files = filter(lfile, m._files) | ||||
m._fmap = set(m._files) | ||||
m._always = False | ||||
origmatchfn = m.matchfn | ||||
m.matchfn = lambda f: lfile(f) and origmatchfn(f) | ||||
return m | ||||
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) | ||
notlfile = lambda f: not (lfutil.isstandin(f) or lfutil.standin(f) in | ||||
Matt Harbison
|
r23769 | manifest or f in excluded) | ||
Matt Harbison
|
r23428 | m._files = filter(notlfile, m._files) | ||
m._fmap = set(m._files) | ||||
m._always = False | ||||
origmatchfn = m.matchfn | ||||
m.matchfn = lambda f: notlfile(f) and origmatchfn(f) | ||||
return m | ||||
various
|
r15168 | def installnormalfilesmatchfn(manifest): | ||
Mads Kiilerich
|
r21090 | '''installmatchfn with a matchfn that ignores all largefiles''' | ||
Na'Tosha Bard
|
r16247 | def overridematch(ctx, pats=[], opts={}, globbed=False, | ||
various
|
r15168 | default='relpath'): | ||
Greg Ward
|
r15306 | match = oldmatch(ctx, pats, opts, globbed, default) | ||
Matt Harbison
|
r23428 | return composenormalfilematcher(match, manifest) | ||
Na'Tosha Bard
|
r16247 | oldmatch = installmatchfn(overridematch) | ||
various
|
r15168 | |||
def installmatchfn(f): | ||||
Mads Kiilerich
|
r21090 | '''monkey patch the scmutil module with a custom match function. | ||
Warning: it is monkey patching the _module_ on runtime! Not thread safe!''' | ||||
Na'Tosha Bard
|
r15224 | oldmatch = scmutil.match | ||
various
|
r15168 | setattr(f, 'oldmatch', oldmatch) | ||
Na'Tosha Bard
|
r15224 | scmutil.match = f | ||
various
|
r15168 | return oldmatch | ||
def restorematchfn(): | ||||
Mads Kiilerich
|
r21090 | '''restores scmutil.match to what it was before installmatchfn | ||
various
|
r15168 | was called. no-op if scmutil.match is its original function. | ||
Mads Kiilerich
|
r21090 | Note that n calls to installmatchfn will require n calls to | ||
Mads Kiilerich
|
r23543 | restore the original matchfn.''' | ||
Mads Kiilerich
|
r21092 | scmutil.match = getattr(scmutil.match, 'oldmatch') | ||
various
|
r15168 | |||
Lucas Moscovicz
|
r21110 | def installmatchandpatsfn(f): | ||
oldmatchandpats = scmutil.matchandpats | ||||
setattr(f, 'oldmatchandpats', oldmatchandpats) | ||||
scmutil.matchandpats = f | ||||
return oldmatchandpats | ||||
def restorematchandpatsfn(): | ||||
'''restores scmutil.matchandpats to what it was before | ||||
Mads Kiilerich
|
r23139 | installmatchandpatsfn was called. No-op if scmutil.matchandpats | ||
Lucas Moscovicz
|
r21110 | is its original function. | ||
Mads Kiilerich
|
r23139 | Note that n calls to installmatchandpatsfn will require n calls | ||
Mads Kiilerich
|
r23543 | to restore the original matchfn.''' | ||
Lucas Moscovicz
|
r21110 | scmutil.matchandpats = getattr(scmutil.matchandpats, 'oldmatchandpats', | ||
scmutil.matchandpats) | ||||
Matt Harbison
|
r23767 | def addlargefiles(ui, repo, isaddremove, matcher, **opts): | ||
Matt Harbison
|
r23884 | large = opts.get('large') | ||
Greg Ward
|
r15227 | lfsize = lfutil.getminsize( | ||
Matt Harbison
|
r23884 | ui, lfutil.islfilesrepo(repo), opts.get('lfsize')) | ||
various
|
r15168 | |||
lfmatcher = None | ||||
Michal Sznajder
|
r15739 | if lfutil.islfilesrepo(repo): | ||
Greg Ward
|
r15229 | lfpats = ui.configlist(lfutil.longname, 'patterns', default=[]) | ||
various
|
r15168 | if lfpats: | ||
lfmatcher = match_.match(repo.root, '', list(lfpats)) | ||||
lfnames = [] | ||||
Matt Harbison
|
r23533 | m = copy.copy(matcher) | ||
various
|
r15168 | m.bad = lambda x, y: None | ||
wctx = repo[None] | ||||
for f in repo.walk(m): | ||||
exact = m.exact(f) | ||||
lfile = lfutil.standin(f) in wctx | ||||
nfile = f in wctx | ||||
exists = lfile or nfile | ||||
Matt Harbison
|
r23767 | # addremove in core gets fancy with the name, add doesn't | ||
if isaddremove: | ||||
name = m.uipath(f) | ||||
else: | ||||
name = m.rel(f) | ||||
various
|
r15168 | # 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: | ||||
Matt Harbison
|
r23767 | ui.warn(_('%s already a largefile\n') % name) | ||
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 | ||
Greg Ward
|
r15255 | abovemin = (lfsize and | ||
Matt Harbison
|
r23733 | 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: | ||||
Matt Harbison
|
r23767 | ui.status(_('adding %s as a largefile\n') % name) | ||
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. | ||||
various
|
r15168 | wlock = repo.wlock() | ||
try: | ||||
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) | ||||
lfutil.writestandin(repo, standinname, hash='', | ||||
executable=lfutil.getexecutable(repo.wjoin(f))) | ||||
standins.append(standinname) | ||||
if lfdirstate[f] == 'r': | ||||
lfdirstate.normallookup(f) | ||||
else: | ||||
lfdirstate.add(f) | ||||
lfdirstate.write() | ||||
Greg Ward
|
r15255 | bad += [lfutil.splitstandin(f) | ||
Mads Kiilerich
|
r18154 | for f in repo[None].add(standins) | ||
Greg Ward
|
r15255 | if f in m.files()] | ||
Matt Harbison
|
r23768 | |||
added = [f for f in lfnames if f not in bad] | ||||
various
|
r15168 | finally: | ||
wlock.release() | ||||
Matt Harbison
|
r23768 | return added, bad | ||
various
|
r15168 | |||
Matt Harbison
|
r23741 | def removelargefiles(ui, repo, isaddremove, matcher, **opts): | ||
Na'Tosha Bard
|
r15786 | after = opts.get('after') | ||
Matt Harbison
|
r23741 | m = composelargefilematcher(matcher, repo[None].manifest()) | ||
various
|
r15168 | try: | ||
repo.lfstatus = True | ||||
Matt Harbison
|
r23741 | s = repo.status(match=m, clean=not isaddremove) | ||
various
|
r15168 | finally: | ||
repo.lfstatus = False | ||||
Na'Tosha Bard
|
r15792 | manifest = repo[None].manifest() | ||
Greg Ward
|
r15255 | modified, added, deleted, clean = [[f for f in list | ||
if lfutil.standin(f) in manifest] | ||||
Martin von Zweigbergk
|
r22919 | 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: | ||
Mads Kiilerich
|
r18066 | ui.warn(msg % m.rel(f)) | ||
Matt Harbison
|
r17576 | return int(len(files) > 0) | ||
result = 0 | ||||
various
|
r15168 | |||
Na'Tosha Bard
|
r15786 | if after: | ||
Martin von Zweigbergk
|
r22630 | remove = deleted | ||
Mads Kiilerich
|
r18066 | result = warn(modified + added + clean, | ||
_('not removing %s: file still exists\n')) | ||||
various
|
r15168 | else: | ||
Martin von Zweigbergk
|
r22630 | remove = deleted + clean | ||
Mads Kiilerich
|
r18066 | result = warn(modified, _('not removing %s: file is modified (use -f' | ||
' to force removal)\n')) | ||||
result = warn(added, _('not removing %s: file has been marked for add' | ||||
' (use forget to undo)\n')) 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. | ||
various
|
r15168 | wlock = repo.wlock() | ||
try: | ||||
lfdirstate = lfutil.openlfdirstate(ui, repo) | ||||
Matt Harbison
|
r23658 | for f in sorted(remove): | ||
Matt Harbison
|
r23766 | if ui.verbose or not m.exact(f): | ||
# addremove in core gets fancy with the name, remove doesn't | ||||
if isaddremove: | ||||
name = m.uipath(f) | ||||
else: | ||||
name = m.rel(f) | ||||
ui.status(_('removing %s\n') % name) | ||||
Matt Harbison
|
r23592 | |||
if not opts.get('dry_run'): | ||||
if not after: | ||||
util.unlinkpath(repo.wjoin(f), ignoremissing=True) | ||||
if opts.get('dry_run'): | ||||
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: | ||
util.unlinkpath(repo.wjoin(f), ignoremissing=True) | ||||
repo[None].forget(remove) | ||||
Matt Harbison
|
r23721 | |||
for f in remove: | ||||
lfutil.synclfdirstate(repo, lfdirstate, lfutil.splitstandin(f), | ||||
False) | ||||
lfdirstate.write() | ||||
various
|
r15168 | finally: | ||
wlock.release() | ||||
Matt Harbison
|
r17576 | return result | ||
Martin Geisler
|
r16449 | # For overriding mercurial.hgweb.webcommands so that largefiles will | ||
# appear at their right place in the manifests. | ||||
def decodepath(orig, path): | ||||
return lfutil.splitstandin(path) or path | ||||
Na'Tosha Bard
|
r15792 | # -- Wrappers: modify existing commands -------------------------------- | ||
Na'Tosha Bard
|
r16247 | def overrideadd(orig, ui, repo, *pats, **opts): | ||
Matt Harbison
|
r23887 | if opts.get('normal') and opts.get('large'): | ||
raise util.Abort(_('--normal cannot be used with --large')) | ||||
Matt Harbison
|
r23886 | return orig(ui, repo, *pats, **opts) | ||
def cmdutiladd(orig, ui, repo, matcher, prefix, explicitonly, **opts): | ||||
# The --normal flag short circuits this override | ||||
if opts.get('normal'): | ||||
return orig(ui, repo, matcher, prefix, explicitonly, **opts) | ||||
Na'Tosha Bard
|
r15792 | |||
Matt Harbison
|
r23886 | ladded, lbad = addlargefiles(ui, repo, False, matcher, **opts) | ||
normalmatcher = composenormalfilematcher(matcher, repo[None].manifest(), | ||||
ladded) | ||||
bad = orig(ui, repo, normalmatcher, prefix, explicitonly, **opts) | ||||
bad.extend(f for f in lbad) | ||||
return bad | ||||
Na'Tosha Bard
|
r15792 | |||
Matt Harbison
|
r23782 | def cmdutilremove(orig, ui, repo, matcher, prefix, after, force, subrepos): | ||
normalmatcher = composenormalfilematcher(matcher, repo[None].manifest()) | ||||
result = orig(ui, repo, normalmatcher, prefix, after, force, subrepos) | ||||
return removelargefiles(ui, repo, False, matcher, after=after, | ||||
force=force) or result | ||||
Na'Tosha Bard
|
r15792 | |||
Matt Harbison
|
r16515 | def overridestatusfn(orig, repo, rev2, **opts): | ||
try: | ||||
repo._repo.lfstatus = True | ||||
return orig(repo, rev2, **opts) | ||||
finally: | ||||
repo._repo.lfstatus = False | ||||
Na'Tosha Bard
|
r16247 | def overridestatus(orig, ui, repo, *pats, **opts): | ||
various
|
r15168 | try: | ||
repo.lfstatus = True | ||||
return orig(ui, repo, *pats, **opts) | ||||
finally: | ||||
repo.lfstatus = False | ||||
Matt Harbison
|
r16516 | def overridedirty(orig, repo, ignoreupdate=False): | ||
try: | ||||
repo._repo.lfstatus = True | ||||
return orig(repo, ignoreupdate) | ||||
finally: | ||||
repo._repo.lfstatus = False | ||||
Na'Tosha Bard
|
r16247 | def overridelog(orig, ui, repo, *pats, **opts): | ||
Lucas Moscovicz
|
r21110 | def overridematchandpats(ctx, pats=[], opts={}, globbed=False, | ||
Mads Kiilerich
|
r18341 | default='relpath'): | ||
"""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. | ||||
""" | ||||
Lucas Moscovicz
|
r21110 | matchandpats = oldmatchandpats(ctx, pats, opts, globbed, default) | ||
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) | ||
# TODO: handling of patterns in both cases below | ||||
if m._cwd: | ||||
Mads Kiilerich
|
r21209 | if os.path.isabs(m._cwd): | ||
# TODO: handle largefile magic when invoked from other cwd | ||||
return matchandpats | ||||
Lucas Moscovicz
|
r21110 | back = (m._cwd.count('/') + 1) * '../' | ||
pats.update(back + lfutil.standin(m._cwd + '/' + f) for f in p) | ||||
else: | ||||
pats.update(lfutil.standin(f) for f in p) | ||||
Wei, Elson
|
r19472 | for i in range(0, len(m._files)): | ||
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. | ||||
Wei, Elson
|
r19472 | if standin in repo[ctx.node()]: | ||
m._files[i] = standin | ||||
Matt Harbison
|
r23976 | elif m._files[i] not in repo[ctx.node()] \ | ||
and repo.wvfs.isdir(standin): | ||||
Mads Kiilerich
|
r21275 | m._files.append(standin) | ||
Lucas Moscovicz
|
r21110 | pats.add(standin) | ||
Mads Kiilerich
|
r18341 | m._fmap = set(m._files) | ||
Siddharth Agarwal
|
r18813 | m._always = False | ||
Mads Kiilerich
|
r18341 | origmatchfn = m.matchfn | ||
def lfmatchfn(f): | ||||
lf = lfutil.splitstandin(f) | ||||
if lf is not None and origmatchfn(lf): | ||||
return True | ||||
r = origmatchfn(f) | ||||
return r | ||||
m.matchfn = lfmatchfn | ||||
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). | ||||
def overridemakelogfilematcher(repo, pats, opts): | ||||
pctx = repo[None] | ||||
match, pats = oldmatchandpats(pctx, pats, opts) | ||||
return lambda rev: match | ||||
Lucas Moscovicz
|
r21110 | oldmatchandpats = installmatchandpatsfn(overridematchandpats) | ||
Siddharth Agarwal
|
r22169 | oldmakelogfilematcher = cmdutil._makenofollowlogfilematcher | ||
setattr(cmdutil, '_makenofollowlogfilematcher', overridemakelogfilematcher) | ||||
various
|
r15168 | try: | ||
Matt Harbison
|
r17577 | return orig(ui, repo, *pats, **opts) | ||
various
|
r15168 | finally: | ||
Lucas Moscovicz
|
r21110 | restorematchandpatsfn() | ||
Siddharth Agarwal
|
r22169 | setattr(cmdutil, '_makenofollowlogfilematcher', oldmakelogfilematcher) | ||
various
|
r15168 | |||
Na'Tosha Bard
|
r16247 | def overrideverify(orig, ui, repo, *pats, **opts): | ||
various
|
r15168 | large = opts.pop('large', False) | ||
all = opts.pop('lfa', False) | ||||
contents = opts.pop('lfc', False) | ||||
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 | ||||
Mads Kiilerich
|
r18144 | def overridedebugstate(orig, ui, repo, *pats, **opts): | ||
large = opts.pop('large', False) | ||||
if large: | ||||
Mads Kiilerich
|
r21088 | class fakerepo(object): | ||
dirstate = lfutil.openlfdirstate(ui, repo) | ||||
orig(ui, fakerepo, *pats, **opts) | ||||
Mads Kiilerich
|
r18144 | else: | ||
orig(ui, repo, *pats, **opts) | ||||
various
|
r15168 | # Override needs to refresh standins so that update's normal merge | ||
# will go through properly. Then the other update hook (overriding repo.update) | ||||
Mads Kiilerich
|
r17424 | # will get the new files. Filemerge is also overridden so that the merge | ||
various
|
r15168 | # will merge standins correctly. | ||
Na'Tosha Bard
|
r16247 | def overrideupdate(orig, ui, repo, *pats, **opts): | ||
Greg Ward
|
r15252 | # Need to lock between the standins getting updated and their | ||
# largefiles getting updated | ||||
various
|
r15168 | wlock = repo.wlock() | ||
try: | ||||
Mads Kiilerich
|
r23040 | if opts['check']: | ||
lfdirstate = lfutil.openlfdirstate(ui, repo) | ||||
unsure, s = lfdirstate.status( | ||||
match_.always(repo.root, repo.getcwd()), | ||||
[], False, False, False) | ||||
Mads Kiilerich
|
r21089 | |||
Martin von Zweigbergk
|
r22919 | mod = len(s.modified) > 0 | ||
various
|
r15168 | for lfile in unsure: | ||
standin = lfutil.standin(lfile) | ||||
if repo['.'][standin].data().strip() != \ | ||||
lfutil.hashfile(repo.wjoin(lfile)): | ||||
mod = True | ||||
else: | ||||
lfdirstate.normal(lfile) | ||||
lfdirstate.write() | ||||
if mod: | ||||
Siddharth Agarwal
|
r19805 | raise util.Abort(_('uncommitted changes')) | ||
Mads Kiilerich
|
r21089 | return orig(ui, repo, *pats, **opts) | ||
various
|
r15168 | finally: | ||
wlock.release() | ||||
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. | ||
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 | |||
# 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. | ||||
Mads Kiilerich
|
r21081 | def overridecalculateupdates(origfn, repo, p1, p2, pas, branchmerge, force, | ||
Mads Kiilerich
|
r21080 | partial, acceptremote, followcopies): | ||
Siddharth Agarwal
|
r18605 | overwrite = force and not branchmerge | ||
Martin von Zweigbergk
|
r23526 | actions, diverge, renamedelete = origfn( | ||
repo, p1, p2, pas, branchmerge, force, partial, acceptremote, | ||||
followcopies) | ||||
Mads Kiilerich
|
r19952 | |||
if overwrite: | ||||
Martin von Zweigbergk
|
r23526 | return actions, diverge, renamedelete | ||
Martin Geisler
|
r15663 | |||
Martin von Zweigbergk
|
r23529 | # Convert to dictionary with filename as key and action as value. | ||
Martin von Zweigbergk
|
r23530 | lfiles = set() | ||
Martin von Zweigbergk
|
r23642 | for f in actions: | ||
Mads Kiilerich
|
r20148 | splitstandin = f and lfutil.splitstandin(f) | ||
Martin von Zweigbergk
|
r23641 | if splitstandin in p1: | ||
lfiles.add(splitstandin) | ||||
elif lfutil.standin(f) in p1: | ||||
lfiles.add(f) | ||||
Martin Geisler
|
r15663 | |||
Martin von Zweigbergk
|
r23530 | for lfile in lfiles: | ||
standin = lfutil.standin(lfile) | ||||
Martin von Zweigbergk
|
r23642 | (lm, largs, lmsg) = actions.get(lfile, (None, None, None)) | ||
(sm, sargs, smsg) = actions.get(standin, (None, None, None)) | ||||
Martin von Zweigbergk
|
r23541 | if sm in ('g', 'dc') and lm != 'r': | ||
Martin Geisler
|
r15663 | # Case 1: normal file in the working copy, largefile in | ||
# the second parent | ||||
Martin von Zweigbergk
|
r23470 | usermsg = _('remote turned local normal file %s into a largefile\n' | ||
'use (l)argefile or keep (n)ormal file?' | ||||
'$$ &Largefile $$ &Normal file') % lfile | ||||
Martin von Zweigbergk
|
r23483 | if repo.ui.promptchoice(usermsg, 0) == 0: # pick remote largefile | ||
Martin von Zweigbergk
|
r23642 | actions[lfile] = ('r', None, 'replaced by standin') | ||
actions[standin] = ('g', sargs, 'replaces standin') | ||||
Mads Kiilerich
|
r23419 | else: # keep local normal file | ||
Martin von Zweigbergk
|
r23642 | actions[lfile] = ('k', None, 'replaces standin') | ||
Martin von Zweigbergk
|
r23493 | if branchmerge: | ||
Martin von Zweigbergk
|
r23642 | actions[standin] = ('k', None, 'replaced by non-standin') | ||
Martin von Zweigbergk
|
r23493 | else: | ||
Martin von Zweigbergk
|
r23642 | actions[standin] = ('r', None, 'replaced by non-standin') | ||
Martin von Zweigbergk
|
r23541 | elif lm in ('g', 'dc') and sm != 'r': | ||
Martin Geisler
|
r15663 | # Case 2: largefile in the working copy, normal file in | ||
# the second parent | ||||
Martin von Zweigbergk
|
r23470 | usermsg = _('remote turned local largefile %s into a normal file\n' | ||
Mads Kiilerich
|
r19967 | 'keep (l)argefile or use (n)ormal file?' | ||
Matt Mackall
|
r19226 | '$$ &Largefile $$ &Normal file') % lfile | ||
Martin von Zweigbergk
|
r23483 | if repo.ui.promptchoice(usermsg, 0) == 0: # keep local largefile | ||
FUJIWARA Katsunori
|
r22196 | if branchmerge: | ||
# largefile can be restored from standin safely | ||||
Martin von Zweigbergk
|
r23642 | actions[lfile] = ('k', None, 'replaced by standin') | ||
actions[standin] = ('k', None, 'replaces standin') | ||||
FUJIWARA Katsunori
|
r22196 | else: | ||
# "lfile" should be marked as "removed" without | ||||
# removal of itself | ||||
Martin von Zweigbergk
|
r23642 | actions[lfile] = ('lfmr', None, | ||
'forget non-standin largefile') | ||||
FUJIWARA Katsunori
|
r22196 | |||
# linear-merge should treat this largefile as 're-added' | ||||
Martin von Zweigbergk
|
r23642 | actions[standin] = ('a', None, 'keep standin') | ||
Mads Kiilerich
|
r23419 | else: # pick remote normal file | ||
Martin von Zweigbergk
|
r23642 | actions[lfile] = ('g', largs, 'replaces standin') | ||
actions[standin] = ('r', None, 'replaced by non-standin') | ||||
Martin Geisler
|
r15663 | |||
Martin von Zweigbergk
|
r23642 | return actions, diverge, renamedelete | ||
Martin Geisler
|
r15663 | |||
FUJIWARA Katsunori
|
r22196 | def mergerecordupdates(orig, repo, actions, branchmerge): | ||
if 'lfmr' in actions: | ||||
Mads Kiilerich
|
r23695 | lfdirstate = lfutil.openlfdirstate(repo.ui, repo) | ||
FUJIWARA Katsunori
|
r22196 | for lfile, args, msg in actions['lfmr']: | ||
Mads Kiilerich
|
r23695 | # this should be executed before 'orig', to execute 'remove' | ||
# before all other actions | ||||
FUJIWARA Katsunori
|
r22196 | repo.dirstate.remove(lfile) | ||
Mads Kiilerich
|
r23695 | # make sure lfile doesn't get synclfdirstate'd as normal | ||
lfdirstate.add(lfile) | ||||
lfdirstate.write() | ||||
FUJIWARA Katsunori
|
r22196 | |||
return orig(repo, actions, branchmerge) | ||||
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. | ||
Durham Goode
|
r21524 | def overridefilemerge(origfn, repo, mynode, orig, fcd, fco, fca, labels=None): | ||
various
|
r15168 | if not lfutil.isstandin(orig): | ||
Durham Goode
|
r21524 | return origfn(repo, mynode, orig, fcd, fco, fca, labels=labels) | ||
Mads Kiilerich
|
r20298 | |||
Mads Kiilerich
|
r20994 | ahash = fca.data().strip().lower() | ||
dhash = fcd.data().strip().lower() | ||||
ohash = fco.data().strip().lower() | ||||
if (ohash != ahash and | ||||
ohash != dhash and | ||||
(dhash == ahash or | ||||
repo.ui.promptchoice( | ||||
_('largefile %s has a merge conflict\nancestor was %s\n' | ||||
'keep (l)ocal %s or\ntake (o)ther %s?' | ||||
'$$ &Local $$ &Other') % | ||||
(lfutil.splitstandin(orig), ahash, dhash, ohash), | ||||
0) == 1)): | ||||
Mads Kiilerich
|
r20298 | repo.wwrite(fcd.path(), fco.data(), fco.flags()) | ||
return 0 | ||||
various
|
r15168 | |||
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. | ||||
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 | ||||
Mads Kiilerich
|
r21091 | installnormalfilesmatchfn(repo[None].manifest()) | ||
various
|
r15168 | try: | ||
Thomas Arendsen Hein
|
r15279 | try: | ||
result = orig(ui, repo, pats, opts, rename) | ||||
except util.Abort, e: | ||||
Matt Mackall
|
r17263 | if str(e) != _('no files to copy'): | ||
Thomas Arendsen Hein
|
r15279 | raise e | ||
else: | ||||
nonormalfiles = True | ||||
result = 0 | ||||
various
|
r15168 | finally: | ||
restorematchfn() | ||||
# 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) | ||||
return os.path.join(repo.wjoin(lfutil.standin(path))) | ||||
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: | ||
Thomas Arendsen Hein
|
r15279 | try: | ||
Na'Tosha Bard
|
r16248 | # 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. | ||||
Thomas Arendsen Hein
|
r15279 | wlock = repo.wlock() | ||
various
|
r15168 | |||
Thomas Arendsen Hein
|
r15279 | manifest = repo[None].manifest() | ||
Na'Tosha Bard
|
r16247 | def overridematch(ctx, pats=[], opts={}, globbed=False, | ||
Thomas Arendsen Hein
|
r15279 | default='relpath'): | ||
newpats = [] | ||||
# The patterns were previously mangled to add the standin | ||||
# directory; we need to remove that now | ||||
for pat in pats: | ||||
if match_.patkind(pat) is None and lfutil.shortname in pat: | ||||
newpats.append(pat.replace(lfutil.shortname, '')) | ||||
else: | ||||
newpats.append(pat) | ||||
Greg Ward
|
r15306 | match = oldmatch(ctx, newpats, opts, globbed, default) | ||
Thomas Arendsen Hein
|
r15279 | 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)] | ||||
m._fmap = set(m._files) | ||||
Na'Tosha Bard
|
r16247 | origmatchfn = m.matchfn | ||
Thomas Arendsen Hein
|
r15279 | m.matchfn = lambda f: (lfutil.isstandin(f) and | ||
FUJIWARA Katsunori
|
r16075 | (f in manifest) and | ||
Na'Tosha Bard
|
r16247 | origmatchfn(lfutil.splitstandin(f)) or | ||
Thomas Arendsen Hein
|
r15279 | None) | ||
return m | ||||
Na'Tosha Bard
|
r16247 | oldmatch = installmatchfn(overridematch) | ||
Thomas Arendsen Hein
|
r15279 | listpats = [] | ||
various
|
r15168 | for pat in pats: | ||
Thomas Arendsen Hein
|
r15279 | if match_.patkind(pat) is not None: | ||
listpats.append(pat) | ||||
various
|
r15168 | else: | ||
Thomas Arendsen Hein
|
r15279 | listpats.append(makestandin(pat)) | ||
various
|
r15168 | |||
Thomas Arendsen Hein
|
r15279 | try: | ||
origcopyfile = util.copyfile | ||||
copiedfiles = [] | ||||
Na'Tosha Bard
|
r16247 | def overridecopyfile(src, dest): | ||
Na'Tosha Bard
|
r15598 | if (lfutil.shortname in src and | ||
dest.startswith(repo.wjoin(lfutil.shortname))): | ||||
Thomas Arendsen Hein
|
r15279 | destlfile = dest.replace(lfutil.shortname, '') | ||
if not opts['force'] and os.path.exists(destlfile): | ||||
raise IOError('', | ||||
_('destination largefile already exists')) | ||||
copiedfiles.append((src, dest)) | ||||
origcopyfile(src, dest) | ||||
various
|
r15168 | |||
Na'Tosha Bard
|
r16247 | util.copyfile = overridecopyfile | ||
Thomas Arendsen Hein
|
r15279 | result += orig(ui, repo, listpats, opts, rename) | ||
finally: | ||||
util.copyfile = origcopyfile | ||||
various
|
r15168 | |||
Thomas Arendsen Hein
|
r15279 | lfdirstate = lfutil.openlfdirstate(ui, repo) | ||
for (src, dest) in copiedfiles: | ||||
Na'Tosha Bard
|
r15598 | if (lfutil.shortname in src and | ||
dest.startswith(repo.wjoin(lfutil.shortname))): | ||||
srclfile = src.replace(repo.wjoin(lfutil.standin('')), '') | ||||
destlfile = dest.replace(repo.wjoin(lfutil.standin('')), '') | ||||
Matt Harbison
|
r17245 | destlfiledir = os.path.dirname(repo.wjoin(destlfile)) or '.' | ||
Thomas Arendsen Hein
|
r15279 | if not os.path.isdir(destlfiledir): | ||
os.makedirs(destlfiledir) | ||||
if rename: | ||||
Na'Tosha Bard
|
r15598 | os.rename(repo.wjoin(srclfile), repo.wjoin(destlfile)) | ||
Matt Harbison
|
r21196 | |||
# The file is gone, but this deletes any empty parent | ||||
# directories as a side-effect. | ||||
util.unlinkpath(repo.wjoin(srclfile), True) | ||||
Na'Tosha Bard
|
r15598 | lfdirstate.remove(srclfile) | ||
Thomas Arendsen Hein
|
r15279 | else: | ||
Matt Harbison
|
r17245 | util.copyfile(repo.wjoin(srclfile), | ||
repo.wjoin(destlfile)) | ||||
Na'Tosha Bard
|
r15598 | lfdirstate.add(destlfile) | ||
Thomas Arendsen Hein
|
r15279 | lfdirstate.write() | ||
except util.Abort, e: | ||||
Matt Mackall
|
r17263 | if str(e) != _('no files to copy'): | ||
Thomas Arendsen Hein
|
r15279 | raise e | ||
else: | ||||
nolfiles = True | ||||
various
|
r15168 | finally: | ||
restorematchfn() | ||||
wlock.release() | ||||
if nolfiles and nonormalfiles: | ||||
raise util.Abort(_('no files to copy')) | ||||
return result | ||||
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. | ||
Na'Tosha Bard
|
r16247 | def overriderevert(orig, ui, repo, *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. | ||||
various
|
r15168 | wlock = repo.wlock() | ||
try: | ||||
lfdirstate = lfutil.openlfdirstate(ui, repo) | ||||
Mads Kiilerich
|
r23039 | s = lfutil.lfdirstatestatus(lfdirstate, repo) | ||
Mads Kiilerich
|
r18140 | lfdirstate.write() | ||
Martin von Zweigbergk
|
r22919 | for lfile in s.modified: | ||
various
|
r15168 | lfutil.updatestandin(repo, lfutil.standin(lfile)) | ||
Martin von Zweigbergk
|
r22919 | for lfile in s.deleted: | ||
Na'Tosha Bard
|
r16638 | if (os.path.exists(repo.wjoin(lfutil.standin(lfile)))): | ||
os.unlink(repo.wjoin(lfutil.standin(lfile))) | ||||
various
|
r15168 | |||
Mads Kiilerich
|
r21094 | oldstandins = lfutil.getstandinsstate(repo) | ||
Mads Kiilerich
|
r21095 | def overridematch(ctx, pats=[], opts={}, globbed=False, | ||
default='relpath'): | ||||
match = oldmatch(ctx, pats, opts, globbed, default) | ||||
m = copy.copy(match) | ||||
def tostandin(f): | ||||
if lfutil.standin(f) in ctx: | ||||
return lfutil.standin(f) | ||||
elif lfutil.standin(f) in repo[None]: | ||||
return None | ||||
return f | ||||
m._files = [tostandin(f) for f in m._files] | ||||
m._files = [f for f in m._files if f is not None] | ||||
m._fmap = set(m._files) | ||||
origmatchfn = m.matchfn | ||||
def matchfn(f): | ||||
if lfutil.isstandin(f): | ||||
return (origmatchfn(lfutil.splitstandin(f)) and | ||||
(f in repo[None] or f in ctx)) | ||||
return origmatchfn(f) | ||||
m.matchfn = matchfn | ||||
return m | ||||
oldmatch = installmatchfn(overridematch) | ||||
various
|
r15168 | try: | ||
orig(ui, repo, *pats, **opts) | ||||
finally: | ||||
restorematchfn() | ||||
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. | ||||
lfcommands.updatelfiles(ui, repo, filelist, printmessage=False, | ||||
normallookup=True) | ||||
Mads Kiilerich
|
r21094 | |||
various
|
r15168 | finally: | ||
wlock.release() | ||||
FUJIWARA Katsunori
|
r23183 | # after pulling changesets, we need to take some extra care to get | ||
# largefiles updated remotely | ||||
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: | ||
source = 'default' | ||||
repo.lfpullsource = source | ||||
FUJIWARA Katsunori
|
r23183 | result = orig(ui, repo, source, **opts) | ||
Mads Kiilerich
|
r18977 | revspostpull = len(repo) | ||
Mads Kiilerich
|
r18981 | lfrevs = opts.get('lfrev', []) | ||
Na'Tosha Bard
|
r16692 | if opts.get('all_largefiles'): | ||
Mads Kiilerich
|
r18981 | lfrevs.append('pulled()') | ||
Mads Kiilerich
|
r18978 | if lfrevs and revspostpull > revsprepull: | ||
numcached = 0 | ||||
Mads Kiilerich
|
r18979 | repo.firstpulled = revsprepull # for pulled() revset expression | ||
try: | ||||
for rev in scmutil.revrange(repo, lfrevs): | ||||
ui.note(_('pulling largefiles for revision %s\n') % rev) | ||||
(cached, missing) = lfcommands.cachelfiles(ui, repo, rev) | ||||
numcached += len(cached) | ||||
finally: | ||||
del repo.firstpulled | ||||
Mads Kiilerich
|
r18978 | ui.status(_("%d largefiles cached\n") % numcached) | ||
various
|
r15168 | return result | ||
Mads Kiilerich
|
r18979 | def pulledrevsetsymbol(repo, subset, x): | ||
"""``pulled()`` | ||||
Changesets that just has been pulled. | ||||
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: | ||||
raise util.Abort(_("pulled() only available in --lfrev")) | ||||
Lucas Moscovicz
|
r20442 | return revset.baseset([r for r in subset if r >= firstpulled]) | ||
Mads Kiilerich
|
r18979 | |||
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) | ||||
if opts.get('all_largefiles') and not hg.islocal(d): | ||||
Levi Bard
|
r16723 | raise util.Abort(_( | ||
FUJIWARA Katsunori
|
r21096 | '--all-largefiles is incompatible with non-local destination %s') % | ||
d) | ||||
Matt Harbison
|
r17601 | |||
return orig(ui, source, dest, **opts) | ||||
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
|
r24029 | # If largefiles is required for this repo, permanently enable it locally | ||
if 'largefiles' in repo.requirements: | ||||
fp = repo.vfs('hgrc', 'a', text=True) | ||||
try: | ||||
fp.write('\n[extensions]\nlargefiles=\n') | ||||
finally: | ||||
fp.close() | ||||
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. | ||||
if opts.get('all_largefiles'): | ||||
success, missing = lfcommands.downloadlfiles(ui, repo, None) | ||||
Matt Harbison
|
r17601 | |||
Matt Harbison
|
r17824 | if missing != 0: | ||
return None | ||||
Matt Harbison
|
r17601 | |||
return result | ||||
Na'Tosha Bard
|
r16644 | |||
Na'Tosha Bard
|
r16247 | def overriderebase(orig, ui, repo, **opts): | ||
FUJIWARA Katsunori
|
r23187 | resuming = opts.get('continue') | ||
repo._lfcommithooks.append(lfutil.automatedcommithook(resuming)) | ||||
FUJIWARA Katsunori
|
r23190 | repo._lfstatuswriters.append(lambda *msg, **opts: None) | ||
various
|
r15168 | try: | ||
Matt Harbison
|
r17578 | return orig(ui, repo, **opts) | ||
various
|
r15168 | finally: | ||
FUJIWARA Katsunori
|
r23190 | repo._lfstatuswriters.pop() | ||
FUJIWARA Katsunori
|
r23187 | repo._lfcommithooks.pop() | ||
various
|
r15168 | |||
Na'Tosha Bard
|
r16247 | def overridearchive(orig, repo, dest, node, kind, decode=True, matchfn=None, | ||
various
|
r15168 | prefix=None, mtime=None, subrepos=None): | ||
Greg Ward
|
r15254 | # No need to lock because we are only reading history and | ||
# largefile caches, neither of which are modified. | ||||
various
|
r15168 | lfcommands.cachelfiles(repo.ui, repo, node) | ||
if kind not in archival.archivers: | ||||
raise util.Abort(_("unknown archive type '%s'") % kind) | ||||
ctx = repo[node] | ||||
Na'Tosha Bard
|
r15224 | if kind == 'files': | ||
if prefix: | ||||
raise util.Abort( | ||||
_('cannot give prefix when archiving to files')) | ||||
else: | ||||
prefix = archival.tidyprefix(dest, kind, prefix) | ||||
various
|
r15168 | |||
Na'Tosha Bard
|
r15224 | def write(name, mode, islink, getdata): | ||
if matchfn and not matchfn(name): | ||||
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 | |||
if repo.ui.configbool("ui", "archivemeta", True): | ||||
def metadata(): | ||||
base = 'repo: %s\nnode: %s\nbranch: %s\n' % ( | ||||
hex(repo.changelog.node(0)), hex(node), ctx.branch()) | ||||
tags = ''.join('tag: %s\n' % t for t in ctx.tags() | ||||
if repo.tagtype(t) == 'global') | ||||
if not tags: | ||||
repo.ui.pushbuffer() | ||||
opts = {'template': '{latesttag}\n{latesttagdistance}', | ||||
'style': '', 'patch': None, 'git': None} | ||||
cmdutil.show_changeset(repo.ui, repo, opts).show(ctx) | ||||
ltags, dist = repo.ui.popbuffer().split('\n') | ||||
tags = ''.join('latesttag: %s\n' % t for t in ltags.split(':')) | ||||
tags += 'latesttagdistance: %s\n' % dist | ||||
return base + tags | ||||
write('.hg_archival.txt', 0644, False, metadata) | ||||
for f in ctx: | ||||
ff = ctx.flags(f) | ||||
getdata = ctx[f].data | ||||
if lfutil.isstandin(f): | ||||
path = lfutil.findfile(repo, getdata().strip()) | ||||
Na'Tosha Bard
|
r15914 | if path is None: | ||
raise util.Abort( | ||||
_('largefile %s not found in repo store or system cache') | ||||
% lfutil.splitstandin(f)) | ||||
various
|
r15168 | f = lfutil.splitstandin(f) | ||
def getdatafn(): | ||||
Mads Kiilerich
|
r15576 | fd = None | ||
various
|
r15168 | try: | ||
fd = open(path, 'rb') | ||||
return fd.read() | ||||
finally: | ||||
Mads Kiilerich
|
r15576 | if fd: | ||
fd.close() | ||||
various
|
r15168 | |||
getdata = getdatafn | ||||
write(f, 'x' in ff and 0755 or 0644, 'l' in ff, getdata) | ||||
if subrepos: | ||||
Mads Kiilerich
|
r18364 | for subpath in sorted(ctx.substate): | ||
various
|
r15168 | sub = ctx.sub(subpath) | ||
Matt Harbison
|
r17108 | submatch = match_.narrowmatcher(subpath, matchfn) | ||
Matt Harbison
|
r23575 | sub.archive(archiver, prefix, submatch) | ||
various
|
r15168 | |||
archiver.done() | ||||
Matt Harbison
|
r23575 | def hgsubrepoarchive(orig, repo, archiver, prefix, match=None): | ||
Matt Harbison
|
r17695 | repo._get(repo._state + ('hg',)) | ||
Matt Harbison
|
r16578 | rev = repo._state[1] | ||
ctx = repo._repo[rev] | ||||
Matt Harbison
|
r23575 | 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() | ||
archiver.addfile(prefix + repo._path + '/' + name, mode, islink, data) | ||||
for f in ctx: | ||||
ff = ctx.flags(f) | ||||
getdata = ctx[f].data | ||||
if lfutil.isstandin(f): | ||||
path = lfutil.findfile(repo._repo, getdata().strip()) | ||||
if path is None: | ||||
raise util.Abort( | ||||
_('largefile %s not found in repo store or system cache') | ||||
% lfutil.splitstandin(f)) | ||||
f = lfutil.splitstandin(f) | ||||
def getdatafn(): | ||||
fd = None | ||||
try: | ||||
fd = open(os.path.join(prefix, path), 'rb') | ||||
return fd.read() | ||||
finally: | ||||
if fd: | ||||
fd.close() | ||||
getdata = getdatafn | ||||
write(f, 'x' in ff and 0755 or 0644, 'l' in ff, getdata) | ||||
Mads Kiilerich
|
r18364 | for subpath in sorted(ctx.substate): | ||
Matt Harbison
|
r16578 | sub = ctx.sub(subpath) | ||
Matt Harbison
|
r17108 | submatch = match_.narrowmatcher(subpath, match) | ||
Matt Harbison
|
r23575 | sub.archive(archiver, os.path.join(prefix, repo._path) + '/', submatch) | ||
Matt Harbison
|
r16578 | |||
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. | ||
Na'Tosha Bard
|
r16247 | def overridebailifchanged(orig, repo): | ||
various
|
r15168 | orig(repo) | ||
repo.lfstatus = True | ||||
Martin von Zweigbergk
|
r22919 | s = repo.status() | ||
various
|
r15168 | repo.lfstatus = False | ||
Martin von Zweigbergk
|
r22919 | if s.modified or s.added or s.removed or s.deleted: | ||
Siddharth Agarwal
|
r19805 | raise util.Abort(_('uncommitted changes')) | ||
various
|
r15168 | |||
Matt Harbison
|
r23837 | def cmdutilforget(orig, ui, repo, match, prefix, explicitonly): | ||
normalmatcher = composenormalfilematcher(match, repo[None].manifest()) | ||||
bad, forgot = orig(ui, repo, normalmatcher, prefix, explicitonly) | ||||
m = composelargefilematcher(match, repo[None].manifest()) | ||||
various
|
r15168 | |||
try: | ||||
repo.lfstatus = True | ||||
s = repo.status(match=m, clean=True) | ||||
finally: | ||||
repo.lfstatus = False | ||||
Martin von Zweigbergk
|
r22919 | forget = sorted(s.modified + s.added + s.deleted + s.clean) | ||
various
|
r15168 | forget = [f for f in forget if lfutil.standin(f) in repo[None].manifest()] | ||
for f in forget: | ||||
if lfutil.standin(f) not in repo.dirstate and not \ | ||||
Matt Harbison
|
r23673 | repo.wvfs.isdir(lfutil.standin(f)): | ||
various
|
r15168 | ui.warn(_('not removing %s: file is already untracked\n') | ||
% m.rel(f)) | ||||
Matt Harbison
|
r23837 | bad.append(f) | ||
various
|
r15168 | |||
for f in forget: | ||||
if ui.verbose or not m.exact(f): | ||||
ui.status(_('removing %s\n') % m.rel(f)) | ||||
# Need to lock because standin files are deleted then removed from the | ||||
Mads Kiilerich
|
r17424 | # repository and we could race in-between. | ||
various
|
r15168 | wlock = repo.wlock() | ||
try: | ||||
lfdirstate = lfutil.openlfdirstate(ui, repo) | ||||
for f in forget: | ||||
if lfdirstate[f] == 'a': | ||||
lfdirstate.drop(f) | ||||
else: | ||||
lfdirstate.remove(f) | ||||
lfdirstate.write() | ||||
Mads Kiilerich
|
r18153 | standins = [lfutil.standin(f) for f in forget] | ||
for f in standins: | ||||
util.unlinkpath(repo.wjoin(f), ignoremissing=True) | ||||
Matt Harbison
|
r23837 | rejected = repo[None].forget(standins) | ||
various
|
r15168 | finally: | ||
wlock.release() | ||||
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 | |||
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() | ||
FUJIWARA Katsunori
|
r21882 | def dedup(fn, lfhash): | ||
k = (fn, lfhash) | ||||
if k not in knowns: | ||||
knowns.add(k) | ||||
FUJIWARA Katsunori
|
r21884 | lfhashes.add(lfhash) | ||
FUJIWARA Katsunori
|
r21882 | lfutil.getlfilestoupload(repo, missing, dedup) | ||
FUJIWARA Katsunori
|
r21884 | if lfhashes: | ||
lfexists = basestore._openstore(repo, other).exists(lfhashes) | ||||
for fn, lfhash in knowns: | ||||
if not lfexists[lfhash]: # lfhash doesn't exist on "other" | ||||
addfunc(fn, lfhash) | ||||
FUJIWARA Katsunori
|
r21882 | |||
FUJIWARA Katsunori
|
r21052 | def outgoinghook(ui, repo, other, opts, missing): | ||
various
|
r15168 | if opts.pop('large', None): | ||
FUJIWARA Katsunori
|
r21883 | lfhashes = set() | ||
if ui.debugflag: | ||||
toupload = {} | ||||
def addfunc(fn, lfhash): | ||||
if fn not in toupload: | ||||
toupload[fn] = [] | ||||
toupload[fn].append(lfhash) | ||||
lfhashes.add(lfhash) | ||||
def showhashes(fn): | ||||
for lfhash in sorted(toupload[fn]): | ||||
ui.debug(' %s\n' % (lfhash)) | ||||
else: | ||||
toupload = set() | ||||
def addfunc(fn, lfhash): | ||||
toupload.add(fn) | ||||
lfhashes.add(lfhash) | ||||
def showhashes(fn): | ||||
pass | ||||
FUJIWARA Katsunori
|
r21884 | _getoutgoings(repo, other, missing, addfunc) | ||
FUJIWARA Katsunori
|
r21883 | |||
FUJIWARA Katsunori
|
r21052 | if not toupload: | ||
FUJIWARA Katsunori
|
r17835 | ui.status(_('largefiles: no files to upload\n')) | ||
various
|
r15168 | else: | ||
FUJIWARA Katsunori
|
r21883 | ui.status(_('largefiles to upload (%d entities):\n') | ||
% (len(lfhashes))) | ||||
FUJIWARA Katsunori
|
r21052 | for file in sorted(toupload): | ||
various
|
r15168 | ui.status(lfutil.splitstandin(file) + '\n') | ||
FUJIWARA Katsunori
|
r21883 | showhashes(file) | ||
various
|
r15168 | ui.status('\n') | ||
FUJIWARA Katsunori
|
r21048 | def summaryremotehook(ui, repo, opts, changes): | ||
largeopt = opts.get('large', False) | ||||
if changes is None: | ||||
if largeopt: | ||||
return (False, True) # only outgoing check is needed | ||||
else: | ||||
return (False, False) | ||||
elif largeopt: | ||||
url, branch, peer, outgoing = changes[1] | ||||
if peer is None: | ||||
# i18n: column positioning for "hg summary" | ||||
ui.status(_('largefiles: (no remote repo)\n')) | ||||
return | ||||
toupload = set() | ||||
FUJIWARA Katsunori
|
r21882 | lfhashes = set() | ||
def addfunc(fn, lfhash): | ||||
toupload.add(fn) | ||||
lfhashes.add(lfhash) | ||||
FUJIWARA Katsunori
|
r21884 | _getoutgoings(repo, peer, outgoing.missing, addfunc) | ||
FUJIWARA Katsunori
|
r21882 | |||
FUJIWARA Katsunori
|
r21048 | if not toupload: | ||
# i18n: column positioning for "hg summary" | ||||
ui.status(_('largefiles: (no files to upload)\n')) | ||||
else: | ||||
# i18n: column positioning for "hg summary" | ||||
FUJIWARA Katsunori
|
r21882 | ui.status(_('largefiles: %d entities for %d files to upload\n') | ||
% (len(lfhashes), len(toupload))) | ||||
FUJIWARA Katsunori
|
r21048 | |||
Na'Tosha Bard
|
r16247 | def overridesummary(orig, ui, repo, *pats, **opts): | ||
Na'Tosha Bard
|
r15787 | try: | ||
repo.lfstatus = True | ||||
orig(ui, repo, *pats, **opts) | ||||
finally: | ||||
repo.lfstatus = False | ||||
various
|
r15168 | |||
Matt Harbison
|
r23537 | def scmutiladdremove(orig, repo, matcher, prefix, opts={}, dry_run=None, | ||
Matt Harbison
|
r17658 | similarity=None): | ||
Na'Tosha Bard
|
r16636 | if not lfutil.islfilesrepo(repo): | ||
Matt Harbison
|
r23537 | return orig(repo, matcher, prefix, opts, dry_run, similarity) | ||
Na'Tosha Bard
|
r15792 | # Get the list of missing largefiles so we can remove them | ||
Matt Harbison
|
r17658 | lfdirstate = lfutil.openlfdirstate(repo.ui, repo) | ||
Martin von Zweigbergk
|
r22911 | unsure, s = lfdirstate.status(match_.always(repo.root, repo.getcwd()), [], | ||
False, False, 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) | ||||
removelargefiles(repo.ui, repo, True, m, **opts) | ||||
Na'Tosha Bard
|
r15792 | # Call into the normal add code, and any files that *should* be added as | ||
# largefiles will be | ||||
Matt Harbison
|
r23769 | added, bad = addlargefiles(repo.ui, repo, True, matcher, **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) | ||
Matt Harbison
|
r23537 | return orig(repo, matcher, prefix, opts, dry_run, similarity) | ||
various
|
r15168 | |||
Greg Ward
|
r15254 | # Calling purge with --all will cause the largefiles to be deleted. | ||
various
|
r15168 | # Override repo.status to prevent this from happening. | ||
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 | ||
Na'Tosha Bard
|
r16247 | def overridestatus(node1='.', node2=None, match=None, ignored=False, | ||
various
|
r15168 | clean=False, unknown=False, listsubrepos=False): | ||
r = oldstatus(node1, node2, match, ignored, clean, unknown, | ||||
listsubrepos) | ||||
lfdirstate = lfutil.openlfdirstate(ui, repo) | ||||
Martin von Zweigbergk
|
r22919 | unknown = [f for f in r.unknown if lfdirstate[f] == '?'] | ||
ignored = [f for f in r.ignored if lfdirstate[f] == '?'] | ||||
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 | ||||
Na'Tosha Bard
|
r16247 | def overriderollback(orig, ui, repo, **opts): | ||
Levi Bard
|
r15794 | wlock = repo.wlock() | ||
try: | ||||
FUJIWARA Katsunori
|
r22283 | before = repo.dirstate.parents() | ||
FUJIWARA Katsunori
|
r22286 | orphans = set(f for f in repo.dirstate | ||
if lfutil.isstandin(f) and repo.dirstate[f] != 'r') | ||||
FUJIWARA Katsunori
|
r22094 | result = orig(ui, repo, **opts) | ||
FUJIWARA Katsunori
|
r22283 | after = repo.dirstate.parents() | ||
if before == after: | ||||
return result # no need to restore standins | ||||
FUJIWARA Katsunori
|
r22285 | pctx = repo['.'] | ||
for f in repo.dirstate: | ||||
if lfutil.isstandin(f): | ||||
FUJIWARA Katsunori
|
r22286 | orphans.discard(f) | ||
FUJIWARA Katsunori
|
r22285 | if repo.dirstate[f] == 'r': | ||
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 | ||||
lfutil.writestandin(repo, f, '', False) | ||||
FUJIWARA Katsunori
|
r22286 | for standin in orphans: | ||
repo.wvfs.unlinkpath(standin, ignoremissing=True) | ||||
FUJIWARA Katsunori
|
r22094 | |||
Levi Bard
|
r15794 | lfdirstate = lfutil.openlfdirstate(ui, repo) | ||
FUJIWARA Katsunori
|
r22097 | orphans = set(lfdirstate) | ||
Levi Bard
|
r15794 | lfiles = lfutil.listlfiles(repo) | ||
for file in lfiles: | ||||
FUJIWARA Katsunori
|
r22096 | lfutil.synclfdirstate(repo, lfdirstate, file, True) | ||
FUJIWARA Katsunori
|
r22097 | orphans.discard(file) | ||
for lfile in orphans: | ||||
lfdirstate.drop(lfile) | ||||
Levi Bard
|
r15794 | lfdirstate.write() | ||
finally: | ||||
wlock.release() | ||||
various
|
r15168 | return result | ||
Na'Tosha Bard
|
r15383 | |||
Na'Tosha Bard
|
r16247 | def overridetransplant(orig, ui, repo, *revs, **opts): | ||
FUJIWARA Katsunori
|
r23274 | resuming = opts.get('continue') | ||
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 | |||
def overridecat(orig, ui, repo, file1, *pats, **opts): | ||||
Matt Harbison
|
r17269 | ctx = scmutil.revsingle(repo, opts.get('rev')) | ||
Mads Kiilerich
|
r18491 | err = 1 | ||
notbad = set() | ||||
m = scmutil.match(ctx, (file1,) + pats, opts) | ||||
origmatchfn = m.matchfn | ||||
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) | ||||
m.matchfn = lfmatchfn | ||||
Mads Kiilerich
|
r18974 | origbadfn = m.bad | ||
def lfbadfn(f, msg): | ||||
if not f in notbad: | ||||
Mads Kiilerich
|
r21086 | origbadfn(f, msg) | ||
Mads Kiilerich
|
r18974 | m.bad = lfbadfn | ||
Mads Kiilerich
|
r18491 | for f in ctx.walk(m): | ||
Mads Kiilerich
|
r18974 | fp = cmdutil.makefileobj(repo, opts.get('output'), ctx.node(), | ||
pathname=f) | ||||
Mads Kiilerich
|
r18491 | lf = lfutil.splitstandin(f) | ||
Mads Kiilerich
|
r21087 | if lf is None or origmatchfn(f): | ||
Mads Kiilerich
|
r18974 | # duplicating unreachable code from commands.cat | ||
data = ctx[f].data() | ||||
if opts.get('decode'): | ||||
data = repo.wwritedata(f, data) | ||||
fp.write(data) | ||||
Mads Kiilerich
|
r18491 | else: | ||
Mads Kiilerich
|
r18974 | hash = lfutil.readstandin(repo, lf, ctx.rev()) | ||
if not lfutil.inusercache(repo.ui, hash): | ||||
store = basestore._openstore(repo) | ||||
success, missing = store.get([(lf, hash)]) | ||||
if len(success) != 1: | ||||
raise util.Abort( | ||||
_('largefile %s is not in cache and could not be ' | ||||
'downloaded') % lf) | ||||
path = lfutil.usercachepath(repo.ui, hash) | ||||
fpin = open(path, "rb") | ||||
Mads Kiilerich
|
r19001 | for chunk in util.filechunkiter(fpin, 128 * 1024): | ||
Mads Kiilerich
|
r18974 | fp.write(chunk) | ||
fpin.close() | ||||
fp.close() | ||||
err = 0 | ||||
Mads Kiilerich
|
r18491 | return err | ||
Matt Harbison
|
r17878 | |||
FUJIWARA Katsunori
|
r22288 | def mergeupdate(orig, repo, node, branchmerge, force, partial, | ||
*args, **kwargs): | ||||
wlock = repo.wlock() | ||||
try: | ||||
# 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") | ||||
linearmerge = not branchmerge and not force and not partial | ||||
if linearmerge or (branchmerge and force and not partial): | ||||
# update standins for linear-merge or force-branch-merge, | ||||
# because largefiles in the working directory may be modified | ||||
lfdirstate = lfutil.openlfdirstate(repo.ui, repo) | ||||
Martin von Zweigbergk
|
r22911 | unsure, s = lfdirstate.status(match_.always(repo.root, | ||
repo.getcwd()), | ||||
[], False, False, False) | ||||
Mads Kiilerich
|
r23841 | pctx = repo['.'] | ||
for lfile in unsure + s.modified: | ||||
lfileabs = repo.wvfs.join(lfile) | ||||
if not os.path.exists(lfileabs): | ||||
continue | ||||
lfhash = lfutil.hashrepofile(repo, lfile) | ||||
standin = lfutil.standin(lfile) | ||||
lfutil.writestandin(repo, standin, lfhash, | ||||
lfutil.getexecutable(lfileabs)) | ||||
if (standin in pctx and | ||||
lfhash == lfutil.readstandin(repo, lfile, '.')): | ||||
lfdirstate.normal(lfile) | ||||
for lfile in s.added: | ||||
FUJIWARA Katsunori
|
r22288 | lfutil.updatestandin(repo, lfutil.standin(lfile)) | ||
Mads Kiilerich
|
r23841 | lfdirstate.write() | ||
FUJIWARA Katsunori
|
r22288 | |||
if linearmerge: | ||||
# Only call updatelfiles on the standins that have changed | ||||
# to save time | ||||
oldstandins = lfutil.getstandinsstate(repo) | ||||
result = orig(repo, node, branchmerge, force, partial, *args, **kwargs) | ||||
filelist = None | ||||
if linearmerge: | ||||
newstandins = lfutil.getstandinsstate(repo) | ||||
filelist = lfutil.getlfilestoupdate(oldstandins, newstandins) | ||||
lfcommands.updatelfiles(repo.ui, repo, filelist=filelist, | ||||
Mads Kiilerich
|
r23893 | normallookup=partial, checked=linearmerge) | ||
FUJIWARA Katsunori
|
r22288 | |||
return result | ||||
finally: | ||||
wlock.release() | ||||
FUJIWARA Katsunori
|
r22289 | |||
def scmutilmarktouched(orig, repo, files, *args, **kwargs): | ||||
result = orig(repo, files, *args, **kwargs) | ||||
filelist = [lfutil.splitstandin(f) for f in files if lfutil.isstandin(f)] | ||||
if filelist: | ||||
lfcommands.updatelfiles(repo.ui, repo, filelist=filelist, | ||||
printmessage=False, normallookup=True) | ||||
return result | ||||