mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
232 lines
4.2 KiB
Go
232 lines
4.2 KiB
Go
|
|
// Copyright 2016 The Go Authors. All rights reserved.
|
||
|
|
// Use of this source code is governed by a BSD-style
|
||
|
|
// license that can be found in the LICENSE file.
|
||
|
|
|
||
|
|
package sql
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
"database/sql/driver"
|
||
|
|
"errors"
|
||
|
|
)
|
||
|
|
|
||
|
|
func ctxDriverPrepare(ctx context.Context, ci driver.Conn, query string) (driver.Stmt, error) {
|
||
|
|
if ciCtx, is := ci.(driver.ConnPrepareContext); is {
|
||
|
|
return ciCtx.PrepareContext(ctx, query)
|
||
|
|
}
|
||
|
|
type R struct {
|
||
|
|
err error
|
||
|
|
panic interface{}
|
||
|
|
si driver.Stmt
|
||
|
|
}
|
||
|
|
|
||
|
|
rc := make(chan R, 1)
|
||
|
|
go func() {
|
||
|
|
r := R{}
|
||
|
|
defer func() {
|
||
|
|
if v := recover(); v != nil {
|
||
|
|
r.panic = v
|
||
|
|
}
|
||
|
|
rc <- r
|
||
|
|
}()
|
||
|
|
r.si, r.err = ci.Prepare(query)
|
||
|
|
}()
|
||
|
|
select {
|
||
|
|
case <-ctx.Done():
|
||
|
|
go func() {
|
||
|
|
<-rc
|
||
|
|
close(rc)
|
||
|
|
}()
|
||
|
|
return nil, ctx.Err()
|
||
|
|
case r := <-rc:
|
||
|
|
if r.panic != nil {
|
||
|
|
panic(r.panic)
|
||
|
|
}
|
||
|
|
return r.si, r.err
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func ctxDriverExec(ctx context.Context, execer driver.Execer, query string, dargs []driver.Value) (driver.Result, error) {
|
||
|
|
if execerCtx, is := execer.(driver.ExecerContext); is {
|
||
|
|
return execerCtx.ExecContext(ctx, query, dargs)
|
||
|
|
}
|
||
|
|
type R struct {
|
||
|
|
err error
|
||
|
|
panic interface{}
|
||
|
|
resi driver.Result
|
||
|
|
}
|
||
|
|
|
||
|
|
rc := make(chan R, 1)
|
||
|
|
go func() {
|
||
|
|
r := R{}
|
||
|
|
defer func() {
|
||
|
|
if v := recover(); v != nil {
|
||
|
|
r.panic = v
|
||
|
|
}
|
||
|
|
rc <- r
|
||
|
|
}()
|
||
|
|
r.resi, r.err = execer.Exec(query, dargs)
|
||
|
|
}()
|
||
|
|
select {
|
||
|
|
case <-ctx.Done():
|
||
|
|
go func() {
|
||
|
|
<-rc
|
||
|
|
close(rc)
|
||
|
|
}()
|
||
|
|
return nil, ctx.Err()
|
||
|
|
case r := <-rc:
|
||
|
|
if r.panic != nil {
|
||
|
|
panic(r.panic)
|
||
|
|
}
|
||
|
|
return r.resi, r.err
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func ctxDriverQuery(ctx context.Context, queryer driver.Queryer, query string, dargs []driver.Value) (driver.Rows, error) {
|
||
|
|
if queryerCtx, is := queryer.(driver.QueryerContext); is {
|
||
|
|
return queryerCtx.QueryContext(ctx, query, dargs)
|
||
|
|
}
|
||
|
|
type R struct {
|
||
|
|
err error
|
||
|
|
panic interface{}
|
||
|
|
rowsi driver.Rows
|
||
|
|
}
|
||
|
|
|
||
|
|
rc := make(chan R, 1)
|
||
|
|
go func() {
|
||
|
|
r := R{}
|
||
|
|
defer func() {
|
||
|
|
if v := recover(); v != nil {
|
||
|
|
r.panic = v
|
||
|
|
}
|
||
|
|
rc <- r
|
||
|
|
}()
|
||
|
|
r.rowsi, r.err = queryer.Query(query, dargs)
|
||
|
|
}()
|
||
|
|
select {
|
||
|
|
case <-ctx.Done():
|
||
|
|
go func() {
|
||
|
|
<-rc
|
||
|
|
close(rc)
|
||
|
|
}()
|
||
|
|
return nil, ctx.Err()
|
||
|
|
case r := <-rc:
|
||
|
|
if r.panic != nil {
|
||
|
|
panic(r.panic)
|
||
|
|
}
|
||
|
|
return r.rowsi, r.err
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func ctxDriverStmtExec(ctx context.Context, si driver.Stmt, dargs []driver.Value) (driver.Result, error) {
|
||
|
|
if siCtx, is := si.(driver.StmtExecContext); is {
|
||
|
|
return siCtx.ExecContext(ctx, dargs)
|
||
|
|
}
|
||
|
|
type R struct {
|
||
|
|
err error
|
||
|
|
panic interface{}
|
||
|
|
resi driver.Result
|
||
|
|
}
|
||
|
|
|
||
|
|
rc := make(chan R, 1)
|
||
|
|
go func() {
|
||
|
|
r := R{}
|
||
|
|
defer func() {
|
||
|
|
if v := recover(); v != nil {
|
||
|
|
r.panic = v
|
||
|
|
}
|
||
|
|
rc <- r
|
||
|
|
}()
|
||
|
|
r.resi, r.err = si.Exec(dargs)
|
||
|
|
}()
|
||
|
|
select {
|
||
|
|
case <-ctx.Done():
|
||
|
|
go func() {
|
||
|
|
<-rc
|
||
|
|
close(rc)
|
||
|
|
}()
|
||
|
|
return nil, ctx.Err()
|
||
|
|
case r := <-rc:
|
||
|
|
if r.panic != nil {
|
||
|
|
panic(r.panic)
|
||
|
|
}
|
||
|
|
return r.resi, r.err
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func ctxDriverStmtQuery(ctx context.Context, si driver.Stmt, dargs []driver.Value) (driver.Rows, error) {
|
||
|
|
if siCtx, is := si.(driver.StmtQueryContext); is {
|
||
|
|
return siCtx.QueryContext(ctx, dargs)
|
||
|
|
}
|
||
|
|
type R struct {
|
||
|
|
err error
|
||
|
|
panic interface{}
|
||
|
|
rowsi driver.Rows
|
||
|
|
}
|
||
|
|
|
||
|
|
rc := make(chan R, 1)
|
||
|
|
go func() {
|
||
|
|
r := R{}
|
||
|
|
defer func() {
|
||
|
|
if v := recover(); v != nil {
|
||
|
|
r.panic = v
|
||
|
|
}
|
||
|
|
rc <- r
|
||
|
|
}()
|
||
|
|
r.rowsi, r.err = si.Query(dargs)
|
||
|
|
}()
|
||
|
|
select {
|
||
|
|
case <-ctx.Done():
|
||
|
|
go func() {
|
||
|
|
<-rc
|
||
|
|
close(rc)
|
||
|
|
}()
|
||
|
|
return nil, ctx.Err()
|
||
|
|
case r := <-rc:
|
||
|
|
if r.panic != nil {
|
||
|
|
panic(r.panic)
|
||
|
|
}
|
||
|
|
return r.rowsi, r.err
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
var errLevelNotSupported = errors.New("sql: selected isolation level is not supported")
|
||
|
|
|
||
|
|
func ctxDriverBegin(ctx context.Context, ci driver.Conn) (driver.Tx, error) {
|
||
|
|
if ciCtx, is := ci.(driver.ConnBeginContext); is {
|
||
|
|
return ciCtx.BeginContext(ctx)
|
||
|
|
}
|
||
|
|
// TODO(kardianos): check the transaction level in ctx. If set and non-default
|
||
|
|
// then return an error here as the BeginContext driver value is not supported.
|
||
|
|
|
||
|
|
type R struct {
|
||
|
|
err error
|
||
|
|
panic interface{}
|
||
|
|
txi driver.Tx
|
||
|
|
}
|
||
|
|
rc := make(chan R, 1)
|
||
|
|
go func() {
|
||
|
|
r := R{}
|
||
|
|
defer func() {
|
||
|
|
if v := recover(); v != nil {
|
||
|
|
r.panic = v
|
||
|
|
}
|
||
|
|
rc <- r
|
||
|
|
}()
|
||
|
|
r.txi, r.err = ci.Begin()
|
||
|
|
}()
|
||
|
|
select {
|
||
|
|
case <-ctx.Done():
|
||
|
|
go func() {
|
||
|
|
<-rc
|
||
|
|
close(rc)
|
||
|
|
}()
|
||
|
|
return nil, ctx.Err()
|
||
|
|
case r := <-rc:
|
||
|
|
if r.panic != nil {
|
||
|
|
panic(r.panic)
|
||
|
|
}
|
||
|
|
return r.txi, r.err
|
||
|
|
}
|
||
|
|
}
|