Skip to content
Snippets Groups Projects
l3_centralizedattackdetectorService.py 3.4 KiB
Newer Older
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
# Copyright 2022-2023 ETSI TeraFlowSDN - TFS OSG (https://tfs.etsi.org/)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

ldemarcosm's avatar
ldemarcosm committed
import grpc
import logging
from concurrent import futures
from grpc_health.v1.health import HealthServicer, OVERALL_HEALTH
from grpc_health.v1.health_pb2 import HealthCheckResponse
from grpc_health.v1.health_pb2_grpc import add_HealthServicer_to_server
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
from common.proto.l3_centralizedattackdetector_pb2_grpc import (
ldemarcosm's avatar
ldemarcosm committed
    add_L3CentralizedattackdetectorServicer_to_server,
ldemarcosm's avatar
ldemarcosm committed
)
from l3_centralizedattackdetector.service.l3_centralizedattackdetectorServiceServicerImpl import (
    l3_centralizedattackdetectorServiceServicerImpl,
)
from l3_centralizedattackdetector.Config import (
    GRPC_SERVICE_PORT,
    GRPC_MAX_WORKERS,
    GRPC_GRACE_PERIOD,
)

BIND_ADDRESS = "0.0.0.0"
LOGGER = logging.getLogger(__name__)


class l3_centralizedattackdetectorService:
    def __init__(
        self,
        address=BIND_ADDRESS,
        port=GRPC_SERVICE_PORT,
        max_workers=GRPC_MAX_WORKERS,
        grace_period=GRPC_GRACE_PERIOD,
    ):
        self.address = address
        self.port = port
        self.endpoint = None
        self.max_workers = max_workers
        self.grace_period = grace_period
        self.l3_centralizedattackdetector_servicer = None
        self.health_servicer = None
        self.pool = None
        self.server = None

    def start(self):
        self.endpoint = "{}:{}".format(self.address, self.port)
        LOGGER.debug(
            "Starting Service (tentative endpoint: {}, max_workers: {})...".format(
                self.endpoint, self.max_workers
            )
        )

        self.pool = futures.ThreadPoolExecutor(max_workers=self.max_workers)
        self.server = grpc.server(self.pool)  # , interceptors=(tracer_interceptor,))

        self.l3_centralizedattackdetector_servicer = (
ldemarcosm's avatar
ldemarcosm committed
            l3_centralizedattackdetectorServiceServicerImpl()
ldemarcosm's avatar
ldemarcosm committed
        )
ldemarcosm's avatar
ldemarcosm committed
        add_L3CentralizedattackdetectorServicer_to_server(
ldemarcosm's avatar
ldemarcosm committed
            self.l3_centralizedattackdetector_servicer, self.server
        )

        self.health_servicer = HealthServicer(
            experimental_non_blocking=True,
            experimental_thread_pool=futures.ThreadPoolExecutor(max_workers=1),
        )
        add_HealthServicer_to_server(self.health_servicer, self.server)

        port = self.server.add_insecure_port(self.endpoint)
        self.endpoint = "{}:{}".format(self.address, port)
        LOGGER.info("Listening on {}...".format(self.endpoint))
        self.server.start()
        self.health_servicer.set(
            OVERALL_HEALTH, HealthCheckResponse.SERVING
        )  # pylint: disable=maybe-no-member

        LOGGER.debug("Service started")

    def stop(self):
        LOGGER.debug(
            "Stopping service (grace period {} seconds)...".format(self.grace_period)
        )
        self.health_servicer.enter_graceful_shutdown()
        self.server.stop(self.grace_period)
        LOGGER.debug("Service stopped")