com.google.common.graph.AbstractGraph Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payment-retries-plugin Show documentation
Show all versions of payment-retries-plugin Show documentation
Kill Bill Payment Retries plugin
The newest version!
/*
* Copyright (C) 2016 The Guava Authors
*
* 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.google.common.graph;
import static com.google.common.base.Preconditions.checkState;
import static com.google.common.graph.GraphConstants.GRAPH_STRING_FORMAT;
import com.google.common.annotations.Beta;
import com.google.common.collect.UnmodifiableIterator;
import com.google.common.math.IntMath;
import com.google.common.primitives.Ints;
import java.util.AbstractSet;
import java.util.Set;
import javax.annotation.Nullable;
/**
* This class provides a skeletal implementation of {@link Graph}. It is recommended to extend this
* class rather than implement {@link Graph} directly.
*
* @author James Sexton
* @param Node parameter type
* @since 20.0
*/
@Beta
public abstract class AbstractGraph implements Graph {
/**
* Returns the number of edges in this graph; used to calculate the size of {@link #edges()}. The
* default implementation is O(|N|). You can manually keep track of the number of edges and
* override this method for better performance.
*/
protected long edgeCount() {
long degreeSum = 0L;
for (N node : nodes()) {
degreeSum += degree(node);
}
// According to the degree sum formula, this is equal to twice the number of edges.
checkState((degreeSum & 1) == 0);
return degreeSum >>> 1;
}
/**
* A reasonable default implementation of {@link Graph#edges()} defined in terms of {@link
* #nodes()} and {@link #successors(Object)}.
*/
@Override
public Set> edges() {
return new AbstractSet>() {
@Override
public UnmodifiableIterator> iterator() {
return EndpointPairIterator.of(AbstractGraph.this);
}
@Override
public int size() {
return Ints.saturatedCast(edgeCount());
}
@Override
public boolean contains(@Nullable Object obj) {
if (!(obj instanceof EndpointPair)) {
return false;
}
EndpointPair> endpointPair = (EndpointPair>) obj;
return isDirected() == endpointPair.isOrdered()
&& nodes().contains(endpointPair.nodeU())
&& successors(endpointPair.nodeU()).contains(endpointPair.nodeV());
}
};
}
@Override
public int degree(Object node) {
if (isDirected()) {
return IntMath.saturatedAdd(predecessors(node).size(), successors(node).size());
} else {
Set neighbors = adjacentNodes(node);
int selfLoopCount = (allowsSelfLoops() && neighbors.contains(node)) ? 1 : 0;
return IntMath.saturatedAdd(neighbors.size(), selfLoopCount);
}
}
@Override
public int inDegree(Object node) {
return isDirected() ? predecessors(node).size() : degree(node);
}
@Override
public int outDegree(Object node) {
return isDirected() ? successors(node).size() : degree(node);
}
/** Returns a string representation of this graph. */
@Override
public String toString() {
String propertiesString =
String.format("isDirected: %s, allowsSelfLoops: %s", isDirected(), allowsSelfLoops());
return String.format(GRAPH_STRING_FORMAT, propertiesString, nodes(), edges());
}
}