blob: b121483021901dde34665759155e9103341a4f9d [file] [log] [blame]
/*
* Copyright 2015-present Open Networking Foundation
*
* 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 org.onosproject.store.mcast.impl;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Maps;
import org.onosproject.net.ConnectPoint;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicReference;
import static com.google.common.base.Preconditions.checkNotNull;
/**
* Simple entity maintaining a mapping between a source and a collection of sink
* connect points.
*/
public final class MulticastData {
private final AtomicReference<ConnectPoint> source =
new AtomicReference<>();
private final Map<ConnectPoint, Boolean> sinks;
private final AtomicBoolean isEmpty = new AtomicBoolean();
private MulticastData() {
this.sinks = Maps.newConcurrentMap();
isEmpty.set(true);
}
public MulticastData(ConnectPoint source) {
this.source.set(checkNotNull(source, "Multicast source cannot be null."));
this.sinks = Maps.newConcurrentMap();
isEmpty.set(false);
}
public ConnectPoint source() {
return source.get();
}
public Set<ConnectPoint> sinks() {
return ImmutableSet.copyOf(sinks.keySet());
}
public void setSource(ConnectPoint source) {
// FIXME: violates immutability
isEmpty.set(false);
this.source.set(source);
}
public void appendSink(ConnectPoint sink) {
checkNotNull(sink);
sinks.put(sink, true);
}
public void removeSink(ConnectPoint sink) {
checkNotNull(sink);
sinks.remove(sink);
}
public boolean isEmpty() {
return isEmpty.get();
}
public static MulticastData empty() {
return new MulticastData();
}
@Override
public int hashCode() {
return Objects.hash(super.hashCode(), source, sinks, isEmpty);
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof MulticastData)) {
return false;
}
final MulticastData other = (MulticastData) obj;
return super.equals(obj) &&
Objects.equals(source(), other.source()) &&
Objects.equals(sinks(), other.sinks()) &&
Objects.equals(isEmpty, other.isEmpty);
}
}