forked from SwiftNIOExtras/swift-nio-redis
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRedisTypeTransformable.swift
145 lines (113 loc) · 3.91 KB
/
RedisTypeTransformable.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
//===----------------------------------------------------------------------===//
//
// 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 struct Foundation.Data
import struct Foundation.TimeInterval
import enum NIORedis.RESPValue
protocol RedisTypeTransformable {
static func extractFromRESPValue(_ value: RESPValue) throws -> Self
}
enum RedisTypeTransformationError : Swift.Error {
case unexpectedValueType (RESPValue)
case unsupportedValueType(Any.Type)
case unexpectedHashValue (RESPValue)
}
extension RESPValue: RedisTypeTransformable {
static func extractFromRESPValue(_ value: RESPValue) throws -> RESPValue {
return value
}
}
extension TimeInterval: RedisTypeTransformable {
static func extractFromRESPValue(_ value: RESPValue) throws -> TimeInterval {
guard let s = value.intValue else {
throw RedisTypeTransformationError.unexpectedValueType(value)
}
return TimeInterval(s) // full seconds granularity only
}
}
extension Int: RedisTypeTransformable {
static func extractFromRESPValue(_ value: RESPValue) throws -> Int {
guard let s = value.intValue else {
throw RedisTypeTransformationError.unexpectedValueType(value)
}
return s
}
}
extension String: RedisTypeTransformable {
static func extractFromRESPValue(_ value: RESPValue) throws -> String {
guard let s = value.stringValue else {
throw RedisTypeTransformationError.unexpectedValueType(value)
}
return s
}
}
extension Bool: RedisTypeTransformable {
static func extractFromRESPValue(_ value: RESPValue) throws -> Bool {
guard let s = value.intValue else {
throw RedisTypeTransformationError.unexpectedValueType(value)
}
return s != 0 ? true : false
}
}
extension Data: RedisTypeTransformable {
static func extractFromRESPValue(_ value: RESPValue) throws -> Data {
guard let s = value.dataValue else {
throw RedisTypeTransformationError.unexpectedValueType(value)
}
return s
}
}
extension Optional : RedisTypeTransformable
where Wrapped : RedisTypeTransformable
{
static func extractFromRESPValue(_ value: RESPValue) throws -> Wrapped? {
switch value {
case .bulkString(.none): return nil
case .array (.none): return nil
default: return try Wrapped.extractFromRESPValue(value)
}
}
}
extension Array : RedisTypeTransformable
where Element : RedisTypeTransformable
{
static func extractFromRESPValue(_ value: RESPValue) throws -> [ Element ] {
guard case .array(let itemsOpts) = value else {
throw RedisTypeTransformationError.unexpectedValueType(value)
}
guard let items = itemsOpts else { return [] } // Hm.
return try items.map { try Element.extractFromRESPValue($0) }
}
}
extension Dictionary : RedisTypeTransformable
where Key == String, Value == String
{
static func extractFromRESPValue(_ value: RESPValue)
throws -> [ Key : Value ]
{
guard case .array(let itemsOpts) = value else {
throw RedisTypeTransformationError.unexpectedValueType(value)
}
guard let items = itemsOpts, !items.isEmpty else { return [:] }
guard items.count % 2 == 0 else {
throw RedisTypeTransformationError.unexpectedHashValue(value)
}
var dict = [ Key : Value ]()
dict.reserveCapacity(items.count / 2 + 1)
for i in stride(from: items.startIndex, to: items.count, by: 2) {
dict[try Key .extractFromRESPValue(items[i])] =
try Value.extractFromRESPValue(items[i + 1])
}
return dict
}
}