com.hazelcast.client.impl.protocol.task.multimap.MultiMapTryLockMessageTask Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2015, 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.multimap;
import com.hazelcast.client.impl.protocol.ClientMessage;
import com.hazelcast.client.impl.protocol.codec.MultiMapTryLockCodec;
import com.hazelcast.client.impl.protocol.task.AbstractPartitionMessageTask;
import com.hazelcast.concurrent.lock.LockService;
import com.hazelcast.concurrent.lock.operations.LockOperation;
import com.hazelcast.instance.Node;
import com.hazelcast.multimap.impl.MultiMapService;
import com.hazelcast.nio.Connection;
import com.hazelcast.security.permission.ActionConstants;
import com.hazelcast.security.permission.MultiMapPermission;
import com.hazelcast.spi.DefaultObjectNamespace;
import com.hazelcast.spi.Operation;
import java.security.Permission;
import java.util.concurrent.TimeUnit;
/**
* Client Protocol Task for handling messages with type id:
* {@link com.hazelcast.client.impl.protocol.codec.MultiMapMessageType#MULTIMAP_TRYLOCK}
*/
public class MultiMapTryLockMessageTask
extends AbstractPartitionMessageTask {
public MultiMapTryLockMessageTask(ClientMessage clientMessage, Node node, Connection connection) {
super(clientMessage, node, connection);
}
@Override
protected Operation prepareOperation() {
DefaultObjectNamespace namespace = new DefaultObjectNamespace(MultiMapService.SERVICE_NAME, parameters.name);
return new LockOperation(namespace, parameters.key, parameters.threadId, parameters.timeout);
}
@Override
protected MultiMapTryLockCodec.RequestParameters decodeClientMessage(ClientMessage clientMessage) {
return MultiMapTryLockCodec.decodeRequest(clientMessage);
}
@Override
protected ClientMessage encodeResponse(Object response) {
return MultiMapTryLockCodec.encodeResponse((Boolean) response);
}
@Override
public String getServiceName() {
return LockService.SERVICE_NAME;
}
@Override
public String getDistributedObjectType() {
return MultiMapService.SERVICE_NAME;
}
@Override
public String getMethodName() {
return "tryLock";
}
@Override
public Object[] getParameters() {
if (parameters.timeout == 0) {
return new Object[]{parameters.key};
}
return new Object[]{parameters.key, parameters.timeout, TimeUnit.MILLISECONDS};
}
public Permission getRequiredPermission() {
return new MultiMapPermission(parameters.name, ActionConstants.ACTION_LOCK);
}
@Override
public String getDistributedObjectName() {
return parameters.name;
}
}