-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathclient.ts
248 lines (219 loc) Β· 6.41 KB
/
client.ts
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
import type { Connection, SendCommandOptions } from "./connection.ts";
import { isRetriableError } from "./errors.ts";
import type {
Binary,
RedisReply,
RedisValue,
} from "./protocol/shared/types.ts";
import { decoder } from "./internal/encoding.ts";
import {
kUnstableReadReply,
kUnstableWriteCommand,
} from "./internal/symbols.ts";
export type DefaultPubSubMessageType = string;
export type PubSubMessageType = string | string[];
export type SubscribeCommand = "SUBSCRIBE" | "PSUBSCRIBE";
export interface RedisSubscription<
TMessage extends PubSubMessageType = DefaultPubSubMessageType,
> {
readonly isClosed: boolean;
receive(): AsyncIterableIterator<RedisPubSubMessage<TMessage>>;
receiveBuffers(): AsyncIterableIterator<RedisPubSubMessage<Binary>>;
psubscribe(...patterns: string[]): Promise<void>;
subscribe(...channels: string[]): Promise<void>;
punsubscribe(...patterns: string[]): Promise<void>;
unsubscribe(...channels: string[]): Promise<void>;
close(): void;
}
export interface RedisPubSubMessage<TMessage = DefaultPubSubMessageType> {
pattern?: string;
channel: string;
message: TMessage;
}
/**
* A low-level client for Redis.
*/
export interface Client {
/**
* @deprecated
*/
readonly connection: Connection;
/**
* @deprecated
*/
exec(
command: string,
...args: RedisValue[]
): Promise<RedisReply>;
sendCommand(
command: string,
args?: RedisValue[],
options?: SendCommandOptions,
): Promise<RedisReply>;
subscribe<TMessage extends PubSubMessageType = DefaultPubSubMessageType>(
command: SubscribeCommand,
...channelsOrPatterns: Array<string>
): Promise<RedisSubscription<TMessage>>;
/**
* Closes a redis connection.
*/
close(): void;
}
class DefaultClient implements Client {
constructor(readonly connection: Connection) {}
exec(
command: string,
...args: RedisValue[]
): Promise<RedisReply> {
return this.connection.sendCommand(command, args);
}
sendCommand(
command: string,
args?: RedisValue[],
options?: SendCommandOptions,
) {
return this.connection.sendCommand(command, args, options);
}
async subscribe<
TMessage extends PubSubMessageType = DefaultPubSubMessageType,
>(
command: SubscribeCommand,
...channelsOrPatterns: Array<string>
): Promise<RedisSubscription<TMessage>> {
const subscription = new DefaultRedisSubscription<TMessage>(this);
switch (command) {
case "SUBSCRIBE":
await subscription.subscribe(...channelsOrPatterns);
break;
case "PSUBSCRIBE":
await subscription.psubscribe(...channelsOrPatterns);
break;
}
return subscription;
}
close(): void {
this.connection.close();
}
}
class DefaultRedisSubscription<
TMessage extends PubSubMessageType = DefaultPubSubMessageType,
> implements RedisSubscription<TMessage> {
get isConnected(): boolean {
return this.client.connection.isConnected;
}
get isClosed(): boolean {
return this.client.connection.isClosed;
}
private channels = Object.create(null);
private patterns = Object.create(null);
constructor(private client: Client) {}
async psubscribe(...patterns: string[]) {
await this.#writeCommand("PSUBSCRIBE", patterns);
for (const pat of patterns) {
this.patterns[pat] = true;
}
}
async punsubscribe(...patterns: string[]) {
await this.#writeCommand("PUNSUBSCRIBE", patterns);
for (const pat of patterns) {
delete this.patterns[pat];
}
}
async subscribe(...channels: string[]) {
await this.#writeCommand("SUBSCRIBE", channels);
for (const chan of channels) {
this.channels[chan] = true;
}
}
async unsubscribe(...channels: string[]) {
await this.#writeCommand("UNSUBSCRIBE", channels);
for (const chan of channels) {
delete this.channels[chan];
}
}
receive(): AsyncIterableIterator<RedisPubSubMessage<TMessage>> {
return this.#receive(false);
}
receiveBuffers(): AsyncIterableIterator<RedisPubSubMessage<Binary>> {
return this.#receive(true);
}
async *#receive<
T = TMessage,
>(
binaryMode: boolean,
): AsyncIterableIterator<
RedisPubSubMessage<T>
> {
let forceReconnect = false;
const connection = this.client.connection;
while (this.isConnected) {
try {
let rep: [string | Binary, string | Binary, T] | [
string | Binary,
string | Binary,
string | Binary,
T,
];
try {
rep = await connection[kUnstableReadReply](binaryMode) as typeof rep;
} catch (err) {
if (this.isClosed) {
// Connection already closed by the user.
break;
}
throw err; // Connection may have been unintentionally closed.
}
const event = rep[0] instanceof Uint8Array
? decoder.decode(rep[0])
: rep[0];
if (event === "message" && rep.length === 3) {
const channel = rep[1] instanceof Uint8Array
? decoder.decode(rep[1])
: rep[1];
const message = rep[2];
yield {
channel,
message,
};
} else if (event === "pmessage" && rep.length === 4) {
const pattern = rep[1] instanceof Uint8Array
? decoder.decode(rep[1])
: rep[1];
const channel = rep[2] instanceof Uint8Array
? decoder.decode(rep[2])
: rep[2];
const message = rep[3];
yield {
pattern,
channel,
message,
};
}
} catch (error) {
if (isRetriableError(error)) {
forceReconnect = true;
} else throw error;
} finally {
if ((!this.isClosed && !this.isConnected) || forceReconnect) {
forceReconnect = false;
await connection.reconnect();
if (Object.keys(this.channels).length > 0) {
await this.subscribe(...Object.keys(this.channels));
}
if (Object.keys(this.patterns).length > 0) {
await this.psubscribe(...Object.keys(this.patterns));
}
}
}
}
}
close() {
this.client.connection.close();
}
async #writeCommand(command: string, args: Array<string>): Promise<void> {
await this.client.connection[kUnstableWriteCommand]({ command, args });
}
}
export function createDefaultClient(connection: Connection): Client {
return new DefaultClient(connection);
}