2021-09-19 13:49:59 +02:00
// Copyright 2019 The Gitea Authors. All rights reserved.
2022-11-27 19:20:29 +01:00
// SPDX-License-Identifier: MIT
2021-09-19 13:49:59 +02:00
package db
import (
2021-09-23 17:45:36 +02:00
"context"
2021-11-21 16:41:00 +01:00
"database/sql"
2021-09-23 17:45:36 +02:00
2022-11-12 21:18:50 +01:00
"xorm.io/xorm"
2022-05-21 20:50:50 +02:00
"xorm.io/xorm/schemas"
2021-09-19 13:49:59 +02:00
)
2021-09-23 17:45:36 +02:00
// DefaultContext is the default context to run xorm queries in
// will be overwritten by Init with HammerContext
var DefaultContext context . Context
// contextKey is a value for use with context.WithValue.
type contextKey struct {
name string
}
2022-06-20 14:38:58 +02:00
// enginedContextKey is a context key. It is used with context.Value() to get the current Engined for the context
2022-12-08 09:21:37 +01:00
var (
enginedContextKey = & contextKey { "engined" }
_ Engined = & Context { }
)
2021-09-23 17:45:36 +02:00
2021-09-19 13:49:59 +02:00
// Context represents a db context
type Context struct {
2021-09-23 17:45:36 +02:00
context . Context
2022-06-20 14:38:58 +02:00
e Engine
transaction bool
2021-09-19 13:49:59 +02:00
}
2022-06-20 14:38:58 +02:00
func newContext ( ctx context . Context , e Engine , transaction bool ) * Context {
2021-10-13 21:47:02 +02:00
return & Context {
2022-06-20 14:38:58 +02:00
Context : ctx ,
e : e ,
transaction : transaction ,
2021-10-13 21:47:02 +02:00
}
}
2022-06-20 14:38:58 +02:00
// InTransaction if context is in a transaction
func ( ctx * Context ) InTransaction ( ) bool {
return ctx . transaction
}
2021-09-19 13:49:59 +02:00
// Engine returns db engine
func ( ctx * Context ) Engine ( ) Engine {
return ctx . e
}
2021-09-23 17:45:36 +02:00
// Value shadows Value for context.Context but allows us to get ourselves and an Engined object
func ( ctx * Context ) Value ( key interface { } ) interface { } {
2022-06-20 14:38:58 +02:00
if key == enginedContextKey {
2021-09-23 17:45:36 +02:00
return ctx
}
return ctx . Context . Value ( key )
}
2022-01-20 00:26:57 +01:00
// WithContext returns this engine tied to this context
func ( ctx * Context ) WithContext ( other context . Context ) * Context {
2022-06-20 14:38:58 +02:00
return newContext ( ctx , ctx . e . Context ( other ) , ctx . transaction )
2022-01-20 00:26:57 +01:00
}
2021-09-23 17:45:36 +02:00
// Engined structs provide an Engine
type Engined interface {
Engine ( ) Engine
}
// GetEngine will get a db Engine from this context or return an Engine restricted to this context
func GetEngine ( ctx context . Context ) Engine {
if engined , ok := ctx . ( Engined ) ; ok {
return engined . Engine ( )
}
2022-06-20 14:38:58 +02:00
enginedInterface := ctx . Value ( enginedContextKey )
2021-09-23 17:45:36 +02:00
if enginedInterface != nil {
return enginedInterface . ( Engined ) . Engine ( )
}
return x . Context ( ctx )
}
2021-09-19 13:49:59 +02:00
// Committer represents an interface to Commit or Close the Context
type Committer interface {
Commit ( ) error
Close ( ) error
}
// TxContext represents a transaction Context
2022-11-12 21:18:50 +01:00
func TxContext ( parentCtx context . Context ) ( * Context , Committer , error ) {
if InTransaction ( parentCtx ) {
return nil , nil , ErrAlreadyInTransaction
}
2021-09-19 13:49:59 +02:00
sess := x . NewSession ( )
if err := sess . Begin ( ) ; err != nil {
sess . Close ( )
return nil , nil , err
}
2022-06-20 14:38:58 +02:00
return newContext ( DefaultContext , sess , true ) , sess , nil
2021-09-19 13:49:59 +02:00
}
// WithTx represents executing database operations on a transaction
2022-11-12 21:18:50 +01:00
// This function will always open a new transaction, if a transaction exist in parentCtx return an error.
func WithTx ( parentCtx context . Context , f func ( ctx context . Context ) error ) error {
if InTransaction ( parentCtx ) {
return ErrAlreadyInTransaction
}
return txWithNoCheck ( parentCtx , f )
}
// AutoTx represents executing database operations on a transaction, if the transaction exist,
// this function will reuse it otherwise will create a new one and close it when finished.
func AutoTx ( parentCtx context . Context , f func ( ctx context . Context ) error ) error {
if InTransaction ( parentCtx ) {
return f ( newContext ( parentCtx , GetEngine ( parentCtx ) , true ) )
2022-05-03 21:46:28 +02:00
}
2022-11-12 21:18:50 +01:00
return txWithNoCheck ( parentCtx , f )
}
2022-05-03 21:46:28 +02:00
2022-11-12 21:18:50 +01:00
func txWithNoCheck ( parentCtx context . Context , f func ( ctx context . Context ) error ) error {
2021-09-19 13:49:59 +02:00
sess := x . NewSession ( )
defer sess . Close ( )
if err := sess . Begin ( ) ; err != nil {
return err
}
2022-06-20 14:38:58 +02:00
if err := f ( newContext ( parentCtx , sess , true ) ) ; err != nil {
2021-09-19 13:49:59 +02:00
return err
}
return sess . Commit ( )
}
// Insert inserts records into database
2021-09-23 17:45:36 +02:00
func Insert ( ctx context . Context , beans ... interface { } ) error {
_ , err := GetEngine ( ctx ) . Insert ( beans ... )
2021-09-19 13:49:59 +02:00
return err
}
2021-11-21 16:41:00 +01:00
// Exec executes a sql with args
func Exec ( ctx context . Context , sqlAndArgs ... interface { } ) ( sql . Result , error ) {
return GetEngine ( ctx ) . Exec ( sqlAndArgs ... )
}
// GetByBean filled empty fields of the bean according non-empty fields to query in database.
func GetByBean ( ctx context . Context , bean interface { } ) ( bool , error ) {
return GetEngine ( ctx ) . Get ( bean )
}
// DeleteByBean deletes all records according non-empty fields of the bean as conditions.
func DeleteByBean ( ctx context . Context , bean interface { } ) ( int64 , error ) {
return GetEngine ( ctx ) . Delete ( bean )
}
2022-02-17 09:37:48 +01:00
// DeleteBeans deletes all given beans, beans should contain delete conditions.
func DeleteBeans ( ctx context . Context , beans ... interface { } ) ( err error ) {
e := GetEngine ( ctx )
for i := range beans {
if _ , err = e . Delete ( beans [ i ] ) ; err != nil {
return err
}
}
return nil
}
2021-11-21 16:41:00 +01:00
// CountByBean counts the number of database records according non-empty fields of the bean as conditions.
func CountByBean ( ctx context . Context , bean interface { } ) ( int64 , error ) {
return GetEngine ( ctx ) . Count ( bean )
}
// TableName returns the table name according a bean object
func TableName ( bean interface { } ) string {
return x . TableName ( bean )
}
2022-05-21 20:50:50 +02:00
// EstimateCount returns an estimate of total number of rows in table
func EstimateCount ( ctx context . Context , bean interface { } ) ( int64 , error ) {
e := GetEngine ( ctx )
e . Context ( ctx )
var rows int64
var err error
tablename := TableName ( bean )
switch x . Dialect ( ) . URI ( ) . DBType {
case schemas . MYSQL :
_ , err = e . Context ( ctx ) . SQL ( "SELECT table_rows FROM information_schema.tables WHERE tables.table_name = ? AND tables.table_schema = ?;" , tablename , x . Dialect ( ) . URI ( ) . DBName ) . Get ( & rows )
case schemas . POSTGRES :
_ , err = e . Context ( ctx ) . SQL ( "SELECT reltuples AS estimate FROM pg_class WHERE relname = ?;" , tablename ) . Get ( & rows )
case schemas . MSSQL :
_ , err = e . Context ( ctx ) . SQL ( "sp_spaceused ?;" , tablename ) . Get ( & rows )
default :
return e . Context ( ctx ) . Count ( tablename )
}
return rows , err
}
2022-11-12 21:18:50 +01:00
// InTransaction returns true if the engine is in a transaction otherwise return false
func InTransaction ( ctx context . Context ) bool {
var e Engine
if engined , ok := ctx . ( Engined ) ; ok {
e = engined . Engine ( )
} else {
enginedInterface := ctx . Value ( enginedContextKey )
if enginedInterface != nil {
e = enginedInterface . ( Engined ) . Engine ( )
}
}
if e == nil {
return false
}
switch t := e . ( type ) {
case * xorm . Engine :
return false
case * xorm . Session :
return t . IsInTx ( )
default :
return false
}
}