2015-08-20 17:27:15 +02:00
|
|
|
import logging
|
|
|
|
import os
|
2018-02-12 19:43:36 +01:00
|
|
|
from sqlite3 import IntegrityError
|
2018-08-02 20:32:08 +02:00
|
|
|
from twisted.internet import threads, defer
|
2017-09-13 21:46:39 +02:00
|
|
|
from lbrynet.blob.blob_file import BlobFile
|
|
|
|
from lbrynet.blob.creator import BlobFileCreator
|
2015-08-20 17:27:15 +02:00
|
|
|
|
2015-09-08 21:42:56 +02:00
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
2017-08-10 19:49:43 +02:00
|
|
|
|
2018-02-20 19:33:59 +01:00
|
|
|
class DiskBlobManager(object):
|
2018-06-29 18:01:46 +02:00
|
|
|
def __init__(self, blob_dir, storage, node_datastore=None):
|
2017-08-02 18:11:41 +02:00
|
|
|
"""
|
2018-03-27 21:12:44 +02:00
|
|
|
This class stores blobs on the hard disk
|
|
|
|
|
2017-08-02 18:11:41 +02:00
|
|
|
blob_dir - directory where blobs are stored
|
2018-03-27 21:12:44 +02:00
|
|
|
storage - SQLiteStorage object
|
2017-08-02 18:11:41 +02:00
|
|
|
"""
|
2018-02-12 19:43:36 +01:00
|
|
|
self.storage = storage
|
2015-08-20 17:27:15 +02:00
|
|
|
self.blob_dir = blob_dir
|
2018-06-29 18:01:46 +02:00
|
|
|
self._node_datastore = node_datastore
|
2015-08-20 17:27:15 +02:00
|
|
|
self.blob_creator_type = BlobFileCreator
|
2016-12-14 23:37:17 +01:00
|
|
|
# TODO: consider using an LRU for blobs as there could potentially
|
|
|
|
# be thousands of blobs loaded up, many stale
|
2015-08-20 17:27:15 +02:00
|
|
|
self.blobs = {}
|
2018-01-31 02:16:25 +01:00
|
|
|
self.blob_hashes_to_delete = {} # {blob_hash: being_deleted (True/False)}
|
2015-08-20 17:27:15 +02:00
|
|
|
|
2018-06-29 18:01:46 +02:00
|
|
|
@defer.inlineCallbacks
|
2015-08-20 17:27:15 +02:00
|
|
|
def setup(self):
|
2018-06-29 18:01:46 +02:00
|
|
|
if self._node_datastore is not None:
|
|
|
|
raw_blob_hashes = yield self.storage.get_all_finished_blobs()
|
|
|
|
self._node_datastore.completed_blobs.update(raw_blob_hashes)
|
|
|
|
defer.returnValue(True)
|
2015-08-20 17:27:15 +02:00
|
|
|
|
|
|
|
def stop(self):
|
|
|
|
return defer.succeed(True)
|
|
|
|
|
2016-12-20 03:16:37 +01:00
|
|
|
def get_blob(self, blob_hash, length=None):
|
2016-11-30 21:20:45 +01:00
|
|
|
"""Return a blob identified by blob_hash, which may be a new blob or a
|
|
|
|
blob that is already on the hard disk
|
|
|
|
"""
|
2017-09-15 16:48:54 +02:00
|
|
|
if length is not None and not isinstance(length, int):
|
2017-12-16 02:25:20 +01:00
|
|
|
raise Exception("invalid length type: %s (%s)" % (length, str(type(length))))
|
2015-08-20 17:27:15 +02:00
|
|
|
if blob_hash in self.blobs:
|
|
|
|
return defer.succeed(self.blobs[blob_hash])
|
2016-12-20 03:16:37 +01:00
|
|
|
return self._make_new_blob(blob_hash, length)
|
2015-08-20 17:27:15 +02:00
|
|
|
|
|
|
|
def get_blob_creator(self):
|
2017-07-27 20:31:04 +02:00
|
|
|
return self.blob_creator_type(self.blob_dir)
|
2015-08-20 17:27:15 +02:00
|
|
|
|
2016-12-20 03:16:37 +01:00
|
|
|
def _make_new_blob(self, blob_hash, length=None):
|
2016-12-11 00:02:13 +01:00
|
|
|
log.debug('Making a new blob for %s', blob_hash)
|
2017-09-15 15:56:01 +02:00
|
|
|
blob = BlobFile(self.blob_dir, blob_hash, length)
|
2015-08-20 17:27:15 +02:00
|
|
|
self.blobs[blob_hash] = blob
|
2017-01-20 17:54:36 +01:00
|
|
|
return defer.succeed(blob)
|
2015-08-20 17:27:15 +02:00
|
|
|
|
2017-08-10 19:49:43 +02:00
|
|
|
@defer.inlineCallbacks
|
2018-03-27 23:35:31 +02:00
|
|
|
def blob_completed(self, blob, should_announce=False, next_announce_time=None):
|
2018-02-12 19:43:36 +01:00
|
|
|
yield self.storage.add_completed_blob(
|
|
|
|
blob.blob_hash, blob.length, next_announce_time, should_announce
|
|
|
|
)
|
2018-06-29 18:01:46 +02:00
|
|
|
if self._node_datastore is not None:
|
|
|
|
self._node_datastore.completed_blobs.add(blob.blob_hash.decode('hex'))
|
2015-08-20 17:27:15 +02:00
|
|
|
|
2017-01-20 17:54:36 +01:00
|
|
|
def completed_blobs(self, blobhashes_to_check):
|
|
|
|
return self._completed_blobs(blobhashes_to_check)
|
2015-08-20 17:27:15 +02:00
|
|
|
|
2017-10-05 19:59:27 +02:00
|
|
|
def count_should_announce_blobs(self):
|
2018-02-12 19:43:36 +01:00
|
|
|
return self.storage.count_should_announce_blobs()
|
2017-10-05 19:59:27 +02:00
|
|
|
|
2017-09-21 04:04:23 +02:00
|
|
|
def set_should_announce(self, blob_hash, should_announce):
|
2018-03-27 23:35:31 +02:00
|
|
|
now = self.storage.clock.seconds()
|
|
|
|
return self.storage.set_should_announce(blob_hash, now, should_announce)
|
2017-09-21 04:04:23 +02:00
|
|
|
|
|
|
|
def get_should_announce(self, blob_hash):
|
2018-02-12 19:43:36 +01:00
|
|
|
return self.storage.should_announce(blob_hash)
|
2017-09-21 04:04:23 +02:00
|
|
|
|
2017-08-02 18:11:41 +02:00
|
|
|
def creator_finished(self, blob_creator, should_announce):
|
2015-09-08 21:42:56 +02:00
|
|
|
log.debug("blob_creator.blob_hash: %s", blob_creator.blob_hash)
|
2017-09-15 15:56:15 +02:00
|
|
|
if blob_creator.blob_hash is None:
|
|
|
|
raise Exception("Blob hash is None")
|
|
|
|
if blob_creator.blob_hash in self.blobs:
|
|
|
|
raise Exception("Creator finished for blob that is already marked as completed")
|
|
|
|
if blob_creator.length is None:
|
|
|
|
raise Exception("Blob has a length of 0")
|
|
|
|
new_blob = BlobFile(self.blob_dir, blob_creator.blob_hash, blob_creator.length)
|
2015-08-20 17:27:15 +02:00
|
|
|
self.blobs[blob_creator.blob_hash] = new_blob
|
2018-03-27 21:12:44 +02:00
|
|
|
return self.blob_completed(new_blob, should_announce)
|
2015-08-20 17:27:15 +02:00
|
|
|
|
2016-08-26 06:32:33 +02:00
|
|
|
def get_all_verified_blobs(self):
|
|
|
|
d = self._get_all_verified_blob_hashes()
|
|
|
|
d.addCallback(self.completed_blobs)
|
|
|
|
return d
|
|
|
|
|
2017-06-16 19:16:19 +02:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def delete_blobs(self, blob_hashes):
|
|
|
|
bh_to_delete_from_db = []
|
|
|
|
for blob_hash in blob_hashes:
|
2018-08-09 17:26:57 +02:00
|
|
|
if not blob_hash:
|
|
|
|
continue
|
2018-06-29 18:01:46 +02:00
|
|
|
if self._node_datastore is not None:
|
|
|
|
try:
|
|
|
|
self._node_datastore.completed_blobs.remove(blob_hash.decode('hex'))
|
|
|
|
except KeyError:
|
|
|
|
pass
|
2017-06-16 19:16:19 +02:00
|
|
|
try:
|
|
|
|
blob = yield self.get_blob(blob_hash)
|
|
|
|
yield blob.delete()
|
|
|
|
bh_to_delete_from_db.append(blob_hash)
|
2017-11-06 03:53:51 +01:00
|
|
|
del self.blobs[blob_hash]
|
2017-06-16 19:16:19 +02:00
|
|
|
except Exception as e:
|
|
|
|
log.warning("Failed to delete blob file. Reason: %s", e)
|
2018-02-12 19:43:36 +01:00
|
|
|
try:
|
|
|
|
yield self.storage.delete_blobs_from_db(bh_to_delete_from_db)
|
|
|
|
except IntegrityError as err:
|
|
|
|
if err.message != "FOREIGN KEY constraint failed":
|
|
|
|
raise err
|
2017-10-05 19:59:27 +02:00
|
|
|
|
2017-01-20 17:54:36 +01:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _completed_blobs(self, blobhashes_to_check):
|
|
|
|
"""Returns of the blobhashes_to_check, which are valid"""
|
2017-02-14 20:18:42 +01:00
|
|
|
blobs = yield defer.DeferredList([self.get_blob(b) for b in blobhashes_to_check])
|
2017-01-20 17:54:36 +01:00
|
|
|
blob_hashes = [b.blob_hash for success, b in blobs if success and b.verified]
|
|
|
|
defer.returnValue(blob_hashes)
|
2015-09-04 22:22:02 +02:00
|
|
|
|
2017-06-16 19:13:41 +02:00
|
|
|
def _get_all_verified_blob_hashes(self):
|
2018-02-12 19:43:36 +01:00
|
|
|
d = self.storage.get_all_blob_hashes()
|
2015-09-04 22:22:02 +02:00
|
|
|
|
|
|
|
def get_verified_blobs(blobs):
|
|
|
|
verified_blobs = []
|
2018-02-12 19:43:36 +01:00
|
|
|
for blob_hash in blobs:
|
2015-09-04 22:22:02 +02:00
|
|
|
file_path = os.path.join(self.blob_dir, blob_hash)
|
|
|
|
if os.path.isfile(file_path):
|
2017-01-20 19:47:53 +01:00
|
|
|
verified_blobs.append(blob_hash)
|
2015-09-04 22:22:02 +02:00
|
|
|
return verified_blobs
|
|
|
|
|
|
|
|
d.addCallback(lambda blobs: threads.deferToThread(get_verified_blobs, blobs))
|
|
|
|
return d
|