forked from Zeroloop/lasso-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredis.client.lasso
314 lines (240 loc) · 6.64 KB
/
redis.client.lasso
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
<?lasso
/////////////////////////////////////////////////////////
//
// Redis client cache
//
/////////////////////////////////////////////////////////
define redis(host::string = '127.0.0.1', port::integer = 6379, password::string = '') => {
// Check client cache
local(redis) := redis_clients->find(#host + ':' + #port) ? return #redis
// Otherwise create new client
#redis = redis_client(#host,#port,#password)
// Store in cache
redis_clients->insert(#host + ':' + #port = #redis)
// Return client
return #redis
}
/////////////////////////////////////////////////////////
//
// Redis client type
//
/////////////////////////////////////////////////////////
define redis_client => type {
data
public host,
public port,
private pipe,
private subscribed,
private subscriptions = map,
private net
public oncreate(host::string = '127.0.0.1', port::integer = 6379, password::string = '') => {
// Set host and port
.host = #host
.port = #port
// Auth when password
#password ? .AUTH(#password)
// Store connections for closure
web_request ? redis_connections->insert(self)
// Invoke and close when block
givenblock ? .dowithclose(givenblock)
}
public net => {
.'net' ? return .'net'
local(net) = net_tcp
// Open connection
#net->connect(.host,.port,1)
? return .'net' := #net
| fail(-1,'Unable to connect to Redis on ' + .host + ':' + .port)
}
// Collate params
public call(command::string, ...rest) => .call(#command,#rest || staticarray)
// Main call to Redis
public call(command::string, params::staticarray) => {
// Commands to send
local(
cmds = #command->split(' '),
gb = givenblock,
result
)
// Deal with pub/sub
.subscribed && (:'SUBSCRIBE', 'PSUBSCRIBE', 'UNSUBSCRIBE', 'PUNSUBSCRIBE') !>> #cmds->first
? fail(-1, 'Once subscribed only the following commands can be called: SUBSCRIBE, PSUBSCRIBE, UNSUBSCRIBE and PUNSUBSCRIBE: ' + #cmds)
.subscribed ? #gb = .subscriptions->find(params->first)
// Process params
with p in #params do {
match(#p->type) => {
case(::keyword,::pair)
// Convert keywords / pairs to params
if(#p->value->isa(::void)) => {
// Do nothing
else(#p->value->isa(::boolean))
// Upper case flags and replace underscores with dashes
#p->value ? #cmds->insert(#p->name->uppercase & replace('_','-') & )
else
#cmds->insert(#p->name->asstring)
#cmds->insert(#p->value->asstring)
}
case
// all opts are sent to server as strings
#cmds->insert(#p->asstring)
}
}
handle_error => protect => {
stdoutnl('redis.error' = #cmds)
}
// Issue command
.write(#cmds)
! .pipe
? return (
// If capture supplied invoke and return it
#gb ? #gb(.result) | .result
)
}
// Close connection
public close => if(.'net') => {
.'net'->close
.'net' = null
}
public dowithclose => {
givenblock->invoke(self)
.close
}
// Read main response
public read => {
local(
out = bytes,
i = 0,
buf
)
while(!#out->endswith('\r\n') && #i++ < 1024) => {
#buf = .net->readSomeBytes(1024 * 8,1)
// stdoutnl('buf: ' + #buf)
#buf ? #out->append(#buf)
}
return #out
}
public write(p::array) => .write(resp_encode(#p))
public write(p::string) => .write(#p->asbytes)
public write(p::bytes) => .net->writebytes(#p)
// Listing for messages from subscriptions
public listen(count::integer=0) => {
local(
gb = givenblock,
results,
cmd,
key,
msg,
cap,
i = 0
)
while(!#count || #i < #count) => {
#results = .results
with result in #results->isa(::staticarray) ? #results | array(#results) do {
#i++
if(#result && #result->size == 3 && #result->get(1) == 'message') => {
#cmd = #result->get(1)
#key = #result->get(2)
#msg = #result->get(3)
// Close the connection if received from server
#msg == '__CLOSE_CONNECTION__' ? return .close
// Trigger subsription call backs
#cap = .subscriptions->find(#key)
#cap ? #cap(#msg)
// If givenblock provide message + key
#gb ? #gb(#msg,#key)
}
sleep(10)
}
}
}
// Decode result
public result => resp_decode(.read->asstring)
// Decode results
public results => {
local(result) = .result
return (
// Always return a static array (even if 1x result)
#result->isa(::staticarray)
? #result
| (:#result)
)
}
/////////////////////////////////////////////////////////
// Pub/Sub methods
/////////////////////////////////////////////////////////
public unsub(command::string,keys::staticarray) => {
.pipeline => {
with key in #keys
where #key
do {
.subscriptions->remove(#key)
.call(#command,#key)
}
! .subscriptions->size
? .subscribed = false
}
}
public sub(command::string,keys::staticarray) => {
local(gb) = givenblock
#gb->isnota(::capture) ? fail(-1, #command + ' requires capture as the => givenblock, this will receive the message')
.subscribed = true
.pipeline => {
with key in #keys
where #key
do {
.subscriptions->insert(#key = #gb)
.call(#command,#key)
}
}
return self
}
/////////////////////////////////////////////////////////
// Piping methods
/////////////////////////////////////////////////////////
public pipeline=(p::capture) => .pipeline => pair(givenblock = #p)
public pipeline => {
local(
results,
p = givenblock
)
// Call back is not a requirement
#p->isa(::capture) ? #p = pair(#p = void)
#p->isnota(::pair)
? fail(-1,'givenblock must be a capture, or pair of captures, received ' + #p->type)
#p->first->isnota(::capture)
? fail(-1,'givenblock must be a capture, or pair of captures, first value was a ' + #p->type)
#p->second && #p->second->isnota(::capture)
? fail(-1,'givenblock must be a capture, or a pair of captures, second value was a ' + #p->type)
// Flag that we're piping
.pipe = true
handle => { .pipe = false }
// Make calls
#p->first->invoke(self)
// Grab results
#results = .results
#p->second
? return #p->second->invoke(:#results)
| return #results
}
}
/////////////////////////////////////////////////////////
//
// Connection handlers
//
/////////////////////////////////////////////////////////
define redis_clients => {
if(var(__redis__clients__)->isnota(::map)) => {
$__redis__clients__ = map
}
return $__redis__clients__
}
define redis_connections => {
if(var(__redis__connections__)->isnota(::array)) => {
$__redis__connections__ = array
// Queue closure of connections
web_request ? define_atend({redis_close_connections})
}
return $__redis__connections__
}
define redis_close_connections => redis_connections->foreach => { #1->close }
?>