[PATCH 13 of 15] getbundle: add support for 'bookmarks' boolean argument

Boris Feld boris.feld at octobus.net
Wed Oct 18 12:10:05 EDT 2017


# HG changeset patch
# User Boris Feld <boris.feld at octobus.net>
# Date 1508246837 -7200
#      Tue Oct 17 15:27:17 2017 +0200
# Node ID bfc5187907ca1ddda6594eeb6904a3d3d185c22b
# Parent  621cfc2d79d7a541503a369b4576b6d56cee2777
# EXP-Topic b2.bookmarks
# Available At https://bitbucket.org/octobus/mercurial-devel/
#              hg pull https://bitbucket.org/octobus/mercurial-devel/ -r bfc5187907ca
getbundle: add support for 'bookmarks' boolean argument

This new argument requests a 'bookmarks' part from the server. It is meant to
be used instead of the "listkeys" request.

diff --git a/mercurial/exchange.py b/mercurial/exchange.py
--- a/mercurial/exchange.py
+++ b/mercurial/exchange.py
@@ -1748,6 +1748,18 @@
         if 'treemanifest' in repo.requirements:
             part.addparam('treemanifest', '1')
 
+ at getbundle2partsgenerator('bookmarks')
+def _getbundlebookmarkpart(bundler, repo, source, bundlecaps=None,
+                              b2caps=None, **kwargs):
+    """add a bookmark part to the requested bundle"""
+    if kwargs.get('bookmarks', False):
+        if 'bookmarks' not in b2caps:
+            raise ValueError(_('no common bookmarks exchange method'))
+        books  = bookmod.listbinbookmarks(repo)
+        data = bookmod.binaryencode(books)
+        if data:
+            bundler.newpart('bookmarks', data=data)
+
 @getbundle2partsgenerator('listkeys')
 def _getbundlelistkeysparts(bundler, repo, source, bundlecaps=None,
                             b2caps=None, **kwargs):
diff --git a/mercurial/wireproto.py b/mercurial/wireproto.py
--- a/mercurial/wireproto.py
+++ b/mercurial/wireproto.py
@@ -205,6 +205,7 @@
 # :scsv:  list of comma-separated values return as set
 # :plain: string with no transformation needed.
 gboptsmap = {'heads':  'nodes',
+             'bookmarks': 'boolean',
              'common': 'nodes',
              'obsmarkers': 'boolean',
              'phases': 'boolean',


More information about the Mercurial-devel mailing list