Skip to content

Commit 10366db

Browse files
committed
feat: refresh group consumer
1 parent 7d04864 commit 10366db

File tree

9 files changed

+1747
-38
lines changed

9 files changed

+1747
-38
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## [1.6.0]
4+
5+
- refresh group and consumer.
6+
37
## [1.5.0]
48

59
- 增加'Show more ...'功能遍历整个 db 的 stream id keys.

command/index.js

+7-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,13 @@ exports.registers = (context) => {
4444

4545
const virDoc = VirtualDoc.init({ context })
4646
register('redis-stream.msg.value.refresh', async (opt) => {
47-
const { label, id } = opt
47+
const { label, id, refresh } = opt
4848
// log.info('VALUE RELOAD', label, id)
49-
virDoc.update(id)
49+
await refresh(opt, (item) => {
50+
VirtualDoc.setCacheDoc(id, item)
51+
virDoc.showDoc(id)
52+
virDoc.update(id)
53+
})
54+
5055
})
5156
}

command/redis.js

+36-30
Original file line numberDiff line numberDiff line change
@@ -82,43 +82,49 @@ class RedisModel {
8282
res.entries = await stream.xrevrange(streamKey, '+', '-', this.streamIDs[streamKey])
8383
if (res.groups === 0) res.groups = []
8484
else {
85-
res.groups = await stream.getGroupsInfo(streamKey)
86-
res.groups = await Promise.all(res.groups.map(async (i) => {
87-
if (i.consumers === 0) i.consumers = []
88-
else {
89-
let res = await stream.getConsumersInfo(i.name)
90-
res = await Promise.all(res.map(async j => {
91-
j['pel-count'] = j.pending
92-
if (j.pending !== 0) {
93-
j.pending = await stream.readPending({
94-
group: i.name, consumer: j.name,
95-
start: '-', end: '+', count: 10,
96-
})
97-
} else j.pending = []
98-
return j
99-
}))
100-
i.consumers = res
101-
}
102-
i['pel-count'] = i.pending
103-
if (i.pending === 0) i.pending = []
104-
else {
105-
let res = await stream.readPending({
106-
group: i.name,
107-
start: '-', end: '+', count: 10,
108-
})
109-
i.pending = res
110-
}
111-
112-
return i
113-
}))
114-
// if ()
85+
res.groups = await this.getGroupInfo(streamKey, stream)
11586
}
11687
} else {
11788
res.entries = await stream.xrevrange(streamKey, '+', '-', this.streamIDs[streamKey])
11889
}
11990
this.streamIDs[streamKey] += SHOW_MORE_COUNT
12091
return res
12192
}
93+
async getGroupInfo(streamKey, redisStream) {
94+
if (!redisStream) redisStream = new RedisStream({ client: this.client, stream: streamKey })
95+
const res = await redisStream.getGroupsInfo(streamKey)
96+
return Promise.all(res.map(async (i) => {
97+
if (i.consumers === 0) i.consumers = []
98+
else {
99+
i.consumers = await this.getConsumersInfo(i.name, streamKey, redisStream)
100+
}
101+
i['pel-count'] = i.pending
102+
if (i.pending === 0) i.pending = []
103+
else {
104+
let res = await redisStream.readPending({
105+
group: i.name,
106+
start: '-', end: '+', count: 10,
107+
})
108+
i.pending = res
109+
}
110+
111+
return i
112+
}))
113+
}
114+
async getConsumersInfo(group, streamKey, redisStream) {
115+
if (!redisStream) redisStream = new RedisStream({ client: this.client, stream: streamKey })
116+
const res = await redisStream.getConsumersInfo(group, streamKey)
117+
return Promise.all(res.map(async j => {
118+
j['pel-count'] = j.pending
119+
if (j.pending !== 0) {
120+
j.pending = await redisStream.readPending({
121+
group, consumer: j.name,
122+
start: '-', end: '+', count: 10,
123+
})
124+
} else j.pending = []
125+
return j
126+
}))
127+
}
122128
async getInfoById(id, stream) {
123129
const redis = new RedisStream({ client: this.client, stream })
124130
const [res] = await redis.xrange(stream, id, '+', 1)

explorer/explorer.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,10 @@ class TreeDataProvider {
4848
}
4949
// refresh getTreeItem -> getChildren
5050
async getTreeItem(element) {
51-
element.refresh = (e) => { this.refresh(e) }
51+
element.refresh = (e, cb) => {
52+
cb && (e.refreshCallBack = cb)
53+
this.refresh(e)
54+
}
5255
if (this._getTreeItem) return this._getTreeItem(element)
5356

5457
return element

explorer/node/consumer.js

+11
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,17 @@ class StreamConsumer extends TreeDataItem {
3636
return [StreamPending.init(data)]
3737

3838
}
39+
40+
async getTreeItem(parent) {
41+
let { host, port, password, db, refreshCallBack, stream, group } = this
42+
if (!this.redisModel) {
43+
this.redisModel = RedisModel.init({ host, port, password, db })
44+
}
45+
const [item] = (await this.redisModel.getConsumersInfo(group, stream)).filter(i => i.name === this.label)
46+
this.item = item
47+
refreshCallBack && refreshCallBack(item)
48+
return this
49+
}
3950
}
4051

4152
module.exports = { StreamConsumer }

explorer/node/group.js

+11
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,17 @@ class StreamGroup extends TreeDataItem {
5151
})]
5252

5353
}
54+
55+
async getTreeItem(parent) {
56+
let { host, port, password, db, refreshCallBack, stream } = this
57+
if (!this.redisModel) {
58+
this.redisModel = RedisModel.init({ host, port, password, db })
59+
}
60+
const [item] = (await this.redisModel.getGroupInfo(stream)).filter(i => i.name === this.label)
61+
this.item = item
62+
refreshCallBack && refreshCallBack(item)
63+
return this
64+
}
5465
}
5566

5667
module.exports = { StreamGroup }

lib/util.js

+9
Original file line numberDiff line numberDiff line change
@@ -180,3 +180,12 @@ Date.prototype.format = function (format) {
180180
})
181181
return format
182182
}
183+
184+
exports.toHump = (str, sign = '_') => {
185+
const re = new RegExp(`\\${sign}(\\w)`, 'g')
186+
return str.replace(re, (match, letter) => letter.toUpperCase())
187+
}
188+
189+
exports.toLine = (str, sign = '_') => {
190+
return str.replace(/([A-Z])/g, `${sign}$1`).toLowerCase()
191+
}

package.json

+7-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"publisher": "zhaixiang",
44
"displayName": "redis-stream",
55
"description": "redis stream explorer",
6-
"version": "1.5.7",
6+
"version": "1.6.0",
77
"homepage": "https://github.com/runzx/redis-stream-vscode/blob/master/README.md",
88
"repository": {
99
"type": "git",
@@ -14,7 +14,7 @@
1414
"email": "[email protected]"
1515
},
1616
"engines": {
17-
"vscode": "^1.51.0"
17+
"vscode": "^1.40.0"
1818
},
1919
"categories": [
2020
"Visualization",
@@ -52,7 +52,7 @@
5252
},
5353
{
5454
"command": "redis-stream.msg.value.refresh",
55-
"title": "msg reload",
55+
"title": "info reload",
5656
"icon": "image/refresh.png"
5757
},
5858
{
@@ -135,6 +135,8 @@
135135
"vscode-test": "^1.4.1"
136136
},
137137
"dependencies": {
138-
"ioredis": "^4.19.2"
138+
"global": "^4.4.0",
139+
"ioredis": "^4.19.2",
140+
"vsce": "^1.83.0"
139141
}
140-
}
142+
}

0 commit comments

Comments
 (0)