2021-04-02 15:20:05 +02:00
|
|
|
|
# standard imports
|
|
|
|
|
import os
|
|
|
|
|
import sys
|
|
|
|
|
import logging
|
|
|
|
|
import time
|
|
|
|
|
import argparse
|
|
|
|
|
import sys
|
|
|
|
|
import re
|
|
|
|
|
|
2021-05-01 15:20:14 +02:00
|
|
|
|
# external imports
|
|
|
|
|
import sqlalchemy
|
2021-04-02 15:20:05 +02:00
|
|
|
|
from cic_eth_registry import CICRegistry
|
|
|
|
|
from cic_eth_registry.error import UnknownContractError
|
|
|
|
|
from chainlib.chain import ChainSpec
|
|
|
|
|
from chainlib.eth.constant import ZERO_ADDRESS
|
|
|
|
|
from chainlib.connection import RPCConnection
|
|
|
|
|
from chainlib.eth.block import (
|
|
|
|
|
block_latest,
|
|
|
|
|
)
|
|
|
|
|
from hexathon import (
|
|
|
|
|
strip_0x,
|
|
|
|
|
)
|
2021-04-15 18:04:47 +02:00
|
|
|
|
from chainsyncer.backend.sql import SQLBackend
|
2021-06-30 16:44:17 +02:00
|
|
|
|
from chainsyncer.driver.head import HeadSyncer
|
|
|
|
|
from chainsyncer.driver.history import HistorySyncer
|
2021-04-02 15:20:05 +02:00
|
|
|
|
from chainsyncer.db.models.base import SessionBase
|
|
|
|
|
|
|
|
|
|
# local imports
|
2021-08-17 08:46:51 +02:00
|
|
|
|
import cic_cache.cli
|
2021-05-01 15:20:14 +02:00
|
|
|
|
from cic_cache.db import (
|
|
|
|
|
dsn_from_config,
|
|
|
|
|
add_tag,
|
|
|
|
|
)
|
2021-04-02 15:20:05 +02:00
|
|
|
|
from cic_cache.runnable.daemons.filters import (
|
|
|
|
|
ERC20TransferFilter,
|
2021-05-05 18:25:21 +02:00
|
|
|
|
FaucetFilter,
|
2021-04-02 15:20:05 +02:00
|
|
|
|
)
|
|
|
|
|
|
2021-08-17 08:46:51 +02:00
|
|
|
|
logging.basicConfig(level=logging.WARNING)
|
|
|
|
|
logg = logging.getLogger()
|
2021-04-02 15:20:05 +02:00
|
|
|
|
|
2021-08-17 08:46:51 +02:00
|
|
|
|
# process args
|
2021-10-20 17:02:36 +02:00
|
|
|
|
arg_flags = cic_cache.cli.argflag_std_base
|
2021-08-17 08:46:51 +02:00
|
|
|
|
local_arg_flags = cic_cache.cli.argflag_local_sync
|
|
|
|
|
argparser = cic_cache.cli.ArgumentParser(arg_flags)
|
|
|
|
|
argparser.process_local_flags(local_arg_flags)
|
|
|
|
|
args = argparser.parse_args()
|
2021-05-13 18:37:44 +02:00
|
|
|
|
|
2021-08-17 08:46:51 +02:00
|
|
|
|
# process config
|
|
|
|
|
config = cic_cache.cli.Config.from_args(args, arg_flags, local_arg_flags)
|
2021-05-13 18:37:44 +02:00
|
|
|
|
|
2021-08-17 08:46:51 +02:00
|
|
|
|
# connect to database
|
2022-01-04 17:01:01 +01:00
|
|
|
|
dsn = dsn_from_config(config, 'cic_cache')
|
2021-04-02 15:20:05 +02:00
|
|
|
|
SessionBase.connect(dsn, debug=config.true('DATABASE_DEBUG'))
|
|
|
|
|
|
2021-08-17 08:46:51 +02:00
|
|
|
|
# set up rpc
|
|
|
|
|
rpc = cic_cache.cli.RPC.from_config(config)
|
|
|
|
|
conn = rpc.get_default()
|
2021-04-02 15:20:05 +02:00
|
|
|
|
|
2021-08-17 08:46:51 +02:00
|
|
|
|
# set up chain provisions
|
|
|
|
|
chain_spec = ChainSpec.from_chain_str(config.get('CHAIN_SPEC'))
|
|
|
|
|
registry = None
|
|
|
|
|
try:
|
|
|
|
|
registry = cic_cache.cli.connect_registry(conn, chain_spec, config.get('CIC_REGISTRY_ADDRESS'))
|
|
|
|
|
except UnknownContractError as e:
|
|
|
|
|
logg.exception('Registry contract connection failed for {}: {}'.format(config.get('CIC_REGISTRY_ADDRESS'), e))
|
|
|
|
|
sys.exit(1)
|
|
|
|
|
logg.info('connected contract registry {}'.format(config.get('CIC_REGISTRY_ADDRESS')))
|
2021-04-02 15:20:05 +02:00
|
|
|
|
|
|
|
|
|
|
2021-05-01 15:20:14 +02:00
|
|
|
|
def register_filter_tags(filters, session):
|
|
|
|
|
for f in filters:
|
|
|
|
|
tag = f.tag()
|
|
|
|
|
try:
|
|
|
|
|
add_tag(session, tag[0], domain=tag[1])
|
|
|
|
|
session.commit()
|
|
|
|
|
logg.info('added tag name "{}" domain "{}"'.format(tag[0], tag[1]))
|
|
|
|
|
except sqlalchemy.exc.IntegrityError:
|
2021-05-05 18:25:21 +02:00
|
|
|
|
session.rollback()
|
2021-05-01 15:20:14 +02:00
|
|
|
|
logg.debug('already have tag name "{}" domain "{}"'.format(tag[0], tag[1]))
|
|
|
|
|
|
|
|
|
|
|
2021-04-02 15:20:05 +02:00
|
|
|
|
def main():
|
|
|
|
|
# Connect to blockchain with chainlib
|
|
|
|
|
rpc = RPCConnection.connect(chain_spec, 'default')
|
|
|
|
|
|
|
|
|
|
o = block_latest()
|
|
|
|
|
r = rpc.do(o)
|
|
|
|
|
block_offset = int(strip_0x(r), 16) + 1
|
|
|
|
|
|
2021-05-13 18:37:44 +02:00
|
|
|
|
logg.debug('current block height {}'.format(block_offset))
|
2021-04-02 15:20:05 +02:00
|
|
|
|
|
|
|
|
|
syncers = []
|
|
|
|
|
|
2021-04-15 18:04:47 +02:00
|
|
|
|
syncer_backends = SQLBackend.resume(chain_spec, block_offset)
|
2021-04-02 15:20:05 +02:00
|
|
|
|
|
|
|
|
|
if len(syncer_backends) == 0:
|
2021-12-22 19:24:05 +01:00
|
|
|
|
initial_block_start = int(config.get('SYNCER_OFFSET'))
|
|
|
|
|
initial_block_offset = int(block_offset)
|
2021-08-17 08:46:51 +02:00
|
|
|
|
if config.get('SYNCER_NO_HISTORY'):
|
2021-12-22 19:24:05 +01:00
|
|
|
|
initial_block_start = initial_block_offset
|
2021-05-13 18:37:44 +02:00
|
|
|
|
initial_block_offset += 1
|
|
|
|
|
syncer_backends.append(SQLBackend.initial(chain_spec, initial_block_offset, start_block_height=initial_block_start))
|
|
|
|
|
logg.info('found no backends to resume, adding initial sync from history start {} end {}'.format(initial_block_start, initial_block_offset))
|
2021-04-02 15:20:05 +02:00
|
|
|
|
else:
|
|
|
|
|
for syncer_backend in syncer_backends:
|
|
|
|
|
logg.info('resuming sync session {}'.format(syncer_backend))
|
|
|
|
|
|
2021-04-13 15:31:40 +02:00
|
|
|
|
for syncer_backend in syncer_backends:
|
2021-08-17 08:46:51 +02:00
|
|
|
|
syncers.append(HistorySyncer(syncer_backend, cic_cache.cli.chain_interface))
|
2021-04-02 15:20:05 +02:00
|
|
|
|
|
2021-04-15 18:04:47 +02:00
|
|
|
|
syncer_backend = SQLBackend.live(chain_spec, block_offset+1)
|
2021-08-17 08:46:51 +02:00
|
|
|
|
syncers.append(HeadSyncer(syncer_backend, cic_cache.cli.chain_interface))
|
2021-04-02 15:20:05 +02:00
|
|
|
|
|
|
|
|
|
trusted_addresses_src = config.get('CIC_TRUST_ADDRESS')
|
|
|
|
|
if trusted_addresses_src == None:
|
|
|
|
|
logg.critical('At least one trusted address must be declared in CIC_TRUST_ADDRESS')
|
|
|
|
|
sys.exit(1)
|
|
|
|
|
trusted_addresses = trusted_addresses_src.split(',')
|
|
|
|
|
for address in trusted_addresses:
|
|
|
|
|
logg.info('using trusted address {}'.format(address))
|
|
|
|
|
|
|
|
|
|
erc20_transfer_filter = ERC20TransferFilter(chain_spec)
|
2021-05-05 18:25:21 +02:00
|
|
|
|
faucet_filter = FaucetFilter(chain_spec)
|
2021-04-02 15:20:05 +02:00
|
|
|
|
|
2021-05-01 15:20:14 +02:00
|
|
|
|
filters = [
|
|
|
|
|
erc20_transfer_filter,
|
2021-05-05 18:25:21 +02:00
|
|
|
|
faucet_filter,
|
2021-05-01 15:20:14 +02:00
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
session = SessionBase.create_session()
|
|
|
|
|
register_filter_tags(filters, session)
|
|
|
|
|
session.close()
|
|
|
|
|
|
2021-04-02 15:20:05 +02:00
|
|
|
|
i = 0
|
|
|
|
|
for syncer in syncers:
|
|
|
|
|
logg.debug('running syncer index {}'.format(i))
|
2021-05-01 15:20:14 +02:00
|
|
|
|
for f in filters:
|
|
|
|
|
syncer.add_filter(f)
|
2021-04-02 15:20:05 +02:00
|
|
|
|
r = syncer.loop(int(config.get('SYNCER_LOOP_INTERVAL')), rpc)
|
|
|
|
|
sys.stderr.write("sync {} done at block {}\n".format(syncer, r))
|
|
|
|
|
|
|
|
|
|
i += 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
main()
|