本文整理汇总了Python中swift.common.swob.multi_range_iterator函数的典型用法代码示例。如果您正苦于以下问题:Python multi_range_iterator函数的具体用法?Python multi_range_iterator怎么用?Python multi_range_iterator使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了multi_range_iterator函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: app_iter_ranges
def app_iter_ranges(self, ranges, content_type,
boundary, content_size,
*_args, **_kwargs):
for chunk in multi_range_iterator(
ranges, content_type, boundary, content_size,
self._chunked_app_iter_range):
yield chunk
示例2: app_iter_ranges
def app_iter_ranges(self, ranges, content_type, boundary, size):
"""Returns an iterator over the data file for a set of ranges"""
if not ranges:
yield ""
else:
try:
self.suppress_file_closing = True
for chunk in multi_range_iterator(ranges, content_type, boundary, size, self.app_iter_range):
yield chunk
finally:
self.suppress_file_closing = False
self.close()
示例3: app_iter_ranges
def app_iter_ranges(self, ranges, content_type, boundary, size):
if not ranges:
yield ''
else:
try:
self._suppress_file_closing = True
for chunk in multi_range_iterator(
ranges, content_type, boundary, size,
self.app_iter_range):
yield chunk
finally:
self._suppress_file_closing = False
try:
self.close()
except DiskFileQuarantined:
pass
示例4: app_iter_ranges
def app_iter_ranges(self, ranges, content_type, boundary, content_size):
"""
This method assumes that iter(self) yields all the data bytes that
go into the response, but none of the MIME stuff. For example, if
the response will contain three MIME docs with data "abcd", "efgh",
and "ijkl", then iter(self) will give out the bytes "abcdefghijkl".
This method inserts the MIME stuff around the data bytes.
"""
si = Spliterator(self)
mri = multi_range_iterator(
ranges, content_type, boundary, content_size,
lambda start, end_plus_one: si.take(end_plus_one - start))
try:
for x in mri:
yield x
finally:
self.close()