166 lines
5.0 KiB
Python
166 lines
5.0 KiB
Python
# standard imports
|
|
import os
|
|
import sys
|
|
import logging
|
|
import time
|
|
import argparse
|
|
import sys
|
|
import re
|
|
import datetime
|
|
|
|
# third-party imports
|
|
import confini
|
|
import celery
|
|
from cic_eth_registry import CICRegistry
|
|
from chainlib.chain import ChainSpec
|
|
from chainlib.eth.tx import unpack
|
|
from chainlib.connection import RPCConnection
|
|
from chainsyncer.error import SyncDone
|
|
from hexathon import strip_0x
|
|
from chainqueue.db.enum import (
|
|
StatusEnum,
|
|
StatusBits,
|
|
)
|
|
from chainqueue.error import NotLocalTxError
|
|
from chainqueue.state import set_reserved
|
|
|
|
# local imports
|
|
import cic_eth
|
|
from cic_eth.db import SessionBase
|
|
from cic_eth.db.enum import LockEnum
|
|
from cic_eth.db import dsn_from_config
|
|
from cic_eth.queue.query import get_upcoming_tx
|
|
from cic_eth.admin.ctrl import lock_send
|
|
from cic_eth.eth.tx import send as task_tx_send
|
|
from cic_eth.error import (
|
|
PermanentTxError,
|
|
TemporaryTxError,
|
|
)
|
|
|
|
logging.basicConfig(level=logging.WARNING)
|
|
logg = logging.getLogger()
|
|
|
|
|
|
config_dir = os.path.join('/usr/local/etc/cic-eth')
|
|
|
|
argparser = argparse.ArgumentParser(description='daemon that monitors transactions in new blocks')
|
|
argparser.add_argument('-p', '--provider', default='http://localhost:8545', dest='p', type=str, help='rpc provider')
|
|
argparser.add_argument('-c', type=str, default=config_dir, help='config root to use')
|
|
argparser.add_argument('-i', '--chain-spec', dest='i', type=str, help='chain spec')
|
|
argparser.add_argument('--env-prefix', default=os.environ.get('CONFINI_ENV_PREFIX'), dest='env_prefix', type=str, help='environment prefix for variables to overwrite configuration')
|
|
argparser.add_argument('-q', type=str, default='cic-eth', help='celery queue to submit transaction tasks to')
|
|
argparser.add_argument('-v', help='be verbose', action='store_true')
|
|
argparser.add_argument('-vv', help='be more verbose', action='store_true')
|
|
args = argparser.parse_args(sys.argv[1:])
|
|
|
|
if args.v == True:
|
|
logging.getLogger().setLevel(logging.INFO)
|
|
elif args.vv == True:
|
|
logging.getLogger().setLevel(logging.DEBUG)
|
|
|
|
config_dir = os.path.join(args.c)
|
|
os.makedirs(config_dir, 0o777, True)
|
|
config = confini.Config(config_dir, args.env_prefix)
|
|
config.process()
|
|
# override args
|
|
args_override = {
|
|
'CIC_CHAIN_SPEC': getattr(args, 'i'),
|
|
'ETH_PROVIDER': getattr(args, 'p'),
|
|
}
|
|
config.dict_override(args_override, 'cli flag')
|
|
config.censor('PASSWORD', 'DATABASE')
|
|
config.censor('PASSWORD', 'SSL')
|
|
logg.debug('config loaded from {}:\n{}'.format(config_dir, config))
|
|
|
|
app = celery.Celery(backend=config.get('CELERY_RESULT_URL'), broker=config.get('CELERY_BROKER_URL'))
|
|
|
|
queue = args.q
|
|
|
|
dsn = dsn_from_config(config)
|
|
SessionBase.connect(dsn, debug=config.true('DATABASE_DEBUG'))
|
|
|
|
chain_spec = ChainSpec.from_chain_str(config.get('CIC_CHAIN_SPEC'))
|
|
|
|
RPCConnection.register_location(config.get('ETH_PROVIDER'), chain_spec, tag='default')
|
|
|
|
run = True
|
|
|
|
class DispatchSyncer:
|
|
|
|
yield_delay = 0.0005
|
|
|
|
def __init__(self, chain_spec):
|
|
self.chain_spec = chain_spec
|
|
|
|
|
|
def chain(self):
|
|
return self.chain_spec
|
|
|
|
|
|
def process(self, w3, txs):
|
|
c = len(txs.keys())
|
|
logg.debug('processing {} txs {}'.format(c, list(txs.keys())))
|
|
chain_str = str(self.chain_spec)
|
|
session = SessionBase.create_session()
|
|
for k in txs.keys():
|
|
tx_raw = txs[k]
|
|
tx_raw_bytes = bytes.fromhex(strip_0x(tx_raw))
|
|
tx = unpack(tx_raw_bytes, self.chain_spec)
|
|
|
|
try:
|
|
set_reserved(self.chain_spec, tx['hash'], session=session)
|
|
except NotLocalTxError as e:
|
|
logg.warning('dispatcher was triggered with non-local tx {}'.format(tx['hash']))
|
|
continue
|
|
|
|
s_check = celery.signature(
|
|
'cic_eth.admin.ctrl.check_lock',
|
|
[
|
|
[tx_raw],
|
|
self.chain_spec.asdict(),
|
|
LockEnum.QUEUE,
|
|
tx['from'],
|
|
],
|
|
queue=queue,
|
|
)
|
|
s_send = celery.signature(
|
|
'cic_eth.eth.tx.send',
|
|
[
|
|
self.chain_spec.asdict(),
|
|
],
|
|
queue=queue,
|
|
)
|
|
s_check.link(s_send)
|
|
t = s_check.apply_async()
|
|
logg.info('processed {}'.format(k))
|
|
|
|
|
|
def loop(self, w3, interval):
|
|
while run:
|
|
txs = {}
|
|
typ = StatusBits.QUEUED
|
|
utxs = get_upcoming_tx(self.chain_spec, typ)
|
|
for k in utxs.keys():
|
|
txs[k] = utxs[k]
|
|
self.process(w3, txs)
|
|
|
|
if len(utxs) > 0:
|
|
time.sleep(self.yield_delay)
|
|
else:
|
|
time.sleep(interval)
|
|
|
|
|
|
def main():
|
|
syncer = DispatchSyncer(chain_spec)
|
|
conn = RPCConnection.connect(chain_spec, 'default')
|
|
try:
|
|
syncer.loop(conn, float(config.get('DISPATCHER_LOOP_INTERVAL')))
|
|
except SyncDone as e:
|
|
sys.stderr.write("dispatcher done at block {}\n".format(e))
|
|
|
|
sys.exit(0)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|