##// END OF EJS Templates
clfilter: introduce a "unserver" filtering mode...
Pierre-Yves David -
r18102:3c7b67b7 default
parent child Browse files
Show More
@@ -1,97 +1,108 b''
1 1 # repoview.py - Filtered view of a localrepo object
2 2 #
3 3 # Copyright 2012 Pierre-Yves David <pierre-yves.david@ens-lyon.org>
4 4 # Logilab SA <contact@logilab.fr>
5 5 #
6 6 # This software may be used and distributed according to the terms of the
7 7 # GNU General Public License version 2 or any later version.
8 8
9 9 import copy
10 import phases
11
12 def computeunserved(repo):
13 """compute the set of revision that should be filtered when used a server
14
15 Secret and hidden changeset should not pretend to be here."""
16 assert not repo.changelog.filteredrevs
17 # fast path in simple case to avoid impact of non optimised code
18 if phases.hassecret(repo) or repo.obsstore:
19 return frozenset(repo.revs('hidden() + secret()'))
20 return ()
10 21
11 22 # function to compute filtered set
12 filtertable = {}
23 filtertable = {'unserved': computeunserved}
13 24
14 25 def filteredrevs(repo, filtername):
15 26 """returns set of filtered revision for this filter name"""
16 27 if filtername not in repo.filteredrevcache:
17 28 func = filtertable[filtername]
18 29 repo.filteredrevcache[filtername] = func(repo.unfiltered())
19 30 return repo.filteredrevcache[filtername]
20 31
21 32 class repoview(object):
22 33 """Provide a read/write view of a repo through a filtered changelog
23 34
24 35 This object is used to access a filtered version of a repository without
25 36 altering the original repository object itself. We can not alter the
26 37 original object for two main reasons:
27 38 - It prevents the use of a repo with multiple filters at the same time. In
28 39 particular when multiple threads are involved.
29 40 - It makes scope of the filtering harder to control.
30 41
31 42 This object behaves very closely to the original repository. All attribute
32 43 operations are done on the original repository:
33 44 - An access to `repoview.someattr` actually returns `repo.someattr`,
34 45 - A write to `repoview.someattr` actually sets value of `repo.someattr`,
35 46 - A deletion of `repoview.someattr` actually drops `someattr`
36 47 from `repo.__dict__`.
37 48
38 49 The only exception is the `changelog` property. It is overridden to return
39 50 a (surface) copy of `repo.changelog` with some revisions filtered. The
40 51 `filtername` attribute of the view control the revisions that need to be
41 52 filtered. (the fact the changelog is copied is an implementation detail).
42 53
43 54 Unlike attributes, this object intercepts all method calls. This means that
44 55 all methods are run on the `repoview` object with the filtered `changelog`
45 56 property. For this purpose the simple `repoview` class must be mixed with
46 57 the actual class of the repository. This ensures that the resulting
47 58 `repoview` object have the very same methods than the repo object. This
48 59 leads to the property below.
49 60
50 61 repoview.method() --> repo.__class__.method(repoview)
51 62
52 63 The inheritance has to be done dynamically because `repo` can be of any
53 64 subclasses of `localrepo`. Eg: `bundlerepo` or `httprepo`.
54 65 """
55 66
56 67 def __init__(self, repo, filtername):
57 68 object.__setattr__(self, '_unfilteredrepo', repo)
58 69 object.__setattr__(self, 'filtername', filtername)
59 70
60 71 # not a cacheproperty on purpose we shall implement a proper cache later
61 72 @property
62 73 def changelog(self):
63 74 """return a filtered version of the changeset
64 75
65 76 this changelog must not be used for writing"""
66 77 # some cache may be implemented later
67 78 cl = copy.copy(self._unfilteredrepo.changelog)
68 79 cl.filteredrevs = filteredrevs(self._unfilteredrepo, self.filtername)
69 80 return cl
70 81
71 82 def unfiltered(self):
72 83 """Return an unfiltered version of a repo"""
73 84 return self._unfilteredrepo
74 85
75 86 def filtered(self, name):
76 87 """Return a filtered version of a repository"""
77 88 if name == self.filtername:
78 89 return self
79 90 return self.unfiltered().filtered(name)
80 91
81 92 # everything access are forwarded to the proxied repo
82 93 def __getattr__(self, attr):
83 94 return getattr(self._unfilteredrepo, attr)
84 95
85 96 def __setattr__(self, attr, value):
86 97 return setattr(self._unfilteredrepo, attr, value)
87 98
88 99 def __delattr__(self, attr):
89 100 return delattr(self._unfilteredrepo, attr)
90 101
91 102 # The `requirement` attribut is initialiazed during __init__. But
92 103 # __getattr__ won't be called as it also exists on the class. We need
93 104 # explicit forwarding to main repo here
94 105 @property
95 106 def requirements(self):
96 107 return self._unfilteredrepo.requirements
97 108
General Comments 0
You need to be logged in to leave comments. Login now