当前位置: 首页>>代码示例>>Python>>正文


Python exceptions.IncompleteReadError方法代码示例

本文整理汇总了Python中botocore.exceptions.IncompleteReadError方法的典型用法代码示例。如果您正苦于以下问题:Python exceptions.IncompleteReadError方法的具体用法?Python exceptions.IncompleteReadError怎么用?Python exceptions.IncompleteReadError使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在botocore.exceptions的用法示例。


在下文中一共展示了exceptions.IncompleteReadError方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: _get_object

# 需要导入模块: from botocore import exceptions [as 别名]
# 或者: from botocore.exceptions import IncompleteReadError [as 别名]
def _get_object(self, bucket, key, filename, extra_args, callback):
        # precondition: num_download_attempts > 0
        max_attempts = self._config.num_download_attempts
        last_exception = None
        for i in range(max_attempts):
            try:
                return self._do_get_object(bucket, key, filename,
                                           extra_args, callback)
            except (socket.timeout, socket.error,
                    ReadTimeoutError, IncompleteReadError) as e:
                # TODO: we need a way to reset the callback if the
                # download failed.
                logger.debug("Retrying exception caught (%s), "
                             "retrying request, (attempt %s / %s)", e, i,
                             max_attempts, exc_info=True)
                last_exception = e
                continue
        raise RetriesExceededError(last_exception) 
开发者ID:skarlekar,项目名称:faces,代码行数:20,代码来源:__init__.py

示例2: _verify_content_length

# 需要导入模块: from botocore import exceptions [as 别名]
# 或者: from botocore.exceptions import IncompleteReadError [as 别名]
def _verify_content_length(self):
        # See: https://github.com/kennethreitz/requests/issues/1855
        # Basically, our http library doesn't do this for us, so we have
        # to do this ourself.
        if self._self_content_length is not None and \
                self._self_amount_read != int(self._self_content_length):
            raise IncompleteReadError(
                actual_bytes=self._self_amount_read,
                expected_bytes=int(self._self_content_length)) 
开发者ID:aio-libs,项目名称:aiobotocore,代码行数:11,代码来源:response.py

示例3: test_streaming_body_with_invalid_length

# 需要导入模块: from botocore import exceptions [as 别名]
# 或者: from botocore.exceptions import IncompleteReadError [as 别名]
def test_streaming_body_with_invalid_length():
    body = AsyncBytesIO(b'123456789')
    stream = response.StreamingBody(body, content_length=10)
    with pytest.raises(IncompleteReadError):
        assert await stream.read(9) == b'123456789'
        # The next read will have nothing returned and raise
        # an IncompleteReadError because we were expectd 10 bytes, not 9.
        await stream.read() 
开发者ID:aio-libs,项目名称:aiobotocore,代码行数:10,代码来源:test_response.py

示例4: test_streaming_body_with_single_read

# 需要导入模块: from botocore import exceptions [as 别名]
# 或者: from botocore.exceptions import IncompleteReadError [as 别名]
def test_streaming_body_with_single_read():
    body = AsyncBytesIO(b'123456789')
    stream = response.StreamingBody(body, content_length=10)
    with pytest.raises(IncompleteReadError):
        await stream.read() 
开发者ID:aio-libs,项目名称:aiobotocore,代码行数:7,代码来源:test_response.py

示例5: _verify_content_length

# 需要导入模块: from botocore import exceptions [as 别名]
# 或者: from botocore.exceptions import IncompleteReadError [as 别名]
def _verify_content_length(self):
        # See: https://github.com/kennethreitz/requests/issues/1855
        # Basically, our http library doesn't do this for us, so we have
        # to do this ourself.
        if self._content_length is not None and \
                self._amount_read != int(self._content_length):
            raise IncompleteReadError(
                actual_bytes=self._amount_read,
                expected_bytes=int(self._content_length)) 
开发者ID:skarlekar,项目名称:faces,代码行数:11,代码来源:response.py

示例6: _download_range

# 需要导入模块: from botocore import exceptions [as 别名]
# 或者: from botocore.exceptions import IncompleteReadError [as 别名]
def _download_range(self, bucket, key, filename,
                        part_size, num_parts, callback, part_index):
        try:
            range_param = self._calculate_range_param(
                part_size, part_index, num_parts)

            max_attempts = self._config.num_download_attempts
            last_exception = None
            for i in range(max_attempts):
                try:
                    logger.debug("Making get_object call.")
                    response = self._client.get_object(
                        Bucket=bucket, Key=key, Range=range_param)
                    streaming_body = StreamReaderProgress(
                        response['Body'], callback)
                    buffer_size = 1024 * 16
                    current_index = part_size * part_index
                    for chunk in iter(lambda: streaming_body.read(buffer_size),
                                      b''):
                        self._ioqueue.put((current_index, chunk))
                        current_index += len(chunk)
                    return
                except (socket.timeout, socket.error,
                        ReadTimeoutError, IncompleteReadError) as e:
                    logger.debug("Retrying exception caught (%s), "
                                 "retrying request, (attempt %s / %s)", e, i,
                                 max_attempts, exc_info=True)
                    last_exception = e
                    continue
            raise RetriesExceededError(last_exception)
        finally:
            logger.debug("EXITING _download_range for part: %s", part_index) 
开发者ID:skarlekar,项目名称:faces,代码行数:34,代码来源:__init__.py


注:本文中的botocore.exceptions.IncompleteReadError方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。