-
Notifications
You must be signed in to change notification settings - Fork 40
/
connection.go
117 lines (100 loc) · 2.66 KB
/
connection.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
package impala
import (
"context"
"database/sql/driver"
"log"
"time"
"github.com/apache/thrift/lib/go/thrift"
"github.com/bippio/go-impala/hive"
)
// Conn to impala. It is not used concurrently by multiple goroutines.
type Conn struct {
t thrift.TTransport
session *hive.Session
client *hive.Client
log *log.Logger
}
// Ping impala server
func (c *Conn) Ping(ctx context.Context) error {
session, err := c.OpenSession(ctx)
if err != nil {
return err
}
if err := session.Ping(ctx); err != nil {
return err
}
return nil
}
// CheckNamedValue is called before passing arguments to the driver
// and is called in place of any ColumnConverter. CheckNamedValue must do type
// validation and conversion as appropriate for the driver.
func (c *Conn) CheckNamedValue(val *driver.NamedValue) error {
t, ok := val.Value.(time.Time)
if ok {
val.Value = t.Format(hive.TimestampFormat)
return nil
}
return driver.ErrSkip
}
// Prepare returns prepared statement
func (c *Conn) Prepare(query string) (driver.Stmt, error) {
return c.PrepareContext(context.Background(), query)
}
// PrepareContext returns prepared statement
func (c *Conn) PrepareContext(ctx context.Context, query string) (driver.Stmt, error) {
return &Stmt{
conn: c,
stmt: template(query),
}, nil
}
// QueryContext executes a query that may return rows
func (c *Conn) QueryContext(ctx context.Context, q string, args []driver.NamedValue) (driver.Rows, error) {
session, err := c.OpenSession(ctx)
if err != nil {
return nil, err
}
tmpl := template(q)
stmt := statement(tmpl, args)
return query(ctx, session, stmt)
}
// ExecContext executes a query that doesn't return rows
func (c *Conn) ExecContext(ctx context.Context, q string, args []driver.NamedValue) (driver.Result, error) {
session, err := c.OpenSession(ctx)
if err != nil {
return nil, err
}
tmpl := template(q)
stmt := statement(tmpl, args)
return exec(ctx, session, stmt)
}
// Begin is not supported
func (c *Conn) Begin() (driver.Tx, error) {
return nil, ErrNotSupported
}
// OpenSession ensure opened session
func (c *Conn) OpenSession(ctx context.Context) (*hive.Session, error) {
if c.session == nil {
session, err := c.client.OpenSession(ctx)
if err != nil {
c.log.Printf("failed to open session: %v", err)
return nil, driver.ErrBadConn
}
c.session = session
}
return c.session, nil
}
// ResetSession closes hive session
func (c *Conn) ResetSession(ctx context.Context) error {
if c.session != nil {
if err := c.session.Close(ctx); err != nil {
return err
}
c.session = nil
}
return nil
}
// Close connection
func (c *Conn) Close() error {
c.log.Printf("close connection")
return c.t.Close()
}