/* * 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.concurrent.lock.operations; import com.hazelcast.concurrent.lock.LockDataSerializerHook; import com.hazelcast.concurrent.lock.LockStoreImpl; import com.hazelcast.logging.ILogger; import com.hazelcast.nio.Address; import com.hazelcast.nio.ObjectDataInput; import com.hazelcast.nio.ObjectDataOutput; import com.hazelcast.nio.serialization.Data; import com.hazelcast.spi.NodeEngine; import com.hazelcast.spi.ObjectNamespace; import com.hazelcast.spi.partition.IPartition; import com.hazelcast.spi.partition.IPartitionService; import java.io.IOException; public final class UnlockIfLeaseExpiredOperation extends UnlockOperation { private int version; /** * This constructor should not be used to obtain an instance of this class; it exists to fulfill IdentifiedDataSerializable * coding conventions. */ public UnlockIfLeaseExpiredOperation() { version = 0; } public UnlockIfLeaseExpiredOperation(ObjectNamespace namespace, Data key, int version) { super(namespace, key, -1, true); this.version = version; } @Override public void run() throws Exception { LockStoreImpl lockStore = getLockStore(); int lockVersion = lockStore.getVersion(key); ILogger logger = getLogger(); if (version == lockVersion) { if (logger.isFinestEnabled()) { logger.finest("Releasing a lock owned by " + lockStore.getOwnerInfo(key) + " after lease timeout!"); } forceUnlock(); } else { if (logger.isFinestEnabled()) { logger.finest("Won't unlock since lock version is not matching expiration version: " + lockVersion + " vs " + version); } } } /** * This operation runs on both primary and backup * If it is running on backup we should not send a backup operation * @return */ @Override public boolean shouldBackup() { NodeEngine nodeEngine = getNodeEngine(); IPartitionService partitionService = nodeEngine.getPartitionService(); Address thisAddress = nodeEngine.getThisAddress(); IPartition partition = partitionService.getPartition(getPartitionId()); if (!thisAddress.equals(partition.getOwnerOrNull())) { return false; } return super.shouldBackup(); } @Override protected void writeInternal(ObjectDataOutput out) throws IOException { super.writeInternal(out); out.writeInt(version); } @Override protected void readInternal(ObjectDataInput in) throws IOException { super.readInternal(in); version = in.readInt(); } @Override public int getId() { return LockDataSerializerHook.UNLOCK_IF_LEASE_EXPIRED; } }