-
Notifications
You must be signed in to change notification settings - Fork 36
/
connection.go
255 lines (205 loc) · 6.99 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to you under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package avatica
import (
"context"
"database/sql/driver"
"errors"
avaticaErrors "github.com/apache/calcite-avatica-go/v5/errors"
"github.com/apache/calcite-avatica-go/v5/message"
)
type conn struct {
connectionId string
config *Config
httpClient *httpClient
adapter Adapter
connectorInfo map[string]string
}
// Prepare returns a prepared statement, bound to this connection.
func (c *conn) Prepare(query string) (driver.Stmt, error) {
return c.prepare(context.Background(), query)
}
func (c *conn) prepare(ctx context.Context, query string) (driver.Stmt, error) {
if c.connectionId == "" {
return nil, driver.ErrBadConn
}
response, err := c.httpClient.post(ctx, &message.PrepareRequest{
ConnectionId: c.connectionId,
Sql: query,
MaxRowsTotal: c.config.maxRowsTotal,
})
if err != nil {
return nil, c.avaticaErrorToResponseErrorOrError(err)
}
prepareResponse := response.(*message.PrepareResponse)
return &stmt{
statementID: prepareResponse.Statement.Id,
conn: c,
parameters: prepareResponse.Statement.Signature.Parameters,
handle: prepareResponse.Statement,
batchUpdates: make([]*message.UpdateBatch, 0),
}, nil
}
// Close invalidates and potentially stops any current
// prepared statements and transactions, marking this
// connection as no longer in use.
//
// Because the sql package maintains a free pool of
// connections and only calls Close when there's a surplus of
// idle connections, it shouldn't be necessary for drivers to
// do their own connection caching.
func (c *conn) Close() error {
if c.connectionId == "" {
return driver.ErrBadConn
}
_, err := c.httpClient.post(context.Background(), &message.CloseConnectionRequest{
ConnectionId: c.connectionId,
})
c.connectionId = ""
if err != nil {
return c.avaticaErrorToResponseErrorOrError(err)
}
return nil
}
// Begin starts and returns a new transaction.
func (c *conn) Begin() (driver.Tx, error) {
return c.begin(context.Background(), isolationUseCurrent)
}
func (c *conn) begin(ctx context.Context, isolationLevel isoLevel) (driver.Tx, error) {
if c.connectionId == "" {
return nil, driver.ErrBadConn
}
if isolationLevel == isolationUseCurrent {
isolationLevel = isoLevel(c.config.transactionIsolation)
}
_, err := c.httpClient.post(ctx, &message.ConnectionSyncRequest{
ConnectionId: c.connectionId,
ConnProps: &message.ConnectionProperties{
AutoCommit: false,
HasAutoCommit: true,
TransactionIsolation: uint32(isolationLevel),
},
})
if err != nil {
return nil, c.avaticaErrorToResponseErrorOrError(err)
}
return &tx{conn: c}, nil
}
// Exec prepares and executes a query and returns the result directly.
func (c *conn) Exec(query string, args []driver.Value) (driver.Result, error) {
list := driverValueToNamedValue(args)
return c.exec(context.Background(), query, list)
}
func (c *conn) exec(ctx context.Context, query string, args []namedValue) (driver.Result, error) {
if c.connectionId == "" {
return nil, driver.ErrBadConn
}
if len(args) != 0 {
return nil, driver.ErrSkip
}
st, err := c.httpClient.post(ctx, &message.CreateStatementRequest{
ConnectionId: c.connectionId,
})
if err != nil {
return nil, c.avaticaErrorToResponseErrorOrError(err)
}
statementID := st.(*message.CreateStatementResponse).StatementId
defer c.closeStatement(context.Background(), statementID)
res, err := c.httpClient.post(ctx, &message.PrepareAndExecuteRequest{
ConnectionId: c.connectionId,
StatementId: statementID,
Sql: query,
MaxRowsTotal: c.config.maxRowsTotal,
FirstFrameMaxSize: c.config.frameMaxSize,
})
if err != nil {
return nil, c.avaticaErrorToResponseErrorOrError(err)
}
// Currently there is only 1 ResultSet per response for exec
changed := int64(res.(*message.ExecuteResponse).Results[0].UpdateCount)
return &result{
affectedRows: changed,
}, nil
}
// Query prepares and executes a query and returns the result directly.
func (c *conn) Query(query string, args []driver.Value) (driver.Rows, error) {
list := driverValueToNamedValue(args)
return c.query(context.Background(), query, list)
}
func (c *conn) query(ctx context.Context, query string, args []namedValue) (driver.Rows, error) {
if c.connectionId == "" {
return nil, driver.ErrBadConn
}
if len(args) != 0 {
return nil, driver.ErrSkip
}
st, err := c.httpClient.post(ctx, &message.CreateStatementRequest{
ConnectionId: c.connectionId,
})
if err != nil {
return nil, c.avaticaErrorToResponseErrorOrError(err)
}
statementID := st.(*message.CreateStatementResponse).StatementId
res, err := c.httpClient.post(ctx, &message.PrepareAndExecuteRequest{
ConnectionId: c.connectionId,
StatementId: statementID,
Sql: query,
MaxRowsTotal: c.config.maxRowsTotal,
FirstFrameMaxSize: c.config.frameMaxSize,
})
if err != nil {
_ = c.closeStatement(context.Background(), statementID)
return nil, c.avaticaErrorToResponseErrorOrError(err)
}
resultSets := res.(*message.ExecuteResponse).Results
return newRows(c, statementID, true, resultSets), nil
}
func (c *conn) avaticaErrorToResponseErrorOrError(err error) error {
var avaticaErr avaticaError
ok := errors.As(err, &avaticaErr)
if !ok {
return err
}
if c.adapter != nil {
return c.adapter.ErrorResponseToResponseError(avaticaErr.message)
}
return avaticaErrors.ResponseError{
Exceptions: avaticaErr.message.Exceptions,
ErrorMessage: avaticaErr.message.ErrorMessage,
Severity: int8(avaticaErr.message.Severity),
ErrorCode: avaticaErrors.ErrorCode(avaticaErr.message.ErrorCode),
SqlState: avaticaErrors.SQLState(avaticaErr.message.SqlState),
Metadata: &avaticaErrors.RPCMetadata{
ServerAddress: message.ServerAddressFromMetadata(avaticaErr.message),
},
}
}
// ResetSession implements driver.SessionResetter.
// (From Go 1.10)
func (c *conn) ResetSession(_ context.Context) error {
if c.connectionId == "" {
return driver.ErrBadConn
}
return nil
}
func (c *conn) closeStatement(ctx context.Context, statementID uint32) error {
_, err := c.httpClient.post(context.Background(), &message.CloseStatementRequest{
ConnectionId: c.connectionId,
StatementId: statementID,
})
return c.avaticaErrorToResponseErrorOrError(err)
}