441
440
def set_user_option(self, option, value):
442
441
"""Save option and its value in the configuration."""
443
self._set_option(option, value, 'DEFAULT')
445
def get_aliases(self):
446
"""Return the aliases section."""
447
if 'ALIASES' in self._get_parser():
448
return self._get_parser()['ALIASES']
452
def set_alias(self, alias_name, alias_command):
453
"""Save the alias in the configuration."""
454
self._set_option(alias_name, alias_command, 'ALIASES')
456
def unset_alias(self, alias_name):
457
"""Unset an existing alias."""
458
aliases = self._get_parser().get('ALIASES')
459
if not aliases or alias_name not in aliases:
460
raise errors.NoSuchAlias(alias_name)
461
del aliases[alias_name]
462
self._write_config_file()
464
def _set_option(self, option, value, section):
465
442
# FIXME: RBC 20051029 This should refresh the parser and also take a
466
443
# file lock on bazaar.conf.
467
444
conf_dir = os.path.dirname(self._get_filename())
468
445
ensure_config_dir_exists(conf_dir)
469
self._get_parser().setdefault(section, {})[option] = value
470
self._write_config_file()
472
def _write_config_file(self):
446
if 'DEFAULT' not in self._get_parser():
447
self._get_parser()['DEFAULT'] = {}
448
self._get_parser()['DEFAULT'][option] = value
473
449
f = open(self._get_filename(), 'wb')
474
450
self._get_parser().write(f)
594
570
def set_user_option(self, option, value, store=STORE_LOCATION):
595
571
"""Save option and its value in the configuration."""
596
if store not in [STORE_LOCATION,
572
assert store in [STORE_LOCATION,
597
573
STORE_LOCATION_NORECURSE,
598
STORE_LOCATION_APPENDPATH]:
599
raise ValueError('bad storage policy %r for %r' %
574
STORE_LOCATION_APPENDPATH], 'bad storage policy'
601
575
# FIXME: RBC 20051029 This should refresh the parser and also take a
602
576
# file lock on locations.conf.
603
577
conf_dir = os.path.dirname(self._get_filename())
915
890
class TreeConfig(IniBasedConfig):
916
891
"""Branch configuration data associated with its contents, not location"""
918
# XXX: Really needs a better name, as this is not part of the tree! -- mbp 20080507
920
893
def __init__(self, branch):
921
# XXX: Really this should be asking the branch for its configuration
922
# data, rather than relying on a Transport, so that it can work
923
# more cleanly with a RemoteBranch that has no transport.
924
self._config = TransportConfig(branch._transport, 'branch.conf')
925
894
self.branch = branch
927
896
def _get_parser(self, file=None):
928
897
if file is not None:
929
898
return IniBasedConfig._get_parser(file)
930
return self._config._get_configobj()
899
return self._get_config()
901
def _get_config(self):
903
obj = ConfigObj(self.branch.control_files.get('branch.conf'),
905
except errors.NoSuchFile:
906
obj = ConfigObj(encoding='utf=8')
932
909
def get_option(self, name, section=None, default=None):
933
910
self.branch.lock_read()
935
return self._config.get_option(name, section, default)
912
obj = self._get_config()
914
if section is not None:
937
920
self.branch.unlock()
1020
1016
credentials = None
1021
1017
for auth_def_name, auth_def in self._get_config().items():
1022
if type(auth_def) is not configobj.Section:
1023
raise ValueError("%s defined outside a section" % auth_def_name)
1025
1018
a_scheme, a_host, a_user, a_path = map(
1026
1019
auth_def.get, ['scheme', 'host', 'user', 'path'])
1059
1052
# Can't find a user
1061
1054
credentials = dict(name=auth_def_name,
1063
password=auth_def.get('password', None),
1055
user=a_user, password=auth_def['password'],
1064
1056
verify_certificates=a_verify_certificates)
1065
1057
self.decode_password(credentials,
1066
1058
auth_def.get('password_encoding', None))
1115
1107
credentials = self.get_credentials(scheme, host, port, user, path)
1116
1108
if credentials is not None:
1117
1109
password = credentials['password']
1118
if password is not None and scheme is 'ssh':
1119
trace.warning('password ignored in section [%s],'
1120
' use an ssh agent instead'
1121
% credentials['name'])
1124
1111
password = None
1125
1112
# Prompt user only if we could't find a password
1126
1113
if password is None:
1127
1114
if prompt is None:
1128
# Create a default prompt suitable for most cases
1115
# Create a default prompt suitable for most of the cases
1129
1116
prompt = '%s' % scheme.upper() + ' %(user)s@%(host)s password'
1130
1117
# Special handling for optional fields in the prompt
1131
1118
if port is not None:
1139
1126
def decode_password(self, credentials, encoding):
1140
1127
return credentials
1143
class BzrDirConfig(object):
1145
def __init__(self, transport):
1146
self._config = TransportConfig(transport, 'control.conf')
1148
def set_default_stack_on(self, value):
1149
"""Set the default stacking location.
1151
It may be set to a location, or None.
1153
This policy affects all branches contained by this bzrdir, except for
1154
those under repositories.
1157
self._config.set_option('', 'default_stack_on')
1159
self._config.set_option(value, 'default_stack_on')
1161
def get_default_stack_on(self):
1162
"""Return the default stacking location.
1164
This will either be a location, or None.
1166
This policy affects all branches contained by this bzrdir, except for
1167
those under repositories.
1169
value = self._config.get_option('default_stack_on')
1175
class TransportConfig(object):
1176
"""A Config that reads/writes a config file on a Transport.
1178
It is a low-level object that considers config data to be name/value pairs
1179
that may be associated with a section. Assigning meaning to the these
1180
values is done at higher levels like TreeConfig.
1183
def __init__(self, transport, filename):
1184
self._transport = transport
1185
self._filename = filename
1187
def get_option(self, name, section=None, default=None):
1188
"""Return the value associated with a named option.
1190
:param name: The name of the value
1191
:param section: The section the option is in (if any)
1192
:param default: The value to return if the value is not set
1193
:return: The value or default value
1195
configobj = self._get_configobj()
1197
section_obj = configobj
1200
section_obj = configobj[section]
1203
return section_obj.get(name, default)
1205
def set_option(self, value, name, section=None):
1206
"""Set the value associated with a named option.
1208
:param value: The value to set
1209
:param name: The name of the value to set
1210
:param section: The section the option is in (if any)
1212
configobj = self._get_configobj()
1214
configobj[name] = value
1216
configobj.setdefault(section, {})[name] = value
1217
self._set_configobj(configobj)
1219
def _get_configobj(self):
1221
return ConfigObj(self._transport.get(self._filename),
1223
except errors.NoSuchFile:
1224
return ConfigObj(encoding='utf-8')
1226
def _set_configobj(self, configobj):
1227
out_file = StringIO()
1228
configobj.write(out_file)
1230
self._transport.put_file(self._filename, out_file)