~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/http/response.py

  • Committer: John Arbash Meinel
  • Date: 2013-05-23 10:04:17 UTC
  • mfrom: (6437.63.11 2.5)
  • mto: This revision was merged to the branch mainline in revision 6575.
  • Revision ID: john@arbash-meinel.com-20130523100417-i38zikta14q2xdyz
Merge lp:bzr/2.5 tip and move up the changelog items.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
responses.
22
22
"""
23
23
 
 
24
from __future__ import absolute_import
24
25
 
 
26
import os
25
27
import httplib
26
28
from cStringIO import StringIO
27
29
import rfc822
32
34
    )
33
35
 
34
36
 
 
37
class ResponseFile(object):
 
38
    """A wrapper around the http socket containing the result of a GET request.
 
39
 
 
40
    Only read() and seek() (forward) are supported.
 
41
    """
 
42
    def __init__(self, path, infile):
 
43
        """Constructor.
 
44
 
 
45
        :param path: File url, for error reports.
 
46
 
 
47
        :param infile: File-like socket set at body start.
 
48
        """
 
49
        self._path = path
 
50
        self._file = infile
 
51
        self._pos = 0
 
52
 
 
53
    def close(self):
 
54
        """Close this file.
 
55
 
 
56
        Dummy implementation for consistency with the 'file' API.
 
57
        """
 
58
 
 
59
    def read(self, size=-1):
 
60
        """Read size bytes from the current position in the file.
 
61
 
 
62
        :param size:  The number of bytes to read.  Leave unspecified or pass
 
63
            -1 to read to EOF.
 
64
        """
 
65
        data =  self._file.read(size)
 
66
        self._pos += len(data)
 
67
        return data
 
68
 
 
69
    def readline(self):
 
70
        data = self._file.readline()
 
71
        self._pos += len(data)
 
72
        return data
 
73
 
 
74
    def tell(self):
 
75
        return self._pos
 
76
 
 
77
    def seek(self, offset, whence=os.SEEK_SET):
 
78
        if whence == os.SEEK_SET:
 
79
            if offset < self._pos:
 
80
                raise AssertionError(
 
81
                    "Can't seek backwards, pos: %s, offset: %s"
 
82
                    % (self._pos, offset))
 
83
            to_discard = offset - self._pos
 
84
        elif whence == os.SEEK_CUR:
 
85
            to_discard = offset
 
86
        else:
 
87
            raise AssertionError("Can't seek backwards")
 
88
        if to_discard:
 
89
            # Just discard the unwanted bytes
 
90
            self.read(to_discard)
 
91
 
35
92
# A RangeFile expects the following grammar (simplified to outline the
36
93
# assumptions we rely upon).
37
94
 
38
 
# file: whole_file
39
 
#     | single_range
 
95
# file: single_range
40
96
#     | multiple_range
41
97
 
42
 
# whole_file: [content_length_header] data
43
 
 
44
98
# single_range: content_range_header data
45
99
 
46
100
# multiple_range: boundary_header boundary (content_range_header data boundary)+
47
101
 
48
 
class RangeFile(object):
 
102
class RangeFile(ResponseFile):
49
103
    """File-like object that allow access to partial available data.
50
104
 
51
105
    All accesses should happen sequentially since the acquisition occurs during
70
124
        """Constructor.
71
125
 
72
126
        :param path: File url, for error reports.
 
127
 
73
128
        :param infile: File-like socket set at body start.
74
129
        """
75
 
        self._path = path
76
 
        self._file = infile
 
130
        super(RangeFile, self).__init__(path, infile)
77
131
        self._boundary = None
78
132
        # When using multi parts response, this will be set with the headers
79
133
        # associated with the range currently read.
297
351
    :return: A file-like object that can seek()+read() the
298
352
             ranges indicated by the headers.
299
353
    """
300
 
    rfile = RangeFile(url, data)
301
354
    if code == 200:
302
355
        # A whole file
303
 
        size = msg.getheader('content-length', None)
304
 
        if size is None:
305
 
            size = -1
306
 
        else:
307
 
            size = int(size)
308
 
        rfile.set_range(0, size)
 
356
        rfile = ResponseFile(url, data)
309
357
    elif code == 206:
 
358
        rfile = RangeFile(url, data)
310
359
        content_type = msg.getheader('content-type', None)
311
360
        if content_type is None:
312
361
            # When there is no content-type header we treat the response as