forked from denodrivers/redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pubsub.ts
164 lines (148 loc) Β· 4.3 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
import { BufReader, BufWriter } from "./vendor/https/deno.land/std/io/bufio.ts";
import { Connection } from "./connection.ts";
import { readArrayReply, sendCommand, RedisRawReply } from "./io.ts";
import { InvalidStateError } from "./errors.ts";
export type RedisSubscription = {
readonly isClosed: boolean;
receive(): AsyncIterableIterator<RedisPubSubMessage>;
psubscribe(...patterns: string[]): Promise<void>;
subscribe(...channels: string[]): Promise<void>;
punsubscribe(...patterns: string[]): Promise<void>;
unsubscribe(...channels: string[]): Promise<void>;
close(): Promise<void>;
};
export type RedisPubSubMessage = {
pattern?: string;
channel: string;
message: string;
};
class RedisSubscriptionImpl implements RedisSubscription {
get isConnected(): boolean {
return this.connection.isConnected;
}
get isClosed(): boolean {
return this.connection.isClosed;
}
private channels = Object.create(null);
private patterns = Object.create(null);
constructor(private connection: Connection<RedisRawReply>) {
// Force retriable connection for connection shared for pub/sub.
if (connection.maxRetryCount === 0) connection.maxRetryCount = 10;
}
async psubscribe(...patterns: string[]) {
await sendCommand(
this.connection.writer!,
this.connection.reader!,
"PSUBSCRIBE",
...patterns,
);
for (const pat of patterns) {
this.patterns[pat] = true;
}
}
async punsubscribe(...patterns: string[]) {
await sendCommand(
this.connection.writer!,
this.connection.reader!,
"PUNSUBSCRIBE",
...patterns,
);
for (const pat of patterns) {
delete this.patterns[pat];
}
}
async subscribe(...channels: string[]) {
await sendCommand(
this.connection.writer!,
this.connection.reader!,
"SUBSCRIBE",
...channels,
);
for (const chan of channels) {
this.channels[chan] = true;
}
}
async unsubscribe(...channels: string[]) {
await sendCommand(
this.connection.writer!,
this.connection.reader!,
"UNSUBSCRIBE",
...channels,
);
for (const chan of channels) {
delete this.channels[chan];
}
}
async *receive(): AsyncIterableIterator<RedisPubSubMessage> {
let forceReconnect = false;
while (this.isConnected) {
try {
let rep: string[];
try {
rep = (await readArrayReply(this.connection.reader)) as string[];
} catch (err) {
if (err instanceof Deno.errors.BadResource) { // Connection already closed.
this.connection.close();
break;
}
throw err;
}
const ev = rep[0];
if (ev === "message" && rep.length === 3) {
yield {
channel: rep[1],
message: rep[2],
};
} else if (ev === "pmessage" && rep.length === 4) {
yield {
pattern: rep[1],
channel: rep[2],
message: rep[3],
};
}
} catch (error) {
if (
error instanceof InvalidStateError ||
error instanceof Deno.errors.BadResource
) {
forceReconnect = true;
} else throw error;
} finally {
if ((!this.isClosed && !this.isConnected) || forceReconnect) {
await this.connection.reconnect();
forceReconnect = false;
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));
}
}
}
}
}
async close() {
try {
await this.unsubscribe(...Object.keys(this.channels));
await this.punsubscribe(...Object.keys(this.patterns));
} finally {
this.connection.close();
}
}
}
export async function subscribe(
connection: Connection<RedisRawReply>,
...channels: string[]
): Promise<RedisSubscription> {
const sub = new RedisSubscriptionImpl(connection);
await sub.subscribe(...channels);
return sub;
}
export async function psubscribe(
connection: Connection<RedisRawReply>,
...patterns: string[]
): Promise<RedisSubscription> {
const sub = new RedisSubscriptionImpl(connection);
await sub.psubscribe(...patterns);
return sub;
}