
org.infinispan.commands.CommandInvocationId Maven / Gradle / Ivy
package org.infinispan.commands;
import org.infinispan.commons.marshall.AbstractExternalizer;
import org.infinispan.marshall.core.Ids;
import org.infinispan.remoting.transport.Address;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.util.Collections;
import java.util.Set;
import java.util.concurrent.atomic.AtomicLong;
/**
* Represents an unique identified for non-transaction write commands.
*
* It is used to lock the key for a specific command.
*
* @author Pedro Ruivo
* @since 8.0
*/
public class CommandInvocationId {
private static final AtomicLong nextId = new AtomicLong(0);
private final Address address;
private final long id;
private CommandInvocationId(Address address, long id) {
this.address = address;
this.id = id;
}
public static CommandInvocationId generateId(Address address) {
return new CommandInvocationId(address, nextId.getAndIncrement());
}
public static CommandInvocationId generateIdFrom(CommandInvocationId commandInvocationId) {
return new CommandInvocationId(commandInvocationId.address, nextId.getAndIncrement());
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
CommandInvocationId that = (CommandInvocationId) o;
return id == that.id && !(address != null ? !address.equals(that.address) : that.address != null);
}
@Override
public int hashCode() {
int result = address != null ? address.hashCode() : 0;
result = 31 * result + (int) (id ^ (id >>> 32));
return result;
}
@Override
public String toString() {
return "CommandUUID{" +
"address=" + address +
", id=" + id +
'}';
}
public static class Externalizer extends AbstractExternalizer {
@Override
public Set> getTypeClasses() {
return Collections.singleton(CommandInvocationId.class);
}
@Override
public void writeObject(ObjectOutput output, CommandInvocationId object) throws IOException {
output.writeObject(object.address);
output.writeLong(object.id);
}
@Override
public CommandInvocationId readObject(ObjectInput input) throws IOException, ClassNotFoundException {
Address address = (Address) input.readObject();
long id = input.readLong();
return new CommandInvocationId(address, id);
}
@Override
public Integer getId() {
return Ids.COMMAND_INVOCATION_ID;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy