~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/rules.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-09-03 06:31:11 UTC
  • mfrom: (1739.2.12 readdir)
  • Revision ID: pqm@pqm.ubuntu.com-20080903063111-jr3ru4gv44xkwl2l
(robertc) Stat the contents of directories in inode order. (Robert
        Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2008, 2009, 2010 Canonical Ltd
 
1
# Copyright (C) 2008 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
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
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
"""Rule-based definition of preferences for selected files in selected branches.
18
18
 
19
19
See ``bzr help rules`` for details.
20
20
"""
21
21
 
22
 
from __future__ import absolute_import
23
 
 
24
22
from bzrlib import (
25
23
    config,
26
 
    cmdline,
27
24
    errors,
28
25
    globbing,
29
26
    osutils,
38
35
FILE_PREFS_PREFIX = 'name '
39
36
FILE_PREFS_PREFIX_LEN = len(FILE_PREFS_PREFIX)
40
37
 
41
 
# The object providing default rules
42
 
_per_user_searcher = None
43
 
 
44
38
 
45
39
class _RulesSearcher(object):
46
40
    """An object that provides rule-based preferences."""
66
60
        """
67
61
        raise NotImplementedError(self.get_selected_items)
68
62
 
69
 
    def get_single_value(self, path, preference_name):
70
 
        """Get a single preference for a single file.
71
 
        
72
 
        :returns: The string preference value, or None.
73
 
        """
74
 
        for key, value in self.get_selected_items(path, [preference_name]):
75
 
            return value
76
 
        return None
77
 
 
78
63
 
79
64
class _IniBasedRulesSearcher(_RulesSearcher):
80
65
 
85
70
 
86
71
        :param inifile: the name of the file or a sequence of lines.
87
72
        """
88
 
        self._cfg = configobj.ConfigObj(inifile, encoding='utf-8')
 
73
        options = {'encoding': 'utf-8'}
 
74
        self._cfg = configobj.ConfigObj(inifile, options=options)
89
75
        sections = self._cfg.keys()
90
 
        patterns = []
91
 
        self.pattern_to_section = {}
92
 
        for s in sections:
93
 
            if s.startswith(FILE_PREFS_PREFIX):
94
 
                file_patterns = cmdline.split(s[FILE_PREFS_PREFIX_LEN:])
95
 
                patterns.extend(file_patterns)
96
 
                for fp in file_patterns:
97
 
                    self.pattern_to_section[fp] = s
 
76
        patterns = [s[FILE_PREFS_PREFIX_LEN:] for s in sections
 
77
            if s.startswith(FILE_PREFS_PREFIX)]
98
78
        if len(patterns) < len(sections):
99
79
            unknowns = [s for s in sections
100
80
                if not s.startswith(FILE_PREFS_PREFIX)]
112
92
        if pat is None:
113
93
            return ()
114
94
        else:
115
 
            all = self._cfg[self.pattern_to_section[pat]]
 
95
            all = self._cfg[FILE_PREFS_PREFIX + pat]
116
96
            return tuple(all.items())
117
97
 
118
98
    def get_selected_items(self, path, names):
123
103
        if pat is None:
124
104
            return ()
125
105
        else:
126
 
            all = self._cfg[self.pattern_to_section[pat]]
 
106
            all = self._cfg[FILE_PREFS_PREFIX + pat]
127
107
            return tuple((k, all.get(k)) for k in names)
128
108
 
129
109
 
158
138
    return osutils.pathjoin(config.config_dir(), 'rules')
159
139
 
160
140
 
161
 
def reset_rules():
162
 
    global _per_user_searcher
163
 
    _per_user_searcher = _IniBasedRulesSearcher(rules_filename())
164
 
 
165
 
reset_rules()
 
141
# The object providing default rules
 
142
_per_user_searcher = _IniBasedRulesSearcher(rules_filename())