# Copyright 2021-2023 H2020 TeraFlow (https://www.teraflow-h2020.eu/)
#
# 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.

import logging
from sqlalchemy import Column, ForeignKey, ForeignKeyConstraint
from sqlalchemy.dialects.postgresql import UUID
from sqlalchemy.orm import relationship
from context.service.database._Base import _Base

LOGGER = logging.getLogger(__name__)

# class ConnectionSubServiceModel(Model):
#     pk = PrimaryKeyField()
#     connection_fk = ForeignKeyField(ConnectionModel)
#     sub_service_fk = ForeignKeyField(ServiceModel)
#
#class LinkEndPointModel(Base):
#    __tablename__ = 'LinkEndPoint'
#    # uuid = Column(UUID(as_uuid=False), primary_key=True, unique=True)
#    link_uuid = Column(UUID(as_uuid=False), ForeignKey("Link.link_uuid"))
#    endpoint_uuid = Column(UUID(as_uuid=False), ForeignKey("EndPoint.endpoint_uuid"), primary_key=True)
#
#    @staticmethod
#    def main_pk_name():
#        return 'endpoint_uuid'
#
# class ServiceEndPointModel(Model):
#     pk = PrimaryKeyField()
#     service_fk = ForeignKeyField(ServiceModel)
#     endpoint_fk = ForeignKeyField(EndPointModel)
#
# class SliceEndPointModel(Model):
#     pk = PrimaryKeyField()
#     slice_fk = ForeignKeyField(SliceModel)
#     endpoint_fk = ForeignKeyField(EndPointModel)
#
# class SliceServiceModel(Model):
#     pk = PrimaryKeyField()
#     slice_fk = ForeignKeyField(SliceModel)
#     service_fk = ForeignKeyField(ServiceMo# pylint: disable=abstract-method
#     __tablename__ = 'LinkEndPoint'
#     uuid = Column(UUID(as_uuid=False), primary_key=True, unique=True)
#     link_uuid = Column(UUID(as_uuid=False), ForeignKey("Link.link_uuid"))
#     endpoint_uuid = Column(UUID(as_uuid=False), ForeignKey("EndPoint.endpoint_uuid"))
#del)
#
# class SliceSubSliceModel(Model):
#     pk = PrimaryKeyField()
#     slice_fk = ForeignKeyField(SliceModel)
#     sub_slice_fk = ForeignKeyField(SliceModel)

class TopologyDeviceModel(_Base):
    __tablename__ = 'topology_device'
    context_uuid  = Column(UUID(as_uuid=False), primary_key=True)
    topology_uuid = Column(UUID(as_uuid=False), primary_key=True)
    device_uuid   = Column(UUID(as_uuid=False), primary_key=True)

    topologies = relationship('TopologyModel', back_populates='topology_device')
    devices    = relationship('DeviceModel', back_populates='topology_device')

    __table_args__ = (
        ForeignKeyConstraint(
            ['context_uuid', 'topology_uuid'],
            ['topology.context_uuid', 'topology.topology_uuid'],
            ondelete='CASCADE'),
        ForeignKeyConstraint(
            ['device_uuid'],
            ['device.device_uuid'],
            ondelete='CASCADE'),
    )

#class TopologyLinkModel(Base):
#    __tablename__ = 'TopologyLink'
#    topology_uuid = Column(UUID(as_uuid=False), ForeignKey("Topology.topology_uuid"))
#    link_uuid = Column(UUID(as_uuid=False), ForeignKey("Link.link_uuid"), primary_key=True)