Newer
Older

Lluis Gifre Renom
committed
import grpc, logging
from prometheus_client import Counter, Histogram
from common.database.api.context.Constants import DEFAULT_CONTEXT_ID, DEFAULT_TOPOLOGY_ID
from common.database.api.context.topology.device.OperationalStatus import OperationalStatus
from common.exceptions.ServiceException import ServiceException
from device.proto.context_pb2 import DeviceId, Device, Empty

Lluis Gifre Renom
committed
from device.proto.device_pb2_grpc import DeviceServiceServicer

Lluis Gifre Renom
committed
from device.service.Tools import check_device_id_request, check_device_request

Lluis Gifre Renom
committed
LOGGER = logging.getLogger(__name__)
ADDDEVICE_COUNTER_STARTED = Counter ('device_adddevice_counter_started',
'Device:AddDevice counter of requests started' )
ADDDEVICE_COUNTER_COMPLETED = Counter ('device_adddevice_counter_completed',
'Device:AddDevice counter of requests completed')
ADDDEVICE_COUNTER_FAILED = Counter ('device_adddevice_counter_failed',
'Device:AddDevice counter of requests failed' )
ADDDEVICE_HISTOGRAM_DURATION = Histogram('device_adddevice_histogram_duration',
'Device:AddDevice histogram of request duration')
CONFIGUREDEVICE_COUNTER_STARTED = Counter ('device_configuredevice_counter_started',
'Device:ConfigureDevice counter of requests started' )
CONFIGUREDEVICE_COUNTER_COMPLETED = Counter ('device_configuredevice_counter_completed',
'Device:ConfigureDevice counter of requests completed')
CONFIGUREDEVICE_COUNTER_FAILED = Counter ('device_configuredevice_counter_failed',
'Device:ConfigureDevice counter of requests failed' )
CONFIGUREDEVICE_HISTOGRAM_DURATION = Histogram('device_configuredevice_histogram_duration',
'Device:ConfigureDevice histogram of request duration')
DELETEDEVICE_COUNTER_STARTED = Counter ('device_deletedevice_counter_started',
'Device:DeleteDevice counter of requests started' )
DELETEDEVICE_COUNTER_COMPLETED = Counter ('device_deletedevice_counter_completed',
'Device:DeleteDevice counter of requests completed')
DELETEDEVICE_COUNTER_FAILED = Counter ('device_deletedevice_counter_failed',
'Device:DeleteDevice counter of requests failed' )
DELETEDEVICE_HISTOGRAM_DURATION = Histogram('device_deletedevice_histogram_duration',
'Device:DeleteDevice histogram of request duration')
class DeviceServiceServicerImpl(DeviceServiceServicer):

Lluis Gifre Renom
committed
LOGGER.debug('Creating Servicer...')
self.database = database
LOGGER.debug('Servicer Created')
@ADDDEVICE_HISTOGRAM_DURATION.time()
def AddDevice(self, request : Device, grpc_context : grpc.ServicerContext) -> DeviceId:

Lluis Gifre Renom
committed
ADDDEVICE_COUNTER_STARTED.inc()
try:
LOGGER.debug('AddDevice request: {}'.format(str(request)))
# ----- Validate request data and pre-conditions -----------------------------------------------------------

Lluis Gifre Renom
committed
device_id, device_type, device_config, device_opstat, db_endpoints_ports = \
check_device_request('AddDevice', request, self.database, LOGGER)

Lluis Gifre Renom
committed
# ----- Implement changes in the database ------------------------------------------------------------------
db_context = self.database.context(DEFAULT_CONTEXT_ID).create()
db_topology = db_context.topology(DEFAULT_TOPOLOGY_ID).create()
db_device = db_topology.device(device_id).create(device_type, device_config, device_opstat)

Lluis Gifre Renom
committed
for db_endpoint,port_type in db_endpoints_ports:
db_endpoint.create(port_type)
# ----- Compose reply --------------------------------------------------------------------------------------
LOGGER.debug('AddDevice reply: {}'.format(str(reply)))

Lluis Gifre Renom
committed
ADDDEVICE_COUNTER_COMPLETED.inc()
return reply
LOGGER.exception('AddDevice exception')
ADDDEVICE_COUNTER_FAILED.inc()
grpc_context.abort(e.code, e.details)
except Exception as e: # pragma: no cover
LOGGER.exception('AddDevice exception')
ADDDEVICE_COUNTER_FAILED.inc()
grpc_context.abort(grpc.StatusCode.INTERNAL, str(e))

Lluis Gifre Renom
committed
@CONFIGUREDEVICE_HISTOGRAM_DURATION.time()
def ConfigureDevice(self, request : Device, grpc_context : grpc.ServicerContext) -> DeviceId:

Lluis Gifre Renom
committed
CONFIGUREDEVICE_COUNTER_STARTED.inc()
try:
LOGGER.debug('ConfigureDevice request: {}'.format(str(request)))
# ----- Validate request data and pre-conditions -----------------------------------------------------------
device_id, device_type, device_config, device_opstat, db_endpoints_ports = \
check_device_request('UpdateDevice', request, self.database, LOGGER)
# ----- Implement changes in the database ------------------------------------------------------------------
db_context = self.database.context(DEFAULT_CONTEXT_ID).create()
db_topology = db_context.topology(DEFAULT_TOPOLOGY_ID).create()
db_device_attributes = db_device.attributes.get(attributes=['device_type'])
# should not happen, device creation through Database API ensures all fields are always present
if len(db_device_attributes) == 0: # pragma: no cover
msg = 'Attribute device_type for Device({}) does not exist in the database.' # pragma: no cover
msg = msg.format(device_id) # pragma: no cover
raise ServiceException(grpc.StatusCode.FAILED_PRECONDITION, msg) # pragma: no cover
db_device_type = db_device_attributes.get('device_type')
# should not happen, device creation through Database API ensures all fields are always present
if len(db_device_type) == 0: # pragma: no cover
msg = 'Attribute device_type for Device({}) is empty in the database.' # pragma: no cover
msg = msg.format(device_id) # pragma: no cover
raise ServiceException(grpc.StatusCode.FAILED_PRECONDITION, msg) # pragma: no cover
msg = 'Device({}) has Type({}) in the database. Cannot be changed to Type({}).'
msg = msg.format(device_id, db_device_type, device_type)
raise ServiceException(grpc.StatusCode.INVALID_ARGUMENT, msg)
msg = 'Endpoints belonging to Device({}) cannot be modified.'
raise ServiceException(grpc.StatusCode.INVALID_ARGUMENT, msg)
update_attributes = {}
if len(device_config) > 0:
update_attributes['device_config'] = device_config
if device_opstat != OperationalStatus.KEEP_STATE:
update_attributes['device_operational_status'] = device_opstat
if len(update_attributes) == 0:
msg = ' '.join([
'Any change has been requested for Device({}).',
'Either specify a new configuration or a new device operational status.',
raise ServiceException(grpc.StatusCode.ABORTED, msg)
db_device.update(update_attributes=update_attributes)
# ----- Compose reply --------------------------------------------------------------------------------------
reply = DeviceId(**db_device.dump_id())
LOGGER.debug('ConfigureDevice reply: {}'.format(str(reply)))

Lluis Gifre Renom
committed
CONFIGUREDEVICE_COUNTER_COMPLETED.inc()
return reply
LOGGER.exception('ConfigureDevice exception')
CONFIGUREDEVICE_COUNTER_FAILED.inc()
grpc_context.abort(e.code, e.details)
except Exception as e: # pragma: no cover
LOGGER.exception('ConfigureDevice exception')
CONFIGUREDEVICE_COUNTER_FAILED.inc()
grpc_context.abort(grpc.StatusCode.INTERNAL, str(e))

Lluis Gifre Renom
committed
@DELETEDEVICE_HISTOGRAM_DURATION.time()
def DeleteDevice(self, request : DeviceId, grpc_context : grpc.ServicerContext) -> Empty:

Lluis Gifre Renom
committed
DELETEDEVICE_COUNTER_STARTED.inc()
try:
LOGGER.debug('DeleteDevice request: {}'.format(str(request)))
# ----- Validate request data and pre-conditions -----------------------------------------------------------

Lluis Gifre Renom
committed
device_id = check_device_id_request('DeleteDevice', request, self.database, LOGGER)

Lluis Gifre Renom
committed
# ----- Implement changes in the database ------------------------------------------------------------------
db_context = self.database.context(DEFAULT_CONTEXT_ID).create()
db_topology = db_context.topology(DEFAULT_TOPOLOGY_ID).create()
# ----- Compose reply --------------------------------------------------------------------------------------
reply = Empty()
LOGGER.debug('DeleteDevice reply: {}'.format(str(reply)))

Lluis Gifre Renom
committed
DELETEDEVICE_COUNTER_COMPLETED.inc()
return reply
LOGGER.exception('DeleteDevice exception')
DELETEDEVICE_COUNTER_FAILED.inc()
grpc_context.abort(e.code, e.details)
except Exception as e: # pragma: no cover
LOGGER.exception('DeleteDevice exception')
DELETEDEVICE_COUNTER_FAILED.inc()
grpc_context.abort(grpc.StatusCode.INTERNAL, str(e))