lbry-sdk/torba/basedatabase.py

426 lines
15 KiB
Python
Raw Normal View History

2018-06-08 05:47:46 +02:00
import logging
from typing import Tuple, List, Sequence
2018-06-12 16:02:04 +02:00
2018-06-08 05:47:46 +02:00
import sqlite3
from twisted.internet import defer
from twisted.enterprise import adbapi
from torba.hash import TXRefImmutable
2018-09-22 04:18:30 +02:00
from torba.basetransaction import TXORefResolvable
2018-06-12 16:02:04 +02:00
2018-06-08 05:47:46 +02:00
log = logging.getLogger(__name__)
2018-08-04 03:26:53 +02:00
def constraints_to_sql(constraints, joiner=' AND ', prepend_sql=' AND ', prepend_key=''):
if not constraints:
return ''
extras = []
for key in list(constraints):
col, op = key, '='
if key.endswith('__not'):
col, op = key[:-len('__not')], '!='
elif key.endswith('__lt'):
col, op = key[:-len('__lt')], '<'
elif key.endswith('__lte'):
col, op = key[:-len('__lte')], '<='
elif key.endswith('__gt'):
col, op = key[:-len('__gt')], '>'
elif key.endswith('__like'):
col, op = key[:-len('__like')], 'LIKE'
elif key.endswith('__any'):
subconstraints = constraints.pop(key)
extras.append('({})'.format(
constraints_to_sql(subconstraints, ' OR ', '', key+'_')
))
for subkey, val in subconstraints.items():
constraints['{}_{}'.format(key, subkey)] = val
continue
extras.append('{} {} :{}'.format(col, op, prepend_key+key))
return prepend_sql + joiner.join(extras) if extras else ''
class SQLiteMixin:
2018-06-11 15:33:32 +02:00
CREATE_TABLES_QUERY: Sequence[str] = ()
2018-06-11 15:33:32 +02:00
def __init__(self, path):
self._db_path = path
self.db: adbapi.ConnectionPool = None
2018-06-11 15:33:32 +02:00
def open(self):
2018-06-11 15:33:32 +02:00
log.info("connecting to database: %s", self._db_path)
self.db = adbapi.ConnectionPool(
'sqlite3', self._db_path, cp_min=1, cp_max=1, check_same_thread=False
)
return self.db.runInteraction(
lambda t: t.executescript(self.CREATE_TABLES_QUERY)
)
def close(self):
2018-06-11 15:33:32 +02:00
self.db.close()
return defer.succeed(True)
@staticmethod
def _insert_sql(table: str, data: dict) -> Tuple[str, List]:
2018-06-11 15:33:32 +02:00
columns, values = [], []
for column, value in data.items():
columns.append(column)
values.append(value)
2018-06-25 15:54:35 +02:00
sql = "INSERT INTO {} ({}) VALUES ({})".format(
2018-06-11 15:33:32 +02:00
table, ', '.join(columns), ', '.join(['?'] * len(values))
)
return sql, values
@staticmethod
def _update_sql(table: str, data: dict, where: str, constraints: list) -> Tuple[str, list]:
2018-06-25 15:54:35 +02:00
columns, values = [], []
for column, value in data.items():
columns.append("{} = ?".format(column))
values.append(value)
values.extend(constraints)
sql = "UPDATE {} SET {} WHERE {}".format(
table, ', '.join(columns), where
)
return sql, values
2018-06-11 15:33:32 +02:00
@defer.inlineCallbacks
def query_one_value(self, query, params=None, default=None):
2018-07-17 05:58:29 +02:00
result = yield self.run_query(query, params)
2018-06-11 15:33:32 +02:00
if result:
2018-08-30 17:50:11 +02:00
return result[0][0] or default
2018-06-11 15:33:32 +02:00
else:
2018-08-30 17:50:11 +02:00
return default
2018-06-11 15:33:32 +02:00
@defer.inlineCallbacks
def query_dict_value_list(self, query, fields, params=None):
2018-07-17 05:58:29 +02:00
result = yield self.run_query(query.format(', '.join(fields)), params)
2018-06-11 15:33:32 +02:00
if result:
2018-08-30 17:50:11 +02:00
return [dict(zip(fields, r)) for r in result]
2018-06-11 15:33:32 +02:00
else:
2018-08-30 17:50:11 +02:00
return []
2018-06-11 15:33:32 +02:00
@defer.inlineCallbacks
def query_dict_value(self, query, fields, params=None, default=None):
result = yield self.query_dict_value_list(query, fields, params)
if result:
2018-08-30 17:50:11 +02:00
return result[0]
2018-06-11 15:33:32 +02:00
else:
2018-08-30 17:50:11 +02:00
return default
2018-06-11 15:33:32 +02:00
2018-07-17 05:58:29 +02:00
@staticmethod
def execute(t, sql, values):
log.debug(sql)
log.debug(values)
return t.execute(sql, values)
def run_operation(self, sql, values):
log.debug(sql)
log.debug(values)
return self.db.runOperation(sql, values)
def run_query(self, sql, values):
log.debug(sql)
log.debug(values)
return self.db.runQuery(sql, values)
2018-06-11 15:33:32 +02:00
class BaseDatabase(SQLiteMixin):
2018-06-08 05:47:46 +02:00
2018-06-11 15:33:32 +02:00
CREATE_PUBKEY_ADDRESS_TABLE = """
create table if not exists pubkey_address (
address text primary key,
account text not null,
2018-06-11 15:33:32 +02:00
chain integer not null,
position integer not null,
2018-07-15 06:40:46 +02:00
pubkey blob not null,
2018-06-11 15:33:32 +02:00
history text,
2018-06-14 02:57:57 +02:00
used_times integer not null default 0
2018-06-08 05:47:46 +02:00
);
"""
CREATE_TX_TABLE = """
create table if not exists tx (
txid text primary key,
raw blob not null,
height integer not null,
is_verified boolean not null default 0
);
"""
2018-06-08 05:47:46 +02:00
CREATE_TXO_TABLE = """
create table if not exists txo (
txid text references tx,
txoid text primary key,
address text references pubkey_address,
2018-06-11 15:33:32 +02:00
position integer not null,
2018-06-08 05:47:46 +02:00
amount integer not null,
script blob not null,
is_reserved boolean not null default 0
2018-06-08 05:47:46 +02:00
);
"""
CREATE_TXI_TABLE = """
create table if not exists txi (
txid text references tx,
txoid text references txo,
address text references pubkey_address
2018-06-08 05:47:46 +02:00
);
"""
CREATE_TABLES_QUERY = (
CREATE_TX_TABLE +
2018-06-11 15:33:32 +02:00
CREATE_PUBKEY_ADDRESS_TABLE +
2018-06-08 05:47:46 +02:00
CREATE_TXO_TABLE +
CREATE_TXI_TABLE
)
@staticmethod
def txo_to_row(tx, address, txo):
return {
'txid': tx.id,
'txoid': txo.id,
'address': address,
'position': txo.position,
'amount': txo.amount,
'script': sqlite3.Binary(txo.script.source)
}
def save_transaction_io(self, save_tx, tx, height, is_verified, address, txhash, history):
2018-06-25 15:54:35 +02:00
2018-06-11 15:33:32 +02:00
def _steps(t):
2018-06-25 15:54:35 +02:00
if save_tx == 'insert':
2018-07-17 05:58:29 +02:00
self.execute(t, *self._insert_sql('tx', {
'txid': tx.id,
2018-06-11 15:33:32 +02:00
'raw': sqlite3.Binary(tx.raw),
'height': height,
'is_verified': is_verified
}))
2018-06-25 15:54:35 +02:00
elif save_tx == 'update':
2018-07-17 05:58:29 +02:00
self.execute(t, *self._update_sql("tx", {
'height': height, 'is_verified': is_verified
}, 'txid = ?', (tx.id,)))
2018-06-14 02:57:57 +02:00
existing_txos = [r[0] for r in self.execute(
2018-07-17 05:58:29 +02:00
t, "SELECT position FROM txo WHERE txid = ?", (tx.id,)
).fetchall()]
2018-06-14 02:57:57 +02:00
2018-06-12 16:02:04 +02:00
for txo in tx.outputs:
if txo.position in existing_txos:
2018-06-14 02:57:57 +02:00
continue
if txo.script.is_pay_pubkey_hash and txo.script.values['pubkey_hash'] == txhash:
2018-07-17 05:58:29 +02:00
self.execute(t, *self._insert_sql("txo", self.txo_to_row(tx, address, txo)))
2018-06-12 16:02:04 +02:00
elif txo.script.is_pay_script_hash:
# TODO: implement script hash payments
2018-06-25 15:54:35 +02:00
print('Database.save_transaction_io: pay script hash is not implemented!')
2018-06-12 16:02:04 +02:00
# lookup the address associated with each TXI (via its TXO)
txoids = [txi.txo_ref.id for txi in tx.inputs]
txoid_place_holders = ','.join(['?']*len(txoids))
txoid_to_address = {r[0]: r[1] for r in self.execute(
t, "SELECT txoid, address FROM txo WHERE txoid in ({})".format(txoid_place_holders), txoids
).fetchall()}
# list of TXIs that have already been added
existing_txis = [r[0] for r in self.execute(
t, "SELECT txoid FROM txi WHERE txid = ?", (tx.id,)
).fetchall()]
2018-06-14 02:57:57 +02:00
2018-06-12 16:02:04 +02:00
for txi in tx.inputs:
txoid = txi.txo_ref.id
new_txi = txoid not in existing_txis
address_matches = txoid_to_address.get(txoid) == address
if new_txi and address_matches:
2018-07-17 05:58:29 +02:00
self.execute(t, *self._insert_sql("txi", {
'txid': tx.id,
'txoid': txoid,
'address': address,
2018-06-12 16:02:04 +02:00
}))
2018-06-14 02:57:57 +02:00
2018-06-27 00:31:42 +02:00
self._set_address_history(t, address, history)
2018-06-25 15:54:35 +02:00
2018-06-11 15:33:32 +02:00
return self.db.runInteraction(_steps)
2018-06-08 05:47:46 +02:00
def reserve_outputs(self, txos, is_reserved=True):
txoids = [txo.id for txo in txos]
2018-07-17 05:58:29 +02:00
return self.run_operation(
"UPDATE txo SET is_reserved = ? WHERE txoid IN ({})".format(
', '.join(['?']*len(txoids))
), [is_reserved]+txoids
)
def release_outputs(self, txos):
return self.reserve_outputs(txos, is_reserved=False)
2018-08-17 03:46:02 +02:00
def rewind_blockchain(self, above_height): # pylint: disable=no-self-use
2018-08-17 03:41:22 +02:00
# TODO:
# 1. delete transactions above_height
# 2. update address histories removing deleted TXs
return defer.succeed(True)
2018-06-25 15:54:35 +02:00
@defer.inlineCallbacks
def get_transaction(self, txid):
2018-07-17 05:58:29 +02:00
result = yield self.run_query(
"SELECT raw, height, is_verified FROM tx WHERE txid = ?", (txid,)
2018-06-25 15:54:35 +02:00
)
if result:
2018-08-30 17:50:11 +02:00
return result[0]
2018-06-25 15:54:35 +02:00
else:
2018-08-30 17:50:11 +02:00
return None, None, False
2018-06-25 15:54:35 +02:00
2018-09-21 15:47:31 +02:00
@defer.inlineCallbacks
2018-09-22 04:18:30 +02:00
def get_transactions(self, account, offset=0, limit=100):
offset, limit = min(offset, 0), max(limit, 100)
2018-09-22 04:26:07 +02:00
tx_rows = yield self.run_query(
2018-09-21 15:47:31 +02:00
"""
2018-09-22 04:18:30 +02:00
SELECT txid, raw, height FROM tx WHERE txid IN (
SELECT txo.txid FROM txo
2018-09-21 15:47:31 +02:00
JOIN pubkey_address USING (address)
WHERE pubkey_address.account = :account
UNION
2018-09-22 04:18:30 +02:00
SELECT txo.txid FROM txi
2018-09-21 15:47:31 +02:00
JOIN txo USING (txoid)
JOIN pubkey_address USING (address)
WHERE pubkey_address.account = :account
2018-09-22 04:18:30 +02:00
) ORDER BY height DESC LIMIT :offset, :limit
""", {'account': account.public_key.address, 'offset': offset, 'limit': limit}
2018-09-21 15:47:31 +02:00
)
2018-09-22 04:18:30 +02:00
txids, txs = [], []
2018-09-22 04:26:07 +02:00
for row in tx_rows:
txids.append(row[0])
txs.append(account.ledger.transaction_class(raw=row[1], height=row[2]))
2018-09-22 04:18:30 +02:00
2018-09-22 04:26:07 +02:00
txo_rows = yield self.run_query(
2018-09-22 04:18:30 +02:00
"""
SELECT txoid, pubkey_address.chain
FROM txo JOIN pubkey_address USING (address)
WHERE txid IN ({})
""".format(', '.join(['?']*len(txids))), txids
)
2018-09-22 04:26:07 +02:00
txos = dict(txo_rows)
2018-09-22 04:18:30 +02:00
2018-09-22 04:26:07 +02:00
txi_rows = yield self.run_query(
2018-09-22 04:18:30 +02:00
"""
SELECT txoid, txo.amount, txo.script, txo.txid, txo.position
FROM txi JOIN txo USING (txoid)
WHERE txi.txid IN ({})
""".format(', '.join(['?']*len(txids))), txids
)
txis = {}
output_class = account.ledger.transaction_class.output_class
2018-09-22 04:26:07 +02:00
for row in txi_rows:
txis[row[0]] = output_class(
row[1],
output_class.script_class(row[2]),
TXRefImmutable.from_id(row[3]),
position=row[4]
2018-09-22 04:18:30 +02:00
)
for tx in txs:
for txi in tx.inputs:
if txi.txo_ref.id in txis:
txi.txo_ref = TXORefResolvable(txis[txi.txo_ref.id])
for txo in tx.outputs:
if txo.id in txos:
txo.is_change = txos[txo.id] == 1
return txs
2018-09-21 15:47:31 +02:00
2018-07-17 05:58:29 +02:00
def get_balance_for_account(self, account, include_reserved=False, **constraints):
if not include_reserved:
2018-08-04 03:26:53 +02:00
constraints['is_reserved'] = 0
values = {'account': account.public_key.address}
values.update(constraints)
2018-07-15 04:16:39 +02:00
return self.query_one_value(
2018-06-14 02:57:57 +02:00
"""
SELECT SUM(amount)
FROM txo
JOIN tx ON tx.txid=txo.txid
JOIN pubkey_address ON pubkey_address.address=txo.address
WHERE
pubkey_address.account=:account AND
txoid NOT IN (SELECT txoid FROM txi)
2018-08-04 03:26:53 +02:00
"""+constraints_to_sql(constraints), values, 0
2018-06-08 05:47:46 +02:00
)
@defer.inlineCallbacks
def get_utxos_for_account(self, account, **constraints):
2018-08-30 17:50:11 +02:00
constraints['account'] = account.public_key.address
utxos = yield self.run_query(
"""
SELECT amount, script, txid, txo.position
FROM txo JOIN pubkey_address ON pubkey_address.address=txo.address
WHERE account=:account AND txo.is_reserved=0 AND txoid NOT IN (SELECT txoid FROM txi)
"""+constraints_to_sql(constraints), constraints
)
output_class = account.ledger.transaction_class.output_class
return [
output_class(
values[0],
output_class.script_class(values[1]),
TXRefImmutable.from_id(values[2]),
position=values[3]
) for values in utxos
]
2018-06-08 05:47:46 +02:00
2018-06-11 15:33:32 +02:00
def add_keys(self, account, chain, keys):
sql = (
"insert into pubkey_address "
"(address, account, chain, position, pubkey) "
"values "
) + ', '.join(['(?, ?, ?, ?, ?)'] * len(keys))
values = []
for position, pubkey in keys:
values.append(pubkey.address)
values.append(account.public_key.address)
2018-06-11 15:33:32 +02:00
values.append(chain)
values.append(position)
2018-07-15 06:40:46 +02:00
values.append(sqlite3.Binary(pubkey.pubkey_bytes))
2018-07-17 05:58:29 +02:00
return self.run_operation(sql, values)
2018-06-11 15:33:32 +02:00
2018-07-17 05:58:29 +02:00
@classmethod
def _set_address_history(cls, t, address, history):
cls.execute(
t, "UPDATE pubkey_address SET history = ?, used_times = ? WHERE address = ?",
(history, history.count(':')//2, address)
2018-06-27 00:31:42 +02:00
)
def set_address_history(self, address, history):
return self.db.runInteraction(lambda t: self._set_address_history(t, address, history))
def get_addresses(self, account, chain, limit=None, max_used_times=None, order_by=None):
columns = ['account', 'chain', 'position', 'address', 'used_times']
sql = ["SELECT {} FROM pubkey_address"]
where = []
params = {}
if account is not None:
params["account"] = account.public_key.address
where.append("account = :account")
columns.remove("account")
if chain is not None:
params["chain"] = chain
where.append("chain = :chain")
columns.remove("chain")
if max_used_times is not None:
params["used_times"] = max_used_times
where.append("used_times <= :used_times")
if where:
sql.append("WHERE")
sql.append(" AND ".join(where))
if order_by:
sql.append("ORDER BY {}".format(order_by))
if limit is not None:
sql.append("LIMIT {}".format(limit))
2018-06-11 15:33:32 +02:00
return self.query_dict_value_list(" ".join(sql), columns, params)
2018-06-11 15:33:32 +02:00
2018-06-12 16:02:04 +02:00
def get_address(self, address):
return self.query_dict_value(
"SELECT {} FROM pubkey_address WHERE address = :address",
2018-06-12 16:02:04 +02:00
('address', 'account', 'chain', 'position', 'pubkey', 'history', 'used_times'),
{'address': address}
2018-06-08 05:47:46 +02:00
)