You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-03 04:01:40 +03:00
* (docs) bloom: add jsdocs for all commands * (docs) json: add jsdocs * (docs) search: add jsdocs for all commands * (docs) jsdocs for std commands * (docs) jsdoc comments to time series commands
84 lines
2.3 KiB
TypeScript
84 lines
2.3 KiB
TypeScript
import { CommandParser } from '../client/parser';
|
|
import { Command, RedisArgument, ReplyUnion } from '../RESP/types';
|
|
import { transformStreamsMessagesReplyResp2 } from './generic-transformers';
|
|
|
|
/**
|
|
* Structure representing a stream to read from
|
|
*
|
|
* @property key - The stream key
|
|
* @property id - The message ID to start reading from
|
|
*/
|
|
export interface XReadStream {
|
|
key: RedisArgument;
|
|
id: RedisArgument;
|
|
}
|
|
|
|
export type XReadStreams = Array<XReadStream> | XReadStream;
|
|
|
|
/**
|
|
* Helper function to push stream keys and IDs to the command parser
|
|
*
|
|
* @param parser - The command parser
|
|
* @param streams - Single stream or array of streams to read from
|
|
*/
|
|
export function pushXReadStreams(parser: CommandParser, streams: XReadStreams) {
|
|
parser.push('STREAMS');
|
|
|
|
if (Array.isArray(streams)) {
|
|
for (let i = 0; i < streams.length; i++) {
|
|
parser.pushKey(streams[i].key);
|
|
}
|
|
for (let i = 0; i < streams.length; i++) {
|
|
parser.push(streams[i].id);
|
|
}
|
|
} else {
|
|
parser.pushKey(streams.key);
|
|
parser.push(streams.id);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Options for the XREAD command
|
|
*
|
|
* @property COUNT - Limit the number of entries returned per stream
|
|
* @property BLOCK - Milliseconds to block waiting for new entries (0 for indefinite)
|
|
*/
|
|
export interface XReadOptions {
|
|
COUNT?: number;
|
|
BLOCK?: number;
|
|
}
|
|
|
|
export default {
|
|
IS_READ_ONLY: true,
|
|
/**
|
|
* Constructs the XREAD command to read messages from one or more streams
|
|
*
|
|
* @param parser - The command parser
|
|
* @param streams - Single stream or array of streams to read from
|
|
* @param options - Additional options for reading streams
|
|
* @returns Array of stream entries, each containing the stream name and its messages
|
|
* @see https://redis.io/commands/xread/
|
|
*/
|
|
parseCommand(parser: CommandParser, streams: XReadStreams, options?: XReadOptions) {
|
|
parser.push('XREAD');
|
|
|
|
if (options?.COUNT) {
|
|
parser.push('COUNT', options.COUNT.toString());
|
|
}
|
|
|
|
if (options?.BLOCK !== undefined) {
|
|
parser.push('BLOCK', options.BLOCK.toString());
|
|
}
|
|
|
|
pushXReadStreams(parser, streams);
|
|
},
|
|
/**
|
|
* Transform functions for different RESP versions
|
|
*/
|
|
transformReply: {
|
|
2: transformStreamsMessagesReplyResp2,
|
|
3: undefined as unknown as () => ReplyUnion
|
|
},
|
|
unstableResp3: true
|
|
} as const satisfies Command;
|