Skip to content
Snippets Groups Projects
Commit caebe5e7 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

repoview: move subsettable in a dedicated module

The dictionary got moved in `branchmap` to avoid import cycle. However, we are
about to needs it in repoview too. So we introduce a now module to define that
that mapping.
parent d086ba38
No related branches found
No related tags found
No related merge requests found
......@@ -94,6 +94,10 @@
except ImportError:
pass
try:
from mercurial.utils import repoviewutil # since 5.0
except ImportError:
repoviewutil = None
try:
from mercurial import scmutil # since 1.9 (or 8b252e826c68)
except ImportError:
pass
......@@ -471,7 +475,8 @@
# subsettable is defined in:
# - branchmap since 2.9 (or 175c6fd8cacc)
# - repoview since 2.5 (or 59a9f18d4587)
for mod in (branchmap, repoview):
# - repoviewutil since 5.0
for mod in (branchmap, repoview, repoviewutil):
subsettable = getattr(mod, 'subsettable', None)
if subsettable:
return subsettable
......
......@@ -23,6 +23,7 @@
util,
)
from .utils import (
repoviewutil,
stringutil,
)
......@@ -26,8 +27,10 @@
stringutil,
)
subsettable = repoviewutil. subsettable
calcsize = struct.calcsize
pack_into = struct.pack_into
unpack_from = struct.unpack_from
......@@ -29,22 +32,8 @@
calcsize = struct.calcsize
pack_into = struct.pack_into
unpack_from = struct.unpack_from
### Nearest subset relation
# Nearest subset of filter X is a filter Y so that:
# * Y is included in X,
# * X - Y is as small as possible.
# This create and ordering used for branchmap purpose.
# the ordering may be partial
subsettable = {None: 'visible',
'visible-hidden': 'visible',
'visible': 'served',
'served.hidden': 'served',
'served': 'immutable',
'immutable': 'base'}
class BranchMapCache(object):
"""mapping of filtered views of repo with their branchcache"""
def __init__(self):
......
......@@ -25,9 +25,9 @@
This is a standalone function to allow extensions to wrap it.
Because we use the set of immutable changesets as a fallback subset in
branchmap (see mercurial.branchmap.subsettable), you cannot set "public"
changesets as "hideable". Doing so would break multiple code assertions and
lead to crashes."""
branchmap (see mercurial.utils.repoviewutils.subsettable), you cannot set
"public" changesets as "hideable". Doing so would break multiple code
assertions and lead to crashes."""
obsoletes = obsolete.getrevs(repo, 'obsolete')
internals = repo._phasecache.getrevset(repo, phases.localhiddenphases)
internals = frozenset(internals)
......@@ -144,7 +144,7 @@
# function to compute filtered set
#
# When adding a new filter you MUST update the table at:
# mercurial.branchmap.subsettable
# mercurial.utils.repoviewutil.subsettable
# Otherwise your filter will have to recompute all its branches cache
# from scratch (very slow).
filtertable = {'visible': computehidden,
......
# repoviewutil.py - constaints data relevant to repoview.py and other module
#
# Copyright 2012 Pierre-Yves David <pierre-yves.david@ens-lyon.org>
# Logilab SA <contact@logilab.fr>
#
# 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
### Nearest subset relation
# Nearest subset of filter X is a filter Y so that:
# * Y is included in X,
# * X - Y is as small as possible.
# This create and ordering used for branchmap purpose.
# the ordering may be partial
subsettable = {None: 'visible',
'visible-hidden': 'visible',
'visible': 'served',
'served.hidden': 'served',
'served': 'immutable',
'immutable': 'base'}
......@@ -10,7 +10,7 @@
# write static check patterns here
perfpypats = [
[
(r'(branchmap|repoview)\.subsettable',
(r'(branchmap|repoview|repoviewutil)\.subsettable',
"use getbranchmapsubsettable() for early Mercurial"),
(r'\.(vfs|svfs|opener|sopener)',
"use getvfs()/getsvfs() for early Mercurial"),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment