Scheduled maintenance on Saturday, 27 September 2025, from 07:00 AM to 4:00 PM GMT (09:00 AM to 6:00 PM CEST) - some services may be unavailable -

Skip to content
Snippets Groups Projects
Select Git revision
  • abb1ad98e2e36dbe1a2f5c39de0e6f5861370e37
  • master default
  • feat/320-cttc-ietf-simap-basic-support-with-kafka-yang-push
  • feat/314-tid-new-service-for-ipowdm-configuration-fron-orchestrator-to-ipowdm-controller
  • feat/327-tid-new-service-to-ipowdm-controller-to-manage-transceivers-configuration-on-external-agent
  • feat/292-cttc-implement-integration-test-for-ryu-openflow
  • cnit_tapi
  • cnit-p2mp-premerge
  • feat/325-tid-nbi-e2e-to-manage-e2e-path-computation
  • feat/307-update-python-version-service
  • feat/326-tid-external-management-of-devices-telemetry-nbi
  • openroadm-flex-grid
  • feat/310-cttc-implement-nbi-connector-to-interface-with-osm-client
  • develop protected
  • feat/324-tid-nbi-ietf_l3vpn-deploy-fail
  • feat/321-add-support-for-gnmi-configuration-via-proto
  • feat/322-add-read-support-for-ipinfusion-devices-via-netconf
  • feat/323-add-support-for-restconf-protocol-in-devices
  • feat/policy-refactor
  • feat/192-cttc-implement-telemetry-backend-collector-gnmi-openconfig
  • feat/307-update-python-version
  • feat/telemetry-collector-int
  • v5.0.0 protected
  • v4.0.0 protected
  • demo-dpiab-eucnc2024
  • v3.0.0 protected
  • v2.1.0 protected
  • v2.0.0 protected
  • v1.0.0 protected
29 results

SliceModel.py

Blame
  • gifrerenom's avatar
    Lluis Gifre Renom authored
    - migrated events for Service and Slice entities
    - added missing not-nulls to database fields
    a3f7e8f7
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    SliceModel.py 4.58 KiB
    # 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 operator
    from sqlalchemy import Column, DateTime, Enum, ForeignKey, String
    from sqlalchemy.dialects.postgresql import UUID
    from sqlalchemy.orm import relationship
    from typing import Dict
    from .enums.SliceStatus import ORM_SliceStatusEnum
    from ._Base import _Base
    
    class SliceModel(_Base):
        __tablename__ = 'slice'
    
        slice_uuid         = Column(UUID(as_uuid=False), primary_key=True)
        context_uuid       = Column(ForeignKey('context.context_uuid'), nullable=False)
        slice_name         = Column(String, nullable=True)
        slice_status       = Column(Enum(ORM_SliceStatusEnum), nullable=False)
        slice_owner_uuid   = Column(String, nullable=True)
        slice_owner_string = Column(String, nullable=True)
        created_at         = Column(DateTime, nullable=False)
        updated_at         = Column(DateTime, nullable=False)
    
        context         = relationship('ContextModel', back_populates='slices')
        slice_endpoints = relationship('SliceEndPointModel') # lazy='joined', back_populates='slice'
        slice_services  = relationship('SliceServiceModel') # lazy='joined', back_populates='slice'
        slice_subslices = relationship(
            'SliceSubSliceModel', primaryjoin='slice.c.slice_uuid == slice_subslice.c.slice_uuid')
        constraints     = relationship('ConstraintModel', passive_deletes=True) # lazy='joined', back_populates='slice'
        config_rules    = relationship('ConfigRuleModel', passive_deletes=True) # lazy='joined', back_populates='slice'
    
        def dump_id(self) -> Dict:
            return {
                'context_id': self.context.dump_id(),
                'slice_uuid': {'uuid': self.slice_uuid},
            }
    
        def dump(self) -> Dict:
            return {
                'slice_id'          : self.dump_id(),
                'name'              : self.slice_name,
                'slice_status'      : {'slice_status': self.slice_status.value},
                'slice_endpoint_ids': [
                    slice_endpoint.endpoint.dump_id()
                    for slice_endpoint in self.slice_endpoints
                ],
                'slice_constraints' : [
                    constraint.dump()
                    for constraint in sorted(self.constraints, key=operator.attrgetter('position'))
                ],
                'slice_config'      : {'config_rules': [
                    config_rule.dump()
                    for config_rule in sorted(self.config_rules, key=operator.attrgetter('position'))
                ]},
                'slice_service_ids': [
                    slice_service.service.dump_id()
                    for slice_service in self.slice_services
                ],
                'slice_subslice_ids': [
                    slice_subslice.subslice.dump_id()
                    for slice_subslice in self.slice_subslices
                ],
                'slice_owner': {
                    'owner_uuid': {'uuid': self.slice_owner_uuid},
                    'owner_string': self.slice_owner_string
                }
            }
    
    class SliceEndPointModel(_Base):
        __tablename__ = 'slice_endpoint'
    
        slice_uuid    = Column(ForeignKey('slice.slice_uuid',       ondelete='CASCADE' ), primary_key=True)
        endpoint_uuid = Column(ForeignKey('endpoint.endpoint_uuid', ondelete='RESTRICT'), primary_key=True)
    
        slice    = relationship('SliceModel', back_populates='slice_endpoints', lazy='joined')
        endpoint = relationship('EndPointModel', lazy='joined') # back_populates='slice_endpoints'
    
    class SliceServiceModel(_Base):
        __tablename__ = 'slice_service'
    
        slice_uuid   = Column(ForeignKey('slice.slice_uuid',     ondelete='CASCADE' ), primary_key=True)
        service_uuid = Column(ForeignKey('service.service_uuid', ondelete='RESTRICT'), primary_key=True)
    
        slice   = relationship('SliceModel', back_populates='slice_services', lazy='joined')
        service = relationship('ServiceModel', lazy='joined') # back_populates='slice_services'
    
    class SliceSubSliceModel(_Base):
        __tablename__ = 'slice_subslice'
    
        slice_uuid    = Column(ForeignKey('slice.slice_uuid', ondelete='CASCADE' ), primary_key=True)
        subslice_uuid = Column(ForeignKey('slice.slice_uuid', ondelete='RESTRICT'), primary_key=True)