ServiceExceptions.py 1.5 KB
Newer Older
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
import grpc
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
from typing import Iterable, Union
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed

class ServiceException(Exception):
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
    def __init__(
        self, code : grpc.StatusCode, details : str, extra_details : Union[str, Iterable[str]] = []
        ) -> None:

Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
        self.code = code
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
        if isinstance(extra_details, str): extra_details = [extra_details]
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
        self.details = '; '.join(map(str, [details] + extra_details))
        super().__init__(self.details)

class NotFoundException(ServiceException):
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
    def __init__(
        self, object_name : str, object_uuid: str, extra_details : Union[str, Iterable[str]] = []
        ) -> None:

Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
        details = '{:s}({:s}) not found'.format(str(object_name), str(object_uuid))
        super().__init__(grpc.StatusCode.NOT_FOUND, details, extra_details=extra_details)

class AlreadyExistsException(ServiceException):
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
    def __init__(
        self, object_name : str, object_uuid: str, extra_details : Union[str, Iterable[str]] = None
        ) -> None:

Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
        details = '{:s}({:s}) already exists'.format(str(object_name), str(object_uuid))
        super().__init__(grpc.StatusCode.ALREADY_EXISTS, details, extra_details=extra_details)

class InvalidArgumentException(ServiceException):
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
    def __init__(
        self, argument_name : str, argument_value: str, extra_details : Union[str, Iterable[str]] = None
        ) -> None:

Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
        details = '{:s}({:s}) is invalid'.format(str(argument_name), str(argument_value))
        super().__init__(grpc.StatusCode.INVALID_ARGUMENT, details, extra_details=extra_details)