001/* 002 * Copyright (C) 2016 The Guava Authors 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 017package com.google.common.graph; 018 019import static com.google.common.base.Preconditions.checkNotNull; 020import static com.google.common.base.Preconditions.checkState; 021 022import com.google.common.annotations.Beta; 023import com.google.common.base.MoreObjects; 024import com.google.common.base.MoreObjects.ToStringHelper; 025import com.google.common.base.Objects; 026import com.google.common.collect.Maps; 027import com.google.common.collect.Ordering; 028import com.google.errorprone.annotations.Immutable; 029import java.util.Comparator; 030import java.util.Map; 031import org.checkerframework.checker.nullness.qual.Nullable; 032 033/** 034 * Used to represent the order of elements in a data structure that supports different options for 035 * iteration order guarantees. 036 * 037 * <p>Example usage: 038 * 039 * <pre>{@code 040 * MutableGraph<Integer> graph = 041 * GraphBuilder.directed().nodeOrder(ElementOrder.<Integer>natural()).build(); 042 * }</pre> 043 * 044 * @author Joshua O'Madadhain 045 * @since 20.0 046 */ 047@Beta 048@Immutable 049public final class ElementOrder<T> { 050 private final Type type; 051 052 @SuppressWarnings("Immutable") // Hopefully the comparator provided is immutable! 053 private final @Nullable Comparator<T> comparator; 054 055 /** 056 * The type of ordering that this object specifies. 057 * 058 * <ul> 059 * <li>UNORDERED: no order is guaranteed. 060 * <li>STABLE: ordering is guaranteed to follow a pattern that won't change between releases. 061 * Some methods may have stronger guarantees. 062 * <li>INSERTION: insertion ordering is guaranteed. 063 * <li>SORTED: ordering according to a supplied comparator is guaranteed. 064 * </ul> 065 */ 066 public enum Type { 067 UNORDERED, 068 STABLE, 069 INSERTION, 070 SORTED 071 } 072 073 private ElementOrder(Type type, @Nullable Comparator<T> comparator) { 074 this.type = checkNotNull(type); 075 this.comparator = comparator; 076 checkState((type == Type.SORTED) == (comparator != null)); 077 } 078 079 /** Returns an instance which specifies that no ordering is guaranteed. */ 080 public static <S> ElementOrder<S> unordered() { 081 return new ElementOrder<S>(Type.UNORDERED, null); 082 } 083 084 /** 085 * Returns an instance which specifies that ordering is guaranteed to be always be the same across 086 * iterations, and across releases. Some methods may have stronger guarantees. 087 * 088 * <p>This instance is only useful in combination with {@code incidentEdgeOrder}, e.g. {@code 089 * graphBuilder.incidentEdgeOrder(ElementOrder.stable())}. 090 * 091 * <h3>In combination with {@code incidentEdgeOrder}</h3> 092 * 093 * <p>{@code incidentEdgeOrder(ElementOrder.stable())} guarantees the ordering of the returned 094 * collections of the following methods: 095 * 096 * <ul> 097 * <li>For {@link Graph} and {@link ValueGraph}: 098 * <ul> 099 * <li>{@code edges()}: Stable order 100 * <li>{@code adjacentNodes(node)}: Connecting edge insertion order 101 * <li>{@code predecessors(node)}: Connecting edge insertion order 102 * <li>{@code successors(node)}: Connecting edge insertion order 103 * <li>{@code incidentEdges(node)}: Edge insertion order 104 * </ul> 105 * <li>For {@link Network}: 106 * <ul> 107 * <li>{@code adjacentNodes(node)}: Stable order 108 * <li>{@code predecessors(node)}: Connecting edge insertion order 109 * <li>{@code successors(node)}: Connecting edge insertion order 110 * <li>{@code incidentEdges(node)}: Stable order 111 * <li>{@code inEdges(node)}: Edge insertion order 112 * <li>{@code outEdges(node)}: Edge insertion order 113 * <li>{@code adjacentEdges(edge)}: Stable order 114 * <li>{@code edgesConnecting(nodeU, nodeV)}: Edge insertion order 115 * </ul> 116 * </ul> 117 */ 118 // TODO(b/142723300): Make this method public 119 static <S> ElementOrder<S> stable() { 120 return new ElementOrder<S>(Type.STABLE, null); 121 } 122 123 /** Returns an instance which specifies that insertion ordering is guaranteed. */ 124 public static <S> ElementOrder<S> insertion() { 125 return new ElementOrder<S>(Type.INSERTION, null); 126 } 127 128 /** 129 * Returns an instance which specifies that the natural ordering of the elements is guaranteed. 130 */ 131 public static <S extends Comparable<? super S>> ElementOrder<S> natural() { 132 return new ElementOrder<S>(Type.SORTED, Ordering.<S>natural()); 133 } 134 135 /** 136 * Returns an instance which specifies that the ordering of the elements is guaranteed to be 137 * determined by {@code comparator}. 138 */ 139 public static <S> ElementOrder<S> sorted(Comparator<S> comparator) { 140 return new ElementOrder<S>(Type.SORTED, comparator); 141 } 142 143 /** Returns the type of ordering used. */ 144 public Type type() { 145 return type; 146 } 147 148 /** 149 * Returns the {@link Comparator} used. 150 * 151 * @throws UnsupportedOperationException if comparator is not defined 152 */ 153 public Comparator<T> comparator() { 154 if (comparator != null) { 155 return comparator; 156 } 157 throw new UnsupportedOperationException("This ordering does not define a comparator."); 158 } 159 160 @Override 161 public boolean equals(@Nullable Object obj) { 162 if (obj == this) { 163 return true; 164 } 165 if (!(obj instanceof ElementOrder)) { 166 return false; 167 } 168 169 ElementOrder<?> other = (ElementOrder<?>) obj; 170 return (type == other.type) && Objects.equal(comparator, other.comparator); 171 } 172 173 @Override 174 public int hashCode() { 175 return Objects.hashCode(type, comparator); 176 } 177 178 @Override 179 public String toString() { 180 ToStringHelper helper = MoreObjects.toStringHelper(this).add("type", type); 181 if (comparator != null) { 182 helper.add("comparator", comparator); 183 } 184 return helper.toString(); 185 } 186 187 /** Returns an empty mutable map whose keys will respect this {@link ElementOrder}. */ 188 <K extends T, V> Map<K, V> createMap(int expectedSize) { 189 switch (type) { 190 case UNORDERED: 191 return Maps.newHashMapWithExpectedSize(expectedSize); 192 case INSERTION: 193 case STABLE: 194 return Maps.newLinkedHashMapWithExpectedSize(expectedSize); 195 case SORTED: 196 return Maps.newTreeMap(comparator()); 197 default: 198 throw new AssertionError(); 199 } 200 } 201 202 @SuppressWarnings("unchecked") 203 <T1 extends T> ElementOrder<T1> cast() { 204 return (ElementOrder<T1>) this; 205 } 206}