import { RedisCommandArgument, RedisCommandArguments } from '.'; export const FIRST_KEY_INDEX = 1; type Types = RedisCommandArgument | number; type HSETObject = Record; type HSETMap = Map; type HSETTuples = Array<[Types, Types]> | Array; type GenericArguments = [key: RedisCommandArgument]; type SingleFieldArguments = [...generic: GenericArguments, field: Types, value: Types]; type MultipleFieldsArguments = [...generic: GenericArguments, value: HSETObject | HSETMap | HSETTuples]; export function transformArguments(...[ key, value, fieldValue ]: SingleFieldArguments | MultipleFieldsArguments): RedisCommandArguments { const args: RedisCommandArguments = ['HSET', key]; if (typeof value === 'string' || typeof value === 'number' || Buffer.isBuffer(value)) { args.push( convertValue(value), convertValue(fieldValue!) ); } else if (value instanceof Map) { pushMap(args, value); } else if (Array.isArray(value)) { pushTuples(args, value); } else { pushObject(args, value); } return args; } function pushMap(args: RedisCommandArguments, map: HSETMap): void { for (const [key, value] of map.entries()) { args.push( convertValue(key), convertValue(value) ); } } function pushTuples(args: RedisCommandArguments, tuples: HSETTuples): void { for (const tuple of tuples) { if (Array.isArray(tuple)) { pushTuples(args, tuple); continue; } args.push(convertValue(tuple)); } } function pushObject(args: RedisCommandArguments, object: HSETObject): void { for (const key of Object.keys(object)) { args.push( convertValue(key), convertValue(object[key]) ); } } function convertValue(value: Types): RedisCommandArgument { return typeof value === 'number' ? value.toString() : value; } export declare function transformReply(): number;