com.hazelcast.map.impl.tx.TxnUnlockOperation Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2018, 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.map.impl.tx;
import com.hazelcast.map.impl.MapDataSerializerHook;
import com.hazelcast.map.impl.operation.LockAwareOperation;
import com.hazelcast.nio.ObjectDataInput;
import com.hazelcast.nio.ObjectDataOutput;
import com.hazelcast.nio.serialization.Data;
import com.hazelcast.spi.BackupAwareOperation;
import com.hazelcast.spi.Operation;
import com.hazelcast.spi.WaitNotifyKey;
import com.hazelcast.spi.impl.MutatingOperation;
import com.hazelcast.transaction.TransactionException;
import java.io.IOException;
/**
* An operation to unlock key on the partition owner.
*/
public class TxnUnlockOperation extends LockAwareOperation implements MapTxnOperation, BackupAwareOperation, MutatingOperation {
private long version;
private String ownerUuid;
public TxnUnlockOperation() {
}
public TxnUnlockOperation(String name, Data dataKey, long version) {
super(name, dataKey, -1);
this.version = version;
}
@Override
public void innerBeforeRun() throws Exception {
super.innerBeforeRun();
if (!recordStore.canAcquireLock(dataKey, ownerUuid, threadId)) {
throw new TransactionException("Cannot acquire lock UUID: " + ownerUuid + ", threadId: " + threadId);
}
}
@Override
public void run() {
recordStore.unlock(dataKey, ownerUuid, threadId, getCallId());
}
@Override
public boolean shouldWait() {
return false;
}
@Override
public long getVersion() {
return version;
}
@Override
public void setVersion(long version) {
this.version = version;
}
@Override
public Object getResponse() {
return Boolean.TRUE;
}
@Override
public boolean shouldNotify() {
return true;
}
@Override
public Operation getBackupOperation() {
TxnUnlockBackupOperation txnUnlockOperation = new TxnUnlockBackupOperation(name, dataKey, ownerUuid);
txnUnlockOperation.setThreadId(getThreadId());
return txnUnlockOperation;
}
@Override
public void onWaitExpire() {
sendResponse(false);
}
@Override
public final int getAsyncBackupCount() {
return mapContainer.getAsyncBackupCount();
}
@Override
public final int getSyncBackupCount() {
return mapContainer.getBackupCount();
}
@Override
public void setOwnerUuid(String ownerUuid) {
this.ownerUuid = ownerUuid;
}
@Override
public boolean shouldBackup() {
return true;
}
@Override
public WaitNotifyKey getNotifiedKey() {
return getWaitKey();
}
@Override
protected void writeInternal(ObjectDataOutput out) throws IOException {
super.writeInternal(out);
out.writeLong(version);
out.writeUTF(ownerUuid);
}
@Override
protected void readInternal(ObjectDataInput in) throws IOException {
super.readInternal(in);
version = in.readLong();
ownerUuid = in.readUTF();
}
@Override
public int getId() {
return MapDataSerializerHook.TXN_UNLOCK;
}
}