All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.cassandra.streaming.SessionSummary Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 5.0-rc1
Show newest version
/*
 * 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.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 org.apache.cassandra.locator.InetAddressAndPort.Serializer;

import static org.apache.cassandra.locator.InetAddressAndPort.Serializer.inetAddressAndPortSerializer;

public class SessionSummary
{
    public final InetAddressAndPort coordinator;
    public final InetAddressAndPort peer;
    /** Immutable collection of receiving summaries */
    public final Collection receivingSummaries;
    /** Immutable collection of sending summaries*/
    public final Collection sendingSummaries;

    public SessionSummary(InetAddressAndPort coordinator, InetAddressAndPort 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