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

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. """Functions that read and write gzipped files.
  5.  
  6. The user of the file doesn't have to worry about the compression,
  7. but random access is not allowed."""
  8. import struct
  9. import sys
  10. import time
  11. import zlib
  12. import __builtin__
  13. __all__ = [
  14.     'GzipFile',
  15.     'open']
  16. (FTEXT, FHCRC, FEXTRA, FNAME, FCOMMENT) = (1, 2, 4, 8, 16)
  17. (READ, WRITE) = (1, 2)
  18.  
  19. def U32(i):
  20.     """Return i as an unsigned integer, assuming it fits in 32 bits.
  21.  
  22.     If it's >= 2GB when viewed as a 32-bit unsigned int, return a long.
  23.     """
  24.     if i < 0:
  25.         i += 0x1L << 32
  26.     
  27.     return i
  28.  
  29.  
  30. def LOWU32(i):
  31.     '''Return the low-order 32 bits of an int, as a non-negative int.'''
  32.     return i & 0xFFFFFFFFL
  33.  
  34.  
  35. def write32(output, value):
  36.     output.write(struct.pack('<l', value))
  37.  
  38.  
  39. def write32u(output, value):
  40.     output.write(struct.pack('<L', value))
  41.  
  42.  
  43. def read32(input):
  44.     return struct.unpack('<l', input.read(4))[0]
  45.  
  46.  
  47. def open(filename, mode = 'rb', compresslevel = 9):
  48.     """Shorthand for GzipFile(filename, mode, compresslevel).
  49.  
  50.     The filename argument is required; mode defaults to 'rb'
  51.     and compresslevel defaults to 9.
  52.  
  53.     """
  54.     return GzipFile(filename, mode, compresslevel)
  55.  
  56.  
  57. class GzipFile:
  58.     '''The GzipFile class simulates most of the methods of a file object with
  59.     the exception of the readinto() and truncate() methods.
  60.  
  61.     '''
  62.     myfileobj = None
  63.     
  64.     def __init__(self, filename = None, mode = None, compresslevel = 9, fileobj = None):
  65.         """Constructor for the GzipFile class.
  66.  
  67.         At least one of fileobj and filename must be given a
  68.         non-trivial value.
  69.  
  70.         The new class instance is based on fileobj, which can be a regular
  71.         file, a StringIO object, or any other object which simulates a file.
  72.         It defaults to None, in which case filename is opened to provide
  73.         a file object.
  74.  
  75.         When fileobj is not None, the filename argument is only used to be
  76.         included in the gzip file header, which may includes the original
  77.         filename of the uncompressed file.  It defaults to the filename of
  78.         fileobj, if discernible; otherwise, it defaults to the empty string,
  79.         and in this case the original filename is not included in the header.
  80.  
  81.         The mode argument can be any of 'r', 'rb', 'a', 'ab', 'w', or 'wb',
  82.         depending on whether the file will be read or written.  The default
  83.         is the mode of fileobj if discernible; otherwise, the default is 'rb'.
  84.         Be aware that only the 'rb', 'ab', and 'wb' values should be used
  85.         for cross-platform portability.
  86.  
  87.         The compresslevel argument is an integer from 1 to 9 controlling the
  88.         level of compression; 1 is fastest and produces the least compression,
  89.         and 9 is slowest and produces the most compression.  The default is 9.
  90.  
  91.         """
  92.         if mode and 'b' not in mode:
  93.             mode += 'b'
  94.         
  95.         if fileobj is None:
  96.             if not mode:
  97.                 pass
  98.             fileobj = self.myfileobj = __builtin__.open(filename, 'rb')
  99.         
  100.         if filename is None:
  101.             if hasattr(fileobj, 'name'):
  102.                 filename = fileobj.name
  103.             else:
  104.                 filename = ''
  105.         
  106.         if mode is None:
  107.             if hasattr(fileobj, 'mode'):
  108.                 mode = fileobj.mode
  109.             else:
  110.                 mode = 'rb'
  111.         
  112.         if mode[0:1] == 'r':
  113.             self.mode = READ
  114.             self._new_member = True
  115.             self.extrabuf = ''
  116.             self.extrasize = 0
  117.             self.filename = filename
  118.         elif mode[0:1] == 'w' or mode[0:1] == 'a':
  119.             self.mode = WRITE
  120.             self._init_write(filename)
  121.             self.compress = zlib.compressobj(compresslevel, zlib.DEFLATED, -(zlib.MAX_WBITS), zlib.DEF_MEM_LEVEL, 0)
  122.         else:
  123.             raise IOError, 'Mode ' + mode + ' not supported'
  124.         self.fileobj = fileobj
  125.         self.offset = 0
  126.         if self.mode == WRITE:
  127.             self._write_gzip_header()
  128.         
  129.  
  130.     
  131.     def __repr__(self):
  132.         s = repr(self.fileobj)
  133.         return '<gzip ' + s[1:-1] + ' ' + hex(id(self)) + '>'
  134.  
  135.     
  136.     def _init_write(self, filename):
  137.         if filename[-3:] != '.gz':
  138.             filename = filename + '.gz'
  139.         
  140.         self.filename = filename
  141.         self.crc = zlib.crc32('')
  142.         self.size = 0
  143.         self.writebuf = []
  144.         self.bufsize = 0
  145.  
  146.     
  147.     def _write_gzip_header(self):
  148.         self.fileobj.write('\x1f\x8b')
  149.         self.fileobj.write('\x08')
  150.         fname = self.filename[:-3]
  151.         flags = 0
  152.         if fname:
  153.             flags = FNAME
  154.         
  155.         self.fileobj.write(chr(flags))
  156.         write32u(self.fileobj, long(time.time()))
  157.         self.fileobj.write('\x02')
  158.         self.fileobj.write('\xff')
  159.         if fname:
  160.             self.fileobj.write(fname + '\x00')
  161.         
  162.  
  163.     
  164.     def _init_read(self):
  165.         self.crc = zlib.crc32('')
  166.         self.size = 0
  167.  
  168.     
  169.     def _read_gzip_header(self):
  170.         magic = self.fileobj.read(2)
  171.         if magic != '\x1f\x8b':
  172.             raise IOError, 'Not a gzipped file'
  173.         
  174.         method = ord(self.fileobj.read(1))
  175.         if method != 8:
  176.             raise IOError, 'Unknown compression method'
  177.         
  178.         flag = ord(self.fileobj.read(1))
  179.         self.fileobj.read(6)
  180.         if flag & FEXTRA:
  181.             xlen = ord(self.fileobj.read(1))
  182.             xlen = xlen + 256 * ord(self.fileobj.read(1))
  183.             self.fileobj.read(xlen)
  184.         
  185.         if flag & FNAME:
  186.             while True:
  187.                 s = self.fileobj.read(1)
  188.                 if not s or s == '\x00':
  189.                     break
  190.                     continue
  191.         
  192.         if flag & FCOMMENT:
  193.             while True:
  194.                 s = self.fileobj.read(1)
  195.                 if not s or s == '\x00':
  196.                     break
  197.                     continue
  198.         
  199.         if flag & FHCRC:
  200.             self.fileobj.read(2)
  201.         
  202.  
  203.     
  204.     def write(self, data):
  205.         if self.mode != WRITE:
  206.             import errno
  207.             raise IOError(errno.EBADF, 'write() on read-only GzipFile object')
  208.         
  209.         if self.fileobj is None:
  210.             raise ValueError, 'write() on closed GzipFile object'
  211.         
  212.         if len(data) > 0:
  213.             self.size = self.size + len(data)
  214.             self.crc = zlib.crc32(data, self.crc)
  215.             self.fileobj.write(self.compress.compress(data))
  216.             self.offset += len(data)
  217.         
  218.  
  219.     
  220.     def read(self, size = -1):
  221.         if self.mode != READ:
  222.             import errno
  223.             raise IOError(errno.EBADF, 'read() on write-only GzipFile object')
  224.         
  225.         if self.extrasize <= 0 and self.fileobj is None:
  226.             return ''
  227.         
  228.         readsize = 1024
  229.         if size < 0:
  230.             
  231.             try:
  232.                 while True:
  233.                     self._read(readsize)
  234.                     readsize = readsize * 2
  235.             except EOFError:
  236.                 size = self.extrasize
  237.             except:
  238.                 None<EXCEPTION MATCH>EOFError
  239.             
  240.  
  241.         None<EXCEPTION MATCH>EOFError
  242.         
  243.         try:
  244.             while size > self.extrasize:
  245.                 self._read(readsize)
  246.                 readsize = readsize * 2
  247.         except EOFError:
  248.             if size > self.extrasize:
  249.                 size = self.extrasize
  250.             
  251.         except:
  252.             size > self.extrasize
  253.  
  254.         chunk = self.extrabuf[:size]
  255.         self.extrabuf = self.extrabuf[size:]
  256.         self.extrasize = self.extrasize - size
  257.         self.offset += size
  258.         return chunk
  259.  
  260.     
  261.     def _unread(self, buf):
  262.         self.extrabuf = buf + self.extrabuf
  263.         self.extrasize = len(buf) + self.extrasize
  264.         self.offset -= len(buf)
  265.  
  266.     
  267.     def _read(self, size = 1024):
  268.         if self.fileobj is None:
  269.             raise EOFError, 'Reached EOF'
  270.         
  271.         if self._new_member:
  272.             pos = self.fileobj.tell()
  273.             self.fileobj.seek(0, 2)
  274.             if pos == self.fileobj.tell():
  275.                 raise EOFError, 'Reached EOF'
  276.             else:
  277.                 self.fileobj.seek(pos)
  278.             self._init_read()
  279.             self._read_gzip_header()
  280.             self.decompress = zlib.decompressobj(-(zlib.MAX_WBITS))
  281.             self._new_member = False
  282.         
  283.         buf = self.fileobj.read(size)
  284.         if buf == '':
  285.             uncompress = self.decompress.flush()
  286.             self._read_eof()
  287.             self._add_read_data(uncompress)
  288.             raise EOFError, 'Reached EOF'
  289.         
  290.         uncompress = self.decompress.decompress(buf)
  291.         self._add_read_data(uncompress)
  292.         if self.decompress.unused_data != '':
  293.             self.fileobj.seek(-len(self.decompress.unused_data) + 8, 1)
  294.             self._read_eof()
  295.             self._new_member = True
  296.         
  297.  
  298.     
  299.     def _add_read_data(self, data):
  300.         self.crc = zlib.crc32(data, self.crc)
  301.         self.extrabuf = self.extrabuf + data
  302.         self.extrasize = self.extrasize + len(data)
  303.         self.size = self.size + len(data)
  304.  
  305.     
  306.     def _read_eof(self):
  307.         self.fileobj.seek(-8, 1)
  308.         crc32 = read32(self.fileobj)
  309.         isize = U32(read32(self.fileobj))
  310.         if U32(crc32) != U32(self.crc):
  311.             raise IOError, 'CRC check failed'
  312.         elif isize != LOWU32(self.size):
  313.             raise IOError, 'Incorrect length of data produced'
  314.         
  315.  
  316.     
  317.     def close(self):
  318.         if self.mode == WRITE:
  319.             self.fileobj.write(self.compress.flush())
  320.             write32(self.fileobj, self.crc)
  321.             write32u(self.fileobj, LOWU32(self.size))
  322.             self.fileobj = None
  323.         elif self.mode == READ:
  324.             self.fileobj = None
  325.         
  326.         if self.myfileobj:
  327.             self.myfileobj.close()
  328.             self.myfileobj = None
  329.         
  330.  
  331.     
  332.     def __del__(self):
  333.         
  334.         try:
  335.             if self.myfileobj is None and self.fileobj is None:
  336.                 return None
  337.         except AttributeError:
  338.             return None
  339.  
  340.         self.close()
  341.  
  342.     
  343.     def flush(self):
  344.         self.fileobj.flush()
  345.  
  346.     
  347.     def fileno(self):
  348.         """Invoke the underlying file object's fileno() method.
  349.  
  350.         This will raise AttributeError if the underlying file object
  351.         doesn't support fileno().
  352.         """
  353.         return self.fileobj.fileno()
  354.  
  355.     
  356.     def isatty(self):
  357.         return False
  358.  
  359.     
  360.     def tell(self):
  361.         return self.offset
  362.  
  363.     
  364.     def rewind(self):
  365.         '''Return the uncompressed stream file position indicator to the
  366.         beginning of the file'''
  367.         if self.mode != READ:
  368.             raise IOError("Can't rewind in write mode")
  369.         
  370.         self.fileobj.seek(0)
  371.         self._new_member = True
  372.         self.extrabuf = ''
  373.         self.extrasize = 0
  374.         self.offset = 0
  375.  
  376.     
  377.     def seek(self, offset):
  378.         if self.mode == WRITE:
  379.             if offset < self.offset:
  380.                 raise IOError('Negative seek in write mode')
  381.             
  382.             count = offset - self.offset
  383.             for i in range(count // 1024):
  384.                 self.write(1024 * '\x00')
  385.             
  386.             self.write((count % 1024) * '\x00')
  387.         elif self.mode == READ:
  388.             if offset < self.offset:
  389.                 self.rewind()
  390.             
  391.             count = offset - self.offset
  392.             for i in range(count // 1024):
  393.                 self.read(1024)
  394.             
  395.             self.read(count % 1024)
  396.         
  397.  
  398.     
  399.     def readline(self, size = -1):
  400.         if size < 0:
  401.             size = sys.maxint
  402.         
  403.         bufs = []
  404.         readsize = min(100, size)
  405.         while True:
  406.             if size == 0:
  407.                 return ''.join(bufs)
  408.             
  409.             c = self.read(readsize)
  410.             i = c.find('\n')
  411.             if size is not None:
  412.                 if i == -1 and len(c) > size:
  413.                     i = size - 1
  414.                 elif size <= i:
  415.                     i = size - 1
  416.                 
  417.             
  418.             if i >= 0 or c == '':
  419.                 bufs.append(c[:i + 1])
  420.                 self._unread(c[i + 1:])
  421.                 return ''.join(bufs)
  422.             
  423.             bufs.append(c)
  424.             size = size - len(c)
  425.             readsize = min(size, readsize * 2)
  426.  
  427.     
  428.     def readlines(self, sizehint = 0):
  429.         if sizehint <= 0:
  430.             sizehint = sys.maxint
  431.         
  432.         L = []
  433.         while sizehint > 0:
  434.             line = self.readline()
  435.             if line == '':
  436.                 break
  437.             
  438.             L.append(line)
  439.             sizehint = sizehint - len(line)
  440.         return L
  441.  
  442.     
  443.     def writelines(self, L):
  444.         for line in L:
  445.             self.write(line)
  446.         
  447.  
  448.     
  449.     def __iter__(self):
  450.         return self
  451.  
  452.     
  453.     def next(self):
  454.         line = self.readline()
  455.         if line:
  456.             return line
  457.         else:
  458.             raise StopIteration
  459.  
  460.  
  461.  
  462. def _test():
  463.     args = sys.argv[1:]
  464.     if args:
  465.         pass
  466.     decompress = args[0] == '-d'
  467.     if decompress:
  468.         args = args[1:]
  469.     
  470.     if not args:
  471.         args = [
  472.             '-']
  473.     
  474.     for arg in args:
  475.         if decompress:
  476.             if arg == '-':
  477.                 f = GzipFile(filename = '', mode = 'rb', fileobj = sys.stdin)
  478.                 g = sys.stdout
  479.             elif arg[-3:] != '.gz':
  480.                 print "filename doesn't end in .gz:", repr(arg)
  481.                 continue
  482.             
  483.             f = open(arg, 'rb')
  484.             g = __builtin__.open(arg[:-3], 'wb')
  485.         elif arg == '-':
  486.             f = sys.stdin
  487.             g = GzipFile(filename = '', mode = 'wb', fileobj = sys.stdout)
  488.         else:
  489.             f = __builtin__.open(arg, 'rb')
  490.             g = open(arg + '.gz', 'wb')
  491.         while True:
  492.             chunk = f.read(1024)
  493.             if not chunk:
  494.                 break
  495.             
  496.             g.write(chunk)
  497.         if g is not sys.stdout:
  498.             g.close()
  499.         
  500.         if f is not sys.stdin:
  501.             f.close()
  502.             continue
  503.     
  504.  
  505. if __name__ == '__main__':
  506.     _test()
  507.  
  508.