1 """ codecs -- Python Codec Registry, API and helpers.
4 Written by Marc-Andre Lemburg (mal@lemburg.com).
6 (c) Copyright CNRI, All Rights Reserved. NO WARRANTY.
10 import __builtin__
, sys
12 ### Registry and builtin stateless codec functions
16 except ImportError, why
:
17 raise SystemError('Failed to load the builtin codecs: %s' % why
)
19 __all__
= ["register", "lookup", "open", "EncodedFile", "BOM", "BOM_BE",
20 "BOM_LE", "BOM32_BE", "BOM32_LE", "BOM64_BE", "BOM64_LE",
21 "BOM_UTF8", "BOM_UTF16", "BOM_UTF16_LE", "BOM_UTF16_BE",
22 "BOM_UTF32", "BOM_UTF32_LE", "BOM_UTF32_BE",
23 "strict_errors", "ignore_errors", "replace_errors",
24 "xmlcharrefreplace_errors",
25 "register_error", "lookup_error"]
30 # Byte Order Mark (BOM = ZERO WIDTH NO-BREAK SPACE = U+FEFF)
31 # and its possible byte string values
32 # for UTF8/UTF16/UTF32 output and little/big endian machines
36 BOM_UTF8
= '\xef\xbb\xbf'
38 # UTF-16, little endian
39 BOM_LE
= BOM_UTF16_LE
= '\xff\xfe'
42 BOM_BE
= BOM_UTF16_BE
= '\xfe\xff'
44 # UTF-32, little endian
45 BOM_UTF32_LE
= '\xff\xfe\x00\x00'
48 BOM_UTF32_BE
= '\x00\x00\xfe\xff'
50 if sys
.byteorder
== 'little':
52 # UTF-16, native endianness
53 BOM
= BOM_UTF16
= BOM_UTF16_LE
55 # UTF-32, native endianness
56 BOM_UTF32
= BOM_UTF32_LE
60 # UTF-16, native endianness
61 BOM
= BOM_UTF16
= BOM_UTF16_BE
63 # UTF-32, native endianness
64 BOM_UTF32
= BOM_UTF32_BE
66 # Old broken names (don't use in new code)
67 BOM32_LE
= BOM_UTF16_LE
68 BOM32_BE
= BOM_UTF16_BE
69 BOM64_LE
= BOM_UTF32_LE
70 BOM64_BE
= BOM_UTF32_BE
73 ### Codec base classes (defining the API)
75 class CodecInfo(tuple):
77 def __new__(cls
, encode
, decode
, streamreader
=None, streamwriter
=None,
78 incrementalencoder
=None, incrementaldecoder
=None, name
=None):
79 self
= tuple.__new
__(cls
, (encode
, decode
, streamreader
, streamwriter
))
83 self
.incrementalencoder
= incrementalencoder
84 self
.incrementaldecoder
= incrementaldecoder
85 self
.streamwriter
= streamwriter
86 self
.streamreader
= streamreader
90 return "<%s.%s object for encoding %s at 0x%x>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.name
, id(self
))
94 """ Defines the interface for stateless encoders/decoders.
96 The .encode()/.decode() methods may use different error
97 handling schemes by providing the errors argument. These
98 string values are predefined:
100 'strict' - raise a ValueError error (or a subclass)
101 'ignore' - ignore the character and continue with the next
102 'replace' - replace with a suitable replacement character;
103 Python will use the official U+FFFD REPLACEMENT
104 CHARACTER for the builtin Unicode codecs on
105 decoding and '?' on encoding.
106 'xmlcharrefreplace' - Replace with the appropriate XML
107 character reference (only for encoding).
108 'backslashreplace' - Replace with backslashed escape sequences
111 The set of allowed values can be extended via register_error.
114 def encode(self
, input, errors
='strict'):
116 """ Encodes the object input and returns a tuple (output
117 object, length consumed).
119 errors defines the error handling to apply. It defaults to
122 The method may not store state in the Codec instance. Use
123 StreamCodec for codecs which have to keep state in order to
124 make encoding/decoding efficient.
126 The encoder must be able to handle zero length input and
127 return an empty object of the output object type in this
131 raise NotImplementedError
133 def decode(self
, input, errors
='strict'):
135 """ Decodes the object input and returns a tuple (output
136 object, length consumed).
138 input must be an object which provides the bf_getreadbuf
139 buffer slot. Python strings, buffer objects and memory
140 mapped files are examples of objects providing this slot.
142 errors defines the error handling to apply. It defaults to
145 The method may not store state in the Codec instance. Use
146 StreamCodec for codecs which have to keep state in order to
147 make encoding/decoding efficient.
149 The decoder must be able to handle zero length input and
150 return an empty object of the output object type in this
154 raise NotImplementedError
156 class IncrementalEncoder(object):
158 An IncrementalEncoder encodes an input in multiple steps. The input can be
159 passed piece by piece to the encode() method. The IncrementalEncoder remembers
160 the state of the Encoding process between calls to encode().
162 def __init__(self
, errors
='strict'):
164 Creates an IncrementalEncoder instance.
166 The IncrementalEncoder may use different error handling schemes by
167 providing the errors keyword argument. See the module docstring
168 for a list of possible values.
173 def encode(self
, input, final
=False):
175 Encodes input and returns the resulting object.
177 raise NotImplementedError
181 Resets the encoder to the initial state.
184 class BufferedIncrementalEncoder(IncrementalEncoder
):
186 This subclass of IncrementalEncoder can be used as the baseclass for an
187 incremental encoder if the encoder must keep some of the output in a
188 buffer between calls to encode().
190 def __init__(self
, errors
='strict'):
191 IncrementalEncoder
.__init
__(self
, errors
)
192 self
.buffer = "" # unencoded input that is kept between calls to encode()
194 def _buffer_encode(self
, input, errors
, final
):
195 # Overwrite this method in subclasses: It must encode input
196 # and return an (output, length consumed) tuple
197 raise NotImplementedError
199 def encode(self
, input, final
=False):
200 # encode input (taking the buffer into account)
201 data
= self
.buffer + input
202 (result
, consumed
) = self
._buffer
_encode
(data
, self
.errors
, final
)
203 # keep unencoded input until the next call
204 self
.buffer = data
[consumed
:]
208 IncrementalEncoder
.reset(self
)
211 class IncrementalDecoder(object):
213 An IncrementalDecoder decodes an input in multiple steps. The input can be
214 passed piece by piece to the decode() method. The IncrementalDecoder
215 remembers the state of the decoding process between calls to decode().
217 def __init__(self
, errors
='strict'):
219 Creates a IncrementalDecoder instance.
221 The IncrementalDecoder may use different error handling schemes by
222 providing the errors keyword argument. See the module docstring
223 for a list of possible values.
227 def decode(self
, input, final
=False):
229 Decodes input and returns the resulting object.
231 raise NotImplementedError
235 Resets the decoder to the initial state.
238 class BufferedIncrementalDecoder(IncrementalDecoder
):
240 This subclass of IncrementalDecoder can be used as the baseclass for an
241 incremental decoder if the decoder must be able to handle incomplete byte
244 def __init__(self
, errors
='strict'):
245 IncrementalDecoder
.__init
__(self
, errors
)
246 self
.buffer = "" # undecoded input that is kept between calls to decode()
248 def _buffer_decode(self
, input, errors
, final
):
249 # Overwrite this method in subclasses: It must decode input
250 # and return an (output, length consumed) tuple
251 raise NotImplementedError
253 def decode(self
, input, final
=False):
254 # decode input (taking the buffer into account)
255 data
= self
.buffer + input
256 (result
, consumed
) = self
._buffer
_decode
(data
, self
.errors
, final
)
257 # keep undecoded input until the next call
258 self
.buffer = data
[consumed
:]
262 IncrementalDecoder
.reset(self
)
266 # The StreamWriter and StreamReader class provide generic working
267 # interfaces which can be used to implement new encoding submodules
268 # very easily. See encodings/utf_8.py for an example on how this is
272 class StreamWriter(Codec
):
274 def __init__(self
, stream
, errors
='strict'):
276 """ Creates a StreamWriter instance.
278 stream must be a file-like object open for writing
281 The StreamWriter may use different error handling
282 schemes by providing the errors keyword argument. These
283 parameters are predefined:
285 'strict' - raise a ValueError (or a subclass)
286 'ignore' - ignore the character and continue with the next
287 'replace'- replace with a suitable replacement character
288 'xmlcharrefreplace' - Replace with the appropriate XML
290 'backslashreplace' - Replace with backslashed escape
291 sequences (only for encoding).
293 The set of allowed parameter values can be extended via
299 def write(self
, object):
301 """ Writes the object's contents encoded to self.stream.
303 data
, consumed
= self
.encode(object, self
.errors
)
304 self
.stream
.write(data
)
306 def writelines(self
, list):
308 """ Writes the concatenated list of strings to the stream
311 self
.write(''.join(list))
315 """ Flushes and resets the codec buffers used for keeping state.
317 Calling this method should ensure that the data on the
318 output is put into a clean state, that allows appending
319 of new fresh data without having to rescan the whole
320 stream to recover state.
325 def __getattr__(self
, name
,
328 """ Inherit all other methods from the underlying stream.
330 return getattr(self
.stream
, name
)
334 class StreamReader(Codec
):
336 def __init__(self
, stream
, errors
='strict'):
338 """ Creates a StreamReader instance.
340 stream must be a file-like object open for reading
343 The StreamReader may use different error handling
344 schemes by providing the errors keyword argument. These
345 parameters are predefined:
347 'strict' - raise a ValueError (or a subclass)
348 'ignore' - ignore the character and continue with the next
349 'replace'- replace with a suitable replacement character;
351 The set of allowed parameter values can be extended via
357 # For str->str decoding this will stay a str
358 # For str->unicode decoding the first read will promote it to unicode
360 self
.linebuffer
= None
362 def decode(self
, input, errors
='strict'):
363 raise NotImplementedError
365 def read(self
, size
=-1, chars
=-1, firstline
=False):
367 """ Decodes data from the stream self.stream and returns the
370 chars indicates the number of characters to read from the
371 stream. read() will never return more than chars
372 characters, but it might return less, if there are not enough
373 characters available.
375 size indicates the approximate maximum number of bytes to
376 read from the stream for decoding purposes. The decoder
377 can modify this setting as appropriate. The default value
378 -1 indicates to read and decode as much as possible. size
379 is intended to prevent having to decode huge files in one
382 If firstline is true, and a UnicodeDecodeError happens
383 after the first line terminator in the input only the first line
384 will be returned, the rest of the input will be kept until the
387 The method should use a greedy read strategy meaning that
388 it should read as much data as is allowed within the
389 definition of the encoding and the given size, e.g. if
390 optional encoding endings or state markers are available
391 on the stream, these should be read too.
393 # If we have lines cached, first merge them back into characters
395 self
.charbuffer
= "".join(self
.linebuffer
)
396 self
.linebuffer
= None
398 # read until we get the required number of characters (if available)
400 # can the request can be satisfied from the character buffer?
405 elif len(self
.charbuffer
) >= size
:
408 if len(self
.charbuffer
) >= chars
:
412 newdata
= self
.stream
.read()
414 newdata
= self
.stream
.read(size
)
415 # decode bytes (those remaining from the last call included)
416 data
= self
.bytebuffer
+ newdata
418 newchars
, decodedbytes
= self
.decode(data
, self
.errors
)
419 except UnicodeDecodeError, exc
:
421 newchars
, decodedbytes
= self
.decode(data
[:exc
.start
], self
.errors
)
422 lines
= newchars
.splitlines(True)
427 # keep undecoded bytes until the next call
428 self
.bytebuffer
= data
[decodedbytes
:]
429 # put new characters in the character buffer
430 self
.charbuffer
+= newchars
431 # there was no data available
435 # Return everything we've got
436 result
= self
.charbuffer
439 # Return the first chars characters
440 result
= self
.charbuffer
[:chars
]
441 self
.charbuffer
= self
.charbuffer
[chars
:]
444 def readline(self
, size
=None, keepends
=True):
446 """ Read one line from the input stream and return the
449 size, if given, is passed as size argument to the
453 # If we have lines cached from an earlier read, return
454 # them unconditionally
456 line
= self
.linebuffer
[0]
457 del self
.linebuffer
[0]
458 if len(self
.linebuffer
) == 1:
459 # revert to charbuffer mode; we might need more data
461 self
.charbuffer
= self
.linebuffer
[0]
462 self
.linebuffer
= None
464 line
= line
.splitlines(False)[0]
467 readsize
= size
or 72
469 # If size is given, we call read() only once
471 data
= self
.read(readsize
, firstline
=True)
473 # If we're at a "\r" read one extra character (which might
474 # be a "\n") to get a proper line ending. If the stream is
475 # temporarily exhausted we return the wrong line ending.
476 if data
.endswith("\r"):
477 data
+= self
.read(size
=1, chars
=1)
480 lines
= line
.splitlines(True)
483 # More than one line result; the first line is a full line
488 # cache the remaining lines
489 lines
[-1] += self
.charbuffer
490 self
.linebuffer
= lines
491 self
.charbuffer
= None
493 # only one remaining line, put it back into charbuffer
494 self
.charbuffer
= lines
[0] + self
.charbuffer
496 line
= line
.splitlines(False)[0]
498 line0withend
= lines
[0]
499 line0withoutend
= lines
[0].splitlines(False)[0]
500 if line0withend
!= line0withoutend
: # We really have a line end
501 # Put the rest back together and keep it until the next call
502 self
.charbuffer
= "".join(lines
[1:]) + self
.charbuffer
506 line
= line0withoutend
508 # we didn't get anything or this was our only try
509 if not data
or size
is not None:
510 if line
and not keepends
:
511 line
= line
.splitlines(False)[0]
517 def readlines(self
, sizehint
=None, keepends
=True):
519 """ Read all lines available on the input stream
520 and return them as list of lines.
522 Line breaks are implemented using the codec's decoder
523 method and are included in the list entries.
525 sizehint, if given, is ignored since there is no efficient
526 way to finding the true end-of-line.
530 return data
.splitlines(keepends
)
534 """ Resets the codec buffers used for keeping state.
536 Note that no stream repositioning should take place.
537 This method is primarily intended to be able to recover
538 from decoding errors.
542 self
.charbuffer
= u
""
543 self
.linebuffer
= None
545 def seek(self
, offset
, whence
=0):
546 """ Set the input stream's current position.
548 Resets the codec buffers used for keeping state.
551 self
.stream
.seek(offset
, whence
)
555 """ Return the next decoded line from the input stream."""
556 line
= self
.readline()
564 def __getattr__(self
, name
,
567 """ Inherit all other methods from the underlying stream.
569 return getattr(self
.stream
, name
)
573 class StreamReaderWriter
:
575 """ StreamReaderWriter instances allow wrapping streams which
576 work in both read and write modes.
578 The design is such that one can use the factory functions
579 returned by the codec.lookup() function to construct the
583 # Optional attributes set by the file wrappers below
586 def __init__(self
, stream
, Reader
, Writer
, errors
='strict'):
588 """ Creates a StreamReaderWriter instance.
590 stream must be a Stream-like object.
592 Reader, Writer must be factory functions or classes
593 providing the StreamReader, StreamWriter interface resp.
595 Error handling is done in the same way as defined for the
596 StreamWriter/Readers.
600 self
.reader
= Reader(stream
, errors
)
601 self
.writer
= Writer(stream
, errors
)
604 def read(self
, size
=-1):
606 return self
.reader
.read(size
)
608 def readline(self
, size
=None):
610 return self
.reader
.readline(size
)
612 def readlines(self
, sizehint
=None):
614 return self
.reader
.readlines(sizehint
)
618 """ Return the next decoded line from the input stream."""
619 return self
.reader
.next()
624 def write(self
, data
):
626 return self
.writer
.write(data
)
628 def writelines(self
, list):
630 return self
.writer
.writelines(list)
637 def __getattr__(self
, name
,
640 """ Inherit all other methods from the underlying stream.
642 return getattr(self
.stream
, name
)
648 """ StreamRecoder instances provide a frontend - backend
649 view of encoding data.
651 They use the complete set of APIs returned by the
652 codecs.lookup() function to implement their task.
654 Data written to the stream is first decoded into an
655 intermediate format (which is dependent on the given codec
656 combination) and then written to the stream using an instance
657 of the provided Writer class.
659 In the other direction, data is read from the stream using a
660 Reader instance and then return encoded data to the caller.
663 # Optional attributes set by the file wrappers below
664 data_encoding
= 'unknown'
665 file_encoding
= 'unknown'
667 def __init__(self
, stream
, encode
, decode
, Reader
, Writer
,
670 """ Creates a StreamRecoder instance which implements a two-way
671 conversion: encode and decode work on the frontend (the
672 input to .read() and output of .write()) while
673 Reader and Writer work on the backend (reading and
674 writing to the stream).
676 You can use these objects to do transparent direct
677 recodings from e.g. latin-1 to utf-8 and back.
679 stream must be a file-like object.
681 encode, decode must adhere to the Codec interface, Reader,
682 Writer must be factory functions or classes providing the
683 StreamReader, StreamWriter interface resp.
685 encode and decode are needed for the frontend translation,
686 Reader and Writer for the backend translation. Unicode is
687 used as intermediate encoding.
689 Error handling is done in the same way as defined for the
690 StreamWriter/Readers.
696 self
.reader
= Reader(stream
, errors
)
697 self
.writer
= Writer(stream
, errors
)
700 def read(self
, size
=-1):
702 data
= self
.reader
.read(size
)
703 data
, bytesencoded
= self
.encode(data
, self
.errors
)
706 def readline(self
, size
=None):
709 data
= self
.reader
.readline()
711 data
= self
.reader
.readline(size
)
712 data
, bytesencoded
= self
.encode(data
, self
.errors
)
715 def readlines(self
, sizehint
=None):
717 data
= self
.reader
.read()
718 data
, bytesencoded
= self
.encode(data
, self
.errors
)
719 return data
.splitlines(1)
723 """ Return the next decoded line from the input stream."""
724 data
= self
.reader
.next()
725 data
, bytesencoded
= self
.encode(data
, self
.errors
)
731 def write(self
, data
):
733 data
, bytesdecoded
= self
.decode(data
, self
.errors
)
734 return self
.writer
.write(data
)
736 def writelines(self
, list):
739 data
, bytesdecoded
= self
.decode(data
, self
.errors
)
740 return self
.writer
.write(data
)
747 def __getattr__(self
, name
,
750 """ Inherit all other methods from the underlying stream.
752 return getattr(self
.stream
, name
)
756 def open(filename
, mode
='rb', encoding
=None, errors
='strict', buffering
=1):
758 """ Open an encoded file using the given mode and return
759 a wrapped version providing transparent encoding/decoding.
761 Note: The wrapped version will only accept the object format
762 defined by the codecs, i.e. Unicode objects for most builtin
763 codecs. Output is also codec dependent and will usually be
766 Files are always opened in binary mode, even if no binary mode
767 was specified. This is done to avoid data loss due to encodings
768 using 8-bit values. The default file mode is 'rb' meaning to
769 open the file in binary read mode.
771 encoding specifies the encoding which is to be used for the
774 errors may be given to define the error handling. It defaults
775 to 'strict' which causes ValueErrors to be raised in case an
776 encoding error occurs.
778 buffering has the same meaning as for the builtin open() API.
779 It defaults to line buffered.
781 The returned wrapped file object provides an extra attribute
782 .encoding which allows querying the used encoding. This
783 attribute is only available if an encoding was specified as
787 if encoding
is not None and \
789 # Force opening of the file in binary mode
791 file = __builtin__
.open(filename
, mode
, buffering
)
794 info
= lookup(encoding
)
795 srw
= StreamReaderWriter(file, info
.streamreader
, info
.streamwriter
, errors
)
796 # Add attributes to simplify introspection
797 srw
.encoding
= encoding
800 def EncodedFile(file, data_encoding
, file_encoding
=None, errors
='strict'):
802 """ Return a wrapped version of file which provides transparent
803 encoding translation.
805 Strings written to the wrapped file are interpreted according
806 to the given data_encoding and then written to the original
807 file as string using file_encoding. The intermediate encoding
808 will usually be Unicode but depends on the specified codecs.
810 Strings are read from the file using file_encoding and then
811 passed back to the caller as string using data_encoding.
813 If file_encoding is not given, it defaults to data_encoding.
815 errors may be given to define the error handling. It defaults
816 to 'strict' which causes ValueErrors to be raised in case an
817 encoding error occurs.
819 The returned wrapped file object provides two extra attributes
820 .data_encoding and .file_encoding which reflect the given
821 parameters of the same name. The attributes can be used for
822 introspection by Python programs.
825 if file_encoding
is None:
826 file_encoding
= data_encoding
827 info
= lookup(data_encoding
)
828 sr
= StreamRecoder(file, info
.encode
, info
.decode
,
829 info
.streamreader
, info
.streamwriter
, errors
)
830 # Add attributes to simplify introspection
831 sr
.data_encoding
= data_encoding
832 sr
.file_encoding
= file_encoding
835 ### Helpers for codec lookup
837 def getencoder(encoding
):
839 """ Lookup up the codec for the given encoding and return
840 its encoder function.
842 Raises a LookupError in case the encoding cannot be found.
845 return lookup(encoding
).encode
847 def getdecoder(encoding
):
849 """ Lookup up the codec for the given encoding and return
850 its decoder function.
852 Raises a LookupError in case the encoding cannot be found.
855 return lookup(encoding
).decode
857 def getincrementalencoder(encoding
):
859 """ Lookup up the codec for the given encoding and return
860 its IncrementalEncoder class or factory function.
862 Raises a LookupError in case the encoding cannot be found
863 or the codecs doesn't provide an incremental encoder.
866 encoder
= lookup(encoding
).incrementalencoder
868 raise LookupError(encoding
)
871 def getincrementaldecoder(encoding
):
873 """ Lookup up the codec for the given encoding and return
874 its IncrementalDecoder class or factory function.
876 Raises a LookupError in case the encoding cannot be found
877 or the codecs doesn't provide an incremental decoder.
880 decoder
= lookup(encoding
).incrementaldecoder
882 raise LookupError(encoding
)
885 def getreader(encoding
):
887 """ Lookup up the codec for the given encoding and return
888 its StreamReader class or factory function.
890 Raises a LookupError in case the encoding cannot be found.
893 return lookup(encoding
).streamreader
895 def getwriter(encoding
):
897 """ Lookup up the codec for the given encoding and return
898 its StreamWriter class or factory function.
900 Raises a LookupError in case the encoding cannot be found.
903 return lookup(encoding
).streamwriter
905 def iterencode(iterator
, encoding
, errors
='strict', **kwargs
):
909 Encodes the input strings from the iterator using a IncrementalEncoder.
911 errors and kwargs are passed through to the IncrementalEncoder
914 encoder
= getincrementalencoder(encoding
)(errors
, **kwargs
)
915 for input in iterator
:
916 output
= encoder
.encode(input)
919 output
= encoder
.encode("", True)
923 def iterdecode(iterator
, encoding
, errors
='strict', **kwargs
):
927 Decodes the input strings from the iterator using a IncrementalDecoder.
929 errors and kwargs are passed through to the IncrementalDecoder
932 decoder
= getincrementaldecoder(encoding
)(errors
, **kwargs
)
933 for input in iterator
:
934 output
= decoder
.decode(input)
937 output
= decoder
.decode("", True)
941 ### Helpers for charmap-based codecs
943 def make_identity_dict(rng
):
945 """ make_identity_dict(rng) -> dict
947 Return a dictionary where elements of the rng sequence are
948 mapped to themselves.
956 def make_encoding_map(decoding_map
):
958 """ Creates an encoding map from a decoding map.
960 If a target mapping in the decoding map occurs multiple
961 times, then that target is mapped to None (undefined mapping),
962 causing an exception when encountered by the charmap codec
965 One example where this happens is cp875.py which decodes
966 multiple character to \u001a.
970 for k
,v
in decoding_map
.items():
980 strict_errors
= lookup_error("strict")
981 ignore_errors
= lookup_error("ignore")
982 replace_errors
= lookup_error("replace")
983 xmlcharrefreplace_errors
= lookup_error("xmlcharrefreplace")
984 backslashreplace_errors
= lookup_error("backslashreplace")
986 # In --disable-unicode builds, these error handler are missing
989 replace_errors
= None
990 xmlcharrefreplace_errors
= None
991 backslashreplace_errors
= None
993 # Tell modulefinder that using codecs probably needs the encodings
1001 if __name__
== '__main__':
1003 # Make stdout translate Latin-1 output into UTF-8 output
1004 sys
.stdout
= EncodedFile(sys
.stdout
, 'latin-1', 'utf-8')
1006 # Have stdin translate Latin-1 input into UTF-8 input
1007 sys
.stdin
= EncodedFile(sys
.stdin
, 'utf-8', 'latin-1')