blob: b423ff5dc6f69f022fa153d2c1459639f7ae250a [file] [log] [blame]
Neal Norwitz9d72bb42007-04-17 08:48:32 +00001"""A collection of string constants.
Guido van Rossum20032041997-12-29 19:26:28 +00002
3Public module variables:
4
Georg Brandl50767402008-11-22 08:31:09 +00005whitespace -- a string containing all ASCII whitespace
6ascii_lowercase -- a string containing all ASCII lowercase letters
7ascii_uppercase -- a string containing all ASCII uppercase letters
8ascii_letters -- a string containing all ASCII letters
9digits -- a string containing all ASCII decimal digits
10hexdigits -- a string containing all ASCII hexadecimal digits
11octdigits -- a string containing all ASCII octal digits
12punctuation -- a string containing all ASCII punctuation characters
13printable -- a string containing all ASCII characters considered printable
Guido van Rossum20032041997-12-29 19:26:28 +000014
15"""
16
Zachary Warec17a0b82016-06-04 14:35:05 -050017__all__ = ["ascii_letters", "ascii_lowercase", "ascii_uppercase", "capwords",
18 "digits", "hexdigits", "octdigits", "printable", "punctuation",
19 "whitespace", "Formatter", "Template"]
20
Georg Brandl66c221e2010-10-14 07:04:07 +000021import _string
22
Guido van Rossumc6360141990-10-13 19:23:40 +000023# Some strings for ctype-style character classification
Guido van Rossum8e2ec561993-07-29 09:37:38 +000024whitespace = ' \t\n\r\v\f'
Martin v. Löwis967f1e32007-08-14 09:23:10 +000025ascii_lowercase = 'abcdefghijklmnopqrstuvwxyz'
26ascii_uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
Fred Drake960fdf92001-07-20 18:38:26 +000027ascii_letters = ascii_lowercase + ascii_uppercase
Guido van Rossumc6360141990-10-13 19:23:40 +000028digits = '0123456789'
29hexdigits = digits + 'abcdef' + 'ABCDEF'
30octdigits = '01234567'
R David Murray44b548d2016-09-08 13:59:53 -040031punctuation = r"""!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~"""
Martin v. Löwis967f1e32007-08-14 09:23:10 +000032printable = digits + ascii_letters + punctuation + whitespace
Guido van Rossumc6360141990-10-13 19:23:40 +000033
Barry Warsaw8bee7612004-08-25 02:22:30 +000034# Functions which aren't available as string methods.
35
36# Capitalize the words in a string, e.g. " aBc dEf " -> "Abc Def".
Barry Warsaw8bee7612004-08-25 02:22:30 +000037def capwords(s, sep=None):
Ezio Melottia40bdda2009-09-26 12:33:22 +000038 """capwords(s [,sep]) -> string
Barry Warsaw8bee7612004-08-25 02:22:30 +000039
40 Split the argument into words using split, capitalize each
41 word using capitalize, and join the capitalized words using
Ezio Melottia40bdda2009-09-26 12:33:22 +000042 join. If the optional second argument sep is absent or None,
43 runs of whitespace characters are replaced by a single space
44 and leading and trailing whitespace are removed, otherwise
45 sep is used to split and join the words.
Barry Warsaw8bee7612004-08-25 02:22:30 +000046
47 """
Ezio Melottia40bdda2009-09-26 12:33:22 +000048 return (sep or ' ').join(x.capitalize() for x in s.split(sep))
Barry Warsaw8bee7612004-08-25 02:22:30 +000049
50
Raymond Hettinger0d58e2b2004-08-26 00:21:13 +000051####################################################################
Barry Warsaw8bee7612004-08-25 02:22:30 +000052import re as _re
Zachary Warec17a0b82016-06-04 14:35:05 -050053from collections import ChainMap as _ChainMap
Barry Warsaw46b629c2004-09-13 14:35:04 +000054
Serhiy Storchaka2085bd02019-06-01 11:00:15 +030055_sentinel_dict = {}
56
Barry Warsaw12827c12004-09-10 03:08:08 +000057class _TemplateMetaclass(type):
58 pattern = r"""
Raymond Hettinger55593c32004-09-26 18:56:44 +000059 %(delim)s(?:
60 (?P<escaped>%(delim)s) | # Escape sequence of two delimiters
61 (?P<named>%(id)s) | # delimiter and a Python identifier
Barry Warsawba427962017-09-04 16:32:10 -040062 {(?P<braced>%(bid)s)} | # delimiter and a braced identifier
Raymond Hettinger55593c32004-09-26 18:56:44 +000063 (?P<invalid>) # Other ill-formed delimiter exprs
64 )
Barry Warsaw12827c12004-09-10 03:08:08 +000065 """
66
67 def __init__(cls, name, bases, dct):
68 super(_TemplateMetaclass, cls).__init__(name, bases, dct)
69 if 'pattern' in dct:
70 pattern = cls.pattern
71 else:
72 pattern = _TemplateMetaclass.pattern % {
Barry Warsaw17cb6002004-09-18 00:06:34 +000073 'delim' : _re.escape(cls.delimiter),
Barry Warsaw12827c12004-09-10 03:08:08 +000074 'id' : cls.idpattern,
Barry Warsawba427962017-09-04 16:32:10 -040075 'bid' : cls.braceidpattern or cls.idpattern,
Barry Warsaw12827c12004-09-10 03:08:08 +000076 }
Georg Brandl056cb932010-07-29 17:16:10 +000077 cls.pattern = _re.compile(pattern, cls.flags | _re.VERBOSE)
Barry Warsaw12827c12004-09-10 03:08:08 +000078
79
Guido van Rossum52cc1d82007-03-18 15:41:51 +000080class Template(metaclass=_TemplateMetaclass):
Barry Warsaw8bee7612004-08-25 02:22:30 +000081 """A string class for supporting $-substitutions."""
Barry Warsaw12827c12004-09-10 03:08:08 +000082
Barry Warsaw17cb6002004-09-18 00:06:34 +000083 delimiter = '$'
Barry Warsawe256b402017-11-21 10:28:13 -050084 # r'[a-z]' matches to non-ASCII letters when used with IGNORECASE, but
85 # without the ASCII flag. We can't add re.ASCII to flags because of
86 # backward compatibility. So we use the ?a local flag and [a-z] pattern.
INADA Naokib22273e2017-10-13 16:02:23 +090087 # See https://bugs.python.org/issue31672
Serhiy Storchaka87be28f2018-01-04 19:20:11 +020088 idpattern = r'(?a:[_a-z][_a-z0-9]*)'
Barry Warsawba427962017-09-04 16:32:10 -040089 braceidpattern = None
Georg Brandl056cb932010-07-29 17:16:10 +000090 flags = _re.IGNORECASE
Barry Warsaw12827c12004-09-10 03:08:08 +000091
92 def __init__(self, template):
93 self.template = template
Barry Warsaw8bee7612004-08-25 02:22:30 +000094
95 # Search for $$, $identifier, ${identifier}, and any bare $'s
Barry Warsaw8bee7612004-08-25 02:22:30 +000096
Barry Warsawb5c6b5b2004-09-13 20:52:50 +000097 def _invalid(self, mo):
98 i = mo.start('invalid')
Ezio Melottid8b509b2011-09-28 17:37:55 +030099 lines = self.template[:i].splitlines(keepends=True)
Barry Warsaw12827c12004-09-10 03:08:08 +0000100 if not lines:
101 colno = 1
102 lineno = 1
103 else:
104 colno = i - len(''.join(lines[:-1]))
105 lineno = len(lines)
106 raise ValueError('Invalid placeholder in string: line %d, col %d' %
107 (lineno, colno))
108
Serhiy Storchaka2085bd02019-06-01 11:00:15 +0300109 def substitute(self, mapping=_sentinel_dict, /, **kws):
110 if mapping is _sentinel_dict:
Barry Warsawb6234a92004-09-13 15:25:15 +0000111 mapping = kws
Barry Warsaw46b629c2004-09-13 14:35:04 +0000112 elif kws:
Serhiy Storchaka2085bd02019-06-01 11:00:15 +0300113 mapping = _ChainMap(kws, mapping)
Barry Warsaw46b629c2004-09-13 14:35:04 +0000114 # Helper function for .sub()
Barry Warsaw8bee7612004-08-25 02:22:30 +0000115 def convert(mo):
Barry Warsawb5c6b5b2004-09-13 20:52:50 +0000116 # Check the most common path first.
117 named = mo.group('named') or mo.group('braced')
118 if named is not None:
Serhiy Storchaka6e6883f2015-05-28 20:45:29 +0300119 return str(mapping[named])
Raymond Hettinger0d58e2b2004-08-26 00:21:13 +0000120 if mo.group('escaped') is not None:
Barry Warsaw17cb6002004-09-18 00:06:34 +0000121 return self.delimiter
Barry Warsawb5c6b5b2004-09-13 20:52:50 +0000122 if mo.group('invalid') is not None:
123 self._invalid(mo)
Neal Norwitz6627a962004-10-17 16:27:18 +0000124 raise ValueError('Unrecognized named group in pattern',
125 self.pattern)
Barry Warsaw12827c12004-09-10 03:08:08 +0000126 return self.pattern.sub(convert, self.template)
Barry Warsaw8bee7612004-08-25 02:22:30 +0000127
Serhiy Storchaka2085bd02019-06-01 11:00:15 +0300128 def safe_substitute(self, mapping=_sentinel_dict, /, **kws):
129 if mapping is _sentinel_dict:
Barry Warsawb6234a92004-09-13 15:25:15 +0000130 mapping = kws
Barry Warsaw46b629c2004-09-13 14:35:04 +0000131 elif kws:
Serhiy Storchaka2085bd02019-06-01 11:00:15 +0300132 mapping = _ChainMap(kws, mapping)
Barry Warsaw46b629c2004-09-13 14:35:04 +0000133 # Helper function for .sub()
Barry Warsaw8bee7612004-08-25 02:22:30 +0000134 def convert(mo):
Florent Xiclunaeb19dce2010-09-18 23:34:07 +0000135 named = mo.group('named') or mo.group('braced')
Barry Warsaw8bee7612004-08-25 02:22:30 +0000136 if named is not None:
137 try:
Serhiy Storchaka6e6883f2015-05-28 20:45:29 +0300138 return str(mapping[named])
Barry Warsaw8bee7612004-08-25 02:22:30 +0000139 except KeyError:
Florent Xiclunaeb19dce2010-09-18 23:34:07 +0000140 return mo.group()
Barry Warsawb5c6b5b2004-09-13 20:52:50 +0000141 if mo.group('escaped') is not None:
Barry Warsaw17cb6002004-09-18 00:06:34 +0000142 return self.delimiter
Barry Warsawb5c6b5b2004-09-13 20:52:50 +0000143 if mo.group('invalid') is not None:
Florent Xiclunaeb19dce2010-09-18 23:34:07 +0000144 return mo.group()
Neal Norwitz6627a962004-10-17 16:27:18 +0000145 raise ValueError('Unrecognized named group in pattern',
146 self.pattern)
Barry Warsaw12827c12004-09-10 03:08:08 +0000147 return self.pattern.sub(convert, self.template)
Eric Smith8c663262007-08-25 02:26:07 +0000148
149
150
151########################################################################
152# the Formatter class
153# see PEP 3101 for details and purpose of this class
154
Benjamin Petersonf608c612008-11-16 18:33:53 +0000155# The hard parts are reused from the C implementation. They're exposed as "_"
Florent Xicluna7b2a7712010-09-06 20:27:55 +0000156# prefixed methods of str.
Eric Smith8c663262007-08-25 02:26:07 +0000157
Georg Brandl66c221e2010-10-14 07:04:07 +0000158# The overall parser is implemented in _string.formatter_parser.
159# The field name parser is implemented in _string.formatter_field_name_split
Eric Smith8c663262007-08-25 02:26:07 +0000160
161class Formatter:
Serhiy Storchaka2085bd02019-06-01 11:00:15 +0300162 def format(self, format_string, /, *args, **kwargs):
Eric Smith8c663262007-08-25 02:26:07 +0000163 return self.vformat(format_string, args, kwargs)
164
165 def vformat(self, format_string, args, kwargs):
Eric Smith3bcc42a2007-08-31 02:26:31 +0000166 used_args = set()
Eric V. Smith85976b12015-09-29 10:27:38 -0400167 result, _ = self._vformat(format_string, args, kwargs, used_args, 2)
Eric Smith11529192007-09-04 23:04:22 +0000168 self.check_unused_args(used_args, args, kwargs)
169 return result
170
Eric V. Smith7ce90742014-04-14 16:43:50 -0400171 def _vformat(self, format_string, args, kwargs, used_args, recursion_depth,
172 auto_arg_index=0):
Eric Smith11529192007-09-04 23:04:22 +0000173 if recursion_depth < 0:
174 raise ValueError('Max string recursion exceeded')
Eric Smith8c663262007-08-25 02:26:07 +0000175 result = []
Eric Smith9e7c8da2007-08-28 11:15:20 +0000176 for literal_text, field_name, format_spec, conversion in \
177 self.parse(format_string):
Eric Smith625cbf22007-08-29 03:22:59 +0000178
179 # output the literal text
180 if literal_text:
181 result.append(literal_text)
182
183 # if there's a field, output it
184 if field_name is not None:
Eric Smith9e7c8da2007-08-28 11:15:20 +0000185 # this is some markup, find the object and do
186 # the formatting
187
Eric V. Smith7ce90742014-04-14 16:43:50 -0400188 # handle arg indexing when empty field_names are given.
189 if field_name == '':
190 if auto_arg_index is False:
191 raise ValueError('cannot switch from manual field '
192 'specification to automatic field '
193 'numbering')
194 field_name = str(auto_arg_index)
195 auto_arg_index += 1
196 elif field_name.isdigit():
197 if auto_arg_index:
198 raise ValueError('cannot switch from manual field '
199 'specification to automatic field '
200 'numbering')
201 # disable auto arg incrementing, if it gets
202 # used later on, then an exception will be raised
203 auto_arg_index = False
204
Eric Smith7ade6482007-08-26 22:27:13 +0000205 # given the field_name, find the object it references
Eric Smith3bcc42a2007-08-31 02:26:31 +0000206 # and the argument it came from
Eric Smith9d4ba392007-09-02 15:33:26 +0000207 obj, arg_used = self.get_field(field_name, args, kwargs)
Eric Smith3bcc42a2007-08-31 02:26:31 +0000208 used_args.add(arg_used)
Eric Smith7ade6482007-08-26 22:27:13 +0000209
210 # do any conversion on the resulting object
Eric Smith9e7c8da2007-08-28 11:15:20 +0000211 obj = self.convert_field(obj, conversion)
Eric Smith7ade6482007-08-26 22:27:13 +0000212
Eric Smith11529192007-09-04 23:04:22 +0000213 # expand the format spec, if needed
Eric V. Smith85976b12015-09-29 10:27:38 -0400214 format_spec, auto_arg_index = self._vformat(
215 format_spec, args, kwargs,
216 used_args, recursion_depth-1,
217 auto_arg_index=auto_arg_index)
Eric Smith11529192007-09-04 23:04:22 +0000218
Eric Smith7ade6482007-08-26 22:27:13 +0000219 # format the object and append to the result
220 result.append(self.format_field(obj, format_spec))
Eric Smith625cbf22007-08-29 03:22:59 +0000221
Eric V. Smith85976b12015-09-29 10:27:38 -0400222 return ''.join(result), auto_arg_index
Eric Smith8c663262007-08-25 02:26:07 +0000223
Eric Smith9e7c8da2007-08-28 11:15:20 +0000224
Eric Smith8c663262007-08-25 02:26:07 +0000225 def get_value(self, key, args, kwargs):
Eric Smith7ade6482007-08-26 22:27:13 +0000226 if isinstance(key, int):
227 return args[key]
228 else:
229 return kwargs[key]
Eric Smith8c663262007-08-25 02:26:07 +0000230
Eric Smith9e7c8da2007-08-28 11:15:20 +0000231
Eric Smith8c663262007-08-25 02:26:07 +0000232 def check_unused_args(self, used_args, args, kwargs):
233 pass
234
Eric Smith9e7c8da2007-08-28 11:15:20 +0000235
Eric Smith8c663262007-08-25 02:26:07 +0000236 def format_field(self, value, format_spec):
Eric Smith7ade6482007-08-26 22:27:13 +0000237 return format(value, format_spec)
Eric Smith9e7c8da2007-08-28 11:15:20 +0000238
239
240 def convert_field(self, value, conversion):
241 # do any conversion on the resulting object
R David Murraye56bf972012-08-19 17:26:34 -0400242 if conversion is None:
243 return value
Eric Smith9e7c8da2007-08-28 11:15:20 +0000244 elif conversion == 's':
245 return str(value)
R David Murraye56bf972012-08-19 17:26:34 -0400246 elif conversion == 'r':
247 return repr(value)
248 elif conversion == 'a':
249 return ascii(value)
Florent Xicluna7b2a7712010-09-06 20:27:55 +0000250 raise ValueError("Unknown conversion specifier {0!s}".format(conversion))
Eric Smith9e7c8da2007-08-28 11:15:20 +0000251
252
253 # returns an iterable that contains tuples of the form:
254 # (literal_text, field_name, format_spec, conversion)
Eric Smith625cbf22007-08-29 03:22:59 +0000255 # literal_text can be zero length
256 # field_name can be None, in which case there's no
257 # object to format and output
258 # if field_name is not None, it is looked up, formatted
259 # with format_spec and conversion and then used
Eric Smith9e7c8da2007-08-28 11:15:20 +0000260 def parse(self, format_string):
Georg Brandl66c221e2010-10-14 07:04:07 +0000261 return _string.formatter_parser(format_string)
Eric Smith9e7c8da2007-08-28 11:15:20 +0000262
263
264 # given a field_name, find the object it references.
265 # field_name: the field being looked up, e.g. "0.name"
266 # or "lookup[3]"
267 # used_args: a set of which args have been used
268 # args, kwargs: as passed in to vformat
Eric Smith9d4ba392007-09-02 15:33:26 +0000269 def get_field(self, field_name, args, kwargs):
Georg Brandl66c221e2010-10-14 07:04:07 +0000270 first, rest = _string.formatter_field_name_split(field_name)
Eric Smith9e7c8da2007-08-28 11:15:20 +0000271
Eric Smith9e7c8da2007-08-28 11:15:20 +0000272 obj = self.get_value(first, args, kwargs)
273
274 # loop through the rest of the field_name, doing
275 # getattr or getitem as needed
276 for is_attr, i in rest:
277 if is_attr:
278 obj = getattr(obj, i)
279 else:
280 obj = obj[i]
281
Eric Smith3bcc42a2007-08-31 02:26:31 +0000282 return obj, first