blob: 5e36cc96008b9e7977600bab134ea2134b4b7968 [file] [log] [blame]
Guido van Rossum3d209861997-12-09 16:10:31 +00001"""Configuration file parser.
2
3A setup file consists of sections, lead by a "[section]" header,
4and followed by "name: value" entries, with continuations and such in
Barry Warsawbfa3f6b1998-07-01 20:41:12 +00005the style of RFC 822.
Guido van Rossum3d209861997-12-09 16:10:31 +00006
Barry Warsawbfa3f6b1998-07-01 20:41:12 +00007The option values can contain format strings which refer to other values in
8the same section, or values in a special [DEFAULT] section.
9
Guido van Rossum3d209861997-12-09 16:10:31 +000010For example:
11
12 something: %(dir)s/whatever
13
14would resolve the "%(dir)s" to the value of dir. All reference
15expansions are done late, on demand.
16
17Intrinsic defaults can be specified by passing them into the
18ConfigParser constructor as a dictionary.
19
20class:
21
Walter Dörwaldf0dfc7a2003-10-20 14:01:56 +000022ConfigParser -- responsible for parsing a list of
Guido van Rossum3d209861997-12-09 16:10:31 +000023 configuration files, and managing the parsed database.
24
25 methods:
26
Barry Warsawf09f6a51999-01-26 22:01:37 +000027 __init__(defaults=None)
28 create the parser and specify a dictionary of intrinsic defaults. The
29 keys must be strings, the values must be appropriate for %()s string
30 interpolation. Note that `__name__' is always an intrinsic default;
Georg Brandl7eb4b7d2005-07-22 21:49:32 +000031 its value is the section's name.
Guido van Rossum3d209861997-12-09 16:10:31 +000032
Barry Warsawf09f6a51999-01-26 22:01:37 +000033 sections()
34 return all the configuration section names, sans DEFAULT
Guido van Rossum3d209861997-12-09 16:10:31 +000035
Guido van Rossuma5a24b71999-10-04 19:58:22 +000036 has_section(section)
37 return whether the given section exists
38
Eric S. Raymond649685a2000-07-14 14:28:22 +000039 has_option(section, option)
40 return whether the given option exists in the given section
41
Barry Warsawf09f6a51999-01-26 22:01:37 +000042 options(section)
43 return list of configuration options for the named section
Guido van Rossum3d209861997-12-09 16:10:31 +000044
Guido van Rossumc0780ac1999-01-30 04:35:47 +000045 read(filenames)
Guido van Rossum6a8d84b1999-10-04 18:57:27 +000046 read and parse the list of named configuration files, given by
47 name. A single filename is also allowed. Non-existing files
Fred Drake82903142004-05-18 04:24:02 +000048 are ignored. Return list of successfully read files.
Guido van Rossum6a8d84b1999-10-04 18:57:27 +000049
50 readfp(fp, filename=None)
51 read and parse one configuration file, given as a file object.
52 The filename defaults to fp.name; it is only used in error
Barry Warsaw25394511999-10-12 16:12:48 +000053 messages (if fp has no `name' attribute, the string `<???>' is used).
Guido van Rossum3d209861997-12-09 16:10:31 +000054
Neal Norwitzf680cc42002-12-17 01:56:47 +000055 get(section, option, raw=False, vars=None)
Barry Warsawf09f6a51999-01-26 22:01:37 +000056 return a string value for the named option. All % interpolations are
57 expanded in the return values, based on the defaults passed into the
58 constructor and the DEFAULT section. Additional substitutions may be
59 provided using the `vars' argument, which must be a dictionary whose
60 contents override any pre-existing defaults.
Guido van Rossum3d209861997-12-09 16:10:31 +000061
Barry Warsawf09f6a51999-01-26 22:01:37 +000062 getint(section, options)
63 like get(), but convert value to an integer
Guido van Rossum3d209861997-12-09 16:10:31 +000064
Barry Warsawf09f6a51999-01-26 22:01:37 +000065 getfloat(section, options)
66 like get(), but convert value to a float
Guido van Rossum3d209861997-12-09 16:10:31 +000067
Barry Warsawf09f6a51999-01-26 22:01:37 +000068 getboolean(section, options)
Guido van Rossumfb06f752001-10-04 19:58:46 +000069 like get(), but convert value to a boolean (currently case
Neal Norwitzf680cc42002-12-17 01:56:47 +000070 insensitively defined as 0, false, no, off for False, and 1, true,
71 yes, on for True). Returns False or True.
Eric S. Raymond649685a2000-07-14 14:28:22 +000072
Neal Norwitzf680cc42002-12-17 01:56:47 +000073 items(section, raw=False, vars=None)
Fred Drake2ca041f2002-09-27 15:49:56 +000074 return a list of tuples with (name, value) for each option
75 in the section.
76
Eric S. Raymond649685a2000-07-14 14:28:22 +000077 remove_section(section)
Tim Peters88869f92001-01-14 23:36:06 +000078 remove the given file section and all its options
Eric S. Raymond649685a2000-07-14 14:28:22 +000079
80 remove_option(section, option)
Tim Peters88869f92001-01-14 23:36:06 +000081 remove the given option from the given section
Eric S. Raymond649685a2000-07-14 14:28:22 +000082
83 set(section, option, value)
84 set the given option
85
86 write(fp)
Tim Peters88869f92001-01-14 23:36:06 +000087 write the configuration state in .ini format
Guido van Rossum3d209861997-12-09 16:10:31 +000088"""
89
Barry Warsawbfa3f6b1998-07-01 20:41:12 +000090import re
Guido van Rossum3d209861997-12-09 16:10:31 +000091
Fred Drake8d5dd982002-12-30 23:51:45 +000092__all__ = ["NoSectionError", "DuplicateSectionError", "NoOptionError",
93 "InterpolationError", "InterpolationDepthError",
94 "InterpolationSyntaxError", "ParsingError",
David Goodger1cbf2062004-10-03 15:55:09 +000095 "MissingSectionHeaderError",
96 "ConfigParser", "SafeConfigParser", "RawConfigParser",
Fred Drakec2ff9052002-09-27 15:33:11 +000097 "DEFAULTSECT", "MAX_INTERPOLATION_DEPTH"]
Skip Montanaroe99d5ea2001-01-20 19:54:20 +000098
Guido van Rossum3d209861997-12-09 16:10:31 +000099DEFAULTSECT = "DEFAULT"
100
Fred Drake2a37f9f2000-09-27 22:43:54 +0000101MAX_INTERPOLATION_DEPTH = 10
102
Guido van Rossum3d209861997-12-09 16:10:31 +0000103
Tim Peters88869f92001-01-14 23:36:06 +0000104
Guido van Rossum3d209861997-12-09 16:10:31 +0000105# exception classes
Fred Drake7c1e5ad2000-12-11 18:13:19 +0000106class Error(Exception):
Fred Drake8d5dd982002-12-30 23:51:45 +0000107 """Base class for ConfigParser exceptions."""
108
Guido van Rossum360e4b82007-05-14 22:51:27 +0000109 def _get_message(self):
110 """Getter for 'message'; needed only to override deprecation in
111 BaseException."""
112 return self.__message
113
114 def _set_message(self, value):
115 """Setter for 'message'; needed only to override deprecation in
116 BaseException."""
117 self.__message = value
118
119 # BaseException.message has been deprecated since Python 2.6. To prevent
120 # DeprecationWarning from popping up over this pre-existing attribute, use
121 # a new property that takes lookup precedence.
122 message = property(_get_message, _set_message)
123
Guido van Rossum3d209861997-12-09 16:10:31 +0000124 def __init__(self, msg=''):
Fred Drakee2c64912002-12-31 17:23:27 +0000125 self.message = msg
Fred Drake7c1e5ad2000-12-11 18:13:19 +0000126 Exception.__init__(self, msg)
Fred Drake8d5dd982002-12-30 23:51:45 +0000127
Guido van Rossum3d209861997-12-09 16:10:31 +0000128 def __repr__(self):
Fred Drakee2c64912002-12-31 17:23:27 +0000129 return self.message
Fred Drake8d5dd982002-12-30 23:51:45 +0000130
Fred Drake7c1e5ad2000-12-11 18:13:19 +0000131 __str__ = __repr__
Guido van Rossum3d209861997-12-09 16:10:31 +0000132
133class NoSectionError(Error):
Fred Drake8d5dd982002-12-30 23:51:45 +0000134 """Raised when no section matches a requested option."""
135
Guido van Rossum3d209861997-12-09 16:10:31 +0000136 def __init__(self, section):
Walter Dörwald70a6b492004-02-12 17:35:32 +0000137 Error.__init__(self, 'No section: %r' % (section,))
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000138 self.section = section
Guido van Rossum3d209861997-12-09 16:10:31 +0000139
140class DuplicateSectionError(Error):
Fred Drake8d5dd982002-12-30 23:51:45 +0000141 """Raised when a section is multiply-created."""
142
Guido van Rossum3d209861997-12-09 16:10:31 +0000143 def __init__(self, section):
Fred Drakee2c64912002-12-31 17:23:27 +0000144 Error.__init__(self, "Section %r already exists" % section)
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000145 self.section = section
Guido van Rossum3d209861997-12-09 16:10:31 +0000146
147class NoOptionError(Error):
Fred Drake8d5dd982002-12-30 23:51:45 +0000148 """A requested option was not found."""
149
Guido van Rossum3d209861997-12-09 16:10:31 +0000150 def __init__(self, option, section):
Fred Drakee2c64912002-12-31 17:23:27 +0000151 Error.__init__(self, "No option %r in section: %r" %
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000152 (option, section))
153 self.option = option
154 self.section = section
Guido van Rossum3d209861997-12-09 16:10:31 +0000155
156class InterpolationError(Error):
Fred Drakee2c64912002-12-31 17:23:27 +0000157 """Base class for interpolation-related exceptions."""
Fred Drake8d5dd982002-12-30 23:51:45 +0000158
Fred Drakee2c64912002-12-31 17:23:27 +0000159 def __init__(self, option, section, msg):
160 Error.__init__(self, msg)
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000161 self.option = option
162 self.section = section
Guido van Rossum3d209861997-12-09 16:10:31 +0000163
Fred Drakee2c64912002-12-31 17:23:27 +0000164class InterpolationMissingOptionError(InterpolationError):
165 """A string substitution required a setting which was not available."""
166
167 def __init__(self, option, section, rawval, reference):
168 msg = ("Bad value substitution:\n"
169 "\tsection: [%s]\n"
170 "\toption : %s\n"
171 "\tkey : %s\n"
172 "\trawval : %s\n"
173 % (section, option, reference, rawval))
174 InterpolationError.__init__(self, option, section, msg)
175 self.reference = reference
176
177class InterpolationSyntaxError(InterpolationError):
Fred Drake8d5dd982002-12-30 23:51:45 +0000178 """Raised when the source text into which substitutions are made
179 does not conform to the required syntax."""
Neal Norwitzce1d9442002-12-30 23:38:47 +0000180
Fred Drakee2c64912002-12-31 17:23:27 +0000181class InterpolationDepthError(InterpolationError):
Fred Drake8d5dd982002-12-30 23:51:45 +0000182 """Raised when substitutions are nested too deeply."""
183
Fred Drake2a37f9f2000-09-27 22:43:54 +0000184 def __init__(self, option, section, rawval):
Fred Drakee2c64912002-12-31 17:23:27 +0000185 msg = ("Value interpolation too deeply recursive:\n"
186 "\tsection: [%s]\n"
187 "\toption : %s\n"
188 "\trawval : %s\n"
189 % (section, option, rawval))
190 InterpolationError.__init__(self, option, section, msg)
Barry Warsawbfa3f6b1998-07-01 20:41:12 +0000191
192class ParsingError(Error):
Fred Drake8d5dd982002-12-30 23:51:45 +0000193 """Raised when a configuration file does not follow legal syntax."""
194
Barry Warsawbfa3f6b1998-07-01 20:41:12 +0000195 def __init__(self, filename):
196 Error.__init__(self, 'File contains parsing errors: %s' % filename)
197 self.filename = filename
198 self.errors = []
199
200 def append(self, lineno, line):
201 self.errors.append((lineno, line))
Fred Drakee2c64912002-12-31 17:23:27 +0000202 self.message += '\n\t[line %2d]: %s' % (lineno, line)
Barry Warsawbfa3f6b1998-07-01 20:41:12 +0000203
Fred Drake2a37f9f2000-09-27 22:43:54 +0000204class MissingSectionHeaderError(ParsingError):
Fred Drake8d5dd982002-12-30 23:51:45 +0000205 """Raised when a key-value pair is found before any section header."""
206
Fred Drake2a37f9f2000-09-27 22:43:54 +0000207 def __init__(self, filename, lineno, line):
208 Error.__init__(
209 self,
Walter Dörwald70a6b492004-02-12 17:35:32 +0000210 'File contains no section headers.\nfile: %s, line: %d\n%r' %
Fred Drake2a37f9f2000-09-27 22:43:54 +0000211 (filename, lineno, line))
212 self.filename = filename
213 self.lineno = lineno
214 self.line = line
215
Guido van Rossum3d209861997-12-09 16:10:31 +0000216
Fred Drakefce65572002-10-25 18:08:18 +0000217class RawConfigParser:
Thomas Wouters89f507f2006-12-13 04:49:30 +0000218 def __init__(self, defaults=None, dict_type=dict):
219 self._dict = dict_type
220 self._sections = self._dict()
221 self._defaults = self._dict()
David Goodger68a1abd2004-10-03 15:40:25 +0000222 if defaults:
223 for key, value in defaults.items():
224 self._defaults[self.optionxform(key)] = value
Guido van Rossum3d209861997-12-09 16:10:31 +0000225
226 def defaults(self):
Fred Drakefce65572002-10-25 18:08:18 +0000227 return self._defaults
Guido van Rossum3d209861997-12-09 16:10:31 +0000228
229 def sections(self):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000230 """Return a list of section names, excluding [DEFAULT]"""
Fred Drakefce65572002-10-25 18:08:18 +0000231 # self._sections will never have [DEFAULT] in it
Guido van Rossumcc2b0162007-02-11 06:12:03 +0000232 return list(self._sections.keys())
Guido van Rossum3d209861997-12-09 16:10:31 +0000233
234 def add_section(self, section):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000235 """Create a new section in the configuration.
Guido van Rossum3d209861997-12-09 16:10:31 +0000236
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000237 Raise DuplicateSectionError if a section by the specified name
Christian Heimes90c3d9b2008-02-23 13:18:03 +0000238 already exists. Raise ValueError if name is DEFAULT or any of it's
239 case-insensitive variants.
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000240 """
Christian Heimes90c3d9b2008-02-23 13:18:03 +0000241 if section.lower() == "default":
242 raise ValueError('Invalid section name: %s' % section)
243
Fred Drakefce65572002-10-25 18:08:18 +0000244 if section in self._sections:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000245 raise DuplicateSectionError(section)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000246 self._sections[section] = self._dict()
Guido van Rossum3d209861997-12-09 16:10:31 +0000247
248 def has_section(self, section):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000249 """Indicate whether the named section is present in the configuration.
Guido van Rossum3d209861997-12-09 16:10:31 +0000250
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000251 The DEFAULT section is not acknowledged.
252 """
Fred Drakefce65572002-10-25 18:08:18 +0000253 return section in self._sections
Guido van Rossum3d209861997-12-09 16:10:31 +0000254
255 def options(self, section):
Guido van Rossuma5a24b71999-10-04 19:58:22 +0000256 """Return a list of option names for the given section name."""
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000257 try:
Fred Drakefce65572002-10-25 18:08:18 +0000258 opts = self._sections[section].copy()
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000259 except KeyError:
260 raise NoSectionError(section)
Fred Drakefce65572002-10-25 18:08:18 +0000261 opts.update(self._defaults)
Raymond Hettinger54f02222002-06-01 14:18:47 +0000262 if '__name__' in opts:
Fred Drake2a37f9f2000-09-27 22:43:54 +0000263 del opts['__name__']
Guido van Rossumcc2b0162007-02-11 06:12:03 +0000264 return list(opts.keys())
Guido van Rossum3d209861997-12-09 16:10:31 +0000265
266 def read(self, filenames):
Guido van Rossum6a8d84b1999-10-04 18:57:27 +0000267 """Read and parse a filename or a list of filenames.
Tim Peters88869f92001-01-14 23:36:06 +0000268
Guido van Rossum6a8d84b1999-10-04 18:57:27 +0000269 Files that cannot be opened are silently ignored; this is
Barry Warsaw25394511999-10-12 16:12:48 +0000270 designed so that you can specify a list of potential
Guido van Rossum6a8d84b1999-10-04 18:57:27 +0000271 configuration file locations (e.g. current directory, user's
272 home directory, systemwide directory), and all existing
273 configuration files in the list will be read. A single
274 filename may also be given.
Fred Drake82903142004-05-18 04:24:02 +0000275
276 Return list of successfully read files.
Guido van Rossum6a8d84b1999-10-04 18:57:27 +0000277 """
Guido van Rossum3172c5d2007-10-16 18:12:55 +0000278 if isinstance(filenames, str):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000279 filenames = [filenames]
Fred Drake82903142004-05-18 04:24:02 +0000280 read_ok = []
Guido van Rossum6a8d84b1999-10-04 18:57:27 +0000281 for filename in filenames:
282 try:
283 fp = open(filename)
284 except IOError:
285 continue
Fred Drakefce65572002-10-25 18:08:18 +0000286 self._read(fp, filename)
Fred Drake2438a481999-10-04 18:11:56 +0000287 fp.close()
Fred Drake82903142004-05-18 04:24:02 +0000288 read_ok.append(filename)
289 return read_ok
Guido van Rossum3d209861997-12-09 16:10:31 +0000290
Guido van Rossum6a8d84b1999-10-04 18:57:27 +0000291 def readfp(self, fp, filename=None):
292 """Like read() but the argument must be a file-like object.
293
294 The `fp' argument must have a `readline' method. Optional
295 second argument is the `filename', which if not given, is
296 taken from fp.name. If fp has no `name' attribute, `<???>' is
297 used.
298
299 """
300 if filename is None:
301 try:
302 filename = fp.name
303 except AttributeError:
304 filename = '<???>'
Fred Drakefce65572002-10-25 18:08:18 +0000305 self._read(fp, filename)
Guido van Rossum6a8d84b1999-10-04 18:57:27 +0000306
Fred Drakefce65572002-10-25 18:08:18 +0000307 def get(self, section, option):
308 opt = self.optionxform(option)
309 if section not in self._sections:
Fred Drakec2ff9052002-09-27 15:33:11 +0000310 if section != DEFAULTSECT:
311 raise NoSectionError(section)
Fred Drakefce65572002-10-25 18:08:18 +0000312 if opt in self._defaults:
313 return self._defaults[opt]
314 else:
315 raise NoOptionError(option, section)
316 elif opt in self._sections[section]:
317 return self._sections[section][opt]
318 elif opt in self._defaults:
319 return self._defaults[opt]
320 else:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000321 raise NoOptionError(option, section)
Fred Drake2a37f9f2000-09-27 22:43:54 +0000322
Fred Drakefce65572002-10-25 18:08:18 +0000323 def items(self, section):
Fred Drake2ca041f2002-09-27 15:49:56 +0000324 try:
Fred Drakefce65572002-10-25 18:08:18 +0000325 d2 = self._sections[section]
Fred Drake2ca041f2002-09-27 15:49:56 +0000326 except KeyError:
327 if section != DEFAULTSECT:
328 raise NoSectionError(section)
Thomas Wouters89f507f2006-12-13 04:49:30 +0000329 d2 = self._dict()
Fred Drakefce65572002-10-25 18:08:18 +0000330 d = self._defaults.copy()
331 d.update(d2)
Fred Drakedf393bd2002-10-25 20:41:30 +0000332 if "__name__" in d:
333 del d["__name__"]
Fred Drakefce65572002-10-25 18:08:18 +0000334 return d.items()
Fred Drake2ca041f2002-09-27 15:49:56 +0000335
Fred Drakefce65572002-10-25 18:08:18 +0000336 def _get(self, section, conv, option):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000337 return conv(self.get(section, option))
Guido van Rossum3d209861997-12-09 16:10:31 +0000338
339 def getint(self, section, option):
Fred Drakefce65572002-10-25 18:08:18 +0000340 return self._get(section, int, option)
Guido van Rossum3d209861997-12-09 16:10:31 +0000341
342 def getfloat(self, section, option):
Fred Drakefce65572002-10-25 18:08:18 +0000343 return self._get(section, float, option)
Guido van Rossum3d209861997-12-09 16:10:31 +0000344
Fred Drakec2ff9052002-09-27 15:33:11 +0000345 _boolean_states = {'1': True, 'yes': True, 'true': True, 'on': True,
346 '0': False, 'no': False, 'false': False, 'off': False}
347
Guido van Rossum3d209861997-12-09 16:10:31 +0000348 def getboolean(self, section, option):
Tim Peterse0c446b2001-10-18 21:57:37 +0000349 v = self.get(section, option)
Fred Drakec2ff9052002-09-27 15:33:11 +0000350 if v.lower() not in self._boolean_states:
Collin Winterce36ad82007-08-30 01:19:48 +0000351 raise ValueError('Not a boolean: %s' % v)
Fred Drakec2ff9052002-09-27 15:33:11 +0000352 return self._boolean_states[v.lower()]
Guido van Rossum3d209861997-12-09 16:10:31 +0000353
Guido van Rossum9e480ad1999-06-17 18:41:42 +0000354 def optionxform(self, optionstr):
Eric S. Raymond9eb54d92001-02-09 05:19:09 +0000355 return optionstr.lower()
Guido van Rossum9e480ad1999-06-17 18:41:42 +0000356
Eric S. Raymond417c4892000-07-10 18:11:00 +0000357 def has_option(self, section, option):
358 """Check for the existence of a given option in a given section."""
Fred Drakec2ff9052002-09-27 15:33:11 +0000359 if not section or section == DEFAULTSECT:
360 option = self.optionxform(option)
Fred Drakefce65572002-10-25 18:08:18 +0000361 return option in self._defaults
362 elif section not in self._sections:
Neal Norwitzf680cc42002-12-17 01:56:47 +0000363 return False
Eric S. Raymond417c4892000-07-10 18:11:00 +0000364 else:
Fred Drake3c823aa2001-02-26 21:55:34 +0000365 option = self.optionxform(option)
Fred Drakefce65572002-10-25 18:08:18 +0000366 return (option in self._sections[section]
367 or option in self._defaults)
Eric S. Raymond417c4892000-07-10 18:11:00 +0000368
369 def set(self, section, option, value):
370 """Set an option."""
Fred Drakec2ff9052002-09-27 15:33:11 +0000371 if not section or section == DEFAULTSECT:
Fred Drakefce65572002-10-25 18:08:18 +0000372 sectdict = self._defaults
Eric S. Raymond417c4892000-07-10 18:11:00 +0000373 else:
374 try:
Fred Drakefce65572002-10-25 18:08:18 +0000375 sectdict = self._sections[section]
Eric S. Raymond417c4892000-07-10 18:11:00 +0000376 except KeyError:
377 raise NoSectionError(section)
Fred Drakec2ff9052002-09-27 15:33:11 +0000378 sectdict[self.optionxform(option)] = value
Eric S. Raymond417c4892000-07-10 18:11:00 +0000379
380 def write(self, fp):
381 """Write an .ini-format representation of the configuration state."""
Fred Drakefce65572002-10-25 18:08:18 +0000382 if self._defaults:
Fred Drakec2ff9052002-09-27 15:33:11 +0000383 fp.write("[%s]\n" % DEFAULTSECT)
Fred Drakefce65572002-10-25 18:08:18 +0000384 for (key, value) in self._defaults.items():
Andrew M. Kuchling00824ed2002-03-08 18:08:47 +0000385 fp.write("%s = %s\n" % (key, str(value).replace('\n', '\n\t')))
Eric S. Raymond417c4892000-07-10 18:11:00 +0000386 fp.write("\n")
Fred Drakefce65572002-10-25 18:08:18 +0000387 for section in self._sections:
Fred Drakec2ff9052002-09-27 15:33:11 +0000388 fp.write("[%s]\n" % section)
Fred Drakefce65572002-10-25 18:08:18 +0000389 for (key, value) in self._sections[section].items():
Fred Drakec2ff9052002-09-27 15:33:11 +0000390 if key != "__name__":
391 fp.write("%s = %s\n" %
392 (key, str(value).replace('\n', '\n\t')))
Eric S. Raymond417c4892000-07-10 18:11:00 +0000393 fp.write("\n")
394
Thomas Woutersff4df6d2000-07-21 05:19:59 +0000395 def remove_option(self, section, option):
Eric S. Raymond649685a2000-07-14 14:28:22 +0000396 """Remove an option."""
Fred Drakec2ff9052002-09-27 15:33:11 +0000397 if not section or section == DEFAULTSECT:
Fred Drakefce65572002-10-25 18:08:18 +0000398 sectdict = self._defaults
Eric S. Raymond649685a2000-07-14 14:28:22 +0000399 else:
400 try:
Fred Drakefce65572002-10-25 18:08:18 +0000401 sectdict = self._sections[section]
Eric S. Raymond649685a2000-07-14 14:28:22 +0000402 except KeyError:
403 raise NoSectionError(section)
Fred Drake3c823aa2001-02-26 21:55:34 +0000404 option = self.optionxform(option)
Raymond Hettinger54f02222002-06-01 14:18:47 +0000405 existed = option in sectdict
Eric S. Raymond649685a2000-07-14 14:28:22 +0000406 if existed:
Fred Drakeff4a23b2000-12-04 16:29:13 +0000407 del sectdict[option]
Eric S. Raymond649685a2000-07-14 14:28:22 +0000408 return existed
409
Thomas Woutersff4df6d2000-07-21 05:19:59 +0000410 def remove_section(self, section):
Eric S. Raymond649685a2000-07-14 14:28:22 +0000411 """Remove a file section."""
Fred Drakefce65572002-10-25 18:08:18 +0000412 existed = section in self._sections
Fred Drakec2ff9052002-09-27 15:33:11 +0000413 if existed:
Fred Drakefce65572002-10-25 18:08:18 +0000414 del self._sections[section]
Fred Drakec2ff9052002-09-27 15:33:11 +0000415 return existed
Eric S. Raymond649685a2000-07-14 14:28:22 +0000416
Barry Warsawbfa3f6b1998-07-01 20:41:12 +0000417 #
Fred Drakec2ff9052002-09-27 15:33:11 +0000418 # Regular expressions for parsing section headers and options.
419 #
Guido van Rossum9e480ad1999-06-17 18:41:42 +0000420 SECTCRE = re.compile(
Barry Warsawbfa3f6b1998-07-01 20:41:12 +0000421 r'\[' # [
Fred Draked4df94b2001-02-14 15:24:17 +0000422 r'(?P<header>[^]]+)' # very permissive!
Barry Warsawbfa3f6b1998-07-01 20:41:12 +0000423 r'\]' # ]
424 )
Guido van Rossum9e480ad1999-06-17 18:41:42 +0000425 OPTCRE = re.compile(
Fred Drake176916a2002-09-27 16:21:18 +0000426 r'(?P<option>[^:=\s][^:=]*)' # very permissive!
Fred Drakec2ff9052002-09-27 15:33:11 +0000427 r'\s*(?P<vi>[:=])\s*' # any number of space/tab,
Barry Warsawbfa3f6b1998-07-01 20:41:12 +0000428 # followed by separator
429 # (either : or =), followed
430 # by any # space/tab
431 r'(?P<value>.*)$' # everything up to eol
432 )
433
Fred Drakefce65572002-10-25 18:08:18 +0000434 def _read(self, fp, fpname):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000435 """Parse a sectioned setup file.
Guido van Rossum3d209861997-12-09 16:10:31 +0000436
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000437 The sections in setup file contains a title line at the top,
438 indicated by a name in square brackets (`[]'), plus key/value
439 options lines, indicated by `name: value' format lines.
Andrew M. Kuchling9050a512002-11-06 14:51:20 +0000440 Continuations are represented by an embedded newline then
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000441 leading whitespace. Blank lines, lines beginning with a '#',
Andrew M. Kuchling9050a512002-11-06 14:51:20 +0000442 and just about everything else are ignored.
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000443 """
Barry Warsawbfa3f6b1998-07-01 20:41:12 +0000444 cursect = None # None, or a dictionary
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000445 optname = None
446 lineno = 0
Barry Warsawbfa3f6b1998-07-01 20:41:12 +0000447 e = None # None, or an exception
Neal Norwitzf680cc42002-12-17 01:56:47 +0000448 while True:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000449 line = fp.readline()
450 if not line:
451 break
452 lineno = lineno + 1
453 # comment or blank line?
Eric S. Raymond9eb54d92001-02-09 05:19:09 +0000454 if line.strip() == '' or line[0] in '#;':
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000455 continue
Fred Drake176916a2002-09-27 16:21:18 +0000456 if line.split(None, 1)[0].lower() == 'rem' and line[0] in "rR":
457 # no leading whitespace
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000458 continue
459 # continuation line?
Fred Drakec2ff9052002-09-27 15:33:11 +0000460 if line[0].isspace() and cursect is not None and optname:
Eric S. Raymond9eb54d92001-02-09 05:19:09 +0000461 value = line.strip()
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000462 if value:
Fred Drakec2ff9052002-09-27 15:33:11 +0000463 cursect[optname] = "%s\n%s" % (cursect[optname], value)
Barry Warsawbfa3f6b1998-07-01 20:41:12 +0000464 # a section header or option header?
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000465 else:
Barry Warsawbfa3f6b1998-07-01 20:41:12 +0000466 # is it a section header?
Guido van Rossum9e480ad1999-06-17 18:41:42 +0000467 mo = self.SECTCRE.match(line)
Barry Warsawbfa3f6b1998-07-01 20:41:12 +0000468 if mo:
469 sectname = mo.group('header')
Fred Drakefce65572002-10-25 18:08:18 +0000470 if sectname in self._sections:
471 cursect = self._sections[sectname]
Barry Warsawbfa3f6b1998-07-01 20:41:12 +0000472 elif sectname == DEFAULTSECT:
Fred Drakefce65572002-10-25 18:08:18 +0000473 cursect = self._defaults
Barry Warsawbfa3f6b1998-07-01 20:41:12 +0000474 else:
Thomas Wouters89f507f2006-12-13 04:49:30 +0000475 cursect = self._dict()
476 cursect['__name__'] = sectname
Fred Drakefce65572002-10-25 18:08:18 +0000477 self._sections[sectname] = cursect
Barry Warsawbfa3f6b1998-07-01 20:41:12 +0000478 # So sections can't start with a continuation line
479 optname = None
480 # no section header in the file?
481 elif cursect is None:
Walter Dörwald70a6b492004-02-12 17:35:32 +0000482 raise MissingSectionHeaderError(fpname, lineno, line)
Barry Warsawbfa3f6b1998-07-01 20:41:12 +0000483 # an option line?
484 else:
Guido van Rossum9e480ad1999-06-17 18:41:42 +0000485 mo = self.OPTCRE.match(line)
Barry Warsawbfa3f6b1998-07-01 20:41:12 +0000486 if mo:
Fred Drakec517b9b2000-02-28 20:59:03 +0000487 optname, vi, optval = mo.group('option', 'vi', 'value')
Jeremy Hylton820314e2000-03-03 20:43:57 +0000488 if vi in ('=', ':') and ';' in optval:
Fred Drakec517b9b2000-02-28 20:59:03 +0000489 # ';' is a comment delimiter only if it follows
490 # a spacing character
Eric S. Raymond9eb54d92001-02-09 05:19:09 +0000491 pos = optval.find(';')
Fred Drakec2ff9052002-09-27 15:33:11 +0000492 if pos != -1 and optval[pos-1].isspace():
Fred Drakec517b9b2000-02-28 20:59:03 +0000493 optval = optval[:pos]
Eric S. Raymond9eb54d92001-02-09 05:19:09 +0000494 optval = optval.strip()
Barry Warsawbfa3f6b1998-07-01 20:41:12 +0000495 # allow empty values
496 if optval == '""':
497 optval = ''
Fred Drake176916a2002-09-27 16:21:18 +0000498 optname = self.optionxform(optname.rstrip())
Fred Drakec2ff9052002-09-27 15:33:11 +0000499 cursect[optname] = optval
Barry Warsawbfa3f6b1998-07-01 20:41:12 +0000500 else:
501 # a non-fatal parsing error occurred. set up the
502 # exception but keep going. the exception will be
503 # raised at the end of the file and will contain a
504 # list of all bogus lines
505 if not e:
Guido van Rossum6a8d84b1999-10-04 18:57:27 +0000506 e = ParsingError(fpname)
Walter Dörwald70a6b492004-02-12 17:35:32 +0000507 e.append(lineno, repr(line))
Barry Warsawbfa3f6b1998-07-01 20:41:12 +0000508 # if any parsing errors occurred, raise an exception
509 if e:
510 raise e
Fred Drakefce65572002-10-25 18:08:18 +0000511
512
513class ConfigParser(RawConfigParser):
514
Neal Norwitzf680cc42002-12-17 01:56:47 +0000515 def get(self, section, option, raw=False, vars=None):
Fred Drakefce65572002-10-25 18:08:18 +0000516 """Get an option value for a given section.
517
518 All % interpolations are expanded in the return values, based on the
519 defaults passed into the constructor, unless the optional argument
520 `raw' is true. Additional substitutions may be provided using the
521 `vars' argument, which must be a dictionary whose contents overrides
522 any pre-existing defaults.
523
524 The section DEFAULT is special.
525 """
526 d = self._defaults.copy()
527 try:
528 d.update(self._sections[section])
529 except KeyError:
530 if section != DEFAULTSECT:
531 raise NoSectionError(section)
532 # Update with the entry specific variables
David Goodger68a1abd2004-10-03 15:40:25 +0000533 if vars:
534 for key, value in vars.items():
535 d[self.optionxform(key)] = value
Fred Drakefce65572002-10-25 18:08:18 +0000536 option = self.optionxform(option)
537 try:
538 value = d[option]
539 except KeyError:
540 raise NoOptionError(option, section)
541
542 if raw:
543 return value
544 else:
545 return self._interpolate(section, option, value, d)
546
Neal Norwitzf680cc42002-12-17 01:56:47 +0000547 def items(self, section, raw=False, vars=None):
Fred Drakefce65572002-10-25 18:08:18 +0000548 """Return a list of tuples with (name, value) for each option
549 in the section.
550
551 All % interpolations are expanded in the return values, based on the
552 defaults passed into the constructor, unless the optional argument
553 `raw' is true. Additional substitutions may be provided using the
554 `vars' argument, which must be a dictionary whose contents overrides
555 any pre-existing defaults.
556
557 The section DEFAULT is special.
558 """
559 d = self._defaults.copy()
560 try:
561 d.update(self._sections[section])
562 except KeyError:
563 if section != DEFAULTSECT:
564 raise NoSectionError(section)
565 # Update with the entry specific variables
566 if vars:
David Goodger68a1abd2004-10-03 15:40:25 +0000567 for key, value in vars.items():
568 d[self.optionxform(key)] = value
Guido van Rossumcc2b0162007-02-11 06:12:03 +0000569 options = list(d.keys())
Fred Drakedf393bd2002-10-25 20:41:30 +0000570 if "__name__" in options:
571 options.remove("__name__")
Fred Drakefce65572002-10-25 18:08:18 +0000572 if raw:
Fred Drake8c4da532003-10-21 16:45:00 +0000573 return [(option, d[option])
574 for option in options]
Fred Drakefce65572002-10-25 18:08:18 +0000575 else:
Fred Drake8c4da532003-10-21 16:45:00 +0000576 return [(option, self._interpolate(section, option, d[option], d))
577 for option in options]
Fred Drakefce65572002-10-25 18:08:18 +0000578
579 def _interpolate(self, section, option, rawval, vars):
580 # do the string interpolation
581 value = rawval
Tim Peters230a60c2002-11-09 05:08:07 +0000582 depth = MAX_INTERPOLATION_DEPTH
Fred Drakefce65572002-10-25 18:08:18 +0000583 while depth: # Loop through this until it's done
584 depth -= 1
Raymond Hettingerbac788a2004-05-04 09:21:43 +0000585 if "%(" in value:
Fred Drakebc12b012004-05-18 02:25:51 +0000586 value = self._KEYCRE.sub(self._interpolation_replace, value)
Fred Drakefce65572002-10-25 18:08:18 +0000587 try:
588 value = value % vars
Guido van Rossumb940e112007-01-10 16:19:56 +0000589 except KeyError as e:
Fred Drakee2c64912002-12-31 17:23:27 +0000590 raise InterpolationMissingOptionError(
Brett Cannonca477b22007-03-21 22:26:20 +0000591 option, section, rawval, e.args[0])
Fred Drakefce65572002-10-25 18:08:18 +0000592 else:
593 break
Raymond Hettingerbac788a2004-05-04 09:21:43 +0000594 if "%(" in value:
Fred Drakefce65572002-10-25 18:08:18 +0000595 raise InterpolationDepthError(option, section, rawval)
596 return value
Fred Drake0eebd5c2002-10-25 21:52:00 +0000597
Fred Drakebc12b012004-05-18 02:25:51 +0000598 _KEYCRE = re.compile(r"%\(([^)]*)\)s|.")
599
600 def _interpolation_replace(self, match):
601 s = match.group(1)
602 if s is None:
603 return match.group()
604 else:
605 return "%%(%s)s" % self.optionxform(s)
606
Fred Drake0eebd5c2002-10-25 21:52:00 +0000607
608class SafeConfigParser(ConfigParser):
609
610 def _interpolate(self, section, option, rawval, vars):
611 # do the string interpolation
612 L = []
613 self._interpolate_some(option, L, rawval, section, vars, 1)
614 return ''.join(L)
615
Guido van Rossumd8faa362007-04-27 19:54:29 +0000616 _interpvar_re = re.compile(r"%\(([^)]+)\)s")
617 _badpercent_re = re.compile(r"%[^%]|%$")
Fred Drake0eebd5c2002-10-25 21:52:00 +0000618
619 def _interpolate_some(self, option, accum, rest, section, map, depth):
620 if depth > MAX_INTERPOLATION_DEPTH:
621 raise InterpolationDepthError(option, section, rest)
622 while rest:
623 p = rest.find("%")
624 if p < 0:
625 accum.append(rest)
626 return
627 if p > 0:
628 accum.append(rest[:p])
629 rest = rest[p:]
630 # p is no longer used
631 c = rest[1:2]
632 if c == "%":
633 accum.append("%")
634 rest = rest[2:]
635 elif c == "(":
Guido van Rossumd8faa362007-04-27 19:54:29 +0000636 m = self._interpvar_re.match(rest)
Fred Drake0eebd5c2002-10-25 21:52:00 +0000637 if m is None:
Neal Norwitz10f30182003-06-29 04:23:35 +0000638 raise InterpolationSyntaxError(option, section,
639 "bad interpolation variable reference %r" % rest)
Fred Drakebc12b012004-05-18 02:25:51 +0000640 var = self.optionxform(m.group(1))
Fred Drake0eebd5c2002-10-25 21:52:00 +0000641 rest = rest[m.end():]
642 try:
643 v = map[var]
644 except KeyError:
Fred Drakee2c64912002-12-31 17:23:27 +0000645 raise InterpolationMissingOptionError(
646 option, section, rest, var)
Fred Drake0eebd5c2002-10-25 21:52:00 +0000647 if "%" in v:
648 self._interpolate_some(option, accum, v,
649 section, map, depth + 1)
650 else:
651 accum.append(v)
652 else:
653 raise InterpolationSyntaxError(
Neal Norwitz10f30182003-06-29 04:23:35 +0000654 option, section,
Walter Dörwald70a6b492004-02-12 17:35:32 +0000655 "'%%' must be followed by '%%' or '(', found: %r" % (rest,))
David Goodger1cbf2062004-10-03 15:55:09 +0000656
657 def set(self, section, option, value):
658 """Set an option. Extend ConfigParser.set: check for string values."""
Guido van Rossum3172c5d2007-10-16 18:12:55 +0000659 if not isinstance(value, str):
David Goodger1cbf2062004-10-03 15:55:09 +0000660 raise TypeError("option values must be strings")
Guido van Rossumd8faa362007-04-27 19:54:29 +0000661 # check for bad percent signs:
662 # first, replace all "good" interpolations
663 tmp_value = self._interpvar_re.sub('', value)
664 # then, check if there's a lone percent sign left
665 m = self._badpercent_re.search(tmp_value)
666 if m:
667 raise ValueError("invalid interpolation syntax in %r at "
668 "position %d" % (value, m.start()))
David Goodger1cbf2062004-10-03 15:55:09 +0000669 ConfigParser.set(self, section, option, value)