1 # Copyright (C) 2021 Wind River Systems, Inc.
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
7 # http://www.apache.org/licenses/LICENSE-2.0
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
15 # pylint: disable=attribute-defined-outside-init
16 from __future__ import annotations
18 from sqlalchemy import create_engine
19 from sqlalchemy.orm import sessionmaker
20 from sqlalchemy.orm.session import Session
22 from o2ims import config
23 from o2ims.adapter import ocloud_repository
26 class AbstractUnitOfWork(abc.ABC):
27 oclouds: ocloud_repository.OcloudRepository
32 def __exit__(self, *args):
38 def collect_new_events(self):
39 for ocloud in self.oclouds.seen:
41 yield ocloud.events.pop(0)
45 raise NotImplementedError
49 raise NotImplementedError
52 DEFAULT_SESSION_FACTORY = sessionmaker(
54 config.get_postgres_uri(),
55 isolation_level="REPEATABLE READ",
60 class SqlAlchemyUnitOfWork(AbstractUnitOfWork):
61 def __init__(self, session_factory=DEFAULT_SESSION_FACTORY):
62 self.session_factory = session_factory
65 self.session = self.session_factory() # type: Session
66 self.oclouds = ocloud_repository\
67 .OcloudSqlAlchemyRepository(self.session)
68 return super().__enter__()
70 def __exit__(self, *args):
71 super().__exit__(*args)
78 self.session.rollback()