/** * Copyright 2016 Nikita Koksharov * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.redisson.connection.decoder; import java.io.IOException; import java.util.Collections; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import org.redisson.client.handler.State; import org.redisson.client.protocol.decoder.MultiDecoder; import io.netty.buffer.ByteBuf; public class MapGetAllDecoder implements MultiDecoder<Map<Object, Object>> { private final int shiftIndex; private final List<Object> args; private final boolean allowNulls; public MapGetAllDecoder(List<Object> args, int shiftIndex) { this(args, shiftIndex, false); } public MapGetAllDecoder(List<Object> args, int shiftIndex, boolean allowNulls) { this.args = args; this.shiftIndex = shiftIndex; this.allowNulls = allowNulls; } @Override public Object decode(ByteBuf buf, State state) throws IOException { throw new UnsupportedOperationException(); } @Override public boolean isApplicable(int paramNum, State state) { return false; } @Override public Map<Object, Object> decode(List<Object> parts, State state) { if (parts.isEmpty()) { return Collections.emptyMap(); } Map<Object, Object> result = new LinkedHashMap<Object, Object>(parts.size()); for (int index = 0; index < args.size()-shiftIndex; index++) { Object value = parts.get(index); if (!allowNulls && value == null) { continue; } result.put(args.get(index+shiftIndex), value); } return result; } }