com.hazelcast.cache.impl.operation.CacheBackupEntryProcessorOperation Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2016, 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.cache.impl.operation;
import com.hazelcast.cache.CacheEntryView;
import com.hazelcast.cache.impl.CacheDataSerializerHook;
import com.hazelcast.cache.impl.CacheEntryViews;
import com.hazelcast.cache.impl.record.CacheRecord;
import com.hazelcast.nio.ObjectDataInput;
import com.hazelcast.nio.ObjectDataOutput;
import com.hazelcast.nio.serialization.Data;
import com.hazelcast.nio.serialization.IdentifiedDataSerializable;
import com.hazelcast.spi.BackupOperation;
import javax.cache.processor.EntryProcessor;
import java.io.IOException;
import static com.hazelcast.cache.impl.operation.MutableOperation.IGNORE_COMPLETION;
/**
* Operation of the Cache Backup Entry Processor.
* {@link com.hazelcast.cache.BackupAwareEntryProcessor} is executed on the partition.
* Executing this method applies a backup entry processor to the requested
* {@link com.hazelcast.cache.impl.ICacheRecordStore} which provides the required
* functionality to apply the backup using the given {@link javax.cache.processor.EntryProcessor}.
*/
public class CacheBackupEntryProcessorOperation
extends AbstractCacheOperation
implements BackupOperation, IdentifiedDataSerializable {
private EntryProcessor entryProcessor;
private Object[] arguments;
public CacheBackupEntryProcessorOperation() {
}
public CacheBackupEntryProcessorOperation(String name, Data key, EntryProcessor entryProcessor,
Object... arguments) {
super(name, key);
this.entryProcessor = entryProcessor;
this.arguments = arguments;
}
@Override
public int getId() {
return CacheDataSerializerHook.BACKUP_ENTRY_PROCESSOR;
}
@Override
public void run()
throws Exception {
cache.invoke(key, entryProcessor, arguments, IGNORE_COMPLETION);
}
@Override
public void afterRun() throws Exception {
if (cache.isWanReplicationEnabled()) {
CacheRecord record = cache.getRecord(key);
if (record != null) {
CacheEntryView entryView = CacheEntryViews.createDefaultEntryView(key,
getNodeEngine().getSerializationService().toData(record.getValue()), record);
wanEventPublisher.publishWanReplicationUpdate(name, entryView);
} else {
wanEventPublisher.publishWanReplicationRemove(name, key);
}
}
}
@Override
protected void writeInternal(ObjectDataOutput out)
throws IOException {
super.writeInternal(out);
out.writeObject(entryProcessor);
out.writeBoolean(arguments != null);
if (arguments != null) {
out.writeInt(arguments.length);
for (Object arg : arguments) {
out.writeObject(arg);
}
}
}
@Override
protected void readInternal(ObjectDataInput in)
throws IOException {
super.readInternal(in);
entryProcessor = in.readObject();
final boolean hasArguments = in.readBoolean();
if (hasArguments) {
final int size = in.readInt();
arguments = new Object[size];
for (int i = 0; i < size; i++) {
arguments[i] = in.readObject();
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy