Add support for prepared statement caching.

This commit is contained in:
go-jet 2024-03-07 18:01:31 +01:00
parent 1b63280b74
commit 0918e5503e
30 changed files with 603 additions and 289 deletions

182
internal/jet/db/db.go Normal file
View file

@ -0,0 +1,182 @@
package db
import (
"context"
"database/sql"
"fmt"
"sync"
)
// DB is a wrapper around sql.DB, adding prepared statement caching capability.
type DB struct {
*sql.DB
statementsCaching bool
lock sync.RWMutex
statements map[string]*sql.Stmt
}
// NewDB creates new DB wrapper with statements caching disabled
func NewDB(db *sql.DB) *DB {
return &DB{
DB: db,
statementsCaching: false,
statements: make(map[string]*sql.Stmt),
}
}
// WithStatementsCaching returns *DB wrapper with prepared statements caching enabled or disabled. This method should be
// called only once. It is not concurrency-safe.
func (d *DB) WithStatementsCaching(enabled bool) *DB {
d.statementsCaching = enabled
return d
}
// Begin starts sql transaction and returns wrapped Tx object.
func (d *DB) Begin() (*Tx, error) {
tx, err := d.DB.Begin()
if err != nil {
return nil, err
}
return &Tx{
Tx: tx,
db: d,
statements: make(map[string]*sql.Stmt),
}, nil
}
// BeginTx starts sql transaction and returns wrapped Tx object.
func (d *DB) BeginTx(ctx context.Context, opts *sql.TxOptions) (*Tx, error) {
tx, err := d.DB.BeginTx(ctx, opts)
if err != nil {
return nil, err
}
return &Tx{
Tx: tx,
db: d,
statements: make(map[string]*sql.Stmt),
}, nil
}
// Exec executes a query that doesn't return rows. Exec delegates call to ExecContext with contex.Background()
// as parameter.
func (d *DB) Exec(query string, args ...interface{}) (sql.Result, error) {
return d.ExecContext(context.Background(), query, args...)
}
// ExecContext executes a query that doesn't return rows. If statement caching is enabled, ExecContext will
// first call PrepareContext to retrieve a prepared statement, and then execute a query using a prepared statement.
// If statement caching is disabled, this method delegates the call to the *sql.DB ExecContext method.
func (d *DB) ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error) {
if !d.statementsCaching {
return d.DB.ExecContext(ctx, query, args...)
}
prepStmt, err := d.PrepareContext(ctx, query)
if err != nil {
return nil, err
}
return prepStmt.ExecContext(ctx, args...)
}
// Query delegates call to QueryContext using context.Background() as parameter.
func (d *DB) Query(query string, args ...interface{}) (*sql.Rows, error) {
return d.QueryContext(context.Background(), query, args...)
}
// QueryContext executes a query that returns rows. If statement caching is enabled, QueryContext will
// first call PrepareContext to retrieve a prepared statement, and then execute a query using a prepared statement.
// If statement caching is disabled, this method delegates the call to the *sql.DB QueryContext method.
func (d *DB) QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error) {
if !d.statementsCaching {
return d.DB.QueryContext(ctx, query, args...)
}
prepStmt, err := d.PrepareContext(ctx, query)
if err != nil {
return nil, err
}
return prepStmt.QueryContext(ctx, args...)
}
// Prepare delegates call to PrepareContext using context.Background as a parameter.
func (d *DB) Prepare(query string) (*sql.Stmt, error) {
return d.PrepareContext(context.Background(), query)
}
// PrepareContext returns database prepared statement for a query. When statement caching is enabled, it returns a cached
// prepared statement if available; otherwise, it creates a new prepared statement and adds it to the cache.
// Invoking this method directly is unnecessary, as wrapper methods like Exec/ExecContext and Query/QueryContext
// will call PrepareContext before executing a query on it.
// If statement caching is disabled, this method delegates the call to the *sql.DB PrepareContext method.
//
// There's no need to manually close the returned statement; it operates within the transaction scope and will be closed
// automatically upon the completion of the transaction, whether it's committed or rolled back.
func (d *DB) PrepareContext(ctx context.Context, query string) (*sql.Stmt, error) {
if !d.statementsCaching {
return d.DB.PrepareContext(ctx, query)
}
d.lock.RLock()
prepStmt, ok := d.statements[query]
d.lock.RUnlock()
if ok {
return prepStmt, nil
}
prepStmt, err := d.DB.PrepareContext(ctx, query)
if err != nil {
return nil, fmt.Errorf("failed to prepare statement %s: %w", query, err)
}
d.lock.Lock()
existingPrepStmt, exist := d.statements[query]
// if in the meantime, another goroutine created prepared statements for this query, we will close this
// prepared statement and return the existing one.
if exist {
_ = prepStmt.Close()
d.lock.Unlock()
return existingPrepStmt, nil
}
d.statements[query] = prepStmt
d.lock.Unlock()
return prepStmt, nil
}
// Clear will close all cached prepared statements
func (d *DB) Clear() error {
d.lock.Lock()
defer d.lock.Unlock()
var err error
for _, statement := range d.statements {
closeErr := statement.Close()
if closeErr != nil {
err = closeErr
}
}
d.statements = make(map[string]*sql.Stmt)
if err != nil {
return fmt.Errorf("some of the prepared statements failed to close, last err: %w", err)
}
return nil
}

97
internal/jet/db/tx.go Normal file
View file

@ -0,0 +1,97 @@
package db
import (
"context"
"database/sql"
"fmt"
)
// Tx is a wrapper around *sql.Tx, adding prepared statement caching capability.
type Tx struct {
*sql.Tx
db *DB
statements map[string]*sql.Stmt
}
// Exec executes a query that doesn't return rows. Exec delegates call to ExecContext with contex.Background()
// as parameter.
func (t *Tx) Exec(query string, args ...interface{}) (sql.Result, error) {
return t.ExecContext(context.Background(), query, args...)
}
// ExecContext executes a query that doesn't return rows. If statement caching is enabled, ExecContext will
// first call PrepareContext to retrieve a prepared statement, and then execute a query using a prepared statement.
// If statement caching is disabled, this method delegates the call to the *sql.Tx ExecContext method.
func (t *Tx) ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error) {
if !t.db.statementsCaching {
return t.Tx.ExecContext(ctx, query, args...)
}
prepStmt, err := t.PrepareContext(ctx, query)
if err != nil {
return nil, err
}
return prepStmt.ExecContext(ctx, args...)
}
// Query delegates call to QueryContext using context.Background() as parameter.
func (t *Tx) Query(query string, args ...interface{}) (*sql.Rows, error) {
return t.QueryContext(context.Background(), query, args...)
}
// QueryContext executes a query that returns rows. If statement caching is enabled, QueryContext will
// first call PrepareContext to retrieve a prepared statement, and then execute a query using a prepared statement.
// If statement caching is disabled, this method delegates the call to the *sql.Tx QueryContext method.
func (t *Tx) QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error) {
if !t.db.statementsCaching {
return t.Tx.QueryContext(ctx, query, args...)
}
prepStmt, err := t.PrepareContext(ctx, query)
if err != nil {
return nil, err
}
return prepStmt.Query(args...)
}
// Prepare delegates call to PrepareContext using context.Background as a parameter.
func (t *Tx) Prepare(query string) (*sql.Stmt, error) {
return t.PrepareContext(context.Background(), query)
}
// PrepareContext returns database prepared statement for a query. When statement caching is enabled, it returns a cached
// prepared statement if available; otherwise, it creates a new prepared statement and adds it to the cache.
// Invoking this method directly is unnecessary, as wrapper methods like Exec/ExecContext and Query/QueryContext
// will call PrepareContext before executing a query on it.
// If statement caching is disabled, this method delegates the call to the *sql.Tx PrepareContext method.
//
// There's no need to manually close the returned statement; it operates within the transaction scope and will be closed
// automatically upon the completion of the transaction, whether it's committed or rolled back.
func (t *Tx) PrepareContext(ctx context.Context, query string) (*sql.Stmt, error) {
if !t.db.statementsCaching {
return t.PrepareContext(ctx, query)
}
prepStmt, ok := t.statements[query]
if ok {
return prepStmt, nil
}
dbPrepStmt, err := t.db.PrepareContext(ctx, query)
if err != nil {
return nil, fmt.Errorf("failed to prepare statement, %w", err)
}
prepStmt = t.Tx.StmtContext(ctx, dbPrepStmt)
t.statements[query] = prepStmt
return prepStmt, nil
}

View file

@ -3,10 +3,10 @@ package testutils
import (
"bytes"
"context"
"database/sql"
"encoding/json"
"fmt"
"github.com/go-jet/jet/v2/internal/jet"
jet2 "github.com/go-jet/jet/v2/internal/jet/db"
"github.com/go-jet/jet/v2/internal/utils/throw"
"github.com/go-jet/jet/v2/qrm"
"github.com/google/uuid"
@ -28,7 +28,7 @@ var UnixTimeComparer = cmp.Comparer(func(t1, t2 time.Time) bool {
})
// AssertExecAndRollback will execute and rollback statement in sql transaction
func AssertExecAndRollback(t *testing.T, stmt jet.Statement, db *sql.DB, rowsAffected ...int64) {
func AssertExecAndRollback(t *testing.T, stmt jet.Statement, db *jet2.DB, rowsAffected ...int64) {
tx, err := db.Begin()
require.NoError(t, err)
defer func() {
@ -53,7 +53,7 @@ func AssertExec(t *testing.T, stmt jet.Statement, db qrm.DB, rowsAffected ...int
}
// ExecuteInTxAndRollback will execute function in sql transaction and then rollback transaction
func ExecuteInTxAndRollback(t *testing.T, db *sql.DB, f func(tx *sql.Tx)) {
func ExecuteInTxAndRollback(t *testing.T, db *jet2.DB, f func(tx qrm.DB)) {
tx, err := db.Begin()
require.NoError(t, err)
defer func() {
@ -133,7 +133,7 @@ func AssertJSONFile(t *testing.T, data interface{}, testRelativePath string) {
}
// AssertStatementSql check if statement Sql() is the same as expectedQuery and expectedArgs
func AssertStatementSql(t *testing.T, query jet.Statement, expectedQuery string, expectedArgs ...interface{}) {
func AssertStatementSql(t *testing.T, query jet.PrintableStatement, expectedQuery string, expectedArgs ...interface{}) {
queryStr, args := query.Sql()
assertQueryString(t, queryStr, expectedQuery)
@ -154,7 +154,7 @@ func AssertStatementSqlErr(t *testing.T, stmt jet.Statement, errorStr string) {
}
// AssertDebugStatementSql check if statement Sql() is the same as expectedQuery
func AssertDebugStatementSql(t *testing.T, query jet.Statement, expectedQuery string, expectedArgs ...interface{}) {
func AssertDebugStatementSql(t *testing.T, query jet.PrintableStatement, expectedQuery string, expectedArgs ...interface{}) {
_, args := query.Sql()
if len(expectedArgs) > 0 {