Skip to content
Snippets Groups Projects
RelationModels.py 3.34 KiB
Newer Older
# 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.

Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
import logging
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
from sqlalchemy import Column, ForeignKey, ForeignKeyConstraint
Carlos Manso's avatar
Carlos Manso committed
from sqlalchemy.dialects.postgresql import UUID
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
from sqlalchemy.orm import relationship
from context.service.database._Base import _Base
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed

LOGGER = logging.getLogger(__name__)
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed

# class ConnectionSubServiceModel(Model):
Carlos Manso's avatar
Carlos Manso committed
#     pk = PrimaryKeyField()
#     connection_fk = ForeignKeyField(ConnectionModel)
#     sub_service_fk = ForeignKeyField(ServiceModel)
#
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
#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)
Carlos Manso's avatar
Carlos Manso committed
#
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
#    @staticmethod
#    def main_pk_name():
#        return 'endpoint_uuid'
#
# class ServiceEndPointModel(Model):
Carlos Manso's avatar
Carlos Manso committed
#     pk = PrimaryKeyField()
#     service_fk = ForeignKeyField(ServiceModel)
#     endpoint_fk = ForeignKeyField(EndPointModel)
#
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
# class SliceEndPointModel(Model):
Carlos Manso's avatar
Carlos Manso committed
#     pk = PrimaryKeyField()
#     slice_fk = ForeignKeyField(SliceModel)
#     endpoint_fk = ForeignKeyField(EndPointModel)
#
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
# class SliceServiceModel(Model):
Carlos Manso's avatar
Carlos Manso committed
#     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)
#
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
# class SliceSubSliceModel(Model):
Carlos Manso's avatar
Carlos Manso committed
#     pk = PrimaryKeyField()
#     slice_fk = ForeignKeyField(SliceModel)
#     sub_slice_fk = ForeignKeyField(SliceModel)
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
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)
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
    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'),
    )
Lluis Gifre Renom's avatar
Lluis Gifre Renom committed
#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)