cc-backend/internal/repository/dbConnection.go

73 lines
1.7 KiB
Go
Raw Normal View History

// Copyright (C) 2022 NHR@FAU, University Erlangen-Nuremberg.
// All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
2022-06-21 17:52:36 +02:00
package repository
import (
2023-02-13 13:52:17 +01:00
"database/sql"
2022-06-21 17:52:36 +02:00
"fmt"
"log"
"sync"
"time"
"github.com/jmoiron/sqlx"
2023-02-13 13:52:17 +01:00
"github.com/mattn/go-sqlite3"
"github.com/qustavo/sqlhooks/v2"
2022-06-21 17:52:36 +02:00
)
var (
dbConnOnce sync.Once
dbConnInstance *DBConnection
)
type DBConnection struct {
DB *sqlx.DB
Driver string
2022-06-21 17:52:36 +02:00
}
func Connect(driver string, db string) {
var err error
var dbHandle *sqlx.DB
dbConnOnce.Do(func() {
if driver == "sqlite3" {
2023-02-13 13:52:17 +01:00
sql.Register("sqlite3WithHooks", sqlhooks.Wrap(&sqlite3.SQLiteDriver{}, &Hooks{}))
dbHandle, err = sqlx.Open("sqlite3WithHooks", fmt.Sprintf("%s?_foreign_keys=on", db))
// dbHandle, err = sqlx.Open("sqlite3", fmt.Sprintf("%s?_foreign_keys=on", db))
2022-06-21 17:52:36 +02:00
if err != nil {
log.Fatal(err)
}
// sqlite does not multithread. Having more than one connection open would just mean
// waiting for locks.
dbHandle.SetMaxOpenConns(1)
} else if driver == "mysql" {
dbHandle, err = sqlx.Open("mysql", fmt.Sprintf("%s?multiStatements=true", db))
if err != nil {
log.Fatalf("sqlx.Open() error: %v", err)
2022-06-21 17:52:36 +02:00
}
dbHandle.SetConnMaxLifetime(time.Minute * 3)
dbHandle.SetMaxOpenConns(10)
dbHandle.SetMaxIdleConns(10)
} else {
log.Fatalf("unsupported database driver: %s", driver)
2022-06-21 17:52:36 +02:00
}
dbConnInstance = &DBConnection{DB: dbHandle, Driver: driver}
err = checkDBVersion(driver, dbHandle.DB)
if err != nil {
log.Fatal(err)
}
2022-06-21 17:52:36 +02:00
})
}
func GetConnection() *DBConnection {
if dbConnInstance == nil {
log.Fatalf("Database connection not initialized!")
2022-06-21 17:52:36 +02:00
}
return dbConnInstance
}