
com.hazelcast.internal.locksupport.operations.LockOperation Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2008-2024, 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.internal.locksupport.operations;
import com.hazelcast.client.impl.ClientEngine;
import com.hazelcast.client.impl.ClientEngineImpl;
import com.hazelcast.core.OperationTimeoutException;
import com.hazelcast.internal.locksupport.LockDataSerializerHook;
import com.hazelcast.internal.locksupport.LockStoreImpl;
import com.hazelcast.internal.locksupport.LockWaitNotifyKey;
import com.hazelcast.internal.services.ObjectNamespace;
import com.hazelcast.logging.ILogger;
import com.hazelcast.internal.serialization.Data;
import com.hazelcast.spi.impl.operationservice.BackupAwareOperation;
import com.hazelcast.spi.impl.operationservice.BlockingOperation;
import com.hazelcast.spi.impl.operationservice.MutatingOperation;
import com.hazelcast.spi.impl.operationservice.Operation;
import com.hazelcast.spi.impl.operationservice.WaitNotifyKey;
public class LockOperation extends AbstractLockOperation implements BlockingOperation, BackupAwareOperation, MutatingOperation {
public LockOperation() {
}
public LockOperation(ObjectNamespace namespace, Data key, long threadId, long leaseTime, long timeout) {
super(namespace, key, threadId, leaseTime, timeout);
}
public LockOperation(ObjectNamespace namespace, Data key, long threadId, long leaseTime, long timeout, long referenceId,
boolean isClient) {
super(namespace, key, threadId, leaseTime, timeout);
this.isClient = isClient;
setReferenceCallId(referenceId);
}
@Override
public void run() throws Exception {
interceptLockOperation();
if (isClient) {
ClientEngine clientEngine = getNodeEngine().getService(ClientEngineImpl.SERVICE_NAME);
clientEngine.onClientAcquiredResource(getCallerUuid());
}
final boolean lockResult = getLockStore().lock(key, getCallerUuid(), threadId, getReferenceCallId(), leaseTime);
response = lockResult;
ILogger logger = getLogger();
if (logger.isFinestEnabled()) {
if (lockResult) {
logger.finest("Acquired lock " + namespace.getObjectName()
+ " for " + getCallerAddress() + " - " + getCallerUuid() + ", thread ID: " + threadId);
} else {
logger.finest("Could not acquire lock " + namespace.getObjectName()
+ " as owned by " + getLockStore().getOwnerInfo(key));
}
}
}
@Override
public Operation getBackupOperation() {
LockBackupOperation operation = new LockBackupOperation(namespace, key, threadId, leaseTime, getCallerUuid(), isClient);
operation.setReferenceCallId(getReferenceCallId());
return operation;
}
@Override
public boolean shouldBackup() {
return Boolean.TRUE.equals(response);
}
@Override
public final WaitNotifyKey getWaitKey() {
return new LockWaitNotifyKey(namespace, key);
}
@Override
public final boolean shouldWait() {
LockStoreImpl lockStore = getLockStore();
return getWaitTimeout() != 0 && !lockStore.canAcquireLock(key, getCallerUuid(), threadId);
}
@Override
public final void onWaitExpire() {
Object response;
long timeout = getWaitTimeout();
if (timeout < 0 || timeout == Long.MAX_VALUE) {
response = new OperationTimeoutException();
} else {
response = Boolean.FALSE;
}
sendResponse(response);
}
@Override
public int getClassId() {
return LockDataSerializerHook.LOCK;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy