##// END OF EJS Templates
repoview: move subsettable in a dedicated module...
marmoute -
r42314:caebe5e7 default
parent child Browse files
Show More
@@ -0,0 +1,22 b''
1 # repoviewutil.py - constaints data relevant to repoview.py and other module
2 #
3 # Copyright 2012 Pierre-Yves David <pierre-yves.david@ens-lyon.org>
4 # Logilab SA <contact@logilab.fr>
5 #
6 # This software may be used and distributed according to the terms of the
7 # GNU General Public License version 2 or any later version.
8
9 from __future__ import absolute_import
10
11 ### Nearest subset relation
12 # Nearest subset of filter X is a filter Y so that:
13 # * Y is included in X,
14 # * X - Y is as small as possible.
15 # This create and ordering used for branchmap purpose.
16 # the ordering may be partial
17 subsettable = {None: 'visible',
18 'visible-hidden': 'visible',
19 'visible': 'served',
20 'served.hidden': 'served',
21 'served': 'immutable',
22 'immutable': 'base'}
@@ -94,6 +94,10 b' try:'
94 94 except ImportError:
95 95 pass
96 96 try:
97 from mercurial.utils import repoviewutil # since 5.0
98 except ImportError:
99 repoviewutil = None
100 try:
97 101 from mercurial import scmutil # since 1.9 (or 8b252e826c68)
98 102 except ImportError:
99 103 pass
@@ -471,7 +475,8 b' def getbranchmapsubsettable():'
471 475 # subsettable is defined in:
472 476 # - branchmap since 2.9 (or 175c6fd8cacc)
473 477 # - repoview since 2.5 (or 59a9f18d4587)
474 for mod in (branchmap, repoview):
478 # - repoviewutil since 5.0
479 for mod in (branchmap, repoview, repoviewutil):
475 480 subsettable = getattr(mod, 'subsettable', None)
476 481 if subsettable:
477 482 return subsettable
@@ -23,28 +23,17 b' from . import ('
23 23 util,
24 24 )
25 25 from .utils import (
26 repoviewutil,
26 27 stringutil,
27 28 )
28 29
30 subsettable = repoviewutil. subsettable
31
29 32 calcsize = struct.calcsize
30 33 pack_into = struct.pack_into
31 34 unpack_from = struct.unpack_from
32 35
33 36
34 ### Nearest subset relation
35 # Nearest subset of filter X is a filter Y so that:
36 # * Y is included in X,
37 # * X - Y is as small as possible.
38 # This create and ordering used for branchmap purpose.
39 # the ordering may be partial
40 subsettable = {None: 'visible',
41 'visible-hidden': 'visible',
42 'visible': 'served',
43 'served.hidden': 'served',
44 'served': 'immutable',
45 'immutable': 'base'}
46
47
48 37 class BranchMapCache(object):
49 38 """mapping of filtered views of repo with their branchcache"""
50 39 def __init__(self):
@@ -25,9 +25,9 b' def hideablerevs(repo):'
25 25 This is a standalone function to allow extensions to wrap it.
26 26
27 27 Because we use the set of immutable changesets as a fallback subset in
28 branchmap (see mercurial.branchmap.subsettable), you cannot set "public"
29 changesets as "hideable". Doing so would break multiple code assertions and
30 lead to crashes."""
28 branchmap (see mercurial.utils.repoviewutils.subsettable), you cannot set
29 "public" changesets as "hideable". Doing so would break multiple code
30 assertions and lead to crashes."""
31 31 obsoletes = obsolete.getrevs(repo, 'obsolete')
32 32 internals = repo._phasecache.getrevset(repo, phases.localhiddenphases)
33 33 internals = frozenset(internals)
@@ -144,7 +144,7 b' def computeimpactable(repo, visibilityex'
144 144 # function to compute filtered set
145 145 #
146 146 # When adding a new filter you MUST update the table at:
147 # mercurial.branchmap.subsettable
147 # mercurial.utils.repoviewutil.subsettable
148 148 # Otherwise your filter will have to recompute all its branches cache
149 149 # from scratch (very slow).
150 150 filtertable = {'visible': computehidden,
@@ -10,7 +10,7 b' import sys'
10 10 # write static check patterns here
11 11 perfpypats = [
12 12 [
13 (r'(branchmap|repoview)\.subsettable',
13 (r'(branchmap|repoview|repoviewutil)\.subsettable',
14 14 "use getbranchmapsubsettable() for early Mercurial"),
15 15 (r'\.(vfs|svfs|opener|sopener)',
16 16 "use getvfs()/getsvfs() for early Mercurial"),
General Comments 0
You need to be logged in to leave comments. Login now