
com.hazelcast.map.impl.operation.BasePutOperation 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.map.impl.operation;
import com.hazelcast.core.EntryEventType;
import com.hazelcast.internal.serialization.Data;
import com.hazelcast.map.impl.operation.steps.engine.Step;
import com.hazelcast.map.impl.operation.steps.PutOpSteps;
import com.hazelcast.map.impl.operation.steps.engine.State;
import com.hazelcast.map.impl.record.Record;
import com.hazelcast.map.impl.recordstore.StaticParams;
import com.hazelcast.map.impl.recordstore.expiry.ExpiryMetadata;
import com.hazelcast.spi.impl.operationservice.BackupAwareOperation;
import com.hazelcast.spi.impl.operationservice.Operation;
import static com.hazelcast.map.impl.record.Record.UNSET;
public abstract class BasePutOperation
extends LockAwareOperation implements BackupAwareOperation {
protected transient Object oldValue;
protected transient EntryEventType eventType;
protected transient Record recordToBackup;
public BasePutOperation(String name, Data dataKey, Data value) {
super(name, dataKey, value);
}
public BasePutOperation() {
}
@Override
protected void innerBeforeRun() throws Exception {
super.innerBeforeRun();
if (getStaticParams().isCheckIfLoaded() && recordStore != null) {
recordStore.checkIfLoaded();
}
}
protected StaticParams getStaticParams() {
throw new UnsupportedOperationException();
}
@Override
public Step getStartingStep() {
return PutOpSteps.READ;
}
@Override
public State createState() {
return super.createState()
.setStaticPutParams(getStaticParams())
.setTtl(getTtl())
.setMaxIdle(getMaxIdle());
}
@Override
public void applyState(State state) {
oldValue = getOldValue(state);
eventType = getEventType();
recordToBackup = state.getRecord();
}
protected Data getOldValue(State state) {
return mapServiceContext.toData(state.getOldValue());
}
@Override
public void afterRunInternal() {
Object value = isPostProcessingOrHasInterceptor(recordStore)
? recordStore.getRecord(dataKey).getValue() : dataValue;
mapServiceContext.interceptAfterPut(mapContainer.getInterceptorRegistry(), dataValue);
mapEventPublisher.publishEvent(getCallerAddress(), name,
oldValue == null ? EntryEventType.ADDED
: EntryEventType.UPDATED, dataKey, oldValue, value);
invalidateNearCache(dataKey);
publishWanUpdate(dataKey, value);
evict(dataKey);
super.afterRunInternal();
}
// overridden in extension classes
protected long getTtl() {
return UNSET;
}
// overridden in extension classes
protected long getMaxIdle() {
return UNSET;
}
protected final EntryEventType getEventType() {
if (eventType == null) {
eventType = oldValue == null ? EntryEventType.ADDED : EntryEventType.UPDATED;
}
return eventType;
}
@Override
public boolean shouldBackup() {
recordToBackup = recordStore.getRecord(dataKey);
return recordToBackup != null;
}
@Override
public Operation getBackupOperation() {
dataValue = getValueOrPostProcessedValue(recordToBackup, dataValue);
return newBackupOperation(dataKey, recordToBackup, dataValue);
}
protected PutBackupOperation newBackupOperation(Data dataKey, Record record, Data dataValue) {
ExpiryMetadata metadata = recordStore.getExpirySystem().getExpiryMetadata(dataKey);
return new PutBackupOperation(name, dataKey, record, dataValue, metadata);
}
@Override
public final int getAsyncBackupCount() {
return mapContainer.getAsyncBackupCount();
}
@Override
public final int getSyncBackupCount() {
return mapContainer.getBackupCount();
}
@Override
public void onWaitExpire() {
sendResponse(null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy