~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: 2006-04-18 05:59:25 UTC
  • mfrom: (1551.6.16 Aaron's mergeable stuff)
  • Revision ID: pqm@pqm.ubuntu.com-20060418055925-0f7129a54583f4d8
implementation of --reprocess for weave merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005, 2006 by Canonical Ltd
 
2
# Written by Robert Collins <robert.collins@canonical.com>
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or
 
7
# (at your option) any later version.
 
8
#
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
 
 
18
"""Bzrlib specific gzip tunings. We plan to feed these to the upstream gzip."""
 
19
 
 
20
# make GzipFile faster:
 
21
import gzip
 
22
from gzip import U32, LOWU32, FEXTRA, FCOMMENT, FNAME, FHCRC
 
23
import sys
 
24
import struct
 
25
import zlib
 
26
 
 
27
__all__ = ["GzipFile"]
 
28
 
 
29
 
 
30
class GzipFile(gzip.GzipFile):
 
31
    """Knit tuned version of GzipFile.
 
32
 
 
33
    This is based on the following lsprof stats:
 
34
    python 2.4 stock GzipFile write:
 
35
    58971      0   5644.3090   2721.4730   gzip:193(write)
 
36
    +58971     0   1159.5530   1159.5530   +<built-in method compress>
 
37
    +176913    0    987.0320    987.0320   +<len>
 
38
    +58971     0    423.1450    423.1450   +<zlib.crc32>
 
39
    +58971     0    353.1060    353.1060   +<method 'write' of 'cStringIO.
 
40
                                            StringO' objects>
 
41
    tuned GzipFile write:
 
42
    58971      0   4477.2590   2103.1120   bzrlib.knit:1250(write)
 
43
    +58971     0   1297.7620   1297.7620   +<built-in method compress>
 
44
    +58971     0    406.2160    406.2160   +<zlib.crc32>
 
45
    +58971     0    341.9020    341.9020   +<method 'write' of 'cStringIO.
 
46
                                            StringO' objects>
 
47
    +58971     0    328.2670    328.2670   +<len>
 
48
 
 
49
 
 
50
    Yes, its only 1.6 seconds, but they add up.
 
51
    """
 
52
 
 
53
    def _add_read_data(self, data):
 
54
        # 4169 calls in 183
 
55
        # temp var for len(data) and switch to +='s.
 
56
        # 4169 in 139
 
57
        len_data = len(data)
 
58
        self.crc = zlib.crc32(data, self.crc)
 
59
        self.extrabuf += data
 
60
        self.extrasize += len_data
 
61
        self.size += len_data
 
62
 
 
63
    def _read(self, size=1024):
 
64
        # various optimisations:
 
65
        # reduces lsprof count from 2500 to 
 
66
        # 8337 calls in 1272, 365 internal
 
67
        if self.fileobj is None:
 
68
            raise EOFError, "Reached EOF"
 
69
 
 
70
        if self._new_member:
 
71
            # If the _new_member flag is set, we have to
 
72
            # jump to the next member, if there is one.
 
73
            #
 
74
            # First, check if we're at the end of the file;
 
75
            # if so, it's time to stop; no more members to read.
 
76
            next_header_bytes = self.fileobj.read(10)
 
77
            if next_header_bytes == '':
 
78
                raise EOFError, "Reached EOF"
 
79
 
 
80
            self._init_read()
 
81
            self._read_gzip_header(next_header_bytes)
 
82
            self.decompress = zlib.decompressobj(-zlib.MAX_WBITS)
 
83
            self._new_member = False
 
84
 
 
85
        # Read a chunk of data from the file
 
86
        buf = self.fileobj.read(size)
 
87
 
 
88
        # If the EOF has been reached, flush the decompression object
 
89
        # and mark this object as finished.
 
90
 
 
91
        if buf == "":
 
92
            self._add_read_data(self.decompress.flush())
 
93
            assert len(self.decompress.unused_data) >= 8, "what does flush do?"
 
94
            self._read_eof()
 
95
            # tell the driving read() call we have stuffed all the data
 
96
            # in self.extrabuf
 
97
            raise EOFError, 'Reached EOF'
 
98
 
 
99
        self._add_read_data(self.decompress.decompress(buf))
 
100
 
 
101
        if self.decompress.unused_data != "":
 
102
            # Ending case: we've come to the end of a member in the file,
 
103
            # so seek back to the start of the data for the next member which
 
104
            # is the length of the decompress objects unused data - the first
 
105
            # 8 bytes for the end crc and size records.
 
106
            #
 
107
            # so seek back to the start of the unused data, finish up
 
108
            # this member, and read a new gzip header.
 
109
            # (The number of bytes to seek back is the length of the unused
 
110
            # data, minus 8 because those 8 bytes are part of this member.
 
111
            seek_length = len (self.decompress.unused_data) - 8
 
112
            if seek_length > 0:
 
113
                # we read too much data
 
114
                self.fileobj.seek(-seek_length, 1)
 
115
            elif seek_length < 0:
 
116
                # we haven't read enough to check the checksum.
 
117
                assert -8 < seek_length, "too great a seek."
 
118
                buf = self.fileobj.read(-seek_length)
 
119
                self.decompress.decompress(buf)
 
120
 
 
121
            # Check the CRC and file size, and set the flag so we read
 
122
            # a new member on the next call
 
123
            self._read_eof()
 
124
            self._new_member = True
 
125
 
 
126
    def _read_eof(self):
 
127
        """tuned to reduce function calls and eliminate file seeking:
 
128
        pass 1:
 
129
        reduces lsprof count from 800 to 288
 
130
        4168 in 296 
 
131
        avoid U32 call by using struct format L
 
132
        4168 in 200
 
133
        """
 
134
        # We've read to the end of the file, so we should have 8 bytes of 
 
135
        # unused data in the decompressor. If we dont, there is a corrupt file.
 
136
        # We use these 8 bytes to calculate the CRC and the recorded file size.
 
137
        # We then check the that the computed CRC and size of the
 
138
        # uncompressed data matches the stored values.  Note that the size
 
139
        # stored is the true file size mod 2**32.
 
140
        crc32, isize = struct.unpack("<LL", self.decompress.unused_data[0:8])
 
141
        # note that isize is unsigned - it can exceed 2GB
 
142
        if crc32 != U32(self.crc):
 
143
            raise IOError, "CRC check failed %d %d" % (crc32, U32(self.crc))
 
144
        elif isize != LOWU32(self.size):
 
145
            raise IOError, "Incorrect length of data produced"
 
146
 
 
147
    def _read_gzip_header(self, bytes=None):
 
148
        """Supply bytes if the minimum header size is already read.
 
149
        
 
150
        :param bytes: 10 bytes of header data.
 
151
        """
 
152
        """starting cost: 300 in 3998
 
153
        15998 reads from 3998 calls
 
154
        final cost 168
 
155
        """
 
156
        if bytes is None:
 
157
            bytes = self.fileobj.read(10)
 
158
        magic = bytes[0:2]
 
159
        if magic != '\037\213':
 
160
            raise IOError, 'Not a gzipped file'
 
161
        method = ord(bytes[2:3])
 
162
        if method != 8:
 
163
            raise IOError, 'Unknown compression method'
 
164
        flag = ord(bytes[3:4])
 
165
        # modtime = self.fileobj.read(4) (bytes [4:8])
 
166
        # extraflag = self.fileobj.read(1) (bytes[8:9])
 
167
        # os = self.fileobj.read(1) (bytes[9:10])
 
168
        # self.fileobj.read(6)
 
169
 
 
170
        if flag & FEXTRA:
 
171
            # Read & discard the extra field, if present
 
172
            xlen = ord(self.fileobj.read(1))
 
173
            xlen = xlen + 256*ord(self.fileobj.read(1))
 
174
            self.fileobj.read(xlen)
 
175
        if flag & FNAME:
 
176
            # Read and discard a null-terminated string containing the filename
 
177
            while True:
 
178
                s = self.fileobj.read(1)
 
179
                if not s or s=='\000':
 
180
                    break
 
181
        if flag & FCOMMENT:
 
182
            # Read and discard a null-terminated string containing a comment
 
183
            while True:
 
184
                s = self.fileobj.read(1)
 
185
                if not s or s=='\000':
 
186
                    break
 
187
        if flag & FHCRC:
 
188
            self.fileobj.read(2)     # Read & discard the 16-bit header CRC
 
189
 
 
190
    def readline(self, size=-1):
 
191
        """Tuned to remove buffer length calls in _unread and...
 
192
        
 
193
        also removes multiple len(c) calls, inlines _unread,
 
194
        total savings - lsprof 5800 to 5300
 
195
        phase 2:
 
196
        4168 calls in 2233
 
197
        8176 calls to read() in 1684
 
198
        changing the min chunk size to 200 halved all the cache misses
 
199
        leading to a drop to:
 
200
        4168 calls in 1977
 
201
        4168 call to read() in 1646
 
202
        - i.e. just reduced the function call overhead. May be worth 
 
203
          keeping.
 
204
        """
 
205
        if size < 0: size = sys.maxint
 
206
        bufs = []
 
207
        readsize = min(200, size)    # Read from the file in small chunks
 
208
        while True:
 
209
            if size == 0:
 
210
                return "".join(bufs) # Return resulting line
 
211
 
 
212
            # c is the chunk
 
213
            c = self.read(readsize)
 
214
            # number of bytes read
 
215
            len_c = len(c)
 
216
            i = c.find('\n')
 
217
            if size is not None:
 
218
                # We set i=size to break out of the loop under two
 
219
                # conditions: 1) there's no newline, and the chunk is
 
220
                # larger than size, or 2) there is a newline, but the
 
221
                # resulting line would be longer than 'size'.
 
222
                if i==-1 and len_c > size: i=size-1
 
223
                elif size <= i: i = size -1
 
224
 
 
225
            if i >= 0 or c == '':
 
226
                # if i>= 0 we have a newline or have triggered the above
 
227
                # if size is not None condition.
 
228
                # if c == '' its EOF.
 
229
                bufs.append(c[:i+1])    # Add portion of last chunk
 
230
                # -- inlined self._unread --
 
231
                ## self._unread(c[i+1:], len_c - i)   # Push back rest of chunk
 
232
                self.extrabuf = c[i+1:] + self.extrabuf
 
233
                self.extrasize = len_c - i + self.extrasize
 
234
                self.offset -= len_c - i
 
235
                # -- end inlined self._unread --
 
236
                return ''.join(bufs)    # Return resulting line
 
237
 
 
238
            # Append chunk to list, decrease 'size',
 
239
            bufs.append(c)
 
240
            size = size - len_c
 
241
            readsize = min(size, readsize * 2)
 
242
 
 
243
    def readlines(self, sizehint=0):
 
244
        # optimise to avoid all the buffer manipulation
 
245
        # lsprof changed from:
 
246
        # 4168 calls in 5472 with 32000 calls to readline()
 
247
        # to :
 
248
        # 4168 calls in 417.
 
249
        # Negative numbers result in reading all the lines
 
250
        if sizehint <= 0:
 
251
            sizehint = -1
 
252
        content = self.read(sizehint)
 
253
        return content.splitlines(True)
 
254
 
 
255
    def _unread(self, buf, len_buf=None):
 
256
        """tuned to remove unneeded len calls.
 
257
        
 
258
        because this is such an inner routine in readline, and readline is
 
259
        in many inner loops, this has been inlined into readline().
 
260
 
 
261
        The len_buf parameter combined with the reduction in len calls dropped
 
262
        the lsprof ms count for this routine on my test data from 800 to 200 - 
 
263
        a 75% saving.
 
264
        """
 
265
        if len_buf is None:
 
266
            len_buf = len(buf)
 
267
        self.extrabuf = buf + self.extrabuf
 
268
        self.extrasize = len_buf + self.extrasize
 
269
        self.offset -= len_buf
 
270
 
 
271
    def write(self, data):
 
272
        if self.mode != gzip.WRITE:
 
273
            import errno
 
274
            raise IOError(errno.EBADF, "write() on read-only GzipFile object")
 
275
 
 
276
        if self.fileobj is None:
 
277
            raise ValueError, "write() on closed GzipFile object"
 
278
        data_len = len(data)
 
279
        if data_len > 0:
 
280
            self.size = self.size + data_len
 
281
            self.crc = zlib.crc32(data, self.crc)
 
282
            self.fileobj.write( self.compress.compress(data) )
 
283
            self.offset += data_len
 
284
 
 
285
    def writelines(self, lines):
 
286
        # profiling indicated a significant overhead 
 
287
        # calling write for each line.
 
288
        # this batch call is a lot faster :).
 
289
        # (4 seconds to 1 seconds for the sample upgrades I was testing).
 
290
        self.write(''.join(lines))
 
291
 
 
292