# HG changeset patch # User Matt Mackall # Date 1196974737 21600 # Node ID e7a9ad9993089a93c00c87997a5094c1982893ef # Parent 4b7b21acede037fdfac21ea372888ecc68f754e1 copy: refactor okaytocopy into walkpat - rename core copy function to copyfile - move origsrc details into copyfile - turn okaytocopy loop into walkpat diff -r 4b7b21acede0 -r e7a9ad999308 mercurial/cmdutil.py --- a/mercurial/cmdutil.py Sun Dec 02 18:41:22 2007 -0600 +++ b/mercurial/cmdutil.py Thu Dec 06 14:58:57 2007 -0600 @@ -296,29 +296,26 @@ copied = [] targets = {} - # abs: hgsep - # rel: ossep - # return: hgsep - def okaytocopy(abs, rel, exact): - reasons = {'?': _('is not managed'), - 'r': _('has been marked for remove')} - state = repo.dirstate[abs] - reason = reasons.get(state) - if reason: - if exact: - ui.warn(_('%s: not copying - file %s\n') % (rel, reason)) - else: - if state == 'a': - origsrc = repo.dirstate.copied(abs) - if origsrc is not None: - return origsrc - return abs + def walkpat(pat): + srcs = [] + for tag, abs, rel, exact in walk(repo, [pat], opts, globbed=True): + state = repo.dirstate[abs] + if state in '?r': + if exact and state == '?': + ui.warn(_('%s: not copying - file is not managed\n') % rel) + if exact and state == 'r': + ui.warn(_('%s: not copying - file has been marked for' + ' remove\n') % rel) + continue + # abs: hgsep + # rel: ossep + srcs.append((abs, rel, exact)) + return srcs - # origsrc: hgsep # abssrc: hgsep # relsrc: ossep # otarget: ossep - def copy(origsrc, abssrc, relsrc, otarget, exact): + def copyfile(abssrc, relsrc, otarget, exact): abstarget = util.canonpath(repo.root, cwd, otarget) reltarget = repo.pathto(abstarget, cwd) prevsrc = targets.get(abstarget) @@ -366,6 +363,7 @@ if ui.verbose or not exact: ui.status(_('copying %s to %s\n') % (relsrc, reltarget)) targets[abstarget] = abssrc + origsrc = repo.dirstate.copied(abssrc) or abssrc if abstarget == origsrc: # copying back a copy? if repo.dirstate[abstarget] not in 'mn': if not opts.get('dry_run'): @@ -468,12 +466,7 @@ tfn = targetpathfn copylist = [] for pat in pats: - srcs = [] - for tag, abssrc, relsrc, exact in walk(repo, [pat], opts, - globbed=True): - origsrc = okaytocopy(abssrc, relsrc, exact) - if origsrc: - srcs.append((origsrc, abssrc, relsrc, exact)) + srcs = walkpat(pat) if not srcs: continue copylist.append((tfn(pat, dest, srcs), srcs)) @@ -481,8 +474,8 @@ raise util.Abort(_('no files to copy')) for targetpath, srcs in copylist: - for origsrc, abssrc, relsrc, exact in srcs: - copy(origsrc, abssrc, relsrc, targetpath(abssrc), exact) + for abssrc, relsrc, exact in srcs: + copyfile(abssrc, relsrc, targetpath(abssrc), exact) if errors: ui.warn(_('(consider using --after)\n'))