~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/views.py

  • Committer: Patch Queue Manager
  • Date: 2016-04-21 04:10:52 UTC
  • mfrom: (6616.1.1 fix-en-user-guide)
  • Revision ID: pqm@pqm.ubuntu.com-20160421041052-clcye7ns1qcl2n7w
(richard-wilbur) Ensure build of English use guide always uses English text
 even when user's locale specifies a different language. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2008 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
"""View management.
 
18
 
 
19
Views are contained within a working tree and normally constructed
 
20
when first accessed.  Clients should do, for example, ...
 
21
 
 
22
  tree.views.lookup_view()
 
23
"""
 
24
 
 
25
from __future__ import absolute_import
 
26
 
 
27
import re
 
28
 
 
29
from bzrlib import (
 
30
    errors,
 
31
    osutils,
 
32
    )
 
33
 
 
34
 
 
35
_VIEWS_FORMAT_MARKER_RE = re.compile(r'Bazaar views format (\d+)')
 
36
_VIEWS_FORMAT1_MARKER = "Bazaar views format 1\n"
 
37
 
 
38
 
 
39
class _Views(object):
 
40
    """Base class for View managers."""
 
41
 
 
42
    def supports_views(self):
 
43
        raise NotImplementedError(self.supports_views)
 
44
 
 
45
 
 
46
class PathBasedViews(_Views):
 
47
    """View storage in an unversioned tree control file.
 
48
 
 
49
    Views are stored in terms of paths relative to the tree root.
 
50
 
 
51
    The top line of the control file is a format marker in the format:
 
52
 
 
53
      Bazaar views format X
 
54
 
 
55
    where X is an integer number. After this top line, version 1 format is
 
56
    stored as follows:
 
57
 
 
58
     * optional name-values pairs in the format 'name=value'
 
59
 
 
60
     * optional view definitions, one per line in the format
 
61
 
 
62
       views:
 
63
       name file1 file2 ...
 
64
       name file1 file2 ...
 
65
 
 
66
    where the fields are separated by a nul character (\0). The views file
 
67
    is encoded in utf-8. The only supported keyword in version 1 is
 
68
    'current' which stores the name of the current view, if any.
 
69
    """
 
70
 
 
71
    def __init__(self, tree):
 
72
        self.tree = tree
 
73
        self._loaded = False
 
74
        self._current = None
 
75
        self._views = {}
 
76
 
 
77
    def supports_views(self):
 
78
        return True
 
79
 
 
80
    def get_view_info(self):
 
81
        """Get the current view and dictionary of views.
 
82
 
 
83
        :return: current, views where
 
84
          current = the name of the current view or None if no view is enabled
 
85
          views = a map from view name to list of files/directories
 
86
        """
 
87
        self._load_view_info()
 
88
        return self._current, self._views
 
89
 
 
90
    def set_view_info(self, current, views):
 
91
        """Set the current view and dictionary of views.
 
92
 
 
93
        :param current: the name of the current view or None if no view is
 
94
          enabled
 
95
        :param views: a map from view name to list of files/directories
 
96
        """
 
97
        if current is not None and current not in views:
 
98
            raise errors.NoSuchView(current)
 
99
        self.tree.lock_write()
 
100
        try:
 
101
            self._current = current
 
102
            self._views = views
 
103
            self._save_view_info()
 
104
        finally:
 
105
            self.tree.unlock()
 
106
 
 
107
    def lookup_view(self, view_name=None):
 
108
        """Return the contents of a view.
 
109
 
 
110
        :param view_Name: name of the view or None to lookup the current view
 
111
        :return: the list of files/directories in the requested view
 
112
        """
 
113
        self._load_view_info()
 
114
        try:
 
115
            if view_name is None:
 
116
                if self._current:
 
117
                    view_name = self._current
 
118
                else:
 
119
                    return []
 
120
            return self._views[view_name]
 
121
        except KeyError:
 
122
            raise errors.NoSuchView(view_name)
 
123
 
 
124
    def set_view(self, view_name, view_files, make_current=True):
 
125
        """Add or update a view definition.
 
126
 
 
127
        :param view_name: the name of the view
 
128
        :param view_files: the list of files/directories in the view
 
129
        :param make_current: make this view the current one or not
 
130
        """
 
131
        self.tree.lock_write()
 
132
        try:
 
133
            self._load_view_info()
 
134
            self._views[view_name] = view_files
 
135
            if make_current:
 
136
                self._current = view_name
 
137
            self._save_view_info()
 
138
        finally:
 
139
            self.tree.unlock()
 
140
 
 
141
    def delete_view(self, view_name):
 
142
        """Delete a view definition.
 
143
 
 
144
        If the view deleted is the current one, the current view is reset.
 
145
        """
 
146
        self.tree.lock_write()
 
147
        try:
 
148
            self._load_view_info()
 
149
            try:
 
150
                del self._views[view_name]
 
151
            except KeyError:
 
152
                raise errors.NoSuchView(view_name)
 
153
            if view_name == self._current:
 
154
                self._current = None
 
155
            self._save_view_info()
 
156
        finally:
 
157
            self.tree.unlock()
 
158
 
 
159
    def _save_view_info(self):
 
160
        """Save the current view and all view definitions.
 
161
 
 
162
        Be sure to have initialised self._current and self._views before
 
163
        calling this method.
 
164
        """
 
165
        self.tree.lock_write()
 
166
        try:
 
167
            if self._current is None:
 
168
                keywords = {}
 
169
            else:
 
170
                keywords = {'current': self._current}
 
171
            self.tree._transport.put_bytes('views',
 
172
                self._serialize_view_content(keywords, self._views))
 
173
        finally:
 
174
            self.tree.unlock()
 
175
 
 
176
    def _load_view_info(self):
 
177
        """Load the current view and dictionary of view definitions."""
 
178
        if not self._loaded:
 
179
            self.tree.lock_read()
 
180
            try:
 
181
                try:
 
182
                    view_content = self.tree._transport.get_bytes('views')
 
183
                except errors.NoSuchFile, e:
 
184
                    self._current, self._views = None, {}
 
185
                else:
 
186
                    keywords, self._views = \
 
187
                        self._deserialize_view_content(view_content)
 
188
                    self._current = keywords.get('current')
 
189
            finally:
 
190
                self.tree.unlock()
 
191
            self._loaded = True
 
192
 
 
193
    def _serialize_view_content(self, keywords, view_dict):
 
194
        """Convert view keywords and a view dictionary into a stream."""
 
195
        lines = [_VIEWS_FORMAT1_MARKER]
 
196
        for key in keywords:
 
197
            line = "%s=%s\n" % (key,keywords[key])
 
198
            lines.append(line.encode('utf-8'))
 
199
        if view_dict:
 
200
            lines.append("views:\n".encode('utf-8'))
 
201
            for view in sorted(view_dict):
 
202
                view_data = "%s\0%s\n" % (view, "\0".join(view_dict[view]))
 
203
                lines.append(view_data.encode('utf-8'))
 
204
        return "".join(lines)
 
205
 
 
206
    def _deserialize_view_content(self, view_content):
 
207
        """Convert a stream into view keywords and a dictionary of views."""
 
208
        # as a special case to make initialization easy, an empty definition
 
209
        # maps to no current view and an empty view dictionary
 
210
        if view_content == '':
 
211
            return {}, {}
 
212
        lines = view_content.splitlines()
 
213
        match = _VIEWS_FORMAT_MARKER_RE.match(lines[0])
 
214
        if not match:
 
215
            raise ValueError(
 
216
                "format marker missing from top of views file")
 
217
        elif match.group(1) != '1':
 
218
            raise ValueError(
 
219
                "cannot decode views format %s" % match.group(1))
 
220
        try:
 
221
            keywords = {}
 
222
            views = {}
 
223
            in_views = False
 
224
            for line in lines[1:]:
 
225
                text = line.decode('utf-8')
 
226
                if in_views:
 
227
                    parts = text.split('\0')
 
228
                    view = parts.pop(0)
 
229
                    views[view] = parts
 
230
                elif text == 'views:':
 
231
                    in_views = True
 
232
                    continue
 
233
                elif text.find('=') >= 0:
 
234
                    # must be a name-value pair
 
235
                    keyword, value = text.split('=', 1)
 
236
                    keywords[keyword] = value
 
237
                else:
 
238
                    raise ValueError("failed to deserialize views line %s",
 
239
                        text)
 
240
            return keywords, views
 
241
        except ValueError, e:
 
242
            raise ValueError("failed to deserialize views content %r: %s"
 
243
                % (view_content, e))
 
244
 
 
245
 
 
246
class DisabledViews(_Views):
 
247
    """View storage that refuses to store anything.
 
248
 
 
249
    This is used by older formats that can't store views.
 
250
    """
 
251
 
 
252
    def __init__(self, tree):
 
253
        self.tree = tree
 
254
 
 
255
    def supports_views(self):
 
256
        return False
 
257
 
 
258
    def _not_supported(self, *a, **k):
 
259
        raise errors.ViewsNotSupported(self.tree)
 
260
 
 
261
    get_view_info = _not_supported
 
262
    set_view_info = _not_supported
 
263
    lookup_view = _not_supported
 
264
    set_view = _not_supported
 
265
    delete_view = _not_supported
 
266
 
 
267
 
 
268
def view_display_str(view_files, encoding=None):
 
269
    """Get the display string for a list of view files.
 
270
 
 
271
    :param view_files: the list of file names
 
272
    :param encoding: the encoding to display the files in
 
273
    """
 
274
    if encoding is None:
 
275
        return ", ".join(view_files)
 
276
    else:
 
277
        return ", ".join([v.encode(encoding, 'replace') for v in view_files])
 
278
 
 
279
 
 
280
def check_path_in_view(tree, relpath):
 
281
    """If a working tree has a view enabled, check the path is within it."""
 
282
    if tree.supports_views():
 
283
        view_files = tree.views.lookup_view()
 
284
        if  view_files and not osutils.is_inside_any(view_files, relpath):
 
285
            raise errors.FileOutsideView(relpath, view_files)