~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tuned_gzip.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-06-18 05:22:35 UTC
  • mfrom: (1551.15.27 Aaron's mergeable stuff)
  • Revision ID: pqm@pqm.ubuntu.com-20070618052235-mvns8j28szyzscy0
Turn list-weave into list-versionedfile

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
# we want a \n preserved, break on \n only splitlines.
30
30
import bzrlib
31
31
 
32
 
__all__ = ["GzipFile", "bytes_to_gzip"]
33
 
 
34
 
 
35
 
def bytes_to_gzip(bytes, factory=zlib.compressobj,
36
 
    level=zlib.Z_DEFAULT_COMPRESSION, method=zlib.DEFLATED,
37
 
    width=-zlib.MAX_WBITS, mem=zlib.DEF_MEM_LEVEL,
38
 
    crc32=zlib.crc32):
39
 
    """Create a gzip file containing bytes and return its content."""
40
 
    result = [
41
 
        '\037\213'  # self.fileobj.write('\037\213')  # magic header
42
 
        '\010'      # self.fileobj.write('\010')      # compression method
43
 
                    # fname = self.filename[:-3]
44
 
                    # flags = 0
45
 
                    # if fname:
46
 
                    #     flags = FNAME
47
 
        '\x00'      # self.fileobj.write(chr(flags))
48
 
        '\0\0\0\0'  # write32u(self.fileobj, long(time.time()))
49
 
        '\002'      # self.fileobj.write('\002')
50
 
        '\377'      # self.fileobj.write('\377')
51
 
                    # if fname:
52
 
        ''          #     self.fileobj.write(fname + '\000')
53
 
        ]
54
 
    # using a compressobj avoids a small header and trailer that the compress()
55
 
    # utility function adds.
56
 
    compress = factory(level, method, width, mem, 0)
57
 
    result.append(compress.compress(bytes))
58
 
    result.append(compress.flush())
59
 
    result.append(struct.pack("<L", LOWU32(crc32(bytes))))
60
 
    # size may exceed 2GB, or even 4GB
61
 
    result.append(struct.pack("<L", LOWU32(len(bytes))))
62
 
    return ''.join(result)
 
32
__all__ = ["GzipFile"]
63
33
 
64
34
 
65
35
class GzipFile(gzip.GzipFile):