-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
pubsub.ts
187 lines (166 loc) Β· 5.19 KB
/
pubsub.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
import type { CommandExecutor } from "./executor.ts";
import { isRetriableError } from "./errors.ts";
import type { Binary } from "./protocol/shared/types.ts";
import { decoder } from "./internal/encoding.ts";
import {
kUnstableReadReply,
kUnstableWriteCommand,
} from "./internal/symbols.ts";
type DefaultMessageType = string;
type ValidMessageType = string | string[];
export interface RedisSubscription<
TMessage extends ValidMessageType = DefaultMessageType,
> {
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 = DefaultMessageType> {
pattern?: string;
channel: string;
message: TMessage;
}
class RedisSubscriptionImpl<
TMessage extends ValidMessageType = DefaultMessageType,
> implements RedisSubscription<TMessage> {
get isConnected(): boolean {
return this.executor.connection.isConnected;
}
get isClosed(): boolean {
return this.executor.connection.isClosed;
}
private channels = Object.create(null);
private patterns = Object.create(null);
constructor(private executor: CommandExecutor) {}
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.executor.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.executor.connection.close();
}
async #writeCommand(command: string, args: Array<string>): Promise<void> {
await this.executor.connection[kUnstableWriteCommand]({ command, args });
}
}
export async function subscribe<
TMessage extends ValidMessageType = DefaultMessageType,
>(
executor: CommandExecutor,
...channels: string[]
): Promise<RedisSubscription<TMessage>> {
const sub = new RedisSubscriptionImpl<TMessage>(executor);
await sub.subscribe(...channels);
return sub;
}
export async function psubscribe<
TMessage extends ValidMessageType = DefaultMessageType,
>(
executor: CommandExecutor,
...patterns: string[]
): Promise<RedisSubscription<TMessage>> {
const sub = new RedisSubscriptionImpl<TMessage>(executor);
await sub.psubscribe(...patterns);
return sub;
}