forked from SwiftNIOExtras/swift-nio-redis
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRedisCommandTarget.swift
456 lines (380 loc) · 12.6 KB
/
RedisCommandTarget.swift
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
453
454
455
//===----------------------------------------------------------------------===//
//
// This source file is part of the swift-nio-redis open source project
//
// Copyright (c) 2018 ZeeZide GmbH. and the swift-nio-redis project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of SwiftNIO project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
import protocol NIO.EventLoop
public protocol RedisCommandTarget {
func enqueueCommandCall(_ call: RedisCommandCall)
var eventLoop : EventLoop { get }
}
public enum RedisKeySetMode {
case always, ifMissing, ifExisting
}
import struct Foundation.Data
import struct Foundation.TimeInterval
import struct Foundation.Date
public extension RedisCommandTarget { // Future based
func ping(_ message: String? = nil) -> EventLoopFuture<String> {
return _enqueue([ RESPValue(bulkString: "PING"),
RESPValue(bulkString: message) ])
}
@discardableResult
func publish(_ channel: String, _ message: String) -> EventLoopFuture<Int> {
return _enqueue([ "PUBLISH", channel, message ])
}
// MARK: - Basic KVS
func get(_ key: String) -> EventLoopFuture<String> {
return _enqueue([ "GET", key ])
}
func set(_ key: String, _ v: RESPValue,
expire to: TimeInterval? = nil,
mode: RedisKeySetMode = .always) -> EventLoopFuture<RESPValue>
{
var vals = [ RESPValue(bulkString: "SET"), RESPValue(bulkString: key), v ]
if let to = to {
vals.append("PX")
vals.append(RESPValue.integer(Int(to * 1000.0)))
}
switch mode {
case .ifExisting: vals.append("XX")
case .ifMissing: vals.append("NX")
case .always: break
}
return _enqueue(vals)
}
@discardableResult
func set(_ key: String, _ v: String,
expire to: TimeInterval? = nil,
mode: RedisKeySetMode = .always) -> EventLoopFuture<RESPValue>
{
return set(key, RESPValue(bulkString: v), expire: to, mode: mode)
}
@discardableResult
func set(_ key: String, _ v: Int) -> EventLoopFuture<RESPValue> {
return set(key, RESPValue(bulkString: v))
}
@discardableResult
func set(_ key: String, _ v: Data,
expire to: TimeInterval? = nil,
mode: RedisKeySetMode = .always) -> EventLoopFuture<RESPValue>
{
return set(key, RESPValue(bulkString: v), expire: to, mode: mode)
}
func keys(_ pattern: String = "*") -> EventLoopFuture<[String]> {
return _enqueue([ "KEYS", pattern ])
}
func scan(cursor: String = "0", pattern: String?, count: Int? = nil)
-> EventLoopFuture<(String, [String])>
{
var req = [
"SCAN".toRESPValue(),
cursor.toRESPValue()
]
if let pattern = pattern {
req.append("MATCH".toRESPValue())
req.append(pattern.toRESPValue())
}
if let count = count {
req.append("COUNT".toRESPValue())
req.append(count.toRESPValue())
}
return _enqueue(req)
.flatMapThrowing { (resp: RESPValue) throws -> (String, [String]) in
guard case .array(.some(let items)) = resp, items.count == 2,
let newCursor = items[0].stringValue,
case .array(.some(let keyValues)) = items[1]
else
{
throw RedisTypeTransformationError.unexpectedValueType(resp)
}
let keys = keyValues.compactMap { $0.stringValue }
return ( newCursor, keys )
}
}
func scanAll(pattern: String?, count: Int? = nil, cb: @escaping ([String]) -> ())
-> EventLoopFuture<Void>
{
let promise = self.eventLoop.makePromise(of: Void.self)
func scanNext(cursor: String) {
let future = self.scan(cursor: cursor, pattern: pattern, count: count)
future.whenSuccess() { (newCursor, keys) in
if !keys.isEmpty {
cb(keys)
}
if newCursor == "0" {
promise.succeed(Void())
return
}
scanNext(cursor: newCursor)
}
future.whenFailure { (error) in
promise.fail(error)
}
}
scanNext(cursor: "0")
return promise.futureResult
}
@discardableResult
func del(keys: [ String ]) -> EventLoopFuture<RESPValue> {
return _enqueue([ "DEL" ] + keys)
}
@discardableResult
func del(_ keys: String...) -> EventLoopFuture<RESPValue> {
return del(keys: keys)
}
// MARK: - Integer Operations
@discardableResult
func incr(_ key: String) -> EventLoopFuture<Int> {
return _enqueue([ "INCR", key ])
}
@discardableResult
func decr(_ key: String) -> EventLoopFuture<Int> {
return _enqueue([ "DECR", key ])
}
@discardableResult
func incr(_ key: String, by v: Int) -> EventLoopFuture<Int> {
let vals = [ RESPValue(bulkString: "INCRBY"),
RESPValue(bulkString: key),
RESPValue(bulkString: v) ]
return _enqueue(vals)
}
@discardableResult
func decr(_ key: String, by v: Int) -> EventLoopFuture<Int> {
let vals = [ RESPValue(bulkString: "DECRBY"),
RESPValue(bulkString: key),
RESPValue(bulkString: v) ]
return _enqueue(vals)
}
// MARK: - Hashes
@discardableResult
func hset(_ key: String, _ field: String, _ value: String)
-> EventLoopFuture<Bool>
{
return _enqueue([ "HSET", key, field, value ])
}
func hkeys(_ key: String) -> EventLoopFuture<[String]> {
return _enqueue([ "HKEYS", key ])
}
func hgetall(_ key: String) -> EventLoopFuture<[ String : String ]> {
return _enqueue([ "HGETALL", key ])
}
func hmget(_ key: String, _ keys: [ String ]) -> EventLoopFuture<[ String ]> {
return _enqueue([ "HMGET", key ] + keys)
}
func hmget(_ key: String, _ keys: String...) -> EventLoopFuture<[ String ]> {
return hmget(key, keys)
}
@discardableResult
func hmset(_ key: String, _ hash: [ String : Any ])
-> EventLoopFuture<RESPValue>
{
var vals = ContiguousArray<RESPValue>()
vals.reserveCapacity(2 + hash.count)
vals.append(RESPValue(bulkString: "HMSET"))
vals.append(RESPValue(bulkString: key))
for ( key, value ) in hash {
vals.append(RESPValue(bulkString: key))
vals.append(RESPValue(bulkString: "\(value)"))
}
return _enqueue(vals)
}
@discardableResult
func hmset(_ key: String, keyValues: [ String ])
-> EventLoopFuture<RESPValue>
{
return _enqueue([ "HMSET", key ] + keyValues)
}
@discardableResult
func hmset(_ key: String, _ keyValues: String...)
-> EventLoopFuture<RESPValue>
{
return _enqueue([ "HMSET", key ] + keyValues)
}
// MARK: - Expiration
/// Expire the key in the specified seconds, in *full seconds granularity*.
@discardableResult
func expire(_ key: String, in seconds: TimeInterval)
-> EventLoopFuture<String>
{
return _enqueue([ RESPValue(bulkString: "EXPIRE"),
RESPValue(bulkString: key),
RESPValue.integer(Int(seconds))])
}
/// Expire the key in the specified seconds, in *full seconds granularity*.
@discardableResult
func expire(_ key: String, at date: Date)
-> EventLoopFuture<String>
{
let ts = Int(date.timeIntervalSince1970)
return _enqueue([ RESPValue(bulkString: "EXPIREAT"),
RESPValue(bulkString: key),
RESPValue.integer(ts)])
}
/// Expire the key in the specified seconds, in *millisecond granularity*.
@discardableResult
func pexpire(_ key: String, in seconds: TimeInterval)
-> EventLoopFuture<String>
{
return _enqueue([ RESPValue(bulkString: "PEXPIRE"),
RESPValue(bulkString: key),
RESPValue.integer(Int(seconds * 1000.0)) ])
}
/// Expire the key in the specified seconds, in *full seconds granularity*.
@discardableResult
func pexpire(_ key: String, at date: Date) -> EventLoopFuture<String> {
let ts = Int(date.timeIntervalSince1970 * 1000.0)
return _enqueue([ RESPValue(bulkString: "PEXPIREAT"),
RESPValue(bulkString: key),
RESPValue.integer(ts) ])
}
@discardableResult
func persist(_ key: String) -> EventLoopFuture<String> {
return _enqueue([ "PERSIST", key ])
}
@discardableResult
func ttl(_ key: String) -> EventLoopFuture<TimeInterval> {
return _enqueue([ "TTL", key ])
}
}
public extension RedisCommandTarget { // Callback based
func ping(_ message: String? = nil,
_ cb: @escaping (Error?, String?) -> Void)
{
ping(message).whenCB(cb)
}
func publish(_ channel: String, _ message: String,
_ cb: @escaping (Error?, Int?) -> Void)
{
publish(channel, message).whenCB(cb)
}
// MARK: - Basic KVS
func get(_ key: String, _ cb: @escaping (Error?, String?) -> Void) {
get(key).whenCB(cb)
}
func set(_ key: String, _ value: String,
expire to: TimeInterval? = nil,
mode: RedisKeySetMode = .always,
_ cb: @escaping ( Error?, RESPValue? ) -> Void)
{
set(key, value, expire: to, mode: mode).whenCB(cb)
}
func set(_ key: String, _ value: Int,
_ cb: @escaping ( Error?, RESPValue? ) -> Void)
{
set(key, value).whenCB(cb)
}
func keys(_ pattern: String = "*",
_ cb: @escaping (Error?, [String]?) -> Void)
{
keys(pattern).whenCB(cb)
}
func del(keys: [ String ], _ cb: @escaping (Error?, Int?) -> Void) {
del(keys: keys).whenCB(cb)
}
func del(_ keys: String..., cb: @escaping (Error?, Int?) -> Void) {
del(keys: keys).whenCB(cb)
}
// MARK: - Integer Operations
func incr(_ key: String, _ cb: @escaping (Error?, Int?) -> Void) {
incr(key).whenCB(cb)
}
func decr(_ key: String, _ cb: @escaping (Error?, Int?) -> Void) {
decr(key).whenCB(cb)
}
func incr(_ key: String, by v: Int, _ cb: @escaping (Error?, Int?) -> Void) {
incr(key).whenCB(cb)
}
func decr(_ key: String, by v: Int, _ cb: @escaping (Error?, Int?) -> Void) {
decr(key).whenCB(cb)
}
// MARK: - Hashes
func hset(_ key: String, _ field: String, _ value: String,
_ cb: @escaping (Error?, Bool?) -> Void)
{
hset(key, field, value).whenCB(cb)
}
func hkeys(_ key: String, _ cb: @escaping (Error?, [ String ]?) -> Void) {
hkeys(key).whenCB(cb)
}
func hgetall(_ key: String,
_ cb: @escaping (Error?, [ String : String ]?) -> Void)
{
hgetall(key).whenCB(cb)
}
func hmget(_ key: String, _ keys: [ String ],
_ cb: @escaping (Error?, [ String ]?) -> Void)
{
hmget(key, keys).whenCB(cb)
}
func hmget(_ key: String, _ keys: String...,
cb: @escaping (Error?, [ String ]?) -> Void)
{
hmget(key, keys).whenCB(cb)
}
func hmset(_ key: String, _ hash: [ String : Any ],
cb: @escaping (Error?, RESPValue?) -> Void)
{
hmset(key, hash).whenCB(cb)
}
func hmset(_ key: String, _ keyValues: String...,
cb: @escaping (Error?, RESPValue?) -> Void)
{
hmset(key, keyValues: keyValues).whenCB(cb)
}
}
// MARK: - Callback Helpers
import class NIO.EventLoopFuture
import enum NIORedis.RESPValue
import protocol NIORedis.RESPEncodable
fileprivate extension EventLoopFuture {
func whenCB(file: StaticString = #file, line: UInt = #line,
_ cb: @escaping ( Swift.Error?, Value? ) -> Void) -> Void
{
self.map(file: file, line: line) { cb(nil, $0) }
.whenFailure { cb($0, nil) }
}
}
fileprivate extension EventLoopFuture where Value == RESPValue {
func whenCB<U: RedisTypeTransformable>(file: StaticString = #file,
line: UInt = #line,
_ cb: @escaping ( Swift.Error?, U? ) -> Void) -> Void
{
self.map(file: file, line: line) {
do { cb(nil, try U.extractFromRESPValue($0)) }
catch { cb(error, nil) }
}
.whenFailure { cb($0, nil) }
}
}
public extension RedisCommandTarget {
internal
func _enqueue<T: Collection, U: RedisTypeTransformable>(_ values: T)
-> EventLoopFuture<U>
where T.Element : RESPEncodable
{
let call = RedisCommandCall(values, eventLoop: eventLoop)
let future = call.promise.futureResult.flatMapThrowing {
try U.extractFromRESPValue($0)
}
enqueueCommandCall(call)
return future
}
fileprivate
func _enqueue<T: Collection, U: RedisTypeTransformable>(_ values: T,
_ cb: @escaping ( Error?, U? ) -> Void)
where T.Element : RESPEncodable
{
let call = RedisCommandCall(values, eventLoop: eventLoop)
call.promise.futureResult.whenCB(cb)
enqueueCommandCall(call)
}
}