Make settings processing stateless
This commit is contained in:
parent
a1e08a1a05
commit
ef9ee8054a
@ -1,2 +1,4 @@
|
||||
- 0.14.0
|
||||
* Make settings processing stateless
|
||||
- 0.13.0
|
||||
* Receive settings from cic-stack/cic-eth 0.12.10
|
||||
|
@ -1 +1 @@
|
||||
from .settings import CICSettings
|
||||
#from .settings import CICSettings
|
||||
|
@ -23,6 +23,7 @@ class CICFlag(enum.IntEnum):
|
||||
|
||||
# sync - nibble 4
|
||||
SYNCER = 4096
|
||||
SYNCER_RANGES = 8192
|
||||
|
||||
# server - nibble 5
|
||||
SERVER=65536
|
||||
@ -32,4 +33,5 @@ argflag_local_task = CICFlag.CELERY
|
||||
argflag_local_taskcallback = argflag_local_task | CICFlag.REDIS | CICFlag.REDIS_CALLBACK
|
||||
argflag_local_chain = CICFlag.CHAIN
|
||||
argflag_local_sync = CICFlag.SYNCER | CICFlag.CHAIN
|
||||
argflag_local_sync_ranges = argflag_local_sync | CICFlag.SYNCER_RANGES
|
||||
argflag_local_server = CICFlag.SERVER | CICFlag.REDIS | CICFlag.REDIS_CALLBACK | CICFlag.CELERY | Flag.CHAIN_SPEC
|
||||
|
@ -15,31 +15,36 @@ from cic_eth_registry.error import UnknownContractError
|
||||
# legacy imports
|
||||
import cic_base.cli
|
||||
from cic_base.legacy.db import SessionBase
|
||||
from cic_base.error import InitializationError
|
||||
|
||||
logg = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class CICSettings:
|
||||
|
||||
def __init__(self):
|
||||
self.o = {}
|
||||
self.get = self.o.get
|
||||
self.registry = None
|
||||
def __init__(settings):
|
||||
settings.o = {}
|
||||
settings.get = settings.o.get
|
||||
settings.registry = None
|
||||
|
||||
|
||||
def process_common(self, config):
|
||||
self.o['CHAIN_SPEC'] = ChainSpec.from_chain_str(config.get('CHAIN_SPEC'))
|
||||
def process_common(settings, config):
|
||||
chain_spec = ChainSpec.from_chain_str(config.get('CHAIN_SPEC'))
|
||||
settings.o['CHAIN_SPEC'] = chain_spec
|
||||
|
||||
rpc = cic_base.cli.RPC.from_config(config)
|
||||
self.o['RPC'] = rpc.get_default()
|
||||
conn = rpc.get_default()
|
||||
settings.set('RPC', conn)
|
||||
|
||||
return settings
|
||||
|
||||
|
||||
def process_celery(self, config):
|
||||
def process_celery(settings, config):
|
||||
cic_base.cli.CeleryApp.from_config(config)
|
||||
self.o['CELERY_QUEUE'] = config.get('CELERY_QUEUE')
|
||||
settings.set('CELERY_QUEUE', config.get('CELERY_QUEUE'))
|
||||
|
||||
return settings
|
||||
|
||||
|
||||
def process_database(self, config):
|
||||
def process_database(settings, config):
|
||||
scheme = config.get('DATABASE_ENGINE')
|
||||
if config.get('DATABASE_DRIVER') != None:
|
||||
scheme += '+{}'.format(config.get('DATABASE_DRIVER'))
|
||||
@ -75,8 +80,10 @@ class CICSettings:
|
||||
pool_size = int(config.get('DATABASE_POOL_SIZE'))
|
||||
SessionBase.connect(dsn, pool_size=pool_size, debug=config.true('DATABASE_DEBUG'))
|
||||
|
||||
return settings
|
||||
|
||||
def process_trusted_addresses(self, config):
|
||||
|
||||
def process_trusted_addresses(settings, config):
|
||||
trusted_addresses_src = config.get('CIC_TRUST_ADDRESS')
|
||||
if trusted_addresses_src == None:
|
||||
raise InitializationError('At least one trusted address must be declared in CIC_TRUST_ADDRESS')
|
||||
@ -91,26 +98,27 @@ class CICSettings:
|
||||
logg.info('using trusted address {}'.format(address))
|
||||
|
||||
|
||||
self.o['TRUSTED_ADDRESSES'] = trusted_addresses
|
||||
settings.set('TRUSTED_ADDRESSES', trusted_addresses)
|
||||
|
||||
return settings
|
||||
|
||||
|
||||
def process_registry(self, config):
|
||||
def process_registry(settings, config):
|
||||
registry = None
|
||||
chain_spec = settings.get('CHAIN_SPEC')
|
||||
rpc = settings.get('RPC')
|
||||
registry_address = config.get('CIC_REGISTRY_ADDRESS')
|
||||
|
||||
try:
|
||||
registry = connect_registry(self.o['RPC'], self.o['CHAIN_SPEC'], config.get('CIC_REGISTRY_ADDRESS'))
|
||||
registry = connect_registry(rpc, chain_spec, registry_address)
|
||||
except UnknownContractError as e:
|
||||
pass
|
||||
if registry == None:
|
||||
raise InitializationError('Registry contract connection failed for {}: {}'.format(config.get('CIC_REGISTRY_ADDRESS'), e))
|
||||
connect_declarator(self.o['RPC'], self.o['CHAIN_SPEC'], self.o['TRUSTED_ADDRESSES'])
|
||||
connect_token_registry(self.o['RPC'], self.o['CHAIN_SPEC'])
|
||||
connect_declarator(rpc, chain_spec, settings.get('TRUSTED_ADDRESSES'))
|
||||
connect_token_registry(rpc, chain_spec)
|
||||
|
||||
self.o['CIC_REGISTRY'] = CICRegistry(self.o['CHAIN_SPEC'], self.o['RPC'])
|
||||
registry = CICRegistry(chain_spec, rpc)
|
||||
settings.set('CIC_REGISTRY', registry)
|
||||
|
||||
|
||||
def process(self, config):
|
||||
self.process_common(config)
|
||||
self.process_database(config)
|
||||
self.process_trusted_addresses(config)
|
||||
self.process_registry(config)
|
||||
self.process_celery(config)
|
||||
return settings
|
||||
|
@ -1,4 +1,4 @@
|
||||
cic-eth-registry~=0.6.9
|
||||
celery~=4.4.7
|
||||
chainlib-eth~=0.1.0
|
||||
chainlib-eth~=0.3.0
|
||||
urlybird~=0.0.2
|
||||
|
Loading…
Reference in New Issue
Block a user