-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcqueues_pgsql.lua
377 lines (346 loc) · 7.13 KB
/
cqueues_pgsql.lua
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
local pgsql = require "pgsql"
local cqueues = require "cqueues"
local methods = {}
local mt = {
__name = "cqueues_pgsql connection";
}
-- Delegate to underlying pgsql object
function mt.__index(t,k)
local v = methods[k]
if v ~= nil then return v end
if k == "conn" then return nil end -- Don't want to accidently recurse
local f = t.conn[k]
-- If f is a function; need to wrap it so it gets the correct 'self'
if type(f) == "function" then
return function(s, ...)
if s == t then
s = s.conn
end
return f(s, ...)
end
else
return f
end
end
local function cancel(pollfd)
local cq = cqueues.running()
if cq then
cq:cancel(pollfd)
end
end
--- Override synchronous methods to yield via cqueues
function methods:connectPoll()
while true do
local polling = self.conn:connectPoll()
if polling == pgsql.PGRES_POLLING_READING then
local pollfd = self.conn:socket()
cqueues.poll {
pollfd = pollfd;
events = "r";
}
cancel(pollfd)
elseif polling == pgsql.PGRES_POLLING_WRITING then
local pollfd = self.conn:socket()
cqueues.poll {
pollfd = pollfd;
events = "w";
}
cancel(pollfd)
else
return polling
end
end
end
function methods:resetPoll()
while true do
local polling = self.conn:resetPoll()
if polling == pgsql.PGRES_POLLING_READING then
local pollfd = self.conn:socket()
cqueues.poll {
pollfd = pollfd;
events = "r";
}
cancel(pollfd)
elseif polling == pgsql.PGRES_POLLING_WRITING then
local pollfd = self.conn:socket()
cqueues.poll {
pollfd = pollfd;
events = "w";
}
cancel(pollfd)
else
return polling
end
end
end
function methods:reset()
if not self.conn:resetStart() then
return
end
while true do
local status = self.conn:status()
if status == pgsql.CONNECTION_OK then
break
elseif status == pgsql.CONNECTION_BAD then
break
end
if self.conn:resetPoll() ~= pgsql.PGRES_POLLING_OK then
break
end
end
end
function methods:flush()
local pollfd, r, w
while true do
local res = self.conn:flush()
if res ~= false then
return res
end
if not r then
pollfd = self.conn:socket();
r = {
pollfd = pollfd;
events = "r";
}
w = {
pollfd = pollfd;
events = "w";
}
end
local z = cqueues.poll(r, w)
cancel(pollfd)
if z == r then
if not self.conn:consumeInput() then
return nil
end
end
end
end
function methods:sendQuery(...)
if not self.conn:sendQuery(...) then
return false
end
return self:flush() ~= nil
end
function methods:sendQueryParams(...)
if not self.conn:sendQueryParams(...) then
return false
end
return self:flush() ~= nil
end
function methods:sendPrepare(...)
if not self.conn:sendPrepare(...) then
return false
end
return self:flush() ~= nil
end
function methods:sendQueryPrepared(...)
if not self.conn:sendQueryPrepared(...) then
return false
end
return self:flush() ~= nil
end
function methods:sendDescribePrepared(...)
if not self.conn:sendDescribePrepared(...) then
return false
end
return self:flush() ~= nil
end
function methods:sendDescribePortal(...)
if not self.conn:sendDescribePortal(...) then
return false
end
return self:flush() ~= nil
end
function methods:getResult()
if self.conn:isBusy() then
-- Flush before consuming in case there is a pending outgoing data
-- If we don't call it, consumeInput will anyway
-- but then if a socket buffer is full we'd fall into a busy-loop
if self:flush() == nil then
return nil
end
local pollfd = self.conn:socket()
local t = {
pollfd = pollfd;
events = "r";
}
while true do
if not self.conn:consumeInput() then
-- error
return nil
end
if not self.conn:isBusy() then
break
end
cqueues.poll(t)
cancel(pollfd)
end
end
return self.conn:getResult()
end
local in_progress = {
[pgsql.PGRES_COPY_OUT] = true;
[pgsql.PGRES_COPY_IN] = true;
}
if pgsql.PGRES_COPY_BOTH then
in_progress[pgsql.PGRES_COPY_BOTH] = true
end
function methods:exec(...)
if not self:sendQuery(...) then
return nil
end
-- return the last result
local res
while true do
local tmp = self:getResult()
if tmp == nil then
return res
elseif in_progress[tmp:status()] then
return tmp
else
res = tmp
end
end
end
function methods:execParams(...)
if not self:sendQueryParams(...) then
return nil
end
-- Can only have one result
local res = self:getResult()
-- Have to read until nil
assert(self:getResult() == nil)
return res
end
function methods:prepare(...)
if not self:sendPrepare(...) then
return nil
end
-- Can only have one result
local res = self:getResult()
-- Have to read until nil
assert(self:getResult() == nil)
return res
end
function methods:execPrepared(...)
if not self:sendQueryPrepared(...) then
return nil
end
-- Can only have one result
local res = self:getResult()
-- Have to read until nil
assert(self:getResult() == nil)
return res
end
function methods:describePrepared(...)
if not self:sendDescribePrepared(...) then
return nil
end
-- Can only have one result
local res = self:getResult()
-- Have to read until nil
assert(self:getResult() == nil)
return res
end
function methods:describePortal(...)
if not self:sendDescribePortal(...) then
return nil
end
-- Can only have one result
local res = self:getResult()
-- Have to read until nil
assert(self:getResult() == nil)
return res
end
function methods:putCopyData(...)
while true do
local r = self.conn:putCopyData(...)
if r ~= false then
return r
end
local pollfd = self.conn:socket()
cqueues.poll {
pollfd = pollfd;
events = "w";
}
cancel(pollfd)
end
end
function methods:putCopyEnd(...)
while true do
local r = self.conn:putCopyEnd(...)
if r == nil then
return nil
elseif r then
break
end
local pollfd = self.conn:socket()
cqueues.poll {
pollfd = pollfd;
events = "w";
}
cancel(pollfd)
end
-- In nonblocking mode, to be certain that the data has been sent,
-- you should next wait for write-ready and call PQflush
return self:flush()
end
function methods:getCopyData(...)
while true do
local r = self.conn:getCopyData(...)
if r ~= false then
return r
end
local pollfd = self.conn:socket()
cqueues.poll {
pollfd = pollfd;
events = "r";
}
cancel(pollfd)
if not self.conn:consumeInput() then
return nil
end
end
end
local function wrap(conn)
conn:setnonblocking(true) -- Don't care if it fails
return setmetatable({
conn = conn;
}, mt)
end
local function connectStart(...)
return wrap(pgsql.connectStart(...))
end
local function connectdb(...)
local conn = connectStart(...)
while true do
local status = conn:status()
if status == pgsql.CONNECTION_OK then
break
elseif status == pgsql.CONNECTION_BAD then
break
end
if conn:connectPoll() ~= pgsql.PGRES_POLLING_OK then
break
end
end
return conn
end
-- Get exports ready
local M = {
connectStart = connectStart;
connectdb = connectdb;
libVersion = pgsql.libVersion;
ping = pgsql.ping;
unescapeBytea = pgsql.unescapeBytea;
encryptPassword = pgsql.encryptPassword;
initOpenSSL = pgsql.initOpenSSL;
}
-- Copy in constants
for k, v in pairs(pgsql) do
if k == k:upper() and type(v) == "number" then
M[k] = v
end
end
return M