1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
|
# Copyright (C) 2006 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""http/https transport using pycurl"""
# TODO: test reporting of http errors
#
# TODO: Transport option to control caching of particular requests; broadly we
# would want to offer "caching allowed" or "must revalidate", depending on
# whether we expect a particular file will be modified after it's committed.
# It's probably safer to just always revalidate. mbp 20060321
import os
from cStringIO import StringIO
from bzrlib import (
errors,
__version__ as bzrlib_version,
)
import bzrlib
from bzrlib.errors import (NoSuchFile,
ConnectionError,
DependencyNotPresent)
from bzrlib.trace import mutter
from bzrlib.transport import register_urlparse_netloc_protocol
from bzrlib.transport.http import (
_extract_headers,
HttpTransportBase,
_pycurl_errors,
response,
)
try:
import pycurl
except ImportError, e:
mutter("failed to import pycurl: %s", e)
raise DependencyNotPresent('pycurl', e)
try:
# see if we can actually initialize PyCurl - sometimes it will load but
# fail to start up due to this bug:
#
# 32. (At least on Windows) If libcurl is built with c-ares and there's
# no DNS server configured in the system, the ares_init() call fails and
# thus curl_easy_init() fails as well. This causes weird effects for
# people who use numerical IP addresses only.
#
# reported by Alexander Belchenko, 2006-04-26
pycurl.Curl()
except pycurl.error, e:
mutter("failed to initialize pycurl: %s", e)
raise DependencyNotPresent('pycurl', e)
register_urlparse_netloc_protocol('http+pycurl')
class PyCurlTransport(HttpTransportBase):
"""http client transport using pycurl
PyCurl is a Python binding to the C "curl" multiprotocol client.
This transport can be significantly faster than the builtin
Python client. Advantages include: DNS caching.
"""
def __init__(self, base, from_transport=None):
super(PyCurlTransport, self).__init__(base)
if from_transport is not None:
self._curl = from_transport._curl
else:
mutter('using pycurl %s' % pycurl.version)
self._curl = pycurl.Curl()
def should_cache(self):
"""Return True if the data pulled across should be cached locally.
"""
return True
def has(self, relpath):
"""See Transport.has()"""
# We set NO BODY=0 in _get_full, so it should be safe
# to re-use the non-range curl object
curl = self._curl
abspath = self._real_abspath(relpath)
curl.setopt(pycurl.URL, abspath)
self._set_curl_options(curl)
curl.setopt(pycurl.HTTPGET, 1)
# don't want the body - ie just do a HEAD request
# This means "NO BODY" not 'nobody'
curl.setopt(pycurl.NOBODY, 1)
# In some erroneous cases, pycurl will emit text on
# stdout if we don't catch it (see InvalidStatus tests
# for one such occurrence).
blackhole = StringIO()
curl.setopt(pycurl.WRITEFUNCTION, blackhole.write)
self._curl_perform(curl)
code = curl.getinfo(pycurl.HTTP_CODE)
if code == 404: # not found
return False
elif code in (200, 302): # "ok", "found"
return True
else:
self._raise_curl_http_error(curl)
def _get(self, relpath, ranges, tail_amount=0):
# This just switches based on the type of request
if ranges is not None or tail_amount not in (0, None):
return self._get_ranged(relpath, ranges, tail_amount=tail_amount)
else:
return self._get_full(relpath)
def _setup_get_request(self, curl, relpath):
# Make sure we do a GET request. versions > 7.14.1 also set the
# NO BODY flag, but we'll do it ourselves in case it is an older
# pycurl version
curl.setopt(pycurl.NOBODY, 0)
curl.setopt(pycurl.HTTPGET, 1)
return self._setup_request(curl, relpath)
def _setup_request(self, curl, relpath):
"""Do the common setup stuff for making a request
:param curl: The curl object to place the request on
:param relpath: The relative path that we want to get
:return: (abspath, data, header)
abspath: full url
data: file that will be filled with the body
header: file that will be filled with the headers
"""
abspath = self._real_abspath(relpath)
curl.setopt(pycurl.URL, abspath)
self._set_curl_options(curl)
data = StringIO()
header = StringIO()
curl.setopt(pycurl.WRITEFUNCTION, data.write)
curl.setopt(pycurl.HEADERFUNCTION, header.write)
return abspath, data, header
def _get_full(self, relpath):
"""Make a request for the entire file"""
curl = self._curl
abspath, data, header = self._setup_get_request(curl, relpath)
self._curl_perform(curl)
code = curl.getinfo(pycurl.HTTP_CODE)
data.seek(0)
if code == 404:
raise NoSuchFile(abspath)
if code != 200:
self._raise_curl_http_error(
curl, 'expected 200 or 404 for full response.')
return code, data
def _get_ranged(self, relpath, ranges, tail_amount):
"""Make a request for just part of the file."""
curl = self._curl
abspath, data, header = self._setup_get_request(curl, relpath)
range_header = self.attempted_range_header(ranges, tail_amount)
if range_header is None:
# Forget ranges, the server can't handle them
return self._get_full(relpath)
self._curl_perform(curl, ['Range: bytes=%s'
% self.range_header(ranges, tail_amount)])
data.seek(0)
code = curl.getinfo(pycurl.HTTP_CODE)
# mutter('header:\n%r', header.getvalue())
headers = _extract_headers(header.getvalue(), abspath)
# handle_response will raise NoSuchFile, etc based on the response code
return code, response.handle_response(abspath, code, headers, data)
def _post(self, body_bytes):
fake_file = StringIO(body_bytes)
curl = self._curl
# Other places that use _base_curl for GET requests explicitly set
# HTTPGET, so it should be safe to re-use the same object for both GETs
# and POSTs.
curl.setopt(pycurl.POST, 1)
curl.setopt(pycurl.POSTFIELDSIZE, len(body_bytes))
curl.setopt(pycurl.READFUNCTION, fake_file.read)
abspath, data, header = self._setup_request(curl, '.bzr/smart')
# We override the Expect: header so that pycurl will send the POST
# body immediately.
self._curl_perform(curl,['Expect: '])
data.seek(0)
code = curl.getinfo(pycurl.HTTP_CODE)
headers = _extract_headers(header.getvalue(), abspath)
return code, response.handle_response(abspath, code, headers, data)
def _raise_curl_http_error(self, curl, info=None):
code = curl.getinfo(pycurl.HTTP_CODE)
url = curl.getinfo(pycurl.EFFECTIVE_URL)
# Some error codes can be handled the same way for all
# requests
if code == 403:
raise errors.TransportError(
'Server refuses to fullfil the request for: %s' % url)
else:
if info is None:
msg = ''
else:
msg = ': ' + info
raise errors.InvalidHttpResponse(
url, 'Unable to handle http code %d%s' % (code,msg))
def _set_curl_options(self, curl):
"""Set options for all requests"""
## curl.setopt(pycurl.VERBOSE, 1)
# TODO: maybe include a summary of the pycurl version
ua_str = 'bzr/%s (pycurl)' % (bzrlib.__version__,)
curl.setopt(pycurl.USERAGENT, ua_str)
curl.setopt(pycurl.FOLLOWLOCATION, 1) # follow redirect responses
def _curl_perform(self, curl, more_headers=[]):
"""Perform curl operation and translate exceptions."""
try:
# There's no way in http/1.0 to say "must
# revalidate"; we don't want to force it to always
# retrieve. so just turn off the default Pragma
# provided by Curl.
headers = ['Cache-control: max-age=0',
'Pragma: no-cache',
'Connection: Keep-Alive']
curl.setopt(pycurl.HTTPHEADER, headers + more_headers)
curl.perform()
except pycurl.error, e:
url = curl.getinfo(pycurl.EFFECTIVE_URL)
mutter('got pycurl error: %s, %s, %s, url: %s ',
e[0], _pycurl_errors.errorcode[e[0]], e, url)
if e[0] in (_pycurl_errors.CURLE_COULDNT_RESOLVE_HOST,
_pycurl_errors.CURLE_COULDNT_CONNECT,
_pycurl_errors.CURLE_GOT_NOTHING,
_pycurl_errors.CURLE_COULDNT_RESOLVE_PROXY):
raise ConnectionError('curl connection error (%s)\non %s'
% (e[1], url))
elif e[0] == _pycurl_errors.CURLE_PARTIAL_FILE:
# Pycurl itself has detected a short read. We do
# not have all the information for the
# ShortReadvError, but that should be enough
raise errors.ShortReadvError(url,
offset='unknown', length='unknown',
actual='unknown',
extra='Server aborted the request')
# jam 20060713 The code didn't use to re-raise the exception here,
# but that seemed bogus
raise
def get_test_permutations():
"""Return the permutations to be used in testing."""
from bzrlib.tests.HttpServer import HttpServer_PyCurl
return [(PyCurlTransport, HttpServer_PyCurl),
]
|