2017-10-21 04:05:58 +00:00
|
|
|
package pq
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"database/sql"
|
|
|
|
"database/sql/driver"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
2021-01-28 16:56:38 +00:00
|
|
|
"sync/atomic"
|
2019-04-15 20:14:31 +00:00
|
|
|
"time"
|
2017-10-21 04:05:58 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Implement the "QueryerContext" interface
|
|
|
|
func (cn *conn) QueryContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error) {
|
|
|
|
list := make([]driver.Value, len(args))
|
|
|
|
for i, nv := range args {
|
|
|
|
list[i] = nv.Value
|
|
|
|
}
|
|
|
|
finish := cn.watchCancel(ctx)
|
|
|
|
r, err := cn.query(query, list)
|
|
|
|
if err != nil {
|
|
|
|
if finish != nil {
|
|
|
|
finish()
|
|
|
|
}
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
r.finish = finish
|
|
|
|
return r, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Implement the "ExecerContext" interface
|
|
|
|
func (cn *conn) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error) {
|
|
|
|
list := make([]driver.Value, len(args))
|
|
|
|
for i, nv := range args {
|
|
|
|
list[i] = nv.Value
|
|
|
|
}
|
|
|
|
|
|
|
|
if finish := cn.watchCancel(ctx); finish != nil {
|
|
|
|
defer finish()
|
|
|
|
}
|
|
|
|
|
|
|
|
return cn.Exec(query, list)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Implement the "ConnBeginTx" interface
|
|
|
|
func (cn *conn) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) {
|
|
|
|
var mode string
|
|
|
|
|
|
|
|
switch sql.IsolationLevel(opts.Isolation) {
|
|
|
|
case sql.LevelDefault:
|
|
|
|
// Don't touch mode: use the server's default
|
|
|
|
case sql.LevelReadUncommitted:
|
|
|
|
mode = " ISOLATION LEVEL READ UNCOMMITTED"
|
|
|
|
case sql.LevelReadCommitted:
|
|
|
|
mode = " ISOLATION LEVEL READ COMMITTED"
|
|
|
|
case sql.LevelRepeatableRead:
|
|
|
|
mode = " ISOLATION LEVEL REPEATABLE READ"
|
|
|
|
case sql.LevelSerializable:
|
|
|
|
mode = " ISOLATION LEVEL SERIALIZABLE"
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("pq: isolation level not supported: %d", opts.Isolation)
|
|
|
|
}
|
|
|
|
|
|
|
|
if opts.ReadOnly {
|
|
|
|
mode += " READ ONLY"
|
|
|
|
} else {
|
|
|
|
mode += " READ WRITE"
|
|
|
|
}
|
|
|
|
|
|
|
|
tx, err := cn.begin(mode)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
cn.txnFinish = cn.watchCancel(ctx)
|
|
|
|
return tx, nil
|
|
|
|
}
|
|
|
|
|
2019-04-15 20:14:31 +00:00
|
|
|
func (cn *conn) Ping(ctx context.Context) error {
|
|
|
|
if finish := cn.watchCancel(ctx); finish != nil {
|
|
|
|
defer finish()
|
|
|
|
}
|
2020-06-16 11:57:38 +00:00
|
|
|
rows, err := cn.simpleQuery(";")
|
2019-04-15 20:14:31 +00:00
|
|
|
if err != nil {
|
|
|
|
return driver.ErrBadConn // https://golang.org/pkg/database/sql/driver/#Pinger
|
|
|
|
}
|
|
|
|
rows.Close()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-10-21 04:05:58 +00:00
|
|
|
func (cn *conn) watchCancel(ctx context.Context) func() {
|
|
|
|
if done := ctx.Done(); done != nil {
|
2021-01-28 16:56:38 +00:00
|
|
|
finished := make(chan struct{}, 1)
|
2017-10-21 04:05:58 +00:00
|
|
|
go func() {
|
|
|
|
select {
|
|
|
|
case <-done:
|
2021-01-28 16:56:38 +00:00
|
|
|
select {
|
|
|
|
case finished <- struct{}{}:
|
|
|
|
default:
|
|
|
|
// We raced with the finish func, let the next query handle this with the
|
|
|
|
// context.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the connection state to bad so it does not get reused.
|
|
|
|
cn.setBad()
|
|
|
|
|
2019-04-15 20:14:31 +00:00
|
|
|
// At this point the function level context is canceled,
|
|
|
|
// so it must not be used for the additional network
|
|
|
|
// request to cancel the query.
|
|
|
|
// Create a new context to pass into the dial.
|
|
|
|
ctxCancel, cancel := context.WithTimeout(context.Background(), time.Second*10)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
_ = cn.cancel(ctxCancel)
|
2017-10-21 04:05:58 +00:00
|
|
|
case <-finished:
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
return func() {
|
|
|
|
select {
|
|
|
|
case <-finished:
|
2021-01-28 16:56:38 +00:00
|
|
|
cn.setBad()
|
|
|
|
cn.Close()
|
2017-10-21 04:05:58 +00:00
|
|
|
case finished <- struct{}{}:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-04-15 20:14:31 +00:00
|
|
|
func (cn *conn) cancel(ctx context.Context) error {
|
2021-04-23 00:08:53 +00:00
|
|
|
// Create a new values map (copy). This makes sure the connection created
|
|
|
|
// in this method cannot write to the same underlying data, which could
|
|
|
|
// cause a concurrent map write panic. This is necessary because cancel
|
|
|
|
// is called from a goroutine in watchCancel.
|
|
|
|
o := make(values)
|
|
|
|
for k, v := range cn.opts {
|
|
|
|
o[k] = v
|
|
|
|
}
|
|
|
|
|
|
|
|
c, err := dial(ctx, cn.dialer, o)
|
2017-10-21 04:05:58 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer c.Close()
|
|
|
|
|
|
|
|
{
|
2021-01-28 16:56:38 +00:00
|
|
|
bad := &atomic.Value{}
|
|
|
|
bad.Store(false)
|
2017-10-21 04:05:58 +00:00
|
|
|
can := conn{
|
2021-01-28 16:56:38 +00:00
|
|
|
c: c,
|
|
|
|
bad: bad,
|
2017-10-21 04:05:58 +00:00
|
|
|
}
|
2021-04-23 00:08:53 +00:00
|
|
|
err = can.ssl(o)
|
2019-03-27 11:15:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-10-21 04:05:58 +00:00
|
|
|
|
|
|
|
w := can.writeBuf(0)
|
|
|
|
w.int32(80877102) // cancel request code
|
|
|
|
w.int32(cn.processID)
|
|
|
|
w.int32(cn.secretKey)
|
|
|
|
|
|
|
|
if err := can.sendStartupPacket(w); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read until EOF to ensure that the server received the cancel.
|
|
|
|
{
|
|
|
|
_, err := io.Copy(ioutil.Discard, c)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|