org.apache.cassandra.streaming.SessionSummary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cassandra-all Show documentation
Show all versions of cassandra-all Show documentation
The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model.
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.cassandra.streaming;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import org.apache.cassandra.db.TypeSizes;
import org.apache.cassandra.io.IVersionedSerializer;
import org.apache.cassandra.io.util.DataInputPlus;
import org.apache.cassandra.io.util.DataOutputPlus;
import org.apache.cassandra.locator.InetAddressAndPort;
import static org.apache.cassandra.locator.InetAddressAndPort.Serializer.inetAddressAndPortSerializer;
public class SessionSummary
{
public final InetSocketAddress coordinator;
public final InetSocketAddress peer;
/** Immutable collection of receiving summaries */
public final Collection receivingSummaries;
/** Immutable collection of sending summaries*/
public final Collection sendingSummaries;
public SessionSummary(InetSocketAddress coordinator, InetSocketAddress peer,
Collection receivingSummaries,
Collection sendingSummaries)
{
assert coordinator != null;
assert peer != null;
assert receivingSummaries != null;
assert sendingSummaries != null;
this.coordinator = coordinator;
this.peer = peer;
this.receivingSummaries = receivingSummaries;
this.sendingSummaries = sendingSummaries;
}
public boolean equals(Object o)
{
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
SessionSummary summary = (SessionSummary) o;
if (!coordinator.equals(summary.coordinator)) return false;
if (!peer.equals(summary.peer)) return false;
if (!receivingSummaries.equals(summary.receivingSummaries)) return false;
return sendingSummaries.equals(summary.sendingSummaries);
}
public int hashCode()
{
int result = coordinator.hashCode();
result = 31 * result + peer.hashCode();
result = 31 * result + receivingSummaries.hashCode();
result = 31 * result + sendingSummaries.hashCode();
return result;
}
public static IVersionedSerializer serializer = new IVersionedSerializer()
{
public void serialize(SessionSummary summary, DataOutputPlus out, int version) throws IOException
{
inetAddressAndPortSerializer.serialize(summary.coordinator, out, version);
inetAddressAndPortSerializer.serialize(summary.peer, out, version);
out.writeInt(summary.receivingSummaries.size());
for (StreamSummary streamSummary: summary.receivingSummaries)
{
StreamSummary.serializer.serialize(streamSummary, out, version);
}
out.writeInt(summary.sendingSummaries.size());
for (StreamSummary streamSummary: summary.sendingSummaries)
{
StreamSummary.serializer.serialize(streamSummary, out, version);
}
}
public SessionSummary deserialize(DataInputPlus in, int version) throws IOException
{
InetAddressAndPort coordinator = inetAddressAndPortSerializer.deserialize(in, version);
InetAddressAndPort peer = inetAddressAndPortSerializer.deserialize(in, version);
int numRcvd = in.readInt();
List receivingSummaries = new ArrayList<>(numRcvd);
for (int i=0; i sendingSummaries = new ArrayList<>(numRcvd);
for (int i=0; i
© 2015 - 2024 Weber Informatics LLC | Privacy Policy