summaryrefslogtreecommitdiff
path: root/src/leap/soledad/client/_db/blobs.py
diff options
context:
space:
mode:
authorVictor Shyba <victor1984@riseup.net>2017-09-13 13:49:54 -0300
committerVictor Shyba <victor1984@riseup.net>2017-09-13 13:49:54 -0300
commitc95f26dbb9315b94cf74747fa9c071b89331dd06 (patch)
tree5c6ccbdcbe8c2b591c3a1d7300a2338775b80fe6 /src/leap/soledad/client/_db/blobs.py
parent058d15265134db653987a6fff052cf81299bab51 (diff)
[refactor] remove dead code and improve naming
From code review. -- Related: #8945
Diffstat (limited to 'src/leap/soledad/client/_db/blobs.py')
-rw-r--r--src/leap/soledad/client/_db/blobs.py23
1 files changed, 2 insertions, 21 deletions
diff --git a/src/leap/soledad/client/_db/blobs.py b/src/leap/soledad/client/_db/blobs.py
index 5e61ad36..381787c5 100644
--- a/src/leap/soledad/client/_db/blobs.py
+++ b/src/leap/soledad/client/_db/blobs.py
@@ -72,20 +72,6 @@ class SyncStatus:
class ConnectionPool(adbapi.ConnectionPool):
- def blocking_create_schema(self, create_schema_function):
- """
- Grabs a connection and executes schema creation from current thread,
- disconnecting right after it. This ensures that schema creation blocks
- everything and doesn't run concurrently.
-
- :param create_schema_function: A function that receives a connection
- and executes schema criation and/or migrations.
- :type create_schema_function: function
- """
- conn = self.connect()
- create_schema_function(conn)
- self.disconnect(conn)
-
def insertAndGetLastRowid(self, *args, **kwargs):
"""
Execute an SQL query and return the last rowid.
@@ -124,17 +110,12 @@ class ConnectionPool(adbapi.ConnectionPool):
"""
return self.runInteraction(self._blob, table, column, irow, flags)
- def write(self, table, column, irow, blob_fd):
+ def write_blob(self, table, column, irow, blob_fd):
return self.runInteraction(self._write_blob, table, column, irow,
blob_fd)
def _write_blob(self, trans, table, column, irow, blob_fd):
blob_fd.seek(0)
- # XXX I have to copy the buffer here so that I'm able to
- # return a non-closed file to the caller (blobmanager.get)
- # FIXME should remove this duplication!
- # have a look at how treq does cope with closing the handle
- # for uploading a file
with trans._connection.blob(table, column, irow, 1) as handle:
data = blob_fd.read(2**12)
while data:
@@ -491,7 +472,7 @@ class SQLiteBlobBackend(object):
insert += ' VALUES (?, ?, zeroblob(?), ?)'
values = (blob_id, namespace, size, status)
irow = yield self.dbpool.insertAndGetLastRowid(insert, values)
- yield self.dbpool.write('blobs', 'payload', irow, blob_fd)
+ yield self.dbpool.write_blob('blobs', 'payload', irow, blob_fd)
logger.info("Finished saving blob in local database.")
@defer.inlineCallbacks