Skip to content
Snippets Groups Projects
FlexScaleDriver.py 6.78 KiB
Newer Older
Carlos Manso's avatar
Carlos Manso 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.

Carlos Manso's avatar
Carlos Manso committed
import json, logging, requests, threading
Carlos Manso's avatar
Carlos Manso committed
from requests.auth import HTTPBasicAuth
from typing import Any, Iterator, List, Optional, Tuple, Union
from common.method_wrappers.Decorator import MetricsPool, metered_subclass_method
from common.type_checkers.Checkers import chk_string, chk_type
from device.service.driver_api._Driver import _Driver
from . import ALL_RESOURCE_KEYS
Carlos Manso's avatar
Carlos Manso committed
from .Tools import find_key, add_lightpath, del_lightpath, get_lightpaths
from device.service.driver_api._Driver import _Driver, RESOURCE_ENDPOINTS
from device.service.drivers.ietf_l2vpn.TfsApiClient import TfsApiClient
from device.service.driver_api.ImportTopologyEnum import ImportTopologyEnum, get_import_topology
Carlos Manso's avatar
Carlos Manso committed

LOGGER = logging.getLogger(__name__)

DRIVER_NAME = 'flexscale'
METRICS_POOL = MetricsPool('Device', 'Driver', labels={'driver': DRIVER_NAME})

Carlos Manso's avatar
Carlos Manso committed

Carlos Manso's avatar
Carlos Manso committed
class FlexScaleDriver(_Driver):
    def __init__(self, address: str, port: int, **settings) -> None:
        super().__init__(DRIVER_NAME, address, port, **settings)
        self.__lock = threading.Lock()
        self.__started = threading.Event()
        self.__terminate = threading.Event()
        username = self.settings.get('username') 
        password = self.settings.get('password')
        self.__auth = HTTPBasicAuth(username, password) if username is not None and password is not None else None
        scheme = self.settings.get('scheme', 'http')
        self.tac = TfsApiClient(self.address, int(self.port), scheme=scheme, username=username, password=password)
Carlos Manso's avatar
Carlos Manso committed
        self.__flexscale_root = '{:s}://{:s}:{:d}'.format(scheme, self.address, int(self.port))
        self.__timeout = int(self.settings.get('timeout', 120))

        # Options are:
        #    disabled --> just import endpoints as usual
        #    devices  --> imports sub-devices but not links connecting them.
        #                 (a remotely-controlled transport domain might exist between them)
        #    topology --> imports sub-devices and links connecting them.
        #                 (not supported by XR driver)
        self.__import_topology = get_import_topology(self.settings, default=ImportTopologyEnum.TOPOLOGY)
        

Carlos Manso's avatar
Carlos Manso committed
    def Connect(self) -> bool:
Carlos Manso's avatar
Carlos Manso committed
        url = self.__flexscale_root + '/OpticalTFS/GetLightpaths'
Carlos Manso's avatar
Carlos Manso committed
        with self.__lock:
            if self.__started.is_set(): return True
            try:
                requests.get(url, timeout=self.__timeout, verify=False, auth=self.__auth)
            except requests.exceptions.Timeout:
                LOGGER.exception('Timeout connecting {:s}'.format(str(self.__tapi_root)))
                return False
            except Exception:  # pylint: disable=broad-except
                LOGGER.exception('Exception connecting {:s}'.format(str(self.__tapi_root)))
                return False
            else:
                self.__started.set()
                return True

    def Disconnect(self) -> bool:
        with self.__lock:
            self.__terminate.set()
            return True

    @metered_subclass_method(METRICS_POOL)
    def GetInitialConfig(self) -> List[Tuple[str, Any]]:
        with self.__lock:
            return []

    @metered_subclass_method(METRICS_POOL)
    def GetConfig(self, resource_keys : List[str] = []) -> List[Tuple[str, Union[Any, None, Exception]]]:
        chk_type('resources', resource_keys, list)
        results = []
        with self.__lock:
            if len(resource_keys) == 0: resource_keys = ALL_RESOURCE_KEYS
            for i, resource_key in enumerate(resource_keys):
                str_resource_name = 'resource_key[#{:d}]'.format(i)
                chk_string(str_resource_name, resource_key, allow_empty=False)

                if resource_key == RESOURCE_ENDPOINTS:
                    # return endpoints through TFS NBI API and list-devices method
                    results.extend(self.tac.get_devices_endpoints(self.__import_topology))

                # results.extend(get_lightpaths(
                #     self.__flexscale_root, resource_key, timeout=self.__timeout, auth=self.__auth))
Carlos Manso's avatar
Carlos Manso committed
        return results

    @metered_subclass_method(METRICS_POOL)
    def SetConfig(self, resources: List[Tuple[str, Any]]) -> List[Union[bool, Exception]]:
        results = []
        if len(resources) == 0:
            return results
        with self.__lock:
Carlos Manso's avatar
Carlos Manso committed
            for _, resource in resources:
Carlos Manso's avatar
Carlos Manso committed
                LOGGER.info('resource = {:s}'.format(str(resource)))

Carlos Manso's avatar
Carlos Manso committed
                src_node = find_key(resource, 'src_node')
                dst_node = find_key(resource, 'dst_node')
                bitrate =  find_key(resource, 'bitrate')
Carlos Manso's avatar
Carlos Manso committed

                response = add_lightpath(self.__flexscale_root, src_node, dst_node, bitrate, 
                                     auth=self.__auth, timeout=self.__timeout)
Carlos Manso's avatar
Carlos Manso committed
                results.extend(response)
Carlos Manso's avatar
Carlos Manso committed
        return results

    @metered_subclass_method(METRICS_POOL)
    def DeleteConfig(self, resources: List[Tuple[str, Any]]) -> List[Union[bool, Exception]]:
        results = []
Carlos Manso's avatar
Carlos Manso committed
        if len(resources) == 0:
            return results
Carlos Manso's avatar
Carlos Manso committed
        with self.__lock:
Carlos Manso's avatar
Carlos Manso committed
            for _, resource in resources:
Carlos Manso's avatar
Carlos Manso committed
                LOGGER.info('resource = {:s}'.format(str(resource)))
Carlos Manso's avatar
Carlos Manso committed
                flow_id = find_key(resource, 'flow_id')
                src_node = find_key(resource, 'src_node')
                dst_node = find_key(resource, 'dst_node')
                bitrate = find_key(resource, 'bitrate')

                response = del_lightpath(self.__flexscale_root, flow_id, src_node, dst_node, bitrate)
                results.extend(response)

Carlos Manso's avatar
Carlos Manso committed
        return results

    @metered_subclass_method(METRICS_POOL)
    def SubscribeState(self, subscriptions : List[Tuple[str, float, float]]) -> List[Union[bool, Exception]]:
Carlos Manso's avatar
Carlos Manso committed
        # FlexScale does not support monitoring by now
Carlos Manso's avatar
Carlos Manso committed
        return [False for _ in subscriptions]

    @metered_subclass_method(METRICS_POOL)
    def UnsubscribeState(self, subscriptions : List[Tuple[str, float, float]]) -> List[Union[bool, Exception]]:
Carlos Manso's avatar
Carlos Manso committed
        # FlexScale does not support monitoring by now
Carlos Manso's avatar
Carlos Manso committed
        return [False for _ in subscriptions]

    def GetState(
        self, blocking=False, terminate : Optional[threading.Event] = None
    ) -> Iterator[Tuple[float, str, Any]]:
Carlos Manso's avatar
Carlos Manso committed
        # FlexScale does not support monitoring by now
Carlos Manso's avatar
Carlos Manso committed
        return []