forked from SwiftNIOExtras/swift-nio-redis
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRedisPrint.swift
96 lines (78 loc) · 2.55 KB
/
RedisPrint.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
//===----------------------------------------------------------------------===//
//
// 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 NIORedis
public func print(error err: Error?, value: RESPValue?) {
assert(err != nil || value != nil, "Neither error nor value in Redis result?")
if let error = err {
print("ERROR: \(error)")
}
if let value = value {
switch value {
case .array(.some(let values)):
print(error: nil, values: values)
case .array(.none):
print("Reply null[]")
case .error(let error):
print(error: error, value: nil)
case .integer(let value):
print("Reply \(value)")
case .simpleString(let value), .bulkString(.some(let value)):
// TODO: only attempt to decode up to some size
if let s = value.getString(at: value.readerIndex,
length: value.readableBytes)
{
print("Reply \(s)")
}
else {
print("Reply \(value)")
}
case .bulkString(.none):
print("Reply null")
}
}
}
public func print<T: Collection>(error err: Error?, values: T?)
where T.Element == RESPValue
{
assert(err != nil || values != nil, "Neither error nor vals in Redis result?")
if let error = err {
print("ERROR: \(error)")
}
guard let values = values else { return }
print("Reply #\(values.count) values:")
for i in values.indices {
let prefix = " [\(i)]: "
switch values[i] {
case .array(.some(let values)):
print("\(prefix)\(values as Optional)")
case .array(.none):
print("\(prefix) null[]")
case .error(let error):
print("\(prefix)ERROR \(error)")
case .integer(let value):
print("\(prefix)\(value)")
case .simpleString(let value), .bulkString(.some(let value)):
if let s = value.getString(at: value.readerIndex,
length: value.readableBytes)
{
print("\(prefix)\(s)")
}
else {
print("\(prefix)\(value)")
}
case .bulkString(.none):
print("\(prefix) null")
}
}
}