/* * Copyright (c) 2008-2017, Hazelcast, Inc. All Rights Reserved. * * 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 com.hazelcast.client.impl.protocol.task.replicatedmap; import com.hazelcast.client.impl.protocol.ClientMessage; import com.hazelcast.client.impl.protocol.codec.ReplicatedMapPutAllCodec; import com.hazelcast.client.impl.protocol.task.AbstractAllPartitionsMessageTask; import com.hazelcast.instance.Node; import com.hazelcast.nio.Connection; import com.hazelcast.replicatedmap.impl.ReplicatedMapService; import com.hazelcast.replicatedmap.impl.client.ReplicatedMapEntries; import com.hazelcast.replicatedmap.impl.operation.PutAllOperationFactory; import com.hazelcast.security.permission.ActionConstants; import com.hazelcast.security.permission.ReplicatedMapPermission; import com.hazelcast.spi.OperationFactory; import com.hazelcast.util.ExceptionUtil; import java.security.Permission; import java.util.HashMap; import java.util.Map; public class ReplicatedMapPutAllMessageTask extends AbstractAllPartitionsMessageTask<ReplicatedMapPutAllCodec.RequestParameters> { public ReplicatedMapPutAllMessageTask(ClientMessage clientMessage, Node node, Connection connection) { super(clientMessage, node, connection); } @Override protected OperationFactory createOperationFactory() { return new PutAllOperationFactory(parameters.name, new ReplicatedMapEntries(parameters.entries)); } @Override protected Object reduce(Map<Integer, Object> map) { for (Map.Entry<Integer, Object> entry : map.entrySet()) { Object result = serializationService.toObject(entry.getValue()); if (result instanceof Throwable) { throw ExceptionUtil.rethrow((Throwable) result); } } return null; } @Override protected ReplicatedMapPutAllCodec.RequestParameters decodeClientMessage(ClientMessage clientMessage) { return ReplicatedMapPutAllCodec.decodeRequest(clientMessage); } @Override protected ClientMessage encodeResponse(Object response) { return ReplicatedMapPutAllCodec.encodeResponse(); } @Override public String getServiceName() { return ReplicatedMapService.SERVICE_NAME; } @Override public String getDistributedObjectName() { return parameters.name; } @Override public String getMethodName() { return "putAll"; } @Override public Permission getRequiredPermission() { return new ReplicatedMapPermission(parameters.name, ActionConstants.ACTION_PUT); } @Override public Object[] getParameters() { final HashMap map = new HashMap(); for (Map.Entry entry : parameters.entries) { map.put(entry.getKey(), entry.getValue()); } return new Object[]{map}; } }