blob: 9660bd255a812b189e2a4446f5852bc8fe712b14 [file] [log] [blame]
/*
* 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.tcm.ownership;
import java.io.IOException;
import java.util.Objects;
import org.apache.cassandra.io.util.DataInputPlus;
import org.apache.cassandra.io.util.DataOutputPlus;
import org.apache.cassandra.locator.RangesByEndpoint;
import org.apache.cassandra.tcm.serialization.MetadataSerializer;
import org.apache.cassandra.tcm.serialization.Version;
public class Delta
{
public static final Serializer serializer = new Serializer();
private static final Delta EMPTY = new Delta(RangesByEndpoint.EMPTY, RangesByEndpoint.EMPTY);
public final RangesByEndpoint removals;
public final RangesByEndpoint additions;
public Delta(RangesByEndpoint removals, RangesByEndpoint additions)
{
this.removals = removals;
this.additions = additions;
}
public Delta onlyAdditions()
{
return new Delta(RangesByEndpoint.EMPTY, additions);
}
public Delta onlyRemovals()
{
return new Delta(removals, RangesByEndpoint.EMPTY);
}
/**
* Merges this delta with `other`
*
* Note that if opposite operations (add a range in this, remove it in other for example) exist in
* `this` and `other` the operations cancel eachother out and neither will be in the resulting delta.
* @param other
* @return
*/
public Delta merge(Delta other)
{
RangesByEndpoint.Builder removalsBuilder = new RangesByEndpoint.Builder();
RangesByEndpoint.Builder additionsBuilder = new RangesByEndpoint.Builder();
addChange(removals, other.additions, removalsBuilder);
addChange(other.removals, additions, removalsBuilder);
addChange(additions, other.removals, additionsBuilder);
addChange(other.additions, removals, additionsBuilder);
return new Delta(removalsBuilder.build(),
additionsBuilder.build());
}
private static void addChange(RangesByEndpoint change, RangesByEndpoint opposite, RangesByEndpoint.Builder builder)
{
change.asMap().forEach((ep, replicas) -> {
replicas.forEach(replica -> {
if (!opposite.get(ep).contains(replica) && !builder.get(ep).contains(replica))
builder.put(ep, replica);
});
});
}
public Delta invert()
{
return new Delta(additions, removals);
}
public boolean equals(Object o)
{
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Delta delta = (Delta) o;
return Objects.equals(removals, delta.removals) && Objects.equals(additions, delta.additions);
}
public int hashCode()
{
return Objects.hash(removals, additions);
}
@Override
public String toString()
{
return "Delta{" +
"removals=" + removals +
", additions=" + additions +
'}';
}
public static Delta empty()
{
return EMPTY;
}
public static final class Serializer implements MetadataSerializer<Delta>
{
public void serialize(Delta t, DataOutputPlus out, Version version) throws IOException
{
RangesByEndpoint.serializer.serialize(t.removals, out, version);
RangesByEndpoint.serializer.serialize(t.additions, out, version);
}
public Delta deserialize(DataInputPlus in, Version version) throws IOException
{
return new Delta(RangesByEndpoint.serializer.deserialize(in, version),
RangesByEndpoint.serializer.deserialize(in, version));
}
public long serializedSize(Delta t, Version version)
{
return RangesByEndpoint.serializer.serializedSize(t.removals, version) +
RangesByEndpoint.serializer.serializedSize(t.additions, version);
}
}
}