-
Notifications
You must be signed in to change notification settings - Fork 2
/
frontendQueries.go
256 lines (203 loc) · 5.65 KB
/
frontendQueries.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
256
package main
import (
fbbuf "github.com/uhoh-itsmaciek/femebe/buf"
fbcore "github.com/uhoh-itsmaciek/femebe/core"
fbproto "github.com/uhoh-itsmaciek/femebe/proto"
"bytes"
)
// These are the different query results
type QueryResult interface {
Respond(f Frontend) error
}
// commandComplete is a CommandComplete + ReadyForQuery. The representation is
// a string, which is the command tag.
type commandComplete string
func (qr commandComplete) Respond(f Frontend) error {
var message fbcore.Message
fbproto.InitCommandComplete(&message, string(qr))
return f.WriteMessage(&message)
}
// emptyQueryResponse is an EmptyQueryResponse + ReadyForQuery.
type emptyQueryResponse struct{}
func (eqr emptyQueryResponse) Respond(f Frontend) error {
var message fbcore.Message
message.InitFromBytes(fbproto.MsgEmptyQueryResponseI, nil)
return f.WriteMessage(&message)
}
// errorResponse is an ErrorResponse + ReadyForQuery. The representation is a
// string, which is the error message.
type errorResponse struct {
sqlstate string
errorMessage string
}
func (qr errorResponse) Respond(f Frontend) error {
var message fbcore.Message
buf := &bytes.Buffer{}
buf.WriteByte('S')
fbbuf.WriteCString(buf, "ERROR")
buf.WriteByte('C')
fbbuf.WriteCString(buf, qr.sqlstate)
buf.WriteByte('M')
fbbuf.WriteCString(buf, qr.errorMessage)
buf.WriteByte('\x00')
message.InitFromBytes(fbproto.MsgErrorResponseE, buf.Bytes())
return f.WriteMessage(&message)
}
func NewErrorResponse(sqlstate, errorMessage string) QueryResult {
return errorResponse{sqlstate, errorMessage}
}
// Extended protocol messages. These don't normally Flush the stream, since
// that's handled by Sync/Flush messages specifically.
type parseComplete struct{}
func (qr parseComplete) Respond(f Frontend) error {
var message fbcore.Message
message.InitFromBytes(fbproto.MsgParseComplete1, []byte{})
return f.WriteMessage(&message)
}
func NewParseComplete() QueryResult {
return parseComplete{}
}
type bindComplete struct{}
func (qr bindComplete) Respond(f Frontend) error {
var message fbcore.Message
message.InitFromBytes(fbproto.MsgBindComplete2, []byte{})
return f.WriteMessage(&message)
}
func NewBindComplete() QueryResult {
return bindComplete{}
}
type noData struct{}
func (qr noData) Respond(f Frontend) error {
var message fbcore.Message
message.InitFromBytes(fbproto.MsgNoDataN, []byte{})
return f.WriteMessage(&message)
}
func NewNoData() QueryResult {
return noData{}
}
// Used in response to a Sync
type nopResponder struct{}
func (qr nopResponder) Respond(f Frontend) error {
return nil
}
func NewNopResponder() QueryResult {
return nopResponder{}
}
// Different query types below
type FrontendQuery interface {
Process(fe Frontend) (QueryResult, error)
Describe() QueryResult
}
type listenRequest struct {
channel string
}
func (q listenRequest) Process(fe Frontend) (QueryResult, error) {
err := fe.Listen(q.channel)
if err != nil {
// This should probably never happen, right? It's OK to just kill the
// frontend?
return nil, err
}
return commandComplete("LISTEN"), nil
}
func (q listenRequest) Describe() QueryResult {
return NewNoData()
}
func NewListenRequest(channel string) FrontendQuery {
return listenRequest{channel}
}
type unlistenRequest struct {
channel string
wildcard bool
}
func (q unlistenRequest) Process(fe Frontend) (QueryResult, error) {
var err error
if q.wildcard {
err = fe.UnlistenAll()
} else {
err = fe.Unlisten(q.channel)
}
if err != nil {
// XXX see ListenRequest.Process
return nil, err
}
return commandComplete("UNLISTEN"), nil
}
func (q unlistenRequest) Describe() QueryResult {
return NewNoData()
}
func NewUnlistenRequest(channel string) FrontendQuery {
return unlistenRequest{channel, false}
}
func NewWildcardUnlistenRequest() FrontendQuery {
return unlistenRequest{"", true}
}
type emptyQuery struct {
}
func (q emptyQuery) Process(fe Frontend) (QueryResult, error) {
return emptyQueryResponse{}, nil
}
func (q emptyQuery) Describe() QueryResult {
return NewNoData()
}
func NewEmptyQuery() FrontendQuery {
return emptyQuery{}
}
// Returns true if the passed-in description (i.e. result of
// FrontendQuery.Describe) is a RowDescription. See
// FrontendConnection.queryProcessingMainLoop.
func DescriptionIsRowDescription(d QueryResult) bool {
_, ok := d.(trivialSelectResultDescription)
return ok
}
type trivialSelectResultDescription struct{}
func (d trivialSelectResultDescription) Respond(f Frontend) error {
var msg fbcore.Message
tupleDesc := fbproto.FieldDescription{
Name: "?column?",
TableOid: 0,
TableAttNo: 0,
TypeOid: 23,
TypLen: 4,
Atttypmod: 0,
Format: 0,
}
fbproto.InitRowDescription(&msg, []fbproto.FieldDescription{tupleDesc})
return f.WriteMessage(&msg)
}
type trivialSelectResult struct {}
func (r trivialSelectResult) Respond(f Frontend) error {
var msg fbcore.Message
buf := &bytes.Buffer{}
fbbuf.WriteInt16(buf, 1)
fbbuf.WriteInt32(buf, 1)
buf.WriteByte('1')
msg.InitFromBytes(fbproto.MsgDataRowD, buf.Bytes())
err := f.WriteMessage(&msg)
if err != nil {
return err
}
return commandComplete("SELECT").Respond(f)
}
type trivialSelect struct {
}
func (q trivialSelect) Process(fe Frontend) (QueryResult, error) {
return trivialSelectResult{}, nil
}
func (q trivialSelect) Describe() QueryResult {
return trivialSelectResultDescription{}
}
func NewTrivialSelect() FrontendQuery {
return trivialSelect{}
}
type nopSetCommand struct {
}
func (q nopSetCommand) Process(fe Frontend) (QueryResult, error) {
return commandComplete("SET"), nil
}
func (q nopSetCommand) Describe() QueryResult {
return NewNoData()
}
func NewNopSetCommand() FrontendQuery {
return nopSetCommand{}
}