-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathextended_query.go
More file actions
452 lines (392 loc) · 11.1 KB
/
extended_query.go
File metadata and controls
452 lines (392 loc) · 11.1 KB
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
package wire
import (
"context"
"errors"
"io"
"github.com/lib/pq/oid"
"github.com/stackql/psql-wire/internal/buffer"
"github.com/stackql/psql-wire/internal/types"
"github.com/stackql/psql-wire/pkg/sqldata"
"go.uber.org/zap"
)
// handleParse handles the Parse message ('P') of the extended query protocol.
// It parses the SQL statement and caches it as a prepared statement.
func (srv *Server) handleParse(ctx context.Context, conn SQLConnection) error {
stmtName, err := conn.GetString()
if err != nil {
return err
}
query, err := conn.GetString()
if err != nil {
return err
}
numParams, err := conn.GetUint16()
if err != nil {
return err
}
paramOIDs := make([]uint32, numParams)
for i := 0; i < int(numParams); i++ {
oidVal, err := conn.GetUint32()
if err != nil {
return err
}
paramOIDs[i] = oidVal
}
srv.logger.Debug("parse",
zap.String("statement", stmtName),
zap.String("query", query),
zap.Int("params", int(numParams)),
)
extBackend := conn.ExtendedBackend()
if extBackend != nil {
resolvedOIDs, err := extBackend.HandleParse(ctx, stmtName, query, paramOIDs)
if err != nil {
return extendedError(conn, err)
}
paramOIDs = resolvedOIDs
}
conn.Statements()[stmtName] = &PreparedStatement{
Name: stmtName,
Query: query,
ParamOIDs: paramOIDs,
}
return writeParseComplete(conn)
}
// handleBind handles the Bind message ('B') of the extended query protocol.
// It binds parameter values to a prepared statement, creating a portal.
func (srv *Server) handleBind(ctx context.Context, conn SQLConnection) error {
portalName, err := conn.GetString()
if err != nil {
return err
}
stmtName, err := conn.GetString()
if err != nil {
return err
}
stmt, ok := conn.Statements()[stmtName]
if !ok {
return extendedError(conn, errors.New("prepared statement does not exist: "+stmtName))
}
// Read parameter format codes
numParamFormats, err := conn.GetUint16()
if err != nil {
return err
}
paramFormats := make([]int16, numParamFormats)
for i := 0; i < int(numParamFormats); i++ {
v, err := conn.GetUint16()
if err != nil {
return err
}
paramFormats[i] = int16(v)
}
// Read parameter values
numParams, err := conn.GetUint16()
if err != nil {
return err
}
paramValues := make([][]byte, numParams)
for i := 0; i < int(numParams); i++ {
length, err := conn.GetUint32()
if err != nil {
return err
}
// -1 indicates NULL
if int32(length) == -1 {
paramValues[i] = nil
} else {
val, err := conn.GetBytes(int(length))
if err != nil {
return err
}
paramValues[i] = val
}
}
// Read result format codes
numResultFormats, err := conn.GetUint16()
if err != nil {
return err
}
resultFormats := make([]int16, numResultFormats)
for i := 0; i < int(numResultFormats); i++ {
v, err := conn.GetUint16()
if err != nil {
return err
}
resultFormats[i] = int16(v)
}
srv.logger.Debug("bind",
zap.String("portal", portalName),
zap.String("statement", stmtName),
zap.Int("params", int(numParams)),
)
extBackend := conn.ExtendedBackend()
if extBackend != nil {
err = extBackend.HandleBind(ctx, portalName, stmtName, paramFormats, paramValues, resultFormats)
if err != nil {
return extendedError(conn, err)
}
}
conn.Portals()[portalName] = &Portal{
Name: portalName,
Statement: stmt,
ParamFormats: paramFormats,
ParamValues: paramValues,
ResultFormats: resultFormats,
}
return writeBindComplete(conn)
}
// handleDescribe handles the Describe message ('D') of the extended query protocol.
// It returns metadata about a prepared statement or portal.
func (srv *Server) handleDescribe(ctx context.Context, conn SQLConnection) error {
prepareType, err := conn.GetPrepareType()
if err != nil {
return err
}
name, err := conn.GetString()
if err != nil {
return err
}
srv.logger.Debug("describe",
zap.String("type", string(prepareType)),
zap.String("name", name),
)
switch prepareType {
case buffer.PrepareStatement:
return srv.handleDescribeStatement(ctx, conn, name)
case buffer.PreparePortal:
return srv.handleDescribePortal(ctx, conn, name)
default:
return extendedError(conn, errors.New("unknown describe type"))
}
}
func (srv *Server) handleDescribeStatement(ctx context.Context, conn SQLConnection, name string) error {
stmt, ok := conn.Statements()[name]
if !ok {
return extendedError(conn, errors.New("prepared statement does not exist: "+name))
}
var paramOIDs []uint32
var columns []sqldata.ISQLColumn
extBackend := conn.ExtendedBackend()
if extBackend != nil {
var err error
paramOIDs, columns, err = extBackend.HandleDescribeStatement(ctx, name, stmt.Query, stmt.ParamOIDs)
if err != nil {
return extendedError(conn, err)
}
}
if paramOIDs == nil {
paramOIDs = stmt.ParamOIDs
}
// Send ParameterDescription
err := writeParameterDescription(conn, paramOIDs)
if err != nil {
return err
}
// Send RowDescription or NoData
// Describe on a statement has no result formats yet (Bind hasn't happened)
if columns != nil {
return writeRowDescriptionFromSQLColumns(ctx, conn, columns, nil)
}
return writeNoData(conn)
}
func (srv *Server) handleDescribePortal(ctx context.Context, conn SQLConnection, name string) error {
portal, ok := conn.Portals()[name]
if !ok {
return extendedError(conn, errors.New("portal does not exist: "+name))
}
var columns []sqldata.ISQLColumn
extBackend := conn.ExtendedBackend()
if extBackend != nil {
var err error
columns, err = extBackend.HandleDescribePortal(ctx, name, portal.Statement.Name, portal.Statement.Query, portal.Statement.ParamOIDs)
if err != nil {
return extendedError(conn, err)
}
}
if columns != nil {
return writeRowDescriptionFromSQLColumns(ctx, conn, columns, portal.ResultFormats)
}
return writeNoData(conn)
}
// handleExecute handles the Execute message ('E') of the extended query protocol.
// It executes a bound portal and returns result rows.
func (srv *Server) handleExecute(ctx context.Context, conn SQLConnection) error {
portalName, err := conn.GetString()
if err != nil {
return err
}
maxRowsU32, err := conn.GetUint32()
if err != nil {
return err
}
maxRows := int32(maxRowsU32)
srv.logger.Debug("execute",
zap.String("portal", portalName),
zap.Int32("maxRows", maxRows),
)
portal, ok := conn.Portals()[portalName]
if !ok {
return extendedError(conn, errors.New("portal does not exist: "+portalName))
}
extBackend := conn.ExtendedBackend()
if extBackend == nil {
return commandComplete(conn, "OK")
}
rdr, err := extBackend.HandleExecute(
ctx,
portalName,
portal.Statement.Name,
portal.Statement.Query,
portal.ParamFormats,
portal.ParamValues,
portal.ResultFormats,
maxRows,
)
if err != nil {
return extendedError(conn, err)
}
if rdr == nil {
return commandComplete(conn, "OK")
}
dw := &dataWriter{
ctx: ctx,
client: conn,
resultFormats: portal.ResultFormats,
}
var headersWritten bool
for {
res, err := rdr.Read()
if err != nil {
if errors.Is(err, io.EOF) {
notices := conn.GetDebugStr()
if res == nil {
dw.Complete(notices, "OK")
return nil
}
if !headersWritten {
headersWritten = true
srv.writeSQLResultHeader(ctx, res, dw, portal.ResultFormats)
}
srv.writeSQLResultRows(ctx, res, dw)
dw.Complete(notices, "OK")
return nil
}
return extendedError(conn, err)
}
if !headersWritten {
headersWritten = true
// For extended query, we don't send RowDescription here if Describe already sent it.
// However, the dataWriter.Define will handle this correctly since columns may already be set.
dw.Define(nil)
}
srv.writeSQLResultRows(ctx, res, dw)
}
}
// handleClose handles the Close message ('C') of the extended query protocol.
// It closes a prepared statement or portal.
func (srv *Server) handleClose(ctx context.Context, conn SQLConnection) error {
prepareType, err := conn.GetPrepareType()
if err != nil {
return err
}
name, err := conn.GetString()
if err != nil {
return err
}
srv.logger.Debug("close",
zap.String("type", string(prepareType)),
zap.String("name", name),
)
extBackend := conn.ExtendedBackend()
switch prepareType {
case buffer.PrepareStatement:
if extBackend != nil {
if err := extBackend.HandleCloseStatement(ctx, name); err != nil {
return extendedError(conn, err)
}
}
delete(conn.Statements(), name)
case buffer.PreparePortal:
if extBackend != nil {
if err := extBackend.HandleClosePortal(ctx, name); err != nil {
return extendedError(conn, err)
}
}
delete(conn.Portals(), name)
}
return writeCloseComplete(conn)
}
// handleSync handles the Sync message ('S') of the extended query protocol.
// It signals the end of an extended query cycle and sends ReadyForQuery.
func (srv *Server) handleSync(ctx context.Context, conn SQLConnection) error {
return readyForQuery(conn, types.ServerIdle)
}
// handleFlush handles the Flush message ('H') of the extended query protocol.
// It ensures all pending output has been sent to the client.
// Since our writer sends immediately on End(), this is effectively a no-op.
func (srv *Server) handleFlush(ctx context.Context, conn SQLConnection) error {
return nil
}
// extendedError sends an ErrorResponse to the client and returns errExtendedQueryError
// so the command loop enters error state (discards messages until Sync).
func extendedError(writer buffer.Writer, err error) error {
ErrorCode(writer, err)
return errExtendedQueryError
}
// Wire protocol response helpers
func writeParseComplete(writer buffer.Writer) error {
writer.Start(types.ServerParseComplete)
return writer.End()
}
func writeBindComplete(writer buffer.Writer) error {
writer.Start(types.ServerBindComplete)
return writer.End()
}
func writeCloseComplete(writer buffer.Writer) error {
writer.Start(types.ServerCloseComplete)
return writer.End()
}
func writeNoData(writer buffer.Writer) error {
writer.Start(types.ServerNoData)
return writer.End()
}
func writeParameterDescription(writer buffer.Writer, paramOIDs []uint32) error {
writer.Start(types.ServerParameterDescription)
writer.AddInt16(int16(len(paramOIDs)))
for _, paramOID := range paramOIDs {
writer.AddInt32(int32(paramOID))
}
return writer.End()
}
func writeRowDescriptionFromSQLColumns(ctx context.Context, writer buffer.Writer, columns []sqldata.ISQLColumn, resultFormats []int16) error {
var colz Columns
for i, c := range columns {
colz = append(colz, Column{
Table: c.GetTableId(),
Name: c.GetName(),
AttrNo: c.GetAttrNum(),
Oid: oid.Oid(c.GetObjectID()),
Width: c.GetWidth(),
Format: resolveResultFormat(resultFormats, i),
})
}
return colz.Define(ctx, writer)
}
// resolveResultFormat determines the format code for column i based on the
// result format codes from the Bind message, per the PostgreSQL protocol:
// - 0 format codes: all columns use text
// - 1 format code: all columns use that format
// - N format codes: each column uses its corresponding format
func resolveResultFormat(formats []int16, i int) FormatCode {
if len(formats) == 0 {
return TextFormat
}
if len(formats) == 1 {
return FormatCode(formats[0])
}
if i < len(formats) {
return FormatCode(formats[i])
}
return TextFormat
}