Newer
Older

Lluis Gifre Renom
committed
from common.tools.client.RetryDecorator import retry, delay_exponential
from service.proto.context_pb2 import ConnectionList, Empty, Service, ServiceId
from service.proto.service_pb2_grpc import ServiceServiceStub
LOGGER = logging.getLogger(__name__)
MAX_RETRIES = 15
DELAY_FUNCTION = delay_exponential(initial=0.01, increment=2.0, maximum=5.0)
class ServiceClient:
def __init__(self, address, port):
self.endpoint = '{:s}:{:s}'.format(str(address), str(port))
LOGGER.debug('Creating channel to {:s}...'.format(self.endpoint))
self.channel = None
self.stub = None
self.connect()
LOGGER.debug('Channel created')
def connect(self):
self.channel = grpc.insecure_channel(self.endpoint)
self.stub = ServiceServiceStub(self.channel)
def close(self):

Lluis Gifre Renom
committed
if self.channel is not None: self.channel.close()
self.channel = None
self.stub = None
@retry(exceptions=set(), max_retries=MAX_RETRIES, delay_function=DELAY_FUNCTION, prepare_method_name='connect')
def CreateService(self, request : Service) -> ServiceId:
LOGGER.debug('CreateService request: {:s}'.format(str(request)))
LOGGER.debug('CreateService result: {:s}'.format(str(response)))
return response
@retry(exceptions=set(), max_retries=MAX_RETRIES, delay_function=DELAY_FUNCTION, prepare_method_name='connect')
def UpdateService(self, request : Service) -> ServiceId:
LOGGER.debug('UpdateService request: {:s}'.format(str(request)))
LOGGER.debug('UpdateService result: {:s}'.format(str(response)))
return response
@retry(exceptions=set(), max_retries=MAX_RETRIES, delay_function=DELAY_FUNCTION, prepare_method_name='connect')
def DeleteService(self, request : ServiceId) -> Empty:
LOGGER.debug('DeleteService request: {:s}'.format(str(request)))
LOGGER.debug('DeleteService result: {:s}'.format(str(response)))
return response
@retry(exceptions=set(), max_retries=MAX_RETRIES, delay_function=DELAY_FUNCTION, prepare_method_name='connect')
def GetConnectionList(self, request : ServiceId) -> ConnectionList:
LOGGER.debug('GetConnectionList request: {:s}'.format(str(request)))
LOGGER.debug('GetConnectionList result: {:s}'.format(str(response)))