com.hazelcast.cp.internal.datastructures.lock.operation.AbstractLockOp Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2020, 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.cp.internal.datastructures.lock.operation;
import com.hazelcast.cp.internal.RaftOp;
import com.hazelcast.cp.internal.datastructures.lock.LockEndpoint;
import com.hazelcast.cp.internal.datastructures.lock.RaftLockDataSerializerHook;
import com.hazelcast.cp.internal.datastructures.lock.RaftLockService;
import com.hazelcast.nio.ObjectDataInput;
import com.hazelcast.nio.ObjectDataOutput;
import com.hazelcast.nio.serialization.IdentifiedDataSerializable;
import java.io.IOException;
import java.util.UUID;
import static com.hazelcast.cp.internal.util.UUIDSerializationUtil.readUUID;
import static com.hazelcast.cp.internal.util.UUIDSerializationUtil.writeUUID;
/**
* Base class for operations of Raft-based lock
*/
@SuppressWarnings("checkstyle:declarationorder")
abstract class AbstractLockOp extends RaftOp implements IdentifiedDataSerializable {
String name;
long sessionId;
long threadId;
UUID invocationUid;
AbstractLockOp() {
}
AbstractLockOp(String name, long sessionId, long threadId, UUID invocationUid) {
this.name = name;
this.sessionId = sessionId;
this.threadId = threadId;
this.invocationUid = invocationUid;
}
LockEndpoint getLockEndpoint() {
return new LockEndpoint(sessionId, threadId);
}
@Override
public final String getServiceName() {
return RaftLockService.SERVICE_NAME;
}
@Override
public int getFactoryId() {
return RaftLockDataSerializerHook.F_ID;
}
@Override
public void writeData(ObjectDataOutput out) throws IOException {
out.writeUTF(name);
out.writeLong(sessionId);
out.writeLong(threadId);
writeUUID(out, invocationUid);
}
@Override
public void readData(ObjectDataInput in) throws IOException {
name = in.readUTF();
sessionId = in.readLong();
threadId = in.readLong();
invocationUid = readUUID(in);
}
@Override
protected void toString(StringBuilder sb) {
sb.append(", name=").append(name);
sb.append(", sessionId=").append(sessionId);
sb.append(", threadId=").append(threadId);
sb.append(", invocationUid=").append(invocationUid);
}
}