hgext/narrow/narrowrepo.py
author Arseniy Alekseyev <aalekseyev@janestreet.com>
Wed, 11 Jan 2023 16:16:06 +0000
changeset 49890 5f664401dd03
parent 49753 ff7134e03629
child 50413 3a2df812e1c7
permissions -rw-r--r--
typing: use python3-style type annotation

# narrowrepo.py - repository which supports narrow revlogs, lazy loading
#
# 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 mercurial import wireprototypes

from . import narrowdirstate


def wraprepo(repo):
    """Enables narrow clone functionality on a single local repository."""

    class narrowrepository(repo.__class__):
        def _makedirstate(self):
            dirstate = super(narrowrepository, self)._makedirstate()
            return narrowdirstate.wrapdirstate(self, dirstate)

        def peer(self, path=None):
            peer = super(narrowrepository, self).peer(path=path)
            peer._caps.add(wireprototypes.NARROWCAP)
            peer._caps.add(wireprototypes.ELLIPSESCAP)
            return peer

    repo.__class__ = narrowrepository