mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
96 lines
2.7 KiB
Python
96 lines
2.7 KiB
Python
import asyncio
|
|
from contextlib import asynccontextmanager
|
|
from enum import Enum, auto
|
|
from pathlib import Path
|
|
from typing import AsyncGenerator
|
|
|
|
from loguru import logger
|
|
from sqlalchemy import text
|
|
from sqlalchemy.ext.asyncio import (
|
|
create_async_engine,
|
|
async_sessionmaker,
|
|
AsyncSession,
|
|
AsyncEngine,
|
|
async_scoped_session,
|
|
)
|
|
|
|
from basic_memory.models import Base
|
|
|
|
|
|
class DatabaseType(Enum):
|
|
"""Types of supported databases."""
|
|
|
|
MEMORY = auto()
|
|
FILESYSTEM = auto()
|
|
|
|
@classmethod
|
|
def get_db_url(cls, db_path: Path, db_type: "DatabaseType") -> str:
|
|
"""Get SQLAlchemy URL for database path."""
|
|
if db_type == cls.MEMORY:
|
|
logger.info("Using in-memory SQLite database")
|
|
return "sqlite+aiosqlite://"
|
|
|
|
return f"sqlite+aiosqlite:///{db_path}"
|
|
|
|
|
|
def get_scoped_session_factory(
|
|
session_maker: async_sessionmaker[AsyncSession],
|
|
) -> async_scoped_session:
|
|
"""Create a scoped session factory scoped to current task."""
|
|
return async_scoped_session(session_maker, scopefunc=asyncio.current_task)
|
|
|
|
|
|
@asynccontextmanager
|
|
async def scoped_session(
|
|
session_maker: async_sessionmaker[AsyncSession],
|
|
) -> AsyncGenerator[AsyncSession, None]:
|
|
"""
|
|
Get a scoped session with proper lifecycle management.
|
|
|
|
Args:
|
|
session_maker: Session maker to create scoped sessions from
|
|
"""
|
|
factory = get_scoped_session_factory(session_maker)
|
|
session = factory()
|
|
try:
|
|
await session.execute(text("PRAGMA foreign_keys=ON"))
|
|
yield session
|
|
await session.commit()
|
|
except Exception:
|
|
await session.rollback()
|
|
raise
|
|
finally:
|
|
await session.close()
|
|
await factory.remove()
|
|
|
|
|
|
async def init_db(session: AsyncSession):
|
|
"""Initialize database with required tables."""
|
|
await session.execute(text("PRAGMA foreign_keys=ON"))
|
|
conn = await session.connection()
|
|
await conn.run_sync(Base.metadata.create_all)
|
|
await session.commit()
|
|
|
|
|
|
@asynccontextmanager
|
|
async def engine_session_factory(
|
|
db_path: Path,
|
|
db_type: DatabaseType = DatabaseType.FILESYSTEM,
|
|
init: bool = True,
|
|
) -> AsyncGenerator[tuple[AsyncEngine, async_sessionmaker[AsyncSession]], None]:
|
|
"""Create engine and session factory."""
|
|
db_url = DatabaseType.get_db_url(db_path, db_type)
|
|
logger.debug(f"Creating engine for db_url: {db_url}")
|
|
engine = create_async_engine(db_url, connect_args={"check_same_thread": False})
|
|
try:
|
|
factory = async_sessionmaker(engine, expire_on_commit=False)
|
|
|
|
if init:
|
|
logger.debug("Initializing database...")
|
|
async with scoped_session(factory) as db_session:
|
|
await init_db(db_session)
|
|
|
|
yield engine, factory
|
|
finally:
|
|
await engine.dispose()
|