Skip to content

Fix: Implement Singleton pattern for DbCodeGate initialization #625

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 25 additions & 15 deletions src/codegate/db/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,23 +32,33 @@


class DbCodeGate:
_instance = None

def __new__(cls, *args, **kwargs):
if cls._instance is None:
cls._instance = super().__new__(cls)
return cls._instance

def __init__(self, sqlite_path: Optional[str] = None):
# Initialize SQLite database engine with proper async URL
if not sqlite_path:
current_dir = Path(__file__).parent
sqlite_path = (
current_dir.parent.parent.parent / "codegate_volume" / "db" / "codegate.db"
) # type: ignore
self._db_path = Path(sqlite_path).absolute() # type: ignore
self._db_path.parent.mkdir(parents=True, exist_ok=True)
logger.debug(f"Connecting to DB from path: {self._db_path}")
engine_dict = {
"url": f"sqlite+aiosqlite:///{self._db_path}",
"echo": False, # Set to False in production
"isolation_level": "AUTOCOMMIT", # Required for SQLite
}
self._async_db_engine = create_async_engine(**engine_dict)
if not hasattr(self, "_initialized"):
# Ensure __init__ is only executed once
self._initialized = True

# Initialize SQLite database engine with proper async URL
if not sqlite_path:
current_dir = Path(__file__).parent
sqlite_path = (
current_dir.parent.parent.parent / "codegate_volume" / "db" / "codegate.db"
)
self._db_path = Path(sqlite_path).absolute()
self._db_path.parent.mkdir(parents=True, exist_ok=True)
logger.debug(f"Connecting to DB from path: {self._db_path}")
engine_dict = {
"url": f"sqlite+aiosqlite:///{self._db_path}",
"echo": False, # Set to False in production
"isolation_level": "AUTOCOMMIT", # Required for SQLite
}
self._async_db_engine = create_async_engine(**engine_dict)

def does_db_exist(self):
return self._db_path.is_file()
Expand Down
Loading