/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
1442.1.1 by Robert Collins
move config_dir into bzrlib.config
1
# Copyright (C) 2005 by Canonical Ltd
2
#   Authors: Robert Collins <robert.collins@canonical.com>
3
#
4
# This program is free software; you can redistribute it and/or modify
5
# it under the terms of the GNU General Public License as published by
6
# the Free Software Foundation; either version 2 of the License, or
7
# (at your option) any later version.
8
#
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
# GNU General Public License for more details.
13
#
14
# You should have received a copy of the GNU General Public License
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
1442.1.20 by Robert Collins
add some documentation on options
18
"""Configuration that affects the behaviour of Bazaar.
19
20
Currently this configuration resides in ~/.bazaar/bazaar.conf
1770.2.2 by Aaron Bentley
Rename branches.conf to locations.conf
21
and ~/.bazaar/locations.conf, which is written to by bzr.
1442.1.20 by Robert Collins
add some documentation on options
22
1461 by Robert Collins
Typo in config.py (Thanks Fabbione)
23
In bazaar.conf the following options may be set:
1442.1.20 by Robert Collins
add some documentation on options
24
[DEFAULT]
25
editor=name-of-program
26
email=Your Name <your@email.address>
27
check_signatures=require|ignore|check-available(default)
28
create_signatures=always|never|when-required(default)
1442.1.56 by Robert Collins
gpg_signing_command configuration item
29
gpg_signing_command=name-of-program
1553.2.9 by Erik Bågfors
log_formatter => log_format for "named" formatters
30
log_format=name-of-format
1442.1.20 by Robert Collins
add some documentation on options
31
1770.2.2 by Aaron Bentley
Rename branches.conf to locations.conf
32
in locations.conf, you specify the url of a branch and options for it.
1442.1.20 by Robert Collins
add some documentation on options
33
Wildcards may be used - * and ? as normal in shell completion. Options
1770.2.2 by Aaron Bentley
Rename branches.conf to locations.conf
34
set in both bazaar.conf and locations.conf are overridden by the locations.conf
1442.1.20 by Robert Collins
add some documentation on options
35
setting.
36
[/home/robertc/source]
37
recurse=False|True(default)
38
email= as above
1759.2.1 by Jelmer Vernooij
Fix some types (found using aspell).
39
check_signatures= as above 
1442.1.20 by Robert Collins
add some documentation on options
40
create_signatures= as above.
41
42
explanation of options
43
----------------------
44
editor - this option sets the pop up editor to use during commits.
45
email - this option sets the user id bzr will use when committing.
46
check_signatures - this option controls whether bzr will require good gpg
47
                   signatures, ignore them, or check them if they are 
48
                   present.
49
create_signatures - this option controls whether bzr will always create 
50
                    gpg signatures, never create them, or create them if the
51
                    branch is configured to require them.
1887.2.1 by Adeodato Simó
Fix some typos and grammar issues.
52
log_format - this option sets the default log format.  Possible values are
53
             long, short, line, or a plugin can register new formats.
1553.6.2 by Erik Bågfors
documentation and NEWS
54
55
In bazaar.conf you can also define aliases in the ALIASES sections, example
56
57
[ALIASES]
58
lastlog=log --line -r-10..-1
59
ll=log --line -r-10..-1
60
h=help
61
up=pull
1442.1.20 by Robert Collins
add some documentation on options
62
"""
1442.1.1 by Robert Collins
move config_dir into bzrlib.config
63
1996.3.31 by John Arbash Meinel
Make bzrlib.config use lazy importing
64
import os
65
import sys
1474 by Robert Collins
Merge from Aaron Bentley.
66
1996.3.31 by John Arbash Meinel
Make bzrlib.config use lazy importing
67
from bzrlib.lazy_import import lazy_import
68
lazy_import(globals(), """
1474 by Robert Collins
Merge from Aaron Bentley.
69
import errno
1770.2.1 by Aaron Bentley
Use create_signature for signing policy, deprecate check_signatures for this
70
from fnmatch import fnmatch
71
import re
72
from StringIO import StringIO
1442.1.2 by Robert Collins
create a config module - there is enough config logic to make this worthwhile, and start testing config processing.
73
74
import bzrlib
1996.3.31 by John Arbash Meinel
Make bzrlib.config use lazy importing
75
from bzrlib import (
76
    errors,
77
    osutils,
78
    urlutils,
79
    )
80
import bzrlib.util.configobj.configobj as configobj
81
""")
82
1770.2.1 by Aaron Bentley
Use create_signature for signing policy, deprecate check_signatures for this
83
from bzrlib.trace import mutter, warning
84
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
85
1442.1.14 by Robert Collins
Create a default signature checking policy of CHECK_IF_POSSIBLE
86
CHECK_IF_POSSIBLE=0
87
CHECK_ALWAYS=1
88
CHECK_NEVER=2
89
90
1770.2.1 by Aaron Bentley
Use create_signature for signing policy, deprecate check_signatures for this
91
SIGN_WHEN_REQUIRED=0
92
SIGN_ALWAYS=1
93
SIGN_NEVER=2
94
95
1474 by Robert Collins
Merge from Aaron Bentley.
96
class ConfigObj(configobj.ConfigObj):
97
98
    def get_bool(self, section, key):
1556.2.2 by Aaron Bentley
Fixed get_bool
99
        return self[section].as_bool(key)
1474 by Robert Collins
Merge from Aaron Bentley.
100
101
    def get_value(self, section, name):
102
        # Try [] for the old DEFAULT section.
103
        if section == "DEFAULT":
104
            try:
105
                return self[name]
106
            except KeyError:
107
                pass
108
        return self[section][name]
109
110
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
111
class Config(object):
112
    """A configuration policy - what username, editor, gpg needs etc."""
113
114
    def get_editor(self):
115
        """Get the users pop up editor."""
116
        raise NotImplementedError
117
1442.1.15 by Robert Collins
make getting the signature checking policy a template method
118
    def _get_signature_checking(self):
119
        """Template method to override signature checking policy."""
120
1770.2.1 by Aaron Bentley
Use create_signature for signing policy, deprecate check_signatures for this
121
    def _get_signing_policy(self):
122
        """Template method to override signature creation policy."""
123
1442.1.69 by Robert Collins
config.Config has a 'get_user_option' call that accepts an option name.
124
    def _get_user_option(self, option_name):
125
        """Template method to provide a user option."""
126
        return None
127
128
    def get_user_option(self, option_name):
129
        """Get a generic option - no special process, no default."""
130
        return self._get_user_option(option_name)
131
1442.1.56 by Robert Collins
gpg_signing_command configuration item
132
    def gpg_signing_command(self):
133
        """What program should be used to sign signatures?"""
1442.1.59 by Robert Collins
Add re-sign command to generate a digital signature on a single revision.
134
        result = self._gpg_signing_command()
135
        if result is None:
136
            result = "gpg"
137
        return result
138
139
    def _gpg_signing_command(self):
140
        """See gpg_signing_command()."""
141
        return None
1442.1.56 by Robert Collins
gpg_signing_command configuration item
142
1553.2.9 by Erik Bågfors
log_formatter => log_format for "named" formatters
143
    def log_format(self):
144
        """What log format should be used"""
145
        result = self._log_format()
1553.2.4 by Erik Bågfors
Support for setting the default log format at a configuration option
146
        if result is None:
147
            result = "long"
148
        return result
149
1553.2.9 by Erik Bågfors
log_formatter => log_format for "named" formatters
150
    def _log_format(self):
151
        """See log_format()."""
1553.2.4 by Erik Bågfors
Support for setting the default log format at a configuration option
152
        return None
153
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
154
    def __init__(self):
155
        super(Config, self).__init__()
156
1472 by Robert Collins
post commit hook, first pass implementation
157
    def post_commit(self):
158
        """An ordered list of python functions to call.
159
160
        Each function takes branch, rev_id as parameters.
161
        """
162
        return self._post_commit()
163
164
    def _post_commit(self):
165
        """See Config.post_commit."""
166
        return None
167
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
168
    def user_email(self):
169
        """Return just the email component of a username."""
1185.33.31 by Martin Pool
Make annotate cope better with revisions committed without a valid
170
        return extract_email_address(self.username())
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
171
172
    def username(self):
173
        """Return email-style username.
174
    
175
        Something similar to 'Martin Pool <mbp@sourcefrog.net>'
176
        
1861.4.1 by Matthieu Moy
BZREMAIL renamed to BZR_EMAIL.
177
        $BZR_EMAIL can be set to override this (as well as the
178
        deprecated $BZREMAIL), then
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
179
        the concrete policy type is checked, and finally
1185.37.2 by Jamie Wilkinson
Fix a typo and grammar in Config.username() docstring.
180
        $EMAIL is examined.
181
        If none is found, a reasonable default is (hopefully)
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
182
        created.
183
    
184
        TODO: Check it's reasonably well-formed.
185
        """
1861.4.1 by Matthieu Moy
BZREMAIL renamed to BZR_EMAIL.
186
        v = os.environ.get('BZR_EMAIL')
187
        if v:
188
            return v.decode(bzrlib.user_encoding)
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
189
        v = os.environ.get('BZREMAIL')
190
        if v:
1861.4.1 by Matthieu Moy
BZREMAIL renamed to BZR_EMAIL.
191
            warning('BZREMAIL is deprecated in favor of BZR_EMAIL. Please update your configuration.')
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
192
            return v.decode(bzrlib.user_encoding)
193
    
194
        v = self._get_user_id()
195
        if v:
196
            return v
197
        
198
        v = os.environ.get('EMAIL')
199
        if v:
200
            return v.decode(bzrlib.user_encoding)
201
202
        name, email = _auto_user_id()
203
        if name:
204
            return '%s <%s>' % (name, email)
205
        else:
206
            return email
207
1442.1.14 by Robert Collins
Create a default signature checking policy of CHECK_IF_POSSIBLE
208
    def signature_checking(self):
209
        """What is the current policy for signature checking?."""
1442.1.15 by Robert Collins
make getting the signature checking policy a template method
210
        policy = self._get_signature_checking()
211
        if policy is not None:
212
            return policy
1442.1.14 by Robert Collins
Create a default signature checking policy of CHECK_IF_POSSIBLE
213
        return CHECK_IF_POSSIBLE
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
214
1770.2.1 by Aaron Bentley
Use create_signature for signing policy, deprecate check_signatures for this
215
    def signing_policy(self):
216
        """What is the current policy for signature checking?."""
217
        policy = self._get_signing_policy()
218
        if policy is not None:
219
            return policy
220
        return SIGN_WHEN_REQUIRED
221
1442.1.21 by Robert Collins
create signature_needed() call for commit to trigger creating signatures
222
    def signature_needed(self):
223
        """Is a signature needed when committing ?."""
1770.2.1 by Aaron Bentley
Use create_signature for signing policy, deprecate check_signatures for this
224
        policy = self._get_signing_policy()
225
        if policy is None:
226
            policy = self._get_signature_checking()
227
            if policy is not None:
228
                warning("Please use create_signatures, not check_signatures "
229
                        "to set signing policy.")
230
            if policy == CHECK_ALWAYS:
231
                return True
232
        elif policy == SIGN_ALWAYS:
1442.1.21 by Robert Collins
create signature_needed() call for commit to trigger creating signatures
233
            return True
234
        return False
235
1553.6.12 by Erik Bågfors
remove AliasConfig, based on input from abentley
236
    def get_alias(self, value):
237
        return self._get_alias(value)
238
239
    def _get_alias(self, value):
240
        pass
241
1770.2.7 by Aaron Bentley
Set/get nickname using BranchConfig
242
    def get_nickname(self):
243
        return self._get_nickname()
244
245
    def _get_nickname(self):
246
        return None
247
1442.1.15 by Robert Collins
make getting the signature checking policy a template method
248
1442.1.18 by Robert Collins
permit per branch location overriding of signature checking policy
249
class IniBasedConfig(Config):
250
    """A configuration policy that draws from ini files."""
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
251
1442.1.18 by Robert Collins
permit per branch location overriding of signature checking policy
252
    def _get_parser(self, file=None):
1185.12.51 by Aaron Bentley
Allowed second call of _get_parser() to not require a file
253
        if self._parser is not None:
254
            return self._parser
1185.12.49 by Aaron Bentley
Switched to ConfigObj
255
        if file is None:
256
            input = self._get_filename()
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
257
        else:
1185.12.49 by Aaron Bentley
Switched to ConfigObj
258
            input = file
1185.12.51 by Aaron Bentley
Allowed second call of _get_parser() to not require a file
259
        try:
1551.2.20 by Aaron Bentley
Treated config files as utf-8
260
            self._parser = ConfigObj(input, encoding='utf-8')
1474 by Robert Collins
Merge from Aaron Bentley.
261
        except configobj.ConfigObjError, e:
1185.12.51 by Aaron Bentley
Allowed second call of _get_parser() to not require a file
262
            raise errors.ParseConfigError(e.errors, e.config.filename)
1185.12.49 by Aaron Bentley
Switched to ConfigObj
263
        return self._parser
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
264
1442.1.18 by Robert Collins
permit per branch location overriding of signature checking policy
265
    def _get_section(self):
266
        """Override this to define the section used by the config."""
267
        return "DEFAULT"
268
1442.1.16 by Robert Collins
allow global overriding of signature policy to never check
269
    def _get_signature_checking(self):
270
        """See Config._get_signature_checking."""
1474 by Robert Collins
Merge from Aaron Bentley.
271
        policy = self._get_user_option('check_signatures')
272
        if policy:
273
            return self._string_to_signature_policy(policy)
1442.1.18 by Robert Collins
permit per branch location overriding of signature checking policy
274
1770.2.1 by Aaron Bentley
Use create_signature for signing policy, deprecate check_signatures for this
275
    def _get_signing_policy(self):
1773.4.3 by Martin Pool
[merge] bzr.dev
276
        """See Config._get_signing_policy"""
1770.2.1 by Aaron Bentley
Use create_signature for signing policy, deprecate check_signatures for this
277
        policy = self._get_user_option('create_signatures')
278
        if policy:
279
            return self._string_to_signing_policy(policy)
280
1442.1.18 by Robert Collins
permit per branch location overriding of signature checking policy
281
    def _get_user_id(self):
282
        """Get the user id from the 'email' key in the current section."""
1474 by Robert Collins
Merge from Aaron Bentley.
283
        return self._get_user_option('email')
1442.1.18 by Robert Collins
permit per branch location overriding of signature checking policy
284
1442.1.69 by Robert Collins
config.Config has a 'get_user_option' call that accepts an option name.
285
    def _get_user_option(self, option_name):
286
        """See Config._get_user_option."""
1185.12.53 by Aaron Bentley
Merged more from Robert
287
        try:
1474 by Robert Collins
Merge from Aaron Bentley.
288
            return self._get_parser().get_value(self._get_section(),
289
                                                option_name)
1185.12.53 by Aaron Bentley
Merged more from Robert
290
        except KeyError:
291
            pass
1442.1.69 by Robert Collins
config.Config has a 'get_user_option' call that accepts an option name.
292
1442.1.59 by Robert Collins
Add re-sign command to generate a digital signature on a single revision.
293
    def _gpg_signing_command(self):
1442.1.56 by Robert Collins
gpg_signing_command configuration item
294
        """See Config.gpg_signing_command."""
1472 by Robert Collins
post commit hook, first pass implementation
295
        return self._get_user_option('gpg_signing_command')
1442.1.56 by Robert Collins
gpg_signing_command configuration item
296
1553.2.9 by Erik Bågfors
log_formatter => log_format for "named" formatters
297
    def _log_format(self):
298
        """See Config.log_format."""
299
        return self._get_user_option('log_format')
1553.2.4 by Erik Bågfors
Support for setting the default log format at a configuration option
300
1442.1.18 by Robert Collins
permit per branch location overriding of signature checking policy
301
    def __init__(self, get_filename):
302
        super(IniBasedConfig, self).__init__()
303
        self._get_filename = get_filename
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
304
        self._parser = None
1472 by Robert Collins
post commit hook, first pass implementation
305
        
306
    def _post_commit(self):
307
        """See Config.post_commit."""
308
        return self._get_user_option('post_commit')
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
309
1442.1.16 by Robert Collins
allow global overriding of signature policy to never check
310
    def _string_to_signature_policy(self, signature_string):
311
        """Convert a string to a signing policy."""
1442.1.17 by Robert Collins
allow global overriding of signature policy to force checking, or (pointless but allowed) to set auto checking
312
        if signature_string.lower() == 'check-available':
313
            return CHECK_IF_POSSIBLE
1442.1.16 by Robert Collins
allow global overriding of signature policy to never check
314
        if signature_string.lower() == 'ignore':
315
            return CHECK_NEVER
1442.1.17 by Robert Collins
allow global overriding of signature policy to force checking, or (pointless but allowed) to set auto checking
316
        if signature_string.lower() == 'require':
317
            return CHECK_ALWAYS
1442.1.16 by Robert Collins
allow global overriding of signature policy to never check
318
        raise errors.BzrError("Invalid signatures policy '%s'"
319
                              % signature_string)
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
320
1770.2.1 by Aaron Bentley
Use create_signature for signing policy, deprecate check_signatures for this
321
    def _string_to_signing_policy(self, signature_string):
322
        """Convert a string to a signing policy."""
323
        if signature_string.lower() == 'when-required':
324
            return SIGN_WHEN_REQUIRED
325
        if signature_string.lower() == 'never':
326
            return SIGN_NEVER
327
        if signature_string.lower() == 'always':
328
            return SIGN_ALWAYS
329
        raise errors.BzrError("Invalid signing policy '%s'"
330
                              % signature_string)
331
1553.6.12 by Erik Bågfors
remove AliasConfig, based on input from abentley
332
    def _get_alias(self, value):
333
        try:
334
            return self._get_parser().get_value("ALIASES", 
335
                                                value)
336
        except KeyError:
337
            pass
338
1770.2.7 by Aaron Bentley
Set/get nickname using BranchConfig
339
    def _get_nickname(self):
340
        return self.get_user_option('nickname')
341
1442.1.18 by Robert Collins
permit per branch location overriding of signature checking policy
342
343
class GlobalConfig(IniBasedConfig):
344
    """The configuration that should be used for a specific location."""
345
346
    def get_editor(self):
1474 by Robert Collins
Merge from Aaron Bentley.
347
        return self._get_user_option('editor')
1442.1.18 by Robert Collins
permit per branch location overriding of signature checking policy
348
349
    def __init__(self):
350
        super(GlobalConfig, self).__init__(config_filename)
351
1816.2.1 by Robey Pointer
add set_user_option to GlobalConfig, and make /etc/passwd username lookup try harder with encodings
352
    def set_user_option(self, option, value):
353
        """Save option and its value in the configuration."""
354
        # FIXME: RBC 20051029 This should refresh the parser and also take a
355
        # file lock on bazaar.conf.
356
        conf_dir = os.path.dirname(self._get_filename())
357
        ensure_config_dir_exists(conf_dir)
358
        if 'DEFAULT' not in self._get_parser():
359
            self._get_parser()['DEFAULT'] = {}
360
        self._get_parser()['DEFAULT'][option] = value
361
        f = open(self._get_filename(), 'wb')
362
        self._get_parser().write(f)
363
        f.close()
364
1442.1.18 by Robert Collins
permit per branch location overriding of signature checking policy
365
366
class LocationConfig(IniBasedConfig):
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
367
    """A configuration object that gives the policy for a location."""
368
369
    def __init__(self, location):
1770.2.2 by Aaron Bentley
Rename branches.conf to locations.conf
370
        name_generator = locations_config_filename
371
        if (not os.path.exists(name_generator()) and 
372
                os.path.exists(branches_config_filename())):
1830.2.1 by John Arbash Meinel
Make it clearer what config file needs to be renamed.
373
            if sys.platform == 'win32':
374
                warning('Please rename %s to %s' 
375
                         % (branches_config_filename(),
376
                            locations_config_filename()))
377
            else:
378
                warning('Please rename ~/.bazaar/branches.conf'
379
                        ' to ~/.bazaar/locations.conf')
1770.2.2 by Aaron Bentley
Rename branches.conf to locations.conf
380
            name_generator = branches_config_filename
381
        super(LocationConfig, self).__init__(name_generator)
1878.1.1 by John Arbash Meinel
Entries in locations.conf should prefer local paths if available (bug #53653)
382
        # local file locations are looked up by local path, rather than
383
        # by file url. This is because the config file is a user
384
        # file, and we would rather not expose the user to file urls.
385
        if location.startswith('file://'):
386
            location = urlutils.local_path_from_url(location)
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
387
        self.location = location
388
1442.1.9 by Robert Collins
exact section test passes
389
    def _get_section(self):
390
        """Get the section we should look in for config items.
391
392
        Returns None if none exists. 
393
        TODO: perhaps return a NullSection that thunks through to the 
394
              global config.
395
        """
1185.12.49 by Aaron Bentley
Switched to ConfigObj
396
        sections = self._get_parser()
1442.1.12 by Robert Collins
LocationConfig section retrieval falls into my lap
397
        location_names = self.location.split('/')
1442.1.18 by Robert Collins
permit per branch location overriding of signature checking policy
398
        if self.location.endswith('/'):
399
            del location_names[-1]
1442.1.12 by Robert Collins
LocationConfig section retrieval falls into my lap
400
        matches=[]
1442.1.10 by Robert Collins
explicit over glob test passes
401
        for section in sections:
1878.1.1 by John Arbash Meinel
Entries in locations.conf should prefer local paths if available (bug #53653)
402
            # location is a local path if possible, so we need
403
            # to convert 'file://' urls to local paths if necessary.
404
            # This also avoids having file:///path be a more exact
405
            # match than '/path'.
406
            if section.startswith('file://'):
407
                section_path = urlutils.local_path_from_url(section)
408
            else:
409
                section_path = section
410
            section_names = section_path.split('/')
1442.1.12 by Robert Collins
LocationConfig section retrieval falls into my lap
411
            if section.endswith('/'):
412
                del section_names[-1]
413
            names = zip(location_names, section_names)
414
            matched = True
415
            for name in names:
416
                if not fnmatch(name[0], name[1]):
417
                    matched = False
418
                    break
419
            if not matched:
420
                continue
421
            # so, for the common prefix they matched.
422
            # if section is longer, no match.
423
            if len(section_names) > len(location_names):
424
                continue
425
            # if path is longer, and recurse is not true, no match
426
            if len(section_names) < len(location_names):
1185.12.49 by Aaron Bentley
Switched to ConfigObj
427
                try:
1551.2.20 by Aaron Bentley
Treated config files as utf-8
428
                    if not self._get_parser()[section].as_bool('recurse'):
1185.12.49 by Aaron Bentley
Switched to ConfigObj
429
                        continue
430
                except KeyError:
431
                    pass
1442.1.12 by Robert Collins
LocationConfig section retrieval falls into my lap
432
            matches.append((len(section_names), section))
433
        if not len(matches):
434
            return None
435
        matches.sort(reverse=True)
436
        return matches[0][1]
1442.1.9 by Robert Collins
exact section test passes
437
1490 by Robert Collins
Implement a 'bzr push' command, with saved locations; update diff to return 1.
438
    def set_user_option(self, option, value):
439
        """Save option and its value in the configuration."""
440
        # FIXME: RBC 20051029 This should refresh the parser and also take a
1770.2.2 by Aaron Bentley
Rename branches.conf to locations.conf
441
        # file lock on locations.conf.
1185.31.39 by John Arbash Meinel
Replacing os.getcwdu() with osutils.getcwd(),
442
        conf_dir = os.path.dirname(self._get_filename())
1185.31.43 by John Arbash Meinel
Reintroduced ensure_config_dir_exists() for sftp
443
        ensure_config_dir_exists(conf_dir)
1490 by Robert Collins
Implement a 'bzr push' command, with saved locations; update diff to return 1.
444
        location = self.location
445
        if location.endswith('/'):
446
            location = location[:-1]
447
        if (not location in self._get_parser() and
448
            not location + '/' in self._get_parser()):
449
            self._get_parser()[location]={}
450
        elif location + '/' in self._get_parser():
451
            location = location + '/'
452
        self._get_parser()[location][option]=value
1551.2.49 by abentley
Made ConfigObj output binary-identical files on win32 and *nix
453
        self._get_parser().write(file(self._get_filename(), 'wb'))
1490 by Robert Collins
Implement a 'bzr push' command, with saved locations; update diff to return 1.
454
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
455
456
class BranchConfig(Config):
457
    """A configuration object giving the policy for a branch."""
458
1770.2.5 by Aaron Bentley
Integrate branch.conf into BranchConfig
459
    def _get_branch_data_config(self):
460
        if self._branch_data_config is None:
461
            self._branch_data_config = TreeConfig(self.branch)
462
        return self._branch_data_config
463
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
464
    def _get_location_config(self):
465
        if self._location_config is None:
466
            self._location_config = LocationConfig(self.branch.base)
467
        return self._location_config
468
1770.2.5 by Aaron Bentley
Integrate branch.conf into BranchConfig
469
    def _get_global_config(self):
470
        if self._global_config is None:
471
            self._global_config = GlobalConfig()
472
        return self._global_config
473
474
    def _get_best_value(self, option_name):
475
        """This returns a user option from local, tree or global config.
476
477
        They are tried in that order.  Use get_safe_value if trusted values
478
        are necessary.
479
        """
480
        for source in self.option_sources:
481
            value = getattr(source(), option_name)()
482
            if value is not None:
483
                return value
484
        return None
485
486
    def _get_safe_value(self, option_name):
487
        """This variant of get_best_value never returns untrusted values.
488
        
489
        It does not return values from the branch data, because the branch may
490
        not be controlled by the user.
491
492
        We may wish to allow locations.conf to control whether branches are
493
        trusted in the future.
494
        """
495
        for source in (self._get_location_config, self._get_global_config):
496
            value = getattr(source(), option_name)()
497
            if value is not None:
498
                return value
499
        return None
500
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
501
    def _get_user_id(self):
502
        """Return the full user id for the branch.
503
    
504
        e.g. "John Hacker <jhacker@foo.org>"
505
        This is looked up in the email controlfile for the branch.
506
        """
507
        try:
1185.65.29 by Robert Collins
Implement final review suggestions.
508
            return (self.branch.control_files.get_utf8("email") 
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
509
                    .read()
510
                    .decode(bzrlib.user_encoding)
511
                    .rstrip("\r\n"))
512
        except errors.NoSuchFile, e:
513
            pass
514
        
1770.2.5 by Aaron Bentley
Integrate branch.conf into BranchConfig
515
        return self._get_best_value('_get_user_id')
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
516
1442.1.19 by Robert Collins
BranchConfigs inherit signature_checking policy from their LocationConfig.
517
    def _get_signature_checking(self):
518
        """See Config._get_signature_checking."""
1770.2.5 by Aaron Bentley
Integrate branch.conf into BranchConfig
519
        return self._get_best_value('_get_signature_checking')
1442.1.19 by Robert Collins
BranchConfigs inherit signature_checking policy from their LocationConfig.
520
1770.2.1 by Aaron Bentley
Use create_signature for signing policy, deprecate check_signatures for this
521
    def _get_signing_policy(self):
522
        """See Config._get_signing_policy."""
1770.2.5 by Aaron Bentley
Integrate branch.conf into BranchConfig
523
        return self._get_best_value('_get_signing_policy')
1770.2.1 by Aaron Bentley
Use create_signature for signing policy, deprecate check_signatures for this
524
1442.1.69 by Robert Collins
config.Config has a 'get_user_option' call that accepts an option name.
525
    def _get_user_option(self, option_name):
526
        """See Config._get_user_option."""
1770.2.5 by Aaron Bentley
Integrate branch.conf into BranchConfig
527
        for source in self.option_sources:
528
            value = source()._get_user_option(option_name)
529
            if value is not None:
530
                return value
531
        return None
532
533
    def set_user_option(self, name, value, local=False):
534
        if local is True:
535
            self._get_location_config().set_user_option(name, value)
536
        else:
1770.2.6 by Aaron Bentley
Ensure branch.conf works properly
537
            self._get_branch_data_config().set_option(value, name)
1770.2.5 by Aaron Bentley
Integrate branch.conf into BranchConfig
538
1442.1.69 by Robert Collins
config.Config has a 'get_user_option' call that accepts an option name.
539
1442.1.59 by Robert Collins
Add re-sign command to generate a digital signature on a single revision.
540
    def _gpg_signing_command(self):
1442.1.56 by Robert Collins
gpg_signing_command configuration item
541
        """See Config.gpg_signing_command."""
1770.2.5 by Aaron Bentley
Integrate branch.conf into BranchConfig
542
        return self._get_safe_value('_gpg_signing_command')
1442.1.56 by Robert Collins
gpg_signing_command configuration item
543
        
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
544
    def __init__(self, branch):
545
        super(BranchConfig, self).__init__()
546
        self._location_config = None
1770.2.5 by Aaron Bentley
Integrate branch.conf into BranchConfig
547
        self._branch_data_config = None
548
        self._global_config = None
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
549
        self.branch = branch
1770.2.5 by Aaron Bentley
Integrate branch.conf into BranchConfig
550
        self.option_sources = (self._get_location_config, 
551
                               self._get_branch_data_config,
552
                               self._get_global_config)
1442.1.2 by Robert Collins
create a config module - there is enough config logic to make this worthwhile, and start testing config processing.
553
1472 by Robert Collins
post commit hook, first pass implementation
554
    def _post_commit(self):
555
        """See Config.post_commit."""
1770.2.5 by Aaron Bentley
Integrate branch.conf into BranchConfig
556
        return self._get_safe_value('_post_commit')
1472 by Robert Collins
post commit hook, first pass implementation
557
1770.2.7 by Aaron Bentley
Set/get nickname using BranchConfig
558
    def _get_nickname(self):
1824.1.1 by Robert Collins
Add BranchConfig.has_explicit_nickname call.
559
        value = self._get_explicit_nickname()
1770.2.7 by Aaron Bentley
Set/get nickname using BranchConfig
560
        if value is not None:
561
            return value
562
        return self.branch.base.split('/')[-2]
563
1824.1.1 by Robert Collins
Add BranchConfig.has_explicit_nickname call.
564
    def has_explicit_nickname(self):
565
        """Return true if a nickname has been explicitly assigned."""
566
        return self._get_explicit_nickname() is not None
567
568
    def _get_explicit_nickname(self):
569
        return self._get_best_value('_get_nickname')
570
1553.2.9 by Erik Bågfors
log_formatter => log_format for "named" formatters
571
    def _log_format(self):
572
        """See Config.log_format."""
1770.2.5 by Aaron Bentley
Integrate branch.conf into BranchConfig
573
        return self._get_best_value('_log_format')
1442.1.1 by Robert Collins
move config_dir into bzrlib.config
574
1553.6.12 by Erik Bågfors
remove AliasConfig, based on input from abentley
575
1185.31.43 by John Arbash Meinel
Reintroduced ensure_config_dir_exists() for sftp
576
def ensure_config_dir_exists(path=None):
577
    """Make sure a configuration directory exists.
578
    This makes sure that the directory exists.
579
    On windows, since configuration directories are 2 levels deep,
580
    it makes sure both the directory and the parent directory exists.
581
    """
582
    if path is None:
583
        path = config_dir()
584
    if not os.path.isdir(path):
585
        if sys.platform == 'win32':
586
            parent_dir = os.path.dirname(path)
587
            if not os.path.isdir(parent_dir):
588
                mutter('creating config parent directory: %r', parent_dir)
589
            os.mkdir(parent_dir)
590
        mutter('creating config directory: %r', path)
591
        os.mkdir(path)
592
1532 by Robert Collins
Merge in John Meinels integration branch.
593
1442.1.1 by Robert Collins
move config_dir into bzrlib.config
594
def config_dir():
595
    """Return per-user configuration directory.
596
1442.1.2 by Robert Collins
create a config module - there is enough config logic to make this worthwhile, and start testing config processing.
597
    By default this is ~/.bazaar/
1442.1.1 by Robert Collins
move config_dir into bzrlib.config
598
    
599
    TODO: Global option --config-dir to override this.
600
    """
1185.38.1 by John Arbash Meinel
Adding my win32 patch for moving the home directory.
601
    base = os.environ.get('BZR_HOME', None)
602
    if sys.platform == 'win32':
603
        if base is None:
604
            base = os.environ.get('APPDATA', None)
605
        if base is None:
606
            base = os.environ.get('HOME', None)
607
        if base is None:
1773.4.1 by Martin Pool
Add pyflakes makefile target; fix many warnings
608
            raise errors.BzrError('You must have one of BZR_HOME, APPDATA, or HOME set')
1996.3.31 by John Arbash Meinel
Make bzrlib.config use lazy importing
609
        return osutils.pathjoin(base, 'bazaar', '2.0')
1185.38.1 by John Arbash Meinel
Adding my win32 patch for moving the home directory.
610
    else:
611
        # cygwin, linux, and darwin all have a $HOME directory
612
        if base is None:
613
            base = os.path.expanduser("~")
1996.3.31 by John Arbash Meinel
Make bzrlib.config use lazy importing
614
        return osutils.pathjoin(base, ".bazaar")
1185.31.32 by John Arbash Meinel
Updated the bzr sourcecode to use bzrlib.osutils.pathjoin rather than os.path.join to enforce internal use of / instead of \
615
616
1442.1.2 by Robert Collins
create a config module - there is enough config logic to make this worthwhile, and start testing config processing.
617
def config_filename():
618
    """Return per-user configuration ini file filename."""
1996.3.31 by John Arbash Meinel
Make bzrlib.config use lazy importing
619
    return osutils.pathjoin(config_dir(), 'bazaar.conf')
1442.1.2 by Robert Collins
create a config module - there is enough config logic to make this worthwhile, and start testing config processing.
620
621
1442.1.6 by Robert Collins
first stage major overhaul of configs, giving use BranchConfigs, LocationConfigs and GlobalConfigs
622
def branches_config_filename():
623
    """Return per-user configuration ini file filename."""
1996.3.31 by John Arbash Meinel
Make bzrlib.config use lazy importing
624
    return osutils.pathjoin(config_dir(), 'branches.conf')
1442.1.2 by Robert Collins
create a config module - there is enough config logic to make this worthwhile, and start testing config processing.
625
1830.2.1 by John Arbash Meinel
Make it clearer what config file needs to be renamed.
626
1770.2.2 by Aaron Bentley
Rename branches.conf to locations.conf
627
def locations_config_filename():
628
    """Return per-user configuration ini file filename."""
1996.3.31 by John Arbash Meinel
Make bzrlib.config use lazy importing
629
    return osutils.pathjoin(config_dir(), 'locations.conf')
1770.2.2 by Aaron Bentley
Rename branches.conf to locations.conf
630
1442.1.2 by Robert Collins
create a config module - there is enough config logic to make this worthwhile, and start testing config processing.
631
1836.1.6 by John Arbash Meinel
Creating a helper function for getting the user ignore filename
632
def user_ignore_config_filename():
633
    """Return the user default ignore filename"""
1996.3.31 by John Arbash Meinel
Make bzrlib.config use lazy importing
634
    return osutils.pathjoin(config_dir(), 'ignore')
1836.1.6 by John Arbash Meinel
Creating a helper function for getting the user ignore filename
635
636
1442.1.2 by Robert Collins
create a config module - there is enough config logic to make this worthwhile, and start testing config processing.
637
def _auto_user_id():
638
    """Calculate automatic user identification.
639
640
    Returns (realname, email).
641
642
    Only used when none is set in the environment or the id file.
643
644
    This previously used the FQDN as the default domain, but that can
645
    be very slow on machines where DNS is broken.  So now we simply
646
    use the hostname.
647
    """
648
    import socket
649
650
    # XXX: Any good way to get real user name on win32?
651
652
    try:
653
        import pwd
654
        uid = os.getuid()
655
        w = pwd.getpwuid(uid)
1553.4.5 by Michael Ellerman
Produce an intelligible error if the user's /etc/passwd is not encoded in
656
1816.2.1 by Robey Pointer
add set_user_option to GlobalConfig, and make /etc/passwd username lookup try harder with encodings
657
        # we try utf-8 first, because on many variants (like Linux),
658
        # /etc/passwd "should" be in utf-8, and because it's unlikely to give
659
        # false positives.  (many users will have their user encoding set to
660
        # latin-1, which cannot raise UnicodeError.)
661
        try:
662
            gecos = w.pw_gecos.decode('utf-8')
663
            encoding = 'utf-8'
664
        except UnicodeError:
665
            try:
666
                gecos = w.pw_gecos.decode(bzrlib.user_encoding)
667
                encoding = bzrlib.user_encoding
668
            except UnicodeError:
669
                raise errors.BzrCommandError('Unable to determine your name.  '
670
                   'Use "bzr whoami" to set it.')
671
        try:
672
            username = w.pw_name.decode(encoding)
673
        except UnicodeError:
674
            raise errors.BzrCommandError('Unable to determine your name.  '
675
                'Use "bzr whoami" to set it.')
1553.4.5 by Michael Ellerman
Produce an intelligible error if the user's /etc/passwd is not encoded in
676
1442.1.2 by Robert Collins
create a config module - there is enough config logic to make this worthwhile, and start testing config processing.
677
        comma = gecos.find(',')
678
        if comma == -1:
679
            realname = gecos
680
        else:
681
            realname = gecos[:comma]
682
        if not realname:
683
            realname = username
684
685
    except ImportError:
686
        import getpass
1553.4.5 by Michael Ellerman
Produce an intelligible error if the user's /etc/passwd is not encoded in
687
        try:
688
            realname = username = getpass.getuser().decode(bzrlib.user_encoding)
689
        except UnicodeDecodeError:
690
            raise errors.BzrError("Can't decode username as %s." % \
691
                    bzrlib.user_encoding)
1442.1.2 by Robert Collins
create a config module - there is enough config logic to make this worthwhile, and start testing config processing.
692
693
    return realname, (username + '@' + socket.gethostname())
694
695
1185.16.52 by Martin Pool
- add extract_email_address
696
def extract_email_address(e):
697
    """Return just the address part of an email string.
698
    
699
    That is just the user@domain part, nothing else. 
700
    This part is required to contain only ascii characters.
701
    If it can't be extracted, raises an error.
702
    
703
    >>> extract_email_address('Jane Tester <jane@test.com>')
704
    "jane@test.com"
705
    """
706
    m = re.search(r'[\w+.-]+@[\w+.-]+', e)
707
    if not m:
2055.2.2 by John Arbash Meinel
Switch extract_email_address() to use a more specific exception
708
        raise errors.NoEmailInUsername(e)
1185.16.52 by Martin Pool
- add extract_email_address
709
    return m.group(0)
1185.35.11 by Aaron Bentley
Added support for branch nicks
710
1185.85.30 by John Arbash Meinel
Fixing 'bzr push' exposed that IniBasedConfig didn't handle unicode.
711
1770.2.5 by Aaron Bentley
Integrate branch.conf into BranchConfig
712
class TreeConfig(IniBasedConfig):
1185.35.11 by Aaron Bentley
Added support for branch nicks
713
    """Branch configuration data associated with its contents, not location"""
714
    def __init__(self, branch):
715
        self.branch = branch
716
1770.2.5 by Aaron Bentley
Integrate branch.conf into BranchConfig
717
    def _get_parser(self, file=None):
718
        if file is not None:
719
            return IniBasedConfig._get_parser(file)
720
        return self._get_config()
721
1185.35.11 by Aaron Bentley
Added support for branch nicks
722
    def _get_config(self):
723
        try:
1556.2.1 by Aaron Bentley
Switched to ConfigObj 4.2.0
724
            obj = ConfigObj(self.branch.control_files.get('branch.conf'), 
725
                            encoding='utf-8')
1185.35.11 by Aaron Bentley
Added support for branch nicks
726
        except errors.NoSuchFile:
1556.2.1 by Aaron Bentley
Switched to ConfigObj 4.2.0
727
            obj = ConfigObj(encoding='utf=8')
1185.35.11 by Aaron Bentley
Added support for branch nicks
728
        return obj
729
730
    def get_option(self, name, section=None, default=None):
731
        self.branch.lock_read()
732
        try:
733
            obj = self._get_config()
734
            try:
735
                if section is not None:
736
                    obj[section]
737
                result = obj[name]
738
            except KeyError:
739
                result = default
740
        finally:
741
            self.branch.unlock()
742
        return result
743
744
    def set_option(self, value, name, section=None):
745
        """Set a per-branch configuration option"""
746
        self.branch.lock_write()
747
        try:
748
            cfg_obj = self._get_config()
749
            if section is None:
750
                obj = cfg_obj
751
            else:
752
                try:
753
                    obj = cfg_obj[section]
754
                except KeyError:
755
                    cfg_obj[section] = {}
756
                    obj = cfg_obj[section]
757
            obj[name] = value
1556.2.1 by Aaron Bentley
Switched to ConfigObj 4.2.0
758
            out_file = StringIO()
759
            cfg_obj.write(out_file)
1185.35.11 by Aaron Bentley
Added support for branch nicks
760
            out_file.seek(0)
1185.65.12 by Robert Collins
Remove the only-used-once put_controlfiles, and change put_controlfile to put and put_utf8.
761
            self.branch.control_files.put('branch.conf', out_file)
1185.35.11 by Aaron Bentley
Added support for branch nicks
762
        finally:
763
            self.branch.unlock()