~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/rules.py

Fix up inter_changes with dirstate both C and python.

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
 
21
21
 
22
22
from bzrlib import (
23
23
    config,
24
 
    cmdline,
25
24
    errors,
26
25
    globbing,
27
26
    osutils,
36
35
FILE_PREFS_PREFIX = 'name '
37
36
FILE_PREFS_PREFIX_LEN = len(FILE_PREFS_PREFIX)
38
37
 
39
 
# The object providing default rules
40
 
_per_user_searcher = None
41
 
 
42
38
 
43
39
class _RulesSearcher(object):
44
40
    """An object that provides rule-based preferences."""
64
60
        """
65
61
        raise NotImplementedError(self.get_selected_items)
66
62
 
67
 
    def get_single_value(self, path, preference_name):
68
 
        """Get a single preference for a single file.
69
 
        
70
 
        :returns: The string preference value, or None.
71
 
        """
72
 
        for key, value in self.get_selected_items(path, [preference_name]):
73
 
            return value
74
 
        return None
75
 
 
76
63
 
77
64
class _IniBasedRulesSearcher(_RulesSearcher):
78
65
 
83
70
 
84
71
        :param inifile: the name of the file or a sequence of lines.
85
72
        """
86
 
        self._cfg = configobj.ConfigObj(inifile, encoding='utf-8')
 
73
        options = {'encoding': 'utf-8'}
 
74
        self._cfg = configobj.ConfigObj(inifile, options=options)
87
75
        sections = self._cfg.keys()
88
 
        patterns = []
89
 
        self.pattern_to_section = {}
90
 
        for s in sections:
91
 
            if s.startswith(FILE_PREFS_PREFIX):
92
 
                file_patterns = cmdline.split(s[FILE_PREFS_PREFIX_LEN:])
93
 
                patterns.extend(file_patterns)
94
 
                for fp in file_patterns:
95
 
                    self.pattern_to_section[fp] = s
 
76
        patterns = [s[FILE_PREFS_PREFIX_LEN:] for s in sections
 
77
            if s.startswith(FILE_PREFS_PREFIX)]
96
78
        if len(patterns) < len(sections):
97
79
            unknowns = [s for s in sections
98
80
                if not s.startswith(FILE_PREFS_PREFIX)]
110
92
        if pat is None:
111
93
            return ()
112
94
        else:
113
 
            all = self._cfg[self.pattern_to_section[pat]]
 
95
            all = self._cfg[FILE_PREFS_PREFIX + pat]
114
96
            return tuple(all.items())
115
97
 
116
98
    def get_selected_items(self, path, names):
121
103
        if pat is None:
122
104
            return ()
123
105
        else:
124
 
            all = self._cfg[self.pattern_to_section[pat]]
 
106
            all = self._cfg[FILE_PREFS_PREFIX + pat]
125
107
            return tuple((k, all.get(k)) for k in names)
126
108
 
127
109
 
156
138
    return osutils.pathjoin(config.config_dir(), 'rules')
157
139
 
158
140
 
159
 
def reset_rules():
160
 
    global _per_user_searcher
161
 
    _per_user_searcher = _IniBasedRulesSearcher(rules_filename())
162
 
 
163
 
reset_rules()
 
141
# The object providing default rules
 
142
_per_user_searcher = _IniBasedRulesSearcher(rules_filename())