~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/config.py

  • Committer: John Arbash Meinel
  • Date: 2006-07-03 18:27:35 UTC
  • mto: This revision was merged to the branch mainline in revision 1851.
  • Revision ID: john@arbash-meinel.com-20060703182735-3081f13e92d7f657
WorkingTree.open_containing() was directly calling os.getcwdu(), which on mac returns the wrong normalization, and on win32 would have the wrong slashes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
18
"""Configuration that affects the behaviour of Bazaar.
 
19
 
 
20
Currently this configuration resides in ~/.bazaar/bazaar.conf
 
21
and ~/.bazaar/locations.conf, which is written to by bzr.
 
22
 
 
23
In bazaar.conf the following options may be set:
 
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)
 
29
gpg_signing_command=name-of-program
 
30
log_format=name-of-format
 
31
 
 
32
in locations.conf, you specify the url of a branch and options for it.
 
33
Wildcards may be used - * and ? as normal in shell completion. Options
 
34
set in both bazaar.conf and locations.conf are overridden by the locations.conf
 
35
setting.
 
36
[/home/robertc/source]
 
37
recurse=False|True(default)
 
38
email= as above
 
39
check_signatures= as above 
 
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.
 
52
log_format - This options set the default log format.  Options are long, 
 
53
             short, line, or a plugin can register new formats
 
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
 
62
"""
 
63
 
 
64
 
 
65
import errno
 
66
from fnmatch import fnmatch
 
67
import os
 
68
import re
 
69
import sys
 
70
from StringIO import StringIO
 
71
 
 
72
import bzrlib
 
73
import bzrlib.errors as errors
 
74
from bzrlib.osutils import pathjoin
 
75
from bzrlib.trace import mutter, warning
 
76
import bzrlib.util.configobj.configobj as configobj
 
77
 
 
78
 
 
79
CHECK_IF_POSSIBLE=0
 
80
CHECK_ALWAYS=1
 
81
CHECK_NEVER=2
 
82
 
 
83
 
 
84
SIGN_WHEN_REQUIRED=0
 
85
SIGN_ALWAYS=1
 
86
SIGN_NEVER=2
 
87
 
 
88
 
 
89
class ConfigObj(configobj.ConfigObj):
 
90
 
 
91
    def get_bool(self, section, key):
 
92
        return self[section].as_bool(key)
 
93
 
 
94
    def get_value(self, section, name):
 
95
        # Try [] for the old DEFAULT section.
 
96
        if section == "DEFAULT":
 
97
            try:
 
98
                return self[name]
 
99
            except KeyError:
 
100
                pass
 
101
        return self[section][name]
 
102
 
 
103
 
 
104
class Config(object):
 
105
    """A configuration policy - what username, editor, gpg needs etc."""
 
106
 
 
107
    def get_editor(self):
 
108
        """Get the users pop up editor."""
 
109
        raise NotImplementedError
 
110
 
 
111
    def _get_signature_checking(self):
 
112
        """Template method to override signature checking policy."""
 
113
 
 
114
    def _get_signing_policy(self):
 
115
        """Template method to override signature creation policy."""
 
116
 
 
117
    def _get_user_option(self, option_name):
 
118
        """Template method to provide a user option."""
 
119
        return None
 
120
 
 
121
    def get_user_option(self, option_name):
 
122
        """Get a generic option - no special process, no default."""
 
123
        return self._get_user_option(option_name)
 
124
 
 
125
    def gpg_signing_command(self):
 
126
        """What program should be used to sign signatures?"""
 
127
        result = self._gpg_signing_command()
 
128
        if result is None:
 
129
            result = "gpg"
 
130
        return result
 
131
 
 
132
    def _gpg_signing_command(self):
 
133
        """See gpg_signing_command()."""
 
134
        return None
 
135
 
 
136
    def log_format(self):
 
137
        """What log format should be used"""
 
138
        result = self._log_format()
 
139
        if result is None:
 
140
            result = "long"
 
141
        return result
 
142
 
 
143
    def _log_format(self):
 
144
        """See log_format()."""
 
145
        return None
 
146
 
 
147
    def __init__(self):
 
148
        super(Config, self).__init__()
 
149
 
 
150
    def post_commit(self):
 
151
        """An ordered list of python functions to call.
 
152
 
 
153
        Each function takes branch, rev_id as parameters.
 
154
        """
 
155
        return self._post_commit()
 
156
 
 
157
    def _post_commit(self):
 
158
        """See Config.post_commit."""
 
159
        return None
 
160
 
 
161
    def user_email(self):
 
162
        """Return just the email component of a username."""
 
163
        return extract_email_address(self.username())
 
164
 
 
165
    def username(self):
 
166
        """Return email-style username.
 
167
    
 
168
        Something similar to 'Martin Pool <mbp@sourcefrog.net>'
 
169
        
 
170
        $BZREMAIL can be set to override this, then
 
171
        the concrete policy type is checked, and finally
 
172
        $EMAIL is examined.
 
173
        If none is found, a reasonable default is (hopefully)
 
174
        created.
 
175
    
 
176
        TODO: Check it's reasonably well-formed.
 
177
        """
 
178
        v = os.environ.get('BZREMAIL')
 
179
        if v:
 
180
            return v.decode(bzrlib.user_encoding)
 
181
    
 
182
        v = self._get_user_id()
 
183
        if v:
 
184
            return v
 
185
        
 
186
        v = os.environ.get('EMAIL')
 
187
        if v:
 
188
            return v.decode(bzrlib.user_encoding)
 
189
 
 
190
        name, email = _auto_user_id()
 
191
        if name:
 
192
            return '%s <%s>' % (name, email)
 
193
        else:
 
194
            return email
 
195
 
 
196
    def signature_checking(self):
 
197
        """What is the current policy for signature checking?."""
 
198
        policy = self._get_signature_checking()
 
199
        if policy is not None:
 
200
            return policy
 
201
        return CHECK_IF_POSSIBLE
 
202
 
 
203
    def signing_policy(self):
 
204
        """What is the current policy for signature checking?."""
 
205
        policy = self._get_signing_policy()
 
206
        if policy is not None:
 
207
            return policy
 
208
        return SIGN_WHEN_REQUIRED
 
209
 
 
210
    def signature_needed(self):
 
211
        """Is a signature needed when committing ?."""
 
212
        policy = self._get_signing_policy()
 
213
        if policy is None:
 
214
            policy = self._get_signature_checking()
 
215
            if policy is not None:
 
216
                warning("Please use create_signatures, not check_signatures "
 
217
                        "to set signing policy.")
 
218
            if policy == CHECK_ALWAYS:
 
219
                return True
 
220
        elif policy == SIGN_ALWAYS:
 
221
            return True
 
222
        return False
 
223
 
 
224
    def get_alias(self, value):
 
225
        return self._get_alias(value)
 
226
 
 
227
    def _get_alias(self, value):
 
228
        pass
 
229
 
 
230
    def get_nickname(self):
 
231
        return self._get_nickname()
 
232
 
 
233
    def _get_nickname(self):
 
234
        return None
 
235
 
 
236
 
 
237
class IniBasedConfig(Config):
 
238
    """A configuration policy that draws from ini files."""
 
239
 
 
240
    def _get_parser(self, file=None):
 
241
        if self._parser is not None:
 
242
            return self._parser
 
243
        if file is None:
 
244
            input = self._get_filename()
 
245
        else:
 
246
            input = file
 
247
        try:
 
248
            self._parser = ConfigObj(input, encoding='utf-8')
 
249
        except configobj.ConfigObjError, e:
 
250
            raise errors.ParseConfigError(e.errors, e.config.filename)
 
251
        return self._parser
 
252
 
 
253
    def _get_section(self):
 
254
        """Override this to define the section used by the config."""
 
255
        return "DEFAULT"
 
256
 
 
257
    def _get_signature_checking(self):
 
258
        """See Config._get_signature_checking."""
 
259
        policy = self._get_user_option('check_signatures')
 
260
        if policy:
 
261
            return self._string_to_signature_policy(policy)
 
262
 
 
263
    def _get_signing_policy(self):
 
264
        """See Config._get_signing_policy"""
 
265
        policy = self._get_user_option('create_signatures')
 
266
        if policy:
 
267
            return self._string_to_signing_policy(policy)
 
268
 
 
269
    def _get_user_id(self):
 
270
        """Get the user id from the 'email' key in the current section."""
 
271
        return self._get_user_option('email')
 
272
 
 
273
    def _get_user_option(self, option_name):
 
274
        """See Config._get_user_option."""
 
275
        try:
 
276
            return self._get_parser().get_value(self._get_section(),
 
277
                                                option_name)
 
278
        except KeyError:
 
279
            pass
 
280
 
 
281
    def _gpg_signing_command(self):
 
282
        """See Config.gpg_signing_command."""
 
283
        return self._get_user_option('gpg_signing_command')
 
284
 
 
285
    def _log_format(self):
 
286
        """See Config.log_format."""
 
287
        return self._get_user_option('log_format')
 
288
 
 
289
    def __init__(self, get_filename):
 
290
        super(IniBasedConfig, self).__init__()
 
291
        self._get_filename = get_filename
 
292
        self._parser = None
 
293
        
 
294
    def _post_commit(self):
 
295
        """See Config.post_commit."""
 
296
        return self._get_user_option('post_commit')
 
297
 
 
298
    def _string_to_signature_policy(self, signature_string):
 
299
        """Convert a string to a signing policy."""
 
300
        if signature_string.lower() == 'check-available':
 
301
            return CHECK_IF_POSSIBLE
 
302
        if signature_string.lower() == 'ignore':
 
303
            return CHECK_NEVER
 
304
        if signature_string.lower() == 'require':
 
305
            return CHECK_ALWAYS
 
306
        raise errors.BzrError("Invalid signatures policy '%s'"
 
307
                              % signature_string)
 
308
 
 
309
    def _string_to_signing_policy(self, signature_string):
 
310
        """Convert a string to a signing policy."""
 
311
        if signature_string.lower() == 'when-required':
 
312
            return SIGN_WHEN_REQUIRED
 
313
        if signature_string.lower() == 'never':
 
314
            return SIGN_NEVER
 
315
        if signature_string.lower() == 'always':
 
316
            return SIGN_ALWAYS
 
317
        raise errors.BzrError("Invalid signing policy '%s'"
 
318
                              % signature_string)
 
319
 
 
320
    def _get_alias(self, value):
 
321
        try:
 
322
            return self._get_parser().get_value("ALIASES", 
 
323
                                                value)
 
324
        except KeyError:
 
325
            pass
 
326
 
 
327
    def _get_nickname(self):
 
328
        return self.get_user_option('nickname')
 
329
 
 
330
 
 
331
class GlobalConfig(IniBasedConfig):
 
332
    """The configuration that should be used for a specific location."""
 
333
 
 
334
    def get_editor(self):
 
335
        return self._get_user_option('editor')
 
336
 
 
337
    def __init__(self):
 
338
        super(GlobalConfig, self).__init__(config_filename)
 
339
 
 
340
 
 
341
class LocationConfig(IniBasedConfig):
 
342
    """A configuration object that gives the policy for a location."""
 
343
 
 
344
    def __init__(self, location):
 
345
        name_generator = locations_config_filename
 
346
        if (not os.path.exists(name_generator()) and 
 
347
                os.path.exists(branches_config_filename())):
 
348
            if sys.platform == 'win32':
 
349
                warning('Please rename %s to %s' 
 
350
                         % (branches_config_filename(),
 
351
                            locations_config_filename()))
 
352
            else:
 
353
                warning('Please rename ~/.bazaar/branches.conf'
 
354
                        ' to ~/.bazaar/locations.conf')
 
355
            name_generator = branches_config_filename
 
356
        super(LocationConfig, self).__init__(name_generator)
 
357
        self.location = location
 
358
 
 
359
    def _get_section(self):
 
360
        """Get the section we should look in for config items.
 
361
 
 
362
        Returns None if none exists. 
 
363
        TODO: perhaps return a NullSection that thunks through to the 
 
364
              global config.
 
365
        """
 
366
        sections = self._get_parser()
 
367
        location_names = self.location.split('/')
 
368
        if self.location.endswith('/'):
 
369
            del location_names[-1]
 
370
        matches=[]
 
371
        for section in sections:
 
372
            section_names = section.split('/')
 
373
            if section.endswith('/'):
 
374
                del section_names[-1]
 
375
            names = zip(location_names, section_names)
 
376
            matched = True
 
377
            for name in names:
 
378
                if not fnmatch(name[0], name[1]):
 
379
                    matched = False
 
380
                    break
 
381
            if not matched:
 
382
                continue
 
383
            # so, for the common prefix they matched.
 
384
            # if section is longer, no match.
 
385
            if len(section_names) > len(location_names):
 
386
                continue
 
387
            # if path is longer, and recurse is not true, no match
 
388
            if len(section_names) < len(location_names):
 
389
                try:
 
390
                    if not self._get_parser()[section].as_bool('recurse'):
 
391
                        continue
 
392
                except KeyError:
 
393
                    pass
 
394
            matches.append((len(section_names), section))
 
395
        if not len(matches):
 
396
            return None
 
397
        matches.sort(reverse=True)
 
398
        return matches[0][1]
 
399
 
 
400
    def set_user_option(self, option, value):
 
401
        """Save option and its value in the configuration."""
 
402
        # FIXME: RBC 20051029 This should refresh the parser and also take a
 
403
        # file lock on locations.conf.
 
404
        conf_dir = os.path.dirname(self._get_filename())
 
405
        ensure_config_dir_exists(conf_dir)
 
406
        location = self.location
 
407
        if location.endswith('/'):
 
408
            location = location[:-1]
 
409
        if (not location in self._get_parser() and
 
410
            not location + '/' in self._get_parser()):
 
411
            self._get_parser()[location]={}
 
412
        elif location + '/' in self._get_parser():
 
413
            location = location + '/'
 
414
        self._get_parser()[location][option]=value
 
415
        self._get_parser().write(file(self._get_filename(), 'wb'))
 
416
 
 
417
 
 
418
class BranchConfig(Config):
 
419
    """A configuration object giving the policy for a branch."""
 
420
 
 
421
    def _get_branch_data_config(self):
 
422
        if self._branch_data_config is None:
 
423
            self._branch_data_config = TreeConfig(self.branch)
 
424
        return self._branch_data_config
 
425
 
 
426
    def _get_location_config(self):
 
427
        if self._location_config is None:
 
428
            self._location_config = LocationConfig(self.branch.base)
 
429
        return self._location_config
 
430
 
 
431
    def _get_global_config(self):
 
432
        if self._global_config is None:
 
433
            self._global_config = GlobalConfig()
 
434
        return self._global_config
 
435
 
 
436
    def _get_best_value(self, option_name):
 
437
        """This returns a user option from local, tree or global config.
 
438
 
 
439
        They are tried in that order.  Use get_safe_value if trusted values
 
440
        are necessary.
 
441
        """
 
442
        for source in self.option_sources:
 
443
            value = getattr(source(), option_name)()
 
444
            if value is not None:
 
445
                return value
 
446
        return None
 
447
 
 
448
    def _get_safe_value(self, option_name):
 
449
        """This variant of get_best_value never returns untrusted values.
 
450
        
 
451
        It does not return values from the branch data, because the branch may
 
452
        not be controlled by the user.
 
453
 
 
454
        We may wish to allow locations.conf to control whether branches are
 
455
        trusted in the future.
 
456
        """
 
457
        for source in (self._get_location_config, self._get_global_config):
 
458
            value = getattr(source(), option_name)()
 
459
            if value is not None:
 
460
                return value
 
461
        return None
 
462
 
 
463
    def _get_user_id(self):
 
464
        """Return the full user id for the branch.
 
465
    
 
466
        e.g. "John Hacker <jhacker@foo.org>"
 
467
        This is looked up in the email controlfile for the branch.
 
468
        """
 
469
        try:
 
470
            return (self.branch.control_files.get_utf8("email") 
 
471
                    .read()
 
472
                    .decode(bzrlib.user_encoding)
 
473
                    .rstrip("\r\n"))
 
474
        except errors.NoSuchFile, e:
 
475
            pass
 
476
        
 
477
        return self._get_best_value('_get_user_id')
 
478
 
 
479
    def _get_signature_checking(self):
 
480
        """See Config._get_signature_checking."""
 
481
        return self._get_best_value('_get_signature_checking')
 
482
 
 
483
    def _get_signing_policy(self):
 
484
        """See Config._get_signing_policy."""
 
485
        return self._get_best_value('_get_signing_policy')
 
486
 
 
487
    def _get_user_option(self, option_name):
 
488
        """See Config._get_user_option."""
 
489
        for source in self.option_sources:
 
490
            value = source()._get_user_option(option_name)
 
491
            if value is not None:
 
492
                return value
 
493
        return None
 
494
 
 
495
    def set_user_option(self, name, value, local=False):
 
496
        if local is True:
 
497
            self._get_location_config().set_user_option(name, value)
 
498
        else:
 
499
            self._get_branch_data_config().set_option(value, name)
 
500
 
 
501
 
 
502
    def _gpg_signing_command(self):
 
503
        """See Config.gpg_signing_command."""
 
504
        return self._get_safe_value('_gpg_signing_command')
 
505
        
 
506
    def __init__(self, branch):
 
507
        super(BranchConfig, self).__init__()
 
508
        self._location_config = None
 
509
        self._branch_data_config = None
 
510
        self._global_config = None
 
511
        self.branch = branch
 
512
        self.option_sources = (self._get_location_config, 
 
513
                               self._get_branch_data_config,
 
514
                               self._get_global_config)
 
515
 
 
516
    def _post_commit(self):
 
517
        """See Config.post_commit."""
 
518
        return self._get_safe_value('_post_commit')
 
519
 
 
520
    def _get_nickname(self):
 
521
        value = self._get_explicit_nickname()
 
522
        if value is not None:
 
523
            return value
 
524
        return self.branch.base.split('/')[-2]
 
525
 
 
526
    def has_explicit_nickname(self):
 
527
        """Return true if a nickname has been explicitly assigned."""
 
528
        return self._get_explicit_nickname() is not None
 
529
 
 
530
    def _get_explicit_nickname(self):
 
531
        return self._get_best_value('_get_nickname')
 
532
 
 
533
    def _log_format(self):
 
534
        """See Config.log_format."""
 
535
        return self._get_best_value('_log_format')
 
536
 
 
537
 
 
538
def ensure_config_dir_exists(path=None):
 
539
    """Make sure a configuration directory exists.
 
540
    This makes sure that the directory exists.
 
541
    On windows, since configuration directories are 2 levels deep,
 
542
    it makes sure both the directory and the parent directory exists.
 
543
    """
 
544
    if path is None:
 
545
        path = config_dir()
 
546
    if not os.path.isdir(path):
 
547
        if sys.platform == 'win32':
 
548
            parent_dir = os.path.dirname(path)
 
549
            if not os.path.isdir(parent_dir):
 
550
                mutter('creating config parent directory: %r', parent_dir)
 
551
            os.mkdir(parent_dir)
 
552
        mutter('creating config directory: %r', path)
 
553
        os.mkdir(path)
 
554
 
 
555
 
 
556
def config_dir():
 
557
    """Return per-user configuration directory.
 
558
 
 
559
    By default this is ~/.bazaar/
 
560
    
 
561
    TODO: Global option --config-dir to override this.
 
562
    """
 
563
    base = os.environ.get('BZR_HOME', None)
 
564
    if sys.platform == 'win32':
 
565
        if base is None:
 
566
            base = os.environ.get('APPDATA', None)
 
567
        if base is None:
 
568
            base = os.environ.get('HOME', None)
 
569
        if base is None:
 
570
            raise errors.BzrError('You must have one of BZR_HOME, APPDATA, or HOME set')
 
571
        return pathjoin(base, 'bazaar', '2.0')
 
572
    else:
 
573
        # cygwin, linux, and darwin all have a $HOME directory
 
574
        if base is None:
 
575
            base = os.path.expanduser("~")
 
576
        return pathjoin(base, ".bazaar")
 
577
 
 
578
 
 
579
def config_filename():
 
580
    """Return per-user configuration ini file filename."""
 
581
    return pathjoin(config_dir(), 'bazaar.conf')
 
582
 
 
583
 
 
584
def branches_config_filename():
 
585
    """Return per-user configuration ini file filename."""
 
586
    return pathjoin(config_dir(), 'branches.conf')
 
587
 
 
588
 
 
589
def locations_config_filename():
 
590
    """Return per-user configuration ini file filename."""
 
591
    return pathjoin(config_dir(), 'locations.conf')
 
592
 
 
593
 
 
594
def _auto_user_id():
 
595
    """Calculate automatic user identification.
 
596
 
 
597
    Returns (realname, email).
 
598
 
 
599
    Only used when none is set in the environment or the id file.
 
600
 
 
601
    This previously used the FQDN as the default domain, but that can
 
602
    be very slow on machines where DNS is broken.  So now we simply
 
603
    use the hostname.
 
604
    """
 
605
    import socket
 
606
 
 
607
    # XXX: Any good way to get real user name on win32?
 
608
 
 
609
    try:
 
610
        import pwd
 
611
        uid = os.getuid()
 
612
        w = pwd.getpwuid(uid)
 
613
 
 
614
        try:
 
615
            gecos = w.pw_gecos.decode(bzrlib.user_encoding)
 
616
            username = w.pw_name.decode(bzrlib.user_encoding)
 
617
        except UnicodeDecodeError:
 
618
            # We're using pwd, therefore we're on Unix, so /etc/passwd is ok.
 
619
            raise errors.BzrError("Can't decode username in " \
 
620
                    "/etc/passwd as %s." % bzrlib.user_encoding)
 
621
 
 
622
        comma = gecos.find(',')
 
623
        if comma == -1:
 
624
            realname = gecos
 
625
        else:
 
626
            realname = gecos[:comma]
 
627
        if not realname:
 
628
            realname = username
 
629
 
 
630
    except ImportError:
 
631
        import getpass
 
632
        try:
 
633
            realname = username = getpass.getuser().decode(bzrlib.user_encoding)
 
634
        except UnicodeDecodeError:
 
635
            raise errors.BzrError("Can't decode username as %s." % \
 
636
                    bzrlib.user_encoding)
 
637
 
 
638
    return realname, (username + '@' + socket.gethostname())
 
639
 
 
640
 
 
641
def extract_email_address(e):
 
642
    """Return just the address part of an email string.
 
643
    
 
644
    That is just the user@domain part, nothing else. 
 
645
    This part is required to contain only ascii characters.
 
646
    If it can't be extracted, raises an error.
 
647
    
 
648
    >>> extract_email_address('Jane Tester <jane@test.com>')
 
649
    "jane@test.com"
 
650
    """
 
651
    m = re.search(r'[\w+.-]+@[\w+.-]+', e)
 
652
    if not m:
 
653
        raise errors.BzrError("%r doesn't seem to contain "
 
654
                              "a reasonable email address" % e)
 
655
    return m.group(0)
 
656
 
 
657
 
 
658
class TreeConfig(IniBasedConfig):
 
659
    """Branch configuration data associated with its contents, not location"""
 
660
    def __init__(self, branch):
 
661
        self.branch = branch
 
662
 
 
663
    def _get_parser(self, file=None):
 
664
        if file is not None:
 
665
            return IniBasedConfig._get_parser(file)
 
666
        return self._get_config()
 
667
 
 
668
    def _get_config(self):
 
669
        try:
 
670
            obj = ConfigObj(self.branch.control_files.get('branch.conf'), 
 
671
                            encoding='utf-8')
 
672
        except errors.NoSuchFile:
 
673
            obj = ConfigObj(encoding='utf=8')
 
674
        return obj
 
675
 
 
676
    def get_option(self, name, section=None, default=None):
 
677
        self.branch.lock_read()
 
678
        try:
 
679
            obj = self._get_config()
 
680
            try:
 
681
                if section is not None:
 
682
                    obj[section]
 
683
                result = obj[name]
 
684
            except KeyError:
 
685
                result = default
 
686
        finally:
 
687
            self.branch.unlock()
 
688
        return result
 
689
 
 
690
    def set_option(self, value, name, section=None):
 
691
        """Set a per-branch configuration option"""
 
692
        self.branch.lock_write()
 
693
        try:
 
694
            cfg_obj = self._get_config()
 
695
            if section is None:
 
696
                obj = cfg_obj
 
697
            else:
 
698
                try:
 
699
                    obj = cfg_obj[section]
 
700
                except KeyError:
 
701
                    cfg_obj[section] = {}
 
702
                    obj = cfg_obj[section]
 
703
            obj[name] = value
 
704
            out_file = StringIO()
 
705
            cfg_obj.write(out_file)
 
706
            out_file.seek(0)
 
707
            self.branch.control_files.put('branch.conf', out_file)
 
708
        finally:
 
709
            self.branch.unlock()