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.
from sqlalchemy import Column
from sqlalchemy.dialects.postgresql import UUID
from context.service.database.Base import Base
from sqlalchemy.orm import relationship
class ContextModel(Base):
__tablename__ = 'Context'
context_uuid = Column(UUID(as_uuid=False), primary_key=True)
# Relationships
topology = relationship("TopologyModel", back_populates="context")
def dump_id(self) -> Dict:
return {'context_uuid': {'uuid': self.context_uuid}}
def main_pk_name(self):
return 'context_uuid'
from .ServiceModel import ServiceModel # pylint: disable=import-outside-toplevel
return [ServiceModel(self.database, pk).dump_id() for pk,_ in db_service_pks]
from .TopologyModel import TopologyModel # pylint: disable=import-outside-toplevel
return [TopologyModel(self.database, pk).dump_id() for pk,_ in db_topology_pks]
def dump(self, include_services=True, include_topologies=True) -> Dict: # pylint: disable=arguments-differ
# if include_services: result['service_ids'] = self.dump_service_ids()
# if include_topologies: result['topology_ids'] = self.dump_topology_ids()