mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Create an async contextmanager for Alchemy
This commit is contained in:
parent
4db26cb828
commit
d7bf281f61
1 changed files with 23 additions and 2 deletions
|
@ -1,19 +1,40 @@
|
|||
import typing
|
||||
import asyncio
|
||||
from sqlalchemy import create_engine
|
||||
from sqlalchemy.ext.declarative import declarative_base
|
||||
from sqlalchemy.orm import sessionmaker
|
||||
from contextlib import asynccontextmanager
|
||||
from ..utils import classdictjanitor
|
||||
|
||||
loop = asyncio.get_event_loop()
|
||||
|
||||
|
||||
class Alchemy:
|
||||
def __init__(self, database_uri: str = "sqlite://", tables: typing.Optional[typing.List] = None):
|
||||
self.engine = create_engine(database_uri)
|
||||
self.Base = declarative_base(bind=self.engine)
|
||||
self.Session = sessionmaker(bind=self.engine)
|
||||
self._Session = sessionmaker(bind=self.engine)
|
||||
self._create_tables(tables)
|
||||
|
||||
def _create_tables(self, tables: typing.Optional[typing.List]):
|
||||
for table in tables:
|
||||
name = table.__name__
|
||||
self.__setattr__(name, type(name, (self.Base,), classdictjanitor(table)))
|
||||
try:
|
||||
self.__getattribute__(name)
|
||||
except AttributeError:
|
||||
# Actually the intended result
|
||||
self.__setattr__(name, type(name, (self.Base,), classdictjanitor(table)))
|
||||
else:
|
||||
raise NameError(f"{name} is a reserved name and can't be used as a table name")
|
||||
self.Base.metadata.create_all()
|
||||
|
||||
@asynccontextmanager
|
||||
async def Session(self):
|
||||
session = await loop.run_in_executor(None, self._Session)
|
||||
try:
|
||||
yield session
|
||||
except Exception:
|
||||
session.rollback()
|
||||
raise
|
||||
finally:
|
||||
session.close()
|
||||
|
|
Loading…
Reference in a new issue