home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 January / Gamestar_80_2006-01_dvd.iso / Dema / Civilization4 / data1.cab / Civ4DemoComponent / Assets / Python / System / codecs.pyc (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2005-11-09  |  23.1 KB  |  720 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. ''' codecs -- Python Codec Registry, API and helpers.
  5.  
  6.  
  7. Written by Marc-Andre Lemburg (mal@lemburg.com).
  8.  
  9. (c) Copyright CNRI, All Rights Reserved. NO WARRANTY.
  10.  
  11. '''
  12. import __builtin__
  13. import sys
  14.  
  15. try:
  16.     from _codecs import *
  17. except ImportError:
  18.     why = None
  19.     raise SystemError, 'Failed to load the builtin codecs: %s' % why
  20.  
  21. __all__ = [
  22.     'register',
  23.     'lookup',
  24.     'open',
  25.     'EncodedFile',
  26.     'BOM',
  27.     'BOM_BE',
  28.     'BOM_LE',
  29.     'BOM32_BE',
  30.     'BOM32_LE',
  31.     'BOM64_BE',
  32.     'BOM64_LE',
  33.     'BOM_UTF8',
  34.     'BOM_UTF16',
  35.     'BOM_UTF16_LE',
  36.     'BOM_UTF16_BE',
  37.     'BOM_UTF32',
  38.     'BOM_UTF32_LE',
  39.     'BOM_UTF32_BE',
  40.     'strict_errors',
  41.     'ignore_errors',
  42.     'replace_errors',
  43.     'xmlcharrefreplace_errors',
  44.     'register_error',
  45.     'lookup_error']
  46. BOM_UTF8 = '\xef\xbb\xbf'
  47. BOM_LE = BOM_UTF16_LE = '\xff\xfe'
  48. BOM_BE = BOM_UTF16_BE = '\xfe\xff'
  49. BOM_UTF32_LE = '\xff\xfe\x00\x00'
  50. BOM_UTF32_BE = '\x00\x00\xfe\xff'
  51. if sys.byteorder == 'little':
  52.     BOM = BOM_UTF16 = BOM_UTF16_LE
  53.     BOM_UTF32 = BOM_UTF32_LE
  54. else:
  55.     BOM = BOM_UTF16 = BOM_UTF16_BE
  56.     BOM_UTF32 = BOM_UTF32_BE
  57. BOM32_LE = BOM_UTF16_LE
  58. BOM32_BE = BOM_UTF16_BE
  59. BOM64_LE = BOM_UTF32_LE
  60. BOM64_BE = BOM_UTF32_BE
  61.  
  62. class Codec:
  63.     """ Defines the interface for stateless encoders/decoders.
  64.  
  65.         The .encode()/.decode() methods may use different error
  66.         handling schemes by providing the errors argument. These
  67.         string values are predefined:
  68.  
  69.          'strict' - raise a ValueError error (or a subclass)
  70.          'ignore' - ignore the character and continue with the next
  71.          'replace' - replace with a suitable replacement character;
  72.                     Python will use the official U+FFFD REPLACEMENT
  73.                     CHARACTER for the builtin Unicode codecs on
  74.                     decoding and '?' on encoding.
  75.          'xmlcharrefreplace' - Replace with the appropriate XML
  76.                                character reference (only for encoding).
  77.          'backslashreplace'  - Replace with backslashed escape sequences
  78.                                (only for encoding).
  79.  
  80.         The set of allowed values can be extended via register_error.
  81.  
  82.     """
  83.     
  84.     def encode(self, input, errors = 'strict'):
  85.         """ Encodes the object input and returns a tuple (output
  86.             object, length consumed).
  87.  
  88.             errors defines the error handling to apply. It defaults to
  89.             'strict' handling.
  90.  
  91.             The method may not store state in the Codec instance. Use
  92.             StreamCodec for codecs which have to keep state in order to
  93.             make encoding/decoding efficient.
  94.  
  95.             The encoder must be able to handle zero length input and
  96.             return an empty object of the output object type in this
  97.             situation.
  98.  
  99.         """
  100.         raise NotImplementedError
  101.  
  102.     
  103.     def decode(self, input, errors = 'strict'):
  104.         """ Decodes the object input and returns a tuple (output
  105.             object, length consumed).
  106.  
  107.             input must be an object which provides the bf_getreadbuf
  108.             buffer slot. Python strings, buffer objects and memory
  109.             mapped files are examples of objects providing this slot.
  110.  
  111.             errors defines the error handling to apply. It defaults to
  112.             'strict' handling.
  113.  
  114.             The method may not store state in the Codec instance. Use
  115.             StreamCodec for codecs which have to keep state in order to
  116.             make encoding/decoding efficient.
  117.  
  118.             The decoder must be able to handle zero length input and
  119.             return an empty object of the output object type in this
  120.             situation.
  121.  
  122.         """
  123.         raise NotImplementedError
  124.  
  125.  
  126.  
  127. class StreamWriter(Codec):
  128.     
  129.     def __init__(self, stream, errors = 'strict'):
  130.         """ Creates a StreamWriter instance.
  131.  
  132.             stream must be a file-like object open for writing
  133.             (binary) data.
  134.  
  135.             The StreamWriter may use different error handling
  136.             schemes by providing the errors keyword argument. These
  137.             parameters are predefined:
  138.  
  139.              'strict' - raise a ValueError (or a subclass)
  140.              'ignore' - ignore the character and continue with the next
  141.              'replace'- replace with a suitable replacement character
  142.              'xmlcharrefreplace' - Replace with the appropriate XML
  143.                                    character reference.
  144.              'backslashreplace'  - Replace with backslashed escape
  145.                                    sequences (only for encoding).
  146.  
  147.             The set of allowed parameter values can be extended via
  148.             register_error.
  149.         """
  150.         self.stream = stream
  151.         self.errors = errors
  152.  
  153.     
  154.     def write(self, object):
  155.         """ Writes the object's contents encoded to self.stream.
  156.         """
  157.         (data, consumed) = self.encode(object, self.errors)
  158.         self.stream.write(data)
  159.  
  160.     
  161.     def writelines(self, list):
  162.         ''' Writes the concatenated list of strings to the stream
  163.             using .write().
  164.         '''
  165.         self.write(''.join(list))
  166.  
  167.     
  168.     def reset(self):
  169.         ''' Flushes and resets the codec buffers used for keeping state.
  170.  
  171.             Calling this method should ensure that the data on the
  172.             output is put into a clean state, that allows appending
  173.             of new fresh data without having to rescan the whole
  174.             stream to recover state.
  175.  
  176.         '''
  177.         pass
  178.  
  179.     
  180.     def __getattr__(self, name, getattr = getattr):
  181.         ''' Inherit all other methods from the underlying stream.
  182.         '''
  183.         return getattr(self.stream, name)
  184.  
  185.  
  186.  
  187. class StreamReader(Codec):
  188.     
  189.     def __init__(self, stream, errors = 'strict'):
  190.         """ Creates a StreamReader instance.
  191.  
  192.             stream must be a file-like object open for reading
  193.             (binary) data.
  194.  
  195.             The StreamReader may use different error handling
  196.             schemes by providing the errors keyword argument. These
  197.             parameters are predefined:
  198.  
  199.              'strict' - raise a ValueError (or a subclass)
  200.              'ignore' - ignore the character and continue with the next
  201.              'replace'- replace with a suitable replacement character;
  202.  
  203.             The set of allowed parameter values can be extended via
  204.             register_error.
  205.         """
  206.         self.stream = stream
  207.         self.errors = errors
  208.         self.bytebuffer = ''
  209.         self.charbuffer = u''
  210.         self.atcr = False
  211.  
  212.     
  213.     def decode(self, input, errors = 'strict'):
  214.         raise NotImplementedError
  215.  
  216.     
  217.     def read(self, size = -1, chars = -1):
  218.         ''' Decodes data from the stream self.stream and returns the
  219.             resulting object.
  220.  
  221.             chars indicates the number of characters to read from the
  222.             stream. read() will never return more than chars
  223.             characters, but it might return less, if there are not enough
  224.             characters available.
  225.  
  226.             size indicates the approximate maximum number of bytes to
  227.             read from the stream for decoding purposes. The decoder
  228.             can modify this setting as appropriate. The default value
  229.             -1 indicates to read and decode as much as possible.  size
  230.             is intended to prevent having to decode huge files in one
  231.             step.
  232.  
  233.             The method should use a greedy read strategy meaning that
  234.             it should read as much data as is allowed within the
  235.             definition of the encoding and the given size, e.g.  if
  236.             optional encoding endings or state markers are available
  237.             on the stream, these should be read too.
  238.         '''
  239.         while True:
  240.             if chars < 0:
  241.                 if self.charbuffer:
  242.                     break
  243.                 
  244.             elif len(self.charbuffer) >= chars:
  245.                 break
  246.             
  247.             if size < 0:
  248.                 newdata = self.stream.read()
  249.             else:
  250.                 newdata = self.stream.read(size)
  251.             data = self.bytebuffer + newdata
  252.             (newchars, decodedbytes) = self.decode(data, self.errors)
  253.             self.bytebuffer = data[decodedbytes:]
  254.             self.charbuffer += newchars
  255.             if not newdata:
  256.                 break
  257.                 continue
  258.             self
  259.         if chars < 0:
  260.             result = self.charbuffer
  261.             self.charbuffer = u''
  262.         else:
  263.             result = self.charbuffer[:chars]
  264.             self.charbuffer = self.charbuffer[chars:]
  265.         return result
  266.  
  267.     
  268.     def readline(self, size = None, keepends = True):
  269.         ''' Read one line from the input stream and return the
  270.             decoded data.
  271.  
  272.             size, if given, is passed as size argument to the
  273.             read() method.
  274.  
  275.         '''
  276.         if not size:
  277.             pass
  278.         readsize = 72
  279.         line = u''
  280.         while True:
  281.             data = self.read(readsize)
  282.             if self.atcr and data.startswith(u'\n'):
  283.                 data = data[1:]
  284.             
  285.             if data:
  286.                 self.atcr = data.endswith(u'\r')
  287.             
  288.             line += data
  289.             lines = line.splitlines(True)
  290.             if lines:
  291.                 line0withend = lines[0]
  292.                 line0withoutend = lines[0].splitlines(False)[0]
  293.                 if line0withend != line0withoutend:
  294.                     self.charbuffer = u''.join(lines[1:]) + self.charbuffer
  295.                     if keepends:
  296.                         line = line0withend
  297.                     else:
  298.                         line = line0withoutend
  299.                     break
  300.                 
  301.             
  302.             if not data or size is not None:
  303.                 if line and not keepends:
  304.                     line = line.splitlines(False)[0]
  305.                 
  306.                 break
  307.             
  308.             if readsize < 8000:
  309.                 readsize *= 2
  310.                 continue
  311.         return line
  312.  
  313.     
  314.     def readlines(self, sizehint = None, keepends = True):
  315.         """ Read all lines available on the input stream
  316.             and return them as list of lines.
  317.  
  318.             Line breaks are implemented using the codec's decoder
  319.             method and are included in the list entries.
  320.  
  321.             sizehint, if given, is ignored since there is no efficient
  322.             way to finding the true end-of-line.
  323.  
  324.         """
  325.         data = self.read()
  326.         return data.splitlines(keepends)
  327.  
  328.     
  329.     def reset(self):
  330.         ''' Resets the codec buffers used for keeping state.
  331.  
  332.             Note that no stream repositioning should take place.
  333.             This method is primarily intended to be able to recover
  334.             from decoding errors.
  335.  
  336.         '''
  337.         self.bytebuffer = ''
  338.         self.charbuffer = u''
  339.         self.atcr = False
  340.  
  341.     
  342.     def seek(self, offset, whence = 0):
  343.         """ Set the input stream's current position.
  344.  
  345.             Resets the codec buffers used for keeping state.
  346.         """
  347.         self.reset()
  348.         self.stream.seek(offset, whence)
  349.  
  350.     
  351.     def next(self):
  352.         ''' Return the next decoded line from the input stream.'''
  353.         line = self.readline()
  354.         if line:
  355.             return line
  356.         
  357.         raise StopIteration
  358.  
  359.     
  360.     def __iter__(self):
  361.         return self
  362.  
  363.     
  364.     def __getattr__(self, name, getattr = getattr):
  365.         ''' Inherit all other methods from the underlying stream.
  366.         '''
  367.         return getattr(self.stream, name)
  368.  
  369.  
  370.  
  371. class StreamReaderWriter:
  372.     ''' StreamReaderWriter instances allow wrapping streams which
  373.         work in both read and write modes.
  374.  
  375.         The design is such that one can use the factory functions
  376.         returned by the codec.lookup() function to construct the
  377.         instance.
  378.  
  379.     '''
  380.     encoding = 'unknown'
  381.     
  382.     def __init__(self, stream, Reader, Writer, errors = 'strict'):
  383.         ''' Creates a StreamReaderWriter instance.
  384.  
  385.             stream must be a Stream-like object.
  386.  
  387.             Reader, Writer must be factory functions or classes
  388.             providing the StreamReader, StreamWriter interface resp.
  389.  
  390.             Error handling is done in the same way as defined for the
  391.             StreamWriter/Readers.
  392.  
  393.         '''
  394.         self.stream = stream
  395.         self.reader = Reader(stream, errors)
  396.         self.writer = Writer(stream, errors)
  397.         self.errors = errors
  398.  
  399.     
  400.     def read(self, size = -1):
  401.         return self.reader.read(size)
  402.  
  403.     
  404.     def readline(self, size = None):
  405.         return self.reader.readline(size)
  406.  
  407.     
  408.     def readlines(self, sizehint = None):
  409.         return self.reader.readlines(sizehint)
  410.  
  411.     
  412.     def next(self):
  413.         ''' Return the next decoded line from the input stream.'''
  414.         return self.reader.next()
  415.  
  416.     
  417.     def __iter__(self):
  418.         return self
  419.  
  420.     
  421.     def write(self, data):
  422.         return self.writer.write(data)
  423.  
  424.     
  425.     def writelines(self, list):
  426.         return self.writer.writelines(list)
  427.  
  428.     
  429.     def reset(self):
  430.         self.reader.reset()
  431.         self.writer.reset()
  432.  
  433.     
  434.     def __getattr__(self, name, getattr = getattr):
  435.         ''' Inherit all other methods from the underlying stream.
  436.         '''
  437.         return getattr(self.stream, name)
  438.  
  439.  
  440.  
  441. class StreamRecoder:
  442.     ''' StreamRecoder instances provide a frontend - backend
  443.         view of encoding data.
  444.  
  445.         They use the complete set of APIs returned by the
  446.         codecs.lookup() function to implement their task.
  447.  
  448.         Data written to the stream is first decoded into an
  449.         intermediate format (which is dependent on the given codec
  450.         combination) and then written to the stream using an instance
  451.         of the provided Writer class.
  452.  
  453.         In the other direction, data is read from the stream using a
  454.         Reader instance and then return encoded data to the caller.
  455.  
  456.     '''
  457.     data_encoding = 'unknown'
  458.     file_encoding = 'unknown'
  459.     
  460.     def __init__(self, stream, encode, decode, Reader, Writer, errors = 'strict'):
  461.         ''' Creates a StreamRecoder instance which implements a two-way
  462.             conversion: encode and decode work on the frontend (the
  463.             input to .read() and output of .write()) while
  464.             Reader and Writer work on the backend (reading and
  465.             writing to the stream).
  466.  
  467.             You can use these objects to do transparent direct
  468.             recodings from e.g. latin-1 to utf-8 and back.
  469.  
  470.             stream must be a file-like object.
  471.  
  472.             encode, decode must adhere to the Codec interface, Reader,
  473.             Writer must be factory functions or classes providing the
  474.             StreamReader, StreamWriter interface resp.
  475.  
  476.             encode and decode are needed for the frontend translation,
  477.             Reader and Writer for the backend translation. Unicode is
  478.             used as intermediate encoding.
  479.  
  480.             Error handling is done in the same way as defined for the
  481.             StreamWriter/Readers.
  482.  
  483.         '''
  484.         self.stream = stream
  485.         self.encode = encode
  486.         self.decode = decode
  487.         self.reader = Reader(stream, errors)
  488.         self.writer = Writer(stream, errors)
  489.         self.errors = errors
  490.  
  491.     
  492.     def read(self, size = -1):
  493.         data = self.reader.read(size)
  494.         (data, bytesencoded) = self.encode(data, self.errors)
  495.         return data
  496.  
  497.     
  498.     def readline(self, size = None):
  499.         if size is None:
  500.             data = self.reader.readline()
  501.         else:
  502.             data = self.reader.readline(size)
  503.         (data, bytesencoded) = self.encode(data, self.errors)
  504.         return data
  505.  
  506.     
  507.     def readlines(self, sizehint = None):
  508.         data = self.reader.read()
  509.         (data, bytesencoded) = self.encode(data, self.errors)
  510.         return data.splitlines(1)
  511.  
  512.     
  513.     def next(self):
  514.         ''' Return the next decoded line from the input stream.'''
  515.         return self.reader.next()
  516.  
  517.     
  518.     def __iter__(self):
  519.         return self
  520.  
  521.     
  522.     def write(self, data):
  523.         (data, bytesdecoded) = self.decode(data, self.errors)
  524.         return self.writer.write(data)
  525.  
  526.     
  527.     def writelines(self, list):
  528.         data = ''.join(list)
  529.         (data, bytesdecoded) = self.decode(data, self.errors)
  530.         return self.writer.write(data)
  531.  
  532.     
  533.     def reset(self):
  534.         self.reader.reset()
  535.         self.writer.reset()
  536.  
  537.     
  538.     def __getattr__(self, name, getattr = getattr):
  539.         ''' Inherit all other methods from the underlying stream.
  540.         '''
  541.         return getattr(self.stream, name)
  542.  
  543.  
  544.  
  545. def open(filename, mode = 'rb', encoding = None, errors = 'strict', buffering = 1):
  546.     """ Open an encoded file using the given mode and return
  547.         a wrapped version providing transparent encoding/decoding.
  548.  
  549.         Note: The wrapped version will only accept the object format
  550.         defined by the codecs, i.e. Unicode objects for most builtin
  551.         codecs. Output is also codec dependent and will usually by
  552.         Unicode as well.
  553.  
  554.         Files are always opened in binary mode, even if no binary mode
  555.         was specified. This is done to avoid data loss due to encodings
  556.         using 8-bit values. The default file mode is 'rb' meaning to
  557.         open the file in binary read mode.
  558.  
  559.         encoding specifies the encoding which is to be used for the
  560.         file.
  561.  
  562.         errors may be given to define the error handling. It defaults
  563.         to 'strict' which causes ValueErrors to be raised in case an
  564.         encoding error occurs.
  565.  
  566.         buffering has the same meaning as for the builtin open() API.
  567.         It defaults to line buffered.
  568.  
  569.         The returned wrapped file object provides an extra attribute
  570.         .encoding which allows querying the used encoding. This
  571.         attribute is only available if an encoding was specified as
  572.         parameter.
  573.  
  574.     """
  575.     if encoding is not None and 'b' not in mode:
  576.         mode = mode + 'b'
  577.     
  578.     file = __builtin__.open(filename, mode, buffering)
  579.     if encoding is None:
  580.         return file
  581.     
  582.     (e, d, sr, sw) = lookup(encoding)
  583.     srw = StreamReaderWriter(file, sr, sw, errors)
  584.     srw.encoding = encoding
  585.     return srw
  586.  
  587.  
  588. def EncodedFile(file, data_encoding, file_encoding = None, errors = 'strict'):
  589.     """ Return a wrapped version of file which provides transparent
  590.         encoding translation.
  591.  
  592.         Strings written to the wrapped file are interpreted according
  593.         to the given data_encoding and then written to the original
  594.         file as string using file_encoding. The intermediate encoding
  595.         will usually be Unicode but depends on the specified codecs.
  596.  
  597.         Strings are read from the file using file_encoding and then
  598.         passed back to the caller as string using data_encoding.
  599.  
  600.         If file_encoding is not given, it defaults to data_encoding.
  601.  
  602.         errors may be given to define the error handling. It defaults
  603.         to 'strict' which causes ValueErrors to be raised in case an
  604.         encoding error occurs.
  605.  
  606.         The returned wrapped file object provides two extra attributes
  607.         .data_encoding and .file_encoding which reflect the given
  608.         parameters of the same name. The attributes can be used for
  609.         introspection by Python programs.
  610.  
  611.     """
  612.     if file_encoding is None:
  613.         file_encoding = data_encoding
  614.     
  615.     (encode, decode) = lookup(data_encoding)[:2]
  616.     (Reader, Writer) = lookup(file_encoding)[2:]
  617.     sr = StreamRecoder(file, encode, decode, Reader, Writer, errors)
  618.     sr.data_encoding = data_encoding
  619.     sr.file_encoding = file_encoding
  620.     return sr
  621.  
  622.  
  623. def getencoder(encoding):
  624.     ''' Lookup up the codec for the given encoding and return
  625.         its encoder function.
  626.  
  627.         Raises a LookupError in case the encoding cannot be found.
  628.  
  629.     '''
  630.     return lookup(encoding)[0]
  631.  
  632.  
  633. def getdecoder(encoding):
  634.     ''' Lookup up the codec for the given encoding and return
  635.         its decoder function.
  636.  
  637.         Raises a LookupError in case the encoding cannot be found.
  638.  
  639.     '''
  640.     return lookup(encoding)[1]
  641.  
  642.  
  643. def getreader(encoding):
  644.     ''' Lookup up the codec for the given encoding and return
  645.         its StreamReader class or factory function.
  646.  
  647.         Raises a LookupError in case the encoding cannot be found.
  648.  
  649.     '''
  650.     return lookup(encoding)[2]
  651.  
  652.  
  653. def getwriter(encoding):
  654.     ''' Lookup up the codec for the given encoding and return
  655.         its StreamWriter class or factory function.
  656.  
  657.         Raises a LookupError in case the encoding cannot be found.
  658.  
  659.     '''
  660.     return lookup(encoding)[3]
  661.  
  662.  
  663. def make_identity_dict(rng):
  664.     ''' make_identity_dict(rng) -> dict
  665.  
  666.         Return a dictionary where elements of the rng sequence are
  667.         mapped to themselves.
  668.  
  669.     '''
  670.     res = { }
  671.     for i in rng:
  672.         res[i] = i
  673.     
  674.     return res
  675.  
  676.  
  677. def make_encoding_map(decoding_map):
  678.     ''' Creates an encoding map from a decoding map.
  679.  
  680.         If a target mapping in the decoding map occurs multiple
  681.         times, then that target is mapped to None (undefined mapping),
  682.         causing an exception when encountered by the charmap codec
  683.         during translation.
  684.  
  685.         One example where this happens is cp875.py which decodes
  686.         multiple character to \\u001a.
  687.  
  688.     '''
  689.     m = { }
  690.     for k, v in decoding_map.items():
  691.         if v not in m:
  692.             m[v] = k
  693.             continue
  694.         m[v] = None
  695.     
  696.     return m
  697.  
  698.  
  699. try:
  700.     strict_errors = lookup_error('strict')
  701.     ignore_errors = lookup_error('ignore')
  702.     replace_errors = lookup_error('replace')
  703.     xmlcharrefreplace_errors = lookup_error('xmlcharrefreplace')
  704.     backslashreplace_errors = lookup_error('backslashreplace')
  705. except LookupError:
  706.     strict_errors = None
  707.     ignore_errors = None
  708.     replace_errors = None
  709.     xmlcharrefreplace_errors = None
  710.     backslashreplace_errors = None
  711.  
  712. _false = 0
  713. if _false:
  714.     import encodings
  715.  
  716. if __name__ == '__main__':
  717.     sys.stdout = EncodedFile(sys.stdout, 'latin-1', 'utf-8')
  718.     sys.stdin = EncodedFile(sys.stdin, 'utf-8', 'latin-1')
  719.  
  720.