[PATCH 3 of 4 defaultdest V2] destupdate: also include bookmark related logic

Pierre-Yves David pierre-yves.david at ens-lyon.org
Tue Oct 13 10:58:51 CDT 2015



On 10/13/2015 08:28 AM, Augie Fackler wrote:
> On Mon, Oct 12, 2015 at 10:22:55AM -0700, Pierre-Yves David wrote:
>> # HG changeset patch
>> # User Pierre-Yves David <pierre-yves.david at fb.com>
>> # Date 1443513806 25200
>> #      Tue Sep 29 01:03:26 2015 -0700
>> # Node ID 330ed5e136273f627695777702a77ab695bc62e2
>> # Parent  976e836aa9fcc99d05a462afef5007351e5226a1
>> # EXP-Topic defaultdest
>> # Available At http://hg.netv6.net/marmoute-wip/mercurial/
>> #              hg pull http://hg.netv6.net/marmoute-wip/mercurial/ -r 330ed5e13627
>> destupdate: also include bookmark related logic
>>
>> For the same reason, we move the bookmark related update logic into the
>> 'destupdate' function. This requires to extend the returns of the function to
>> include the bookmark that needs to move (more or less) and the bookmark to
>> activate at the end of the function. See function documentation for details on
>> this returns.
>>
>> diff --git a/mercurial/commands.py b/mercurial/commands.py
>> --- a/mercurial/commands.py
>> +++ b/mercurial/commands.py
>> @@ -6547,10 +6547,11 @@ def update(ui, repo, node=None, rev=None
>>
>>       See :hg:`help dates` for a list of formats valid for -d/--date.
>>
>>       Returns 0 on success, 1 if there are unresolved files.
>>       """
>> +    movemarkfrom = None
>>       if rev and node:
>>           raise error.Abort(_("please specify just one revision"))
>>
>>       if rev is None or rev == '':
>>           rev = node
>> @@ -6562,13 +6563,10 @@ def update(ui, repo, node=None, rev=None
>>           if date:
>>               if rev is not None:
>>                   raise error.Abort(_("you can't specify a revision and a date"))
>>               rev = cmdutil.finddate(ui, repo, date)
>>
>> -        # with no argument, we also move the active bookmark, if any
>> -        rev, movemarkfrom = bookmarks.calculateupdate(ui, repo, rev)
>> -
>>           # if we defined a bookmark, we have to remember the original name
>>           brev = rev
>>           rev = scmutil.revsingle(repo, rev, rev).rev()
>>
>>           if check and clean:
>> @@ -6576,11 +6574,12 @@ def update(ui, repo, node=None, rev=None
>>                                )
>>
>>           if check:
>>               cmdutil.bailifchanged(repo, merge=False)
>>           if rev is None:
>> -            rev = destutil.destupdate(repo, clean=clean, check=check)
>> +            updata =  destutil.destupdate(repo, clean=clean, check=check)
>> +            rev, movemarkfrom, brev = updata
>>
>>           repo.ui.setconfig('ui', 'forcemerge', tool, 'update')
>>
>>           if clean:
>>               ret = hg.clean(repo, rev)
>> diff --git a/mercurial/destutil.py b/mercurial/destutil.py
>> --- a/mercurial/destutil.py
>> +++ b/mercurial/destutil.py
>> @@ -5,29 +5,42 @@
>>   # This software may be used and distributed according to the terms of the
>>   # GNU General Public License version 2 or any later version.
>>
>>   from .i18n import _
>>   from . import (
>> +    bookmarks,
>>       error,
>>       obsolete,
>>   )
>>
>>   def destupdate(repo, clean=False, check=False):
>>       """destination for bare update operation
>> +
>> +    return (rev, ancestor, movemark, activemark)
>> +
>> +    - rev: the revision to update to,
>> +    - a node to move the active bookmark from if it is there,
>> +    - a bookmark to activate at the end of the update.
>
> You've documented this as returning a 4-tuple, but it returns a 3-tuple.
>
> I think, based on skimming the code, what should be here is this:
>
> """Destination for bare update operations.
>
> Returns a tuple of (rev, movemark, activemark), where
>    rev is the revision to update to
>    movemark is ????
>    activemark is always None
> """

Ha yes, the ancestors is the remain of an old memory.

I've documented movemark in this patch
(second item), not sure what you want more. You can check 
m.bookmarks.calculate update for more details about movemark.
I would be happy to be able to move forward here.

-- 
Pierre-Yves David


More information about the Mercurial-devel mailing list