go-waku/waku/persistence/sqlite/sqlite.go

116 lines
2.9 KiB
Go
Raw Normal View History

2021-04-13 18:52:57 +00:00
package sqlite
import (
"database/sql"
"fmt"
2022-12-10 11:25:26 +00:00
"strings"
2021-04-13 18:52:57 +00:00
2023-01-04 17:58:14 +00:00
"github.com/golang-migrate/migrate/v4/database"
"github.com/golang-migrate/migrate/v4/database/sqlite3"
2021-10-09 18:18:53 +00:00
_ "github.com/mattn/go-sqlite3" // Blank import to register the sqlite3 driver
"github.com/waku-org/go-waku/waku/persistence"
"github.com/waku-org/go-waku/waku/persistence/migrate"
2023-01-04 17:58:14 +00:00
"github.com/waku-org/go-waku/waku/persistence/sqlite/migrations"
"go.uber.org/zap"
2021-04-13 18:52:57 +00:00
)
2022-12-10 11:25:26 +00:00
func addSqliteURLDefaults(dburl string) string {
if !strings.Contains(dburl, "?") {
dburl += "?"
}
if !strings.Contains(dburl, "_journal=") {
dburl += "&_journal=WAL"
}
if !strings.Contains(dburl, "_timeout=") {
dburl += "&_timeout=5000"
}
return dburl
}
2023-01-04 17:58:14 +00:00
// WithDB is a DBOption that lets you use a sqlite3 DBStore and run migrations
func WithDB(dburl string, migrate bool) persistence.DBOption {
return func(d *persistence.DBStore) error {
driverOption := persistence.WithDriver("sqlite3", addSqliteURLDefaults(dburl), persistence.ConnectionPoolOptions{
// Disable concurrent access as not supported by the driver
MaxOpenConnections: 1,
})
err := driverOption(d)
if err != nil {
return err
}
if !migrate {
return nil
}
migrationOpt := persistence.WithMigrations(Migrate)
err = migrationOpt(d)
if err != nil {
return err
}
return nil
}
2021-04-13 18:52:57 +00:00
}
2021-04-22 18:49:52 +00:00
// NewDB creates a sqlite3 DB in the specified path
func NewDB(dburl string, shouldVacuum bool, logger *zap.Logger) (*sql.DB, func(*sql.DB) error, error) {
2022-12-10 11:25:26 +00:00
db, err := sql.Open("sqlite3", addSqliteURLDefaults(dburl))
2021-04-13 18:52:57 +00:00
if err != nil {
2023-01-04 17:58:14 +00:00
return nil, nil, err
2021-04-13 18:52:57 +00:00
}
// Disable concurrent access as not supported by the driver
db.SetMaxOpenConns(1)
logger.Info("starting sqlite database vacuuming")
if shouldVacuum {
_, err := db.Exec("VACUUM")
if err != nil {
return nil, nil, err
}
}
logger.Info("finished sqlite database vacuuming")
2023-01-04 17:58:14 +00:00
return db, Migrate, nil
2021-04-13 18:52:57 +00:00
}
2023-01-04 17:58:14 +00:00
func migrationDriver(db *sql.DB) (database.Driver, error) {
return sqlite3.WithInstance(db, &sqlite3.Config{
MigrationsTable: "gowaku_" + sqlite3.DefaultMigrationsTable,
})
}
// Migrate is the function used for DB migration with sqlite driver
2023-01-04 17:58:14 +00:00
func Migrate(db *sql.DB) error {
migrationDriver, err := migrationDriver(db)
if err != nil {
return err
}
return migrate.Migrate(db, migrationDriver, migrations.AssetNames(), migrations.Asset)
}
// CreateTable creates the table that will persist the peers
func CreateTable(db *sql.DB, tableName string) error {
sqlStmt := fmt.Sprintf("CREATE TABLE IF NOT EXISTS %s (key TEXT NOT NULL UNIQUE, data BLOB);", tableName)
_, err := db.Exec(sqlStmt)
if err != nil {
return err
}
return nil
}
// NewQueries creates a table if it doesn't exist and a new SQL set of queries for the passed table
func NewQueries(tbl string, db *sql.DB) (*persistence.Queries, error) {
err := CreateTable(db, tbl)
if err != nil {
return nil, err
}
return persistence.CreateQueries(tbl, db), nil
2023-01-04 17:58:14 +00:00
}