narrowwirepeer.py
41 lines
| 1.3 KiB
| text/x-python
|
PythonLexer
Augie Fackler
|
r36096 | # narrowwirepeer.py - passes narrow spec with unbundle command | ||
# | ||||
# Copyright 2017 Google, Inc. | ||||
# | ||||
# This software may be used and distributed according to the terms of the | ||||
# GNU General Public License version 2 or any later version. | ||||
from __future__ import absolute_import | ||||
from mercurial import ( | ||||
extensions, | ||||
hg, | ||||
Pulkit Goyal
|
r39559 | wireprotov1server, | ||
Augie Fackler
|
r36096 | ) | ||
Martin von Zweigbergk
|
r39566 | NARROWCAP = 'exp-narrow-1' | ||
ELLIPSESCAP = 'exp-ellipses-1' | ||||
Pulkit Goyal
|
r39559 | |||
Augie Fackler
|
r36096 | def uisetup(): | ||
Pulkit Goyal
|
r39559 | extensions.wrapfunction(wireprotov1server, '_capabilities', addnarrowcap) | ||
def addnarrowcap(orig, repo, proto): | ||||
"""add the narrow capability to the server""" | ||||
caps = orig(repo, proto) | ||||
Martin von Zweigbergk
|
r39565 | caps.append(NARROWCAP) | ||
Pulkit Goyal
|
r39559 | if repo.ui.configbool('experimental', 'narrowservebrokenellipses'): | ||
Martin von Zweigbergk
|
r39565 | caps.append(ELLIPSESCAP) | ||
Pulkit Goyal
|
r39559 | return caps | ||
Augie Fackler
|
r36096 | def reposetup(repo): | ||
def wirereposetup(ui, peer): | ||||
def wrapped(orig, cmd, *args, **kwargs): | ||||
if cmd == 'unbundle': | ||||
Augie Fackler
|
r36119 | # TODO: don't blindly add include/exclude wireproto | ||
# arguments to unbundle. | ||||
Augie Fackler
|
r36096 | include, exclude = repo.narrowpats | ||
Augie Fackler
|
r36369 | kwargs[r"includepats"] = ','.join(include) | ||
kwargs[r"excludepats"] = ','.join(exclude) | ||||
Augie Fackler
|
r36096 | return orig(cmd, *args, **kwargs) | ||
extensions.wrapfunction(peer, '_calltwowaystream', wrapped) | ||||
hg.wirepeersetupfuncs.append(wirereposetup) | ||||