{ @Override public String decode(ByteBuf buffer) { int lineEndIndex = CodecUtils.X.findLineEndIndex(buffer); if (-1 == lineEndIndex) { return null; } Long length = (Long) DefaultRespCodec.DECODERS.get(ReplyType.INTEGER).decode(buffer); if (null == length) { return null; } // Bulk Null String if (RespConstants.NEGATIVE_ONE.equals(length)) { return null; } // Bulk Empty String if (RespConstants.ZERO.equals(length)) { return RespConstants.EMPTY_STRING; } // 真实字节内容的长度 int readLength = (int) length.longValue(); if (buffer.readableBytes() > readLength) { byte[] bytes = new byte[readLength]; buffer.readBytes(bytes); // 重置读游标为rn之后的第一个字节 buffer.readerIndex(buffer.readerIndex() + 2); return new String(bytes, RespConstants.UTF_8); } return null; }}public class RespArrayDecoder implements RespDecoder { @Override public Object decode(ByteBuf buffer) { int lineEndIndex = CodecUtils.X.findLineEndIndex(buffer); if (-1 == lineEndIndex) { return null; } // 解析元素个数 Long length = (Long) DefaultRespCodec.DECODERS.get(ReplyType.INTEGER).decode(buffer); if (null == length) { return null; } // Null Array if (RespConstants.NEGATIVE_ONE.equals(length)) { return null; } // Array Empty List if (RespConstants.ZERO.equals(length)) { return Lists.newArrayList(); } List
推荐阅读
-
-
「天蝎座」6月下旬,横财入宅,3大属相吉运相随,贵人驾临,财富延绵
-
电竞|LOL不是战士但出肉最恶心的4个英雄,选出来就是磨人心态的
-
趣读文化|盗墓贼几乎洗劫一空,专家:只留下一个文物,千年古墓被发现
-
浅浅说科技|这次或要霸占市场!,差强人意还是搅局市场?红米K30再跌新低价
-
集团|葵花药业:控股股东葵花集团解除质押3700万股
-
手机中国 续航大提升,苹果明年新iPhone将使用增强版5nm芯片
-
驱动之家魅族旗舰机史上最大电池!魅族17半个小时能充入56%电量
-
冬天吃水果清热解毒去火注意事项 冬天吃什么水果降火效果最好
-
中国游泳功勋教练徐国义病逝|中国游泳功勋教练徐国义病逝享年50岁
-
『东方财富网』报54.4元,创科(00669)跌4.73%
-
-
GPLP|蓝思科技回应投资人:前员工贪腐不会对生产经营造成重大不利影响
-
-
安妮的大射手|但为了爱情,最疯狂的三个星座,义无反顾,不计后果,头脑理智
-
-
-
被告|冒充医生向老年人推销降糖假药 四人被控诈骗210万元
-
-