Mercurial > evolve
changeset 1853:8db7828751b7
topic: wrap the underlying update function rather than the command
This more properly manages the updates done by things like rebase.
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Fri, 12 Jun 2015 16:39:39 -0500 |
parents | 3084687f7994 |
children | 67950fcf1c69 |
files | src/topic/__init__.py tests/test-topic.t |
diffstat | 2 files changed, 22 insertions(+), 17 deletions(-) [+] |
line wrap: on
line diff
--- a/src/topic/__init__.py Wed Jun 10 17:52:07 2015 -0500 +++ b/src/topic/__init__.py Fri Jun 12 16:39:39 2015 -0500 @@ -21,6 +21,7 @@ from mercurial import obsolete from mercurial import phases from mercurial import util +from mercurial import merge from . import constants from . import revset as topicrevset @@ -142,27 +143,31 @@ "\nHG: topic '%s'\nHG: branch" % t) return ret -def updatewrap(orig, ui, repo, *args, **kwargs): - ret = orig(ui, repo, *args, **kwargs) - pctx = repo['.'] - ot = repo.currenttopic - if pctx.phase() == phases.public and repo.vfs.exists('topic'): - repo.vfs.unlink('topic') - else: - # inherit the topic of the parent revision - t = pctx.extra().get(constants.extrakey, '') - if t and pctx.phase() > phases.public: +def mergeupdatewrap(orig, repo, node, branchmerge, force, partial, + ancestor=None, mergeancestor=False, labels=None): + wlock = repo.wlock() + try: + ret = orig(repo, node, branchmerge, force, partial, ancestor=ancestor, + mergeancestor=mergeancestor, labels=labels) + if not partial and not branchmerge: + ot = repo.currenttopic + t = '' + pctx = repo[node] + if pctx.phase() > phases.public: + t = pctx.extra().get(constants.extrakey, '') with repo.vfs.open('topic', 'w') as f: f.write(t) - if t != ot: - ui.status(_("switching to topic %s\n") % t) - return ret + if t and t != ot: + repo.ui.status(_("switching to topic %s\n") % t) + return ret + finally: + wlock.release() entry = extensions.wrapcommand(commands.table, 'commit', commitwrap) entry[1].append(('t', 'topic', '', _("use specified topic"), _('TOPIC'))) -extensions.wrapcommand(commands.table, 'update', updatewrap) extensions.wrapfunction(cmdutil, 'buildcommittext', committextwrap) +extensions.wrapfunction(merge, 'update', mergeupdatewrap) topicrevset.modsetup() cmdutil.summaryhooks.add('topic', summaryhook)
--- a/tests/test-topic.t Wed Jun 10 17:52:07 2015 -0500 +++ b/tests/test-topic.t Fri Jun 12 16:39:39 2015 -0500 @@ -77,8 +77,8 @@ $ hg ci -m 'start on fran' created new head $ hg co narf + switching to topic narf 2 files updated, 0 files merged, 0 files removed, 0 files unresolved - switching to topic narf $ hg topic fran * narf @@ -243,8 +243,8 @@ * query $ cd ../pinky $ hg co query + switching to topic query 1 files updated, 0 files merged, 0 files removed, 0 files unresolved - switching to topic query $ echo answer >> alpha $ hg ci -m 'Narf is like `zort` or `poit`!' $ hg merge narf @@ -447,8 +447,8 @@ Move to fran, note that the topic activates, then deactivate the topic. $ hg co fran + switching to topic fran 2 files updated, 0 files merged, 0 files removed, 0 files unresolved - switching to topic fran $ hg topics * fran $ hg topics --clear