165 lines
5.6 KiB
Python
165 lines
5.6 KiB
Python
import logging
|
|
from twisted.internet import defer
|
|
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
class StreamProgressManager:
|
|
#implements(IProgressManager)
|
|
|
|
def __init__(self, finished_callback, blob_manager,
|
|
download_manager, delete_blob_after_finished=False):
|
|
self.finished_callback = finished_callback
|
|
self.blob_manager = blob_manager
|
|
self.delete_blob_after_finished = delete_blob_after_finished
|
|
self.download_manager = download_manager
|
|
self.provided_blob_nums = []
|
|
self.last_blob_outputted = -1
|
|
self.stopped = True
|
|
self._next_try_to_output_call = None
|
|
self.outputting_d = None
|
|
|
|
######### IProgressManager #########
|
|
|
|
def start(self):
|
|
|
|
from twisted.internet import reactor
|
|
|
|
self.stopped = False
|
|
self._next_try_to_output_call = reactor.callLater(0, self._try_to_output)
|
|
return defer.succeed(True)
|
|
|
|
def stop(self):
|
|
self.stopped = True
|
|
if self._next_try_to_output_call is not None and self._next_try_to_output_call.active():
|
|
self._next_try_to_output_call.cancel()
|
|
self._next_try_to_output_call = None
|
|
return self._stop_outputting()
|
|
|
|
def blob_downloaded(self, blob, blob_num):
|
|
if self.outputting_d is None:
|
|
self._output_loop()
|
|
|
|
######### internal #########
|
|
|
|
def _finished_outputting(self):
|
|
self.finished_callback(True)
|
|
|
|
def _try_to_output(self):
|
|
|
|
from twisted.internet import reactor
|
|
|
|
self._next_try_to_output_call = reactor.callLater(1, self._try_to_output)
|
|
if self.outputting_d is None:
|
|
self._output_loop()
|
|
|
|
def _output_loop(self):
|
|
pass
|
|
|
|
def _stop_outputting(self):
|
|
if self.outputting_d is not None:
|
|
return self.outputting_d
|
|
return defer.succeed(None)
|
|
|
|
def _finished_with_blob(self, blob_num):
|
|
log.debug("In _finished_with_blob, blob_num = %s", str(blob_num))
|
|
if self.delete_blob_after_finished is True:
|
|
log.debug("delete_blob_after_finished is True")
|
|
blobs = self.download_manager.blobs
|
|
if blob_num in blobs:
|
|
log.debug("Telling the blob manager, %s, to delete blob %s",
|
|
self.blob_manager, blobs[blob_num].blob_hash)
|
|
self.blob_manager.delete_blobs([blobs[blob_num].blob_hash])
|
|
else:
|
|
log.debug("Blob number %s was not in blobs", str(blob_num))
|
|
else:
|
|
log.debug("delete_blob_after_finished is False")
|
|
|
|
|
|
class FullStreamProgressManager(StreamProgressManager):
|
|
def __init__(self, finished_callback, blob_manager,
|
|
download_manager, delete_blob_after_finished=False):
|
|
super().__init__(finished_callback, blob_manager, download_manager,
|
|
delete_blob_after_finished)
|
|
self.outputting_d = None
|
|
|
|
######### IProgressManager #########
|
|
|
|
def _done(self, i, blobs):
|
|
"""Return true if `i` is a blob number we don't have"""
|
|
return (
|
|
i not in blobs or
|
|
(
|
|
not blobs[i].get_is_verified() and
|
|
i not in self.provided_blob_nums
|
|
)
|
|
)
|
|
|
|
def stream_position(self):
|
|
blobs = self.download_manager.blobs
|
|
if not blobs:
|
|
return 0
|
|
else:
|
|
for i in range(max(blobs.keys())):
|
|
if self._done(i, blobs):
|
|
return i
|
|
return max(blobs.keys()) + 1
|
|
|
|
def needed_blobs(self):
|
|
blobs = self.download_manager.blobs
|
|
return [
|
|
b for n, b in blobs.items()
|
|
if not b.get_is_verified() and not n in self.provided_blob_nums
|
|
]
|
|
|
|
######### internal #########
|
|
|
|
def _output_loop(self):
|
|
|
|
from twisted.internet import reactor
|
|
|
|
if self.stopped:
|
|
if self.outputting_d is not None:
|
|
self.outputting_d.callback(True)
|
|
self.outputting_d = None
|
|
return
|
|
|
|
if self.outputting_d is None:
|
|
self.outputting_d = defer.Deferred()
|
|
blobs = self.download_manager.blobs
|
|
|
|
def finished_outputting_blob():
|
|
self.last_blob_outputted += 1
|
|
|
|
def check_if_finished():
|
|
final_blob_num = self.download_manager.final_blob_num()
|
|
if final_blob_num is not None and final_blob_num == self.last_blob_outputted:
|
|
self._finished_outputting()
|
|
self.outputting_d.callback(True)
|
|
self.outputting_d = None
|
|
else:
|
|
reactor.callLater(0, self._output_loop)
|
|
|
|
current_blob_num = self.last_blob_outputted + 1
|
|
|
|
if current_blob_num in blobs and blobs[current_blob_num].get_is_verified():
|
|
log.debug("Outputting blob %s", str(self.last_blob_outputted + 1))
|
|
self.provided_blob_nums.append(self.last_blob_outputted + 1)
|
|
d = self.download_manager.handle_blob(self.last_blob_outputted + 1)
|
|
d.addCallback(lambda _: finished_outputting_blob())
|
|
d.addCallback(lambda _: self._finished_with_blob(current_blob_num))
|
|
d.addCallback(lambda _: check_if_finished())
|
|
|
|
def log_error(err):
|
|
log.warning("Error outputting blob %s: %s", blobs[current_blob_num].blob_hash,
|
|
err.getErrorMessage())
|
|
if self.outputting_d is not None and not self.outputting_d.called:
|
|
self.outputting_d.callback(True)
|
|
self.outputting_d = None
|
|
self.stop()
|
|
|
|
d.addErrback(log_error)
|
|
else:
|
|
self.outputting_d.callback(True)
|
|
self.outputting_d = None
|