You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-03 04:01:40 +03:00
* Parser support with all commands * remove "dist" from all imports for consistency * address most of my review comments * small tweak to multi type mapping handling * tweak multi commands / fix addScript cases * nits * addressed all in person review comments * revert addCommand/addScript changes to multi-commands addCommand needs to be there for sendCommand like ability within a multi. If its there, it might as well be used by createCommand() et al, to avoid repeating code. addScript is there (even though only used once), but now made private to keep the logic for bookkeeping near each other.
72 lines
2.0 KiB
TypeScript
72 lines
2.0 KiB
TypeScript
import { CommandParser } from '../client/parser';
|
|
import { BlobStringReply, NumberReply, ArrayReply, TuplesReply, UnwrapReply, Command } from '../RESP/types';
|
|
|
|
type MasterRole = [
|
|
role: BlobStringReply<'master'>,
|
|
replicationOffest: NumberReply,
|
|
replicas: ArrayReply<TuplesReply<[host: BlobStringReply, port: BlobStringReply, replicationOffest: BlobStringReply]>>
|
|
];
|
|
|
|
type SlaveRole = [
|
|
role: BlobStringReply<'slave'>,
|
|
masterHost: BlobStringReply,
|
|
masterPort: NumberReply,
|
|
state: BlobStringReply<'connect' | 'connecting' | 'sync' | 'connected'>,
|
|
dataReceived: NumberReply
|
|
];
|
|
|
|
type SentinelRole = [
|
|
role: BlobStringReply<'sentinel'>,
|
|
masterNames: ArrayReply<BlobStringReply>
|
|
];
|
|
|
|
type Role = TuplesReply<MasterRole | SlaveRole | SentinelRole>;
|
|
|
|
export default {
|
|
NOT_KEYED_COMMAND: true,
|
|
IS_READ_ONLY: true,
|
|
parseCommand(parser: CommandParser) {
|
|
parser.push('ROLE');
|
|
},
|
|
transformReply(reply: UnwrapReply<Role>) {
|
|
switch (reply[0] as unknown as UnwrapReply<typeof reply[0]>) {
|
|
case 'master': {
|
|
const [role, replicationOffest, replicas] = reply as MasterRole;
|
|
return {
|
|
role,
|
|
replicationOffest,
|
|
replicas: (replicas as unknown as UnwrapReply<typeof replicas>).map(replica => {
|
|
const [host, port, replicationOffest] = replica as unknown as UnwrapReply<typeof replica>;
|
|
return {
|
|
host,
|
|
port: Number(port),
|
|
replicationOffest: Number(replicationOffest)
|
|
};
|
|
})
|
|
};
|
|
}
|
|
|
|
case 'slave': {
|
|
const [role, masterHost, masterPort, state, dataReceived] = reply as SlaveRole;
|
|
return {
|
|
role,
|
|
master: {
|
|
host: masterHost,
|
|
port: masterPort
|
|
},
|
|
state,
|
|
dataReceived,
|
|
};
|
|
}
|
|
|
|
case 'sentinel': {
|
|
const [role, masterNames] = reply as SentinelRole;
|
|
return {
|
|
role,
|
|
masterNames
|
|
};
|
|
}
|
|
}
|
|
}
|
|
} as const satisfies Command;
|