# HG changeset patch # User Durham Goode # Date 1505162362 25200 # Node ID 75cc1f1e11f2cd41e18b55842f5a7b19c31fa993 # Parent c8b6ed51386bf7dbcc746d5ac2835c38937a9e26 changegroup: add source parameter to generatemanifests Extensions, like remotefilelog, will want to look at the source of a pull when determining what manifests to add to a changegroup. For instance, on push they will include everything, while on pull they won't. Differential Revision: https://phab.mercurial-scm.org/D686 diff -r c8b6ed51386b -r 75cc1f1e11f2 mercurial/changegroup.py --- a/mercurial/changegroup.py Wed Sep 13 10:43:44 2017 -0700 +++ b/mercurial/changegroup.py Mon Sep 11 13:39:22 2017 -0700 @@ -662,7 +662,7 @@ 'treemanifest' not in repo.requirements) for chunk in self.generatemanifests(commonrevs, clrevorder, - fastpathlinkrev, mfs, fnodes): + fastpathlinkrev, mfs, fnodes, source): yield chunk mfs.clear() clrevs = set(cl.rev(x) for x in clnodes) @@ -688,7 +688,12 @@ repo.hook('outgoing', node=hex(clnodes[0]), source=source) def generatemanifests(self, commonrevs, clrevorder, fastpathlinkrev, mfs, - fnodes): + fnodes, source): + """Returns an iterator of changegroup chunks containing manifests. + + `source` is unused here, but is used by extensions like remotefilelog to + change what is sent based in pulls vs pushes, etc. + """ repo = self._repo mfl = repo.manifestlog dirlog = mfl._revlog.dirlog