org.infinispan.commands.functional.ReadWriteManyCommand Maven / Gradle / Ivy
package org.infinispan.commands.functional;
import org.infinispan.commands.Visitor;
import org.infinispan.commons.api.functional.EntryView.ReadWriteEntryView;
import org.infinispan.commons.marshall.MarshallUtil;
import org.infinispan.container.entries.CacheEntry;
import org.infinispan.context.InvocationContext;
import org.infinispan.functional.impl.EntryViews;
import org.infinispan.functional.impl.Params;
import org.infinispan.lifecycle.ComponentStatus;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.function.Function;
import static org.infinispan.functional.impl.EntryViews.snapshot;
public final class ReadWriteManyCommand extends AbstractWriteManyCommand {
public static final byte COMMAND_ID = 52;
private Set extends K> keys;
private Function, R> f;
private int topologyId = -1;
boolean isForwarded = false;
private List remoteReturns = new ArrayList<>();
public ReadWriteManyCommand(Set extends K> keys, Function, R> f, Params params) {
this.keys = keys;
this.f = f;
this.params = params;
}
public ReadWriteManyCommand(ReadWriteManyCommand command) {
this.keys = command.keys;
this.f = command.f;
this.params = command.params;
}
public ReadWriteManyCommand() {
}
public Set extends K> getKeys() {
return keys;
}
public void setKeys(Set extends K> keys) {
this.keys = keys;
}
@Override
public byte getCommandId() {
return COMMAND_ID;
}
@Override
public void writeTo(ObjectOutput output) throws IOException {
MarshallUtil.marshallCollection(keys, output);
output.writeObject(f);
output.writeBoolean(isForwarded);
Params.writeObject(output, params);
}
@Override
public void readFrom(ObjectInput input) throws IOException, ClassNotFoundException {
keys = MarshallUtil.unmarshallCollection(input, size -> new HashSet<>());
f = (Function, R>) input.readObject();
isForwarded = input.readBoolean();
params = Params.readObject(input);
}
public boolean isForwarded() {
return isForwarded;
}
public void setForwarded(boolean forwarded) {
isForwarded = forwarded;
}
@Override
public boolean shouldInvoke(InvocationContext ctx) {
return true;
}
@Override
public boolean isReturnValueExpected() {
return true;
}
public void addAllRemoteReturns(List returns) {
remoteReturns.addAll(returns);
}
@Override
public int getTopologyId() {
return topologyId;
}
@Override
public void setTopologyId(int topologyId) {
this.topologyId = topologyId;
}
@Override
public Object acceptVisitor(InvocationContext ctx, Visitor visitor) throws Throwable {
return visitor.visitReadWriteManyCommand(ctx, this);
}
@Override
public Object perform(InvocationContext ctx) throws Throwable {
// Can't return a lazy stream here because the current code in
// EntryWrappingInterceptor expects any changes to be done eagerly,
// otherwise they're not applied. So, apply the function eagerly and
// return a lazy stream of the void returns.
List returns = new ArrayList<>(remoteReturns);
keys.forEach(k -> {
CacheEntry entry = ctx.lookupEntry(k);
// Could be that the key is not local, 'null' is how this is signalled
if (entry != null) {
R r = f.apply(EntryViews.readWrite(entry));
returns.add(snapshot(r));
}
});
return returns;
}
@Override
public boolean isSuccessful() {
return true;
}
@Override
public boolean isConditional() {
return false;
}
@Override
public boolean canBlock() {
return false; // TODO: Customise this generated block
}
@Override
public Set
© 2015 - 2025 Weber Informatics LLC | Privacy Policy