forked from SwiftNIOExtras/swift-nio-redis
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRedisCommand.swift
64 lines (51 loc) · 1.65 KB
/
RedisCommand.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
//===----------------------------------------------------------------------===//
//
// 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 NIO
import NIORedis
public final class RedisCommand : RESPEncodable {
let values : ContiguousArray<RESPValue>
init(_ values: ContiguousArray<RESPValue>) {
self.values = values
}
convenience init<T: Collection>(_ values: T)
where T.Element : RESPEncodable
{
self.init(ContiguousArray(values.map { $0.toRESPValue() }))
}
public func toRESPValue() -> RESPValue {
return .array(values)
}
var isSubscribe : Bool {
guard let cmd = values.first?.stringValue else { return false }
return cmd.lowercased().contains("subscribe")
}
}
public class RedisCommandCall {
let command : RedisCommand
let promise : EventLoopPromise<RESPValue>
init(command: RedisCommand, promise: EventLoopPromise<RESPValue>) {
self.command = command
self.promise = promise
}
convenience init<T: Collection>(_ values: T, eventLoop: EventLoop)
where T.Element : RESPEncodable
{
self.init(command: RedisCommand(values), promise: eventLoop.makePromise())
}
}
extension RedisCommand : CustomStringConvertible {
public var description : String {
return "<RedisCmd: \(values)>"
}
}