com.hazelcast.internal.cluster.impl.ExtendedBindMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hazelcast-all Show documentation
Show all versions of hazelcast-all Show documentation
Kubernetes Service Discovery for Hazelcast Discovery SPI
/*
* Copyright (c) 2008-2019, 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.internal.cluster.impl;
import com.hazelcast.instance.ProtocolType;
import com.hazelcast.nio.Address;
import com.hazelcast.nio.ObjectDataInput;
import com.hazelcast.nio.ObjectDataOutput;
import com.hazelcast.nio.serialization.IdentifiedDataSerializable;
import java.io.IOException;
import java.util.Collection;
import java.util.Collections;
import java.util.EnumMap;
import java.util.Map;
import static com.hazelcast.internal.serialization.impl.SerializationUtil.readCollection;
import static com.hazelcast.internal.serialization.impl.SerializationUtil.writeCollection;
/**
* Extended bind message, conveying information about all kinds of public
* addresses per protocol type. Used as a replacement of the older
* {@link BindMessage}. It is the first message exchanged on a new connection
* so {@link com.hazelcast.nio.serialization.impl.Versioned Versioned}
* serialization cannot be used as there may be no cluster version
* established yet. The {@code ExtendedBindMessage} itself includes a
* schema version so it can be extended in future versions without having
* to use another packet type.
*
* @since 3.12
* @see BindMessage
*/
public class ExtendedBindMessage implements IdentifiedDataSerializable {
private byte schemaVersion;
private Map> localAddresses;
private Address targetAddress;
private boolean reply;
public ExtendedBindMessage() {
}
public ExtendedBindMessage(byte schemaVersion, Map> localAddresses,
Address targetAddress, boolean reply) {
this.schemaVersion = schemaVersion;
this.localAddresses = new EnumMap>(localAddresses);
this.targetAddress = targetAddress;
this.reply = reply;
}
byte getSchemaVersion() {
return schemaVersion;
}
public Map> getLocalAddresses() {
return localAddresses;
}
public Address getTargetAddress() {
return targetAddress;
}
public boolean isReply() {
return reply;
}
@Override
public int getFactoryId() {
return ClusterDataSerializerHook.F_ID;
}
@Override
public int getId() {
return ClusterDataSerializerHook.EXTENDED_BIND_MESSAGE;
}
@Override
public void writeData(ObjectDataOutput out) throws IOException {
out.writeByte(schemaVersion);
out.writeObject(targetAddress);
out.writeBoolean(reply);
int size = (localAddresses == null) ? 0 : localAddresses.size();
out.writeInt(size);
if (size == 0) {
return;
}
for (Map.Entry> addressEntry : localAddresses.entrySet()) {
out.writeInt(addressEntry.getKey().ordinal());
writeCollection(addressEntry.getValue(), out);
}
}
@Override
public void readData(ObjectDataInput in) throws IOException {
schemaVersion = in.readByte();
targetAddress = in.readObject();
reply = in.readBoolean();
int size = in.readInt();
if (size == 0) {
localAddresses = Collections.emptyMap();
return;
}
Map> addressesPerProtocolType
= new EnumMap>(ProtocolType.class);
for (int i = 0; i < size; i++) {
ProtocolType protocolType = ProtocolType.valueOf(in.readInt());
Collection addresses = readCollection(in);
addressesPerProtocolType.put(protocolType, addresses);
}
this.localAddresses = addressesPerProtocolType;
}
@Override
public String toString() {
return "ExtendedBindMessage{" + "schemaVersion=" + schemaVersion + ", localAddresses=" + localAddresses
+ ", targetAddress=" + targetAddress + ", reply=" + reply + '}';
}
}