Collections2.java 10.1 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
package com.google.common.collect;

import com.google.common.annotations.Beta;
import com.google.common.annotations.GwtCompatible;
import com.google.common.base.Function;
import com.google.common.base.Joiner;
import com.google.common.base.Preconditions;
import com.google.common.base.Predicate;
import com.google.common.base.Predicates;
import com.google.common.math.IntMath;
import com.google.common.math.LongMath;
import java.util.AbstractCollection;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Comparator;
import java.util.Iterator;
import java.util.List;
import javax.annotation.Nullable;
import nj;

@GwtCompatible
public final class Collections2
{
  static final Joiner a = Joiner.on(", ").useForNull("null");
  
  static String a(Collection<?> paramCollection)
  {
    StringBuilder localStringBuilder = a(paramCollection.size()).append('[');
    a.appendTo(localStringBuilder, Iterables.transform(paramCollection, new Function()
    {
      public final Object apply(Object paramAnonymousObject)
      {
        Object localObject = paramAnonymousObject;
        if (paramAnonymousObject == this.a) {
          localObject = "(this Collection)";
        }
        return localObject;
      }
    }));
    return ']';
  }
  
  static StringBuilder a(int paramInt)
  {
    nj.a(paramInt, "size");
    return new StringBuilder((int)Math.min(paramInt * 8L, 1073741824L));
  }
  
  static <T> Collection<T> a(Iterable<T> paramIterable)
  {
    return (Collection)paramIterable;
  }
  
  public static boolean a(Collection<?> paramCollection, @Nullable Object paramObject)
  {
    Preconditions.checkNotNull(paramCollection);
    try
    {
      boolean bool = paramCollection.contains(paramObject);
      return bool;
    }
    catch (ClassCastException paramCollection)
    {
      return false;
    }
    catch (NullPointerException paramCollection) {}
    return false;
  }
  
  public static boolean a(Collection<?> paramCollection1, Collection<?> paramCollection2)
  {
    return Iterables.all(paramCollection2, Predicates.in(paramCollection1));
  }
  
  public static boolean b(Collection<?> paramCollection, @Nullable Object paramObject)
  {
    Preconditions.checkNotNull(paramCollection);
    try
    {
      boolean bool = paramCollection.remove(paramObject);
      return bool;
    }
    catch (ClassCastException paramCollection)
    {
      return false;
    }
    catch (NullPointerException paramCollection) {}
    return false;
  }
  
  public static <E> Collection<E> filter(Collection<E> paramCollection, Predicate<? super E> paramPredicate)
  {
    if ((paramCollection instanceof a))
    {
      paramCollection = (a)paramCollection;
      return new a(paramCollection.a, Predicates.and(paramCollection.b, paramPredicate));
    }
    return new a((Collection)Preconditions.checkNotNull(paramCollection), (Predicate)Preconditions.checkNotNull(paramPredicate));
  }
  
  @Beta
  public static <E extends Comparable<? super E>> Collection<List<E>> orderedPermutations(Iterable<E> paramIterable)
  {
    return orderedPermutations(paramIterable, Ordering.natural());
  }
  
  @Beta
  public static <E> Collection<List<E>> orderedPermutations(Iterable<E> paramIterable, Comparator<? super E> paramComparator)
  {
    return new b(paramIterable, paramComparator);
  }
  
  @Beta
  public static <E> Collection<List<E>> permutations(Collection<E> paramCollection)
  {
    return new d(ImmutableList.copyOf(paramCollection));
  }
  
  public static <F, T> Collection<T> transform(Collection<F> paramCollection, Function<? super F, T> paramFunction)
  {
    return new f(paramCollection, paramFunction);
  }
  
  static class a<E>
    extends AbstractCollection<E>
  {
    final Collection<E> a;
    final Predicate<? super E> b;
    
    a(Collection<E> paramCollection, Predicate<? super E> paramPredicate)
    {
      this.a = paramCollection;
      this.b = paramPredicate;
    }
    
    public boolean add(E paramE)
    {
      Preconditions.checkArgument(this.b.apply(paramE));
      return this.a.add(paramE);
    }
    
    public boolean addAll(Collection<? extends E> paramCollection)
    {
      Iterator localIterator = paramCollection.iterator();
      while (localIterator.hasNext())
      {
        Object localObject = localIterator.next();
        Preconditions.checkArgument(this.b.apply(localObject));
      }
      return this.a.addAll(paramCollection);
    }
    
    public void clear()
    {
      Iterables.removeIf(this.a, this.b);
    }
    
    public boolean contains(@Nullable Object paramObject)
    {
      if (Collections2.a(this.a, paramObject)) {
        return this.b.apply(paramObject);
      }
      return false;
    }
    
    public boolean containsAll(Collection<?> paramCollection)
    {
      return Collections2.a(this, paramCollection);
    }
    
    public boolean isEmpty()
    {
      return !Iterables.any(this.a, this.b);
    }
    
    public Iterator<E> iterator()
    {
      return Iterators.filter(this.a.iterator(), this.b);
    }
    
    public boolean remove(Object paramObject)
    {
      return (contains(paramObject)) && (this.a.remove(paramObject));
    }
    
    public boolean removeAll(Collection<?> paramCollection)
    {
      return Iterables.removeIf(this.a, Predicates.and(this.b, Predicates.in(paramCollection)));
    }
    
    public boolean retainAll(Collection<?> paramCollection)
    {
      return Iterables.removeIf(this.a, Predicates.and(this.b, Predicates.not(Predicates.in(paramCollection))));
    }
    
    public int size()
    {
      return Iterators.size(iterator());
    }
    
    public Object[] toArray()
    {
      return Lists.newArrayList(iterator()).toArray();
    }
    
    public <T> T[] toArray(T[] paramArrayOfT)
    {
      return Lists.newArrayList(iterator()).toArray(paramArrayOfT);
    }
  }
  
  static final class b<E>
    extends AbstractCollection<List<E>>
  {
    final ImmutableList<E> a;
    final Comparator<? super E> b;
    final int c;
    
    b(Iterable<E> paramIterable, Comparator<? super E> paramComparator)
    {
      this.a = Ordering.from(paramComparator).immutableSortedCopy(paramIterable);
      this.b = paramComparator;
      this.c = a(this.a, paramComparator);
    }
    
    private static <E> int a(List<E> paramList, Comparator<? super E> paramComparator)
    {
      int i = 1;
      long l2 = 1L;
      int j = 1;
      while (j < paramList.size())
      {
        int k = i;
        l1 = l2;
        if (paramComparator.compare(paramList.get(j - 1), paramList.get(j)) < 0)
        {
          l2 *= LongMath.binomial(j, i);
          k = 0;
          l1 = l2;
          if (!Collections2.a(l2)) {
            return Integer.MAX_VALUE;
          }
        }
        j += 1;
        i = k + 1;
        l2 = l1;
      }
      long l1 = LongMath.binomial(j, i) * l2;
      if (!Collections2.a(l1)) {
        return Integer.MAX_VALUE;
      }
      return (int)l1;
    }
    
    public final boolean contains(@Nullable Object paramObject)
    {
      if ((paramObject instanceof List))
      {
        paramObject = (List)paramObject;
        return Collections2.a(this.a, (List)paramObject);
      }
      return false;
    }
    
    public final boolean isEmpty()
    {
      return false;
    }
    
    public final Iterator<List<E>> iterator()
    {
      return new Collections2.c(this.a, this.b);
    }
    
    public final int size()
    {
      return this.c;
    }
    
    public final String toString()
    {
      String str = String.valueOf(String.valueOf(this.a));
      return str.length() + 30 + "orderedPermutationCollection(" + str + ")";
    }
  }
  
  static final class c<E>
    extends AbstractIterator<List<E>>
  {
    List<E> a;
    final Comparator<? super E> b;
    
    c(List<E> paramList, Comparator<? super E> paramComparator)
    {
      this.a = Lists.newArrayList(paramList);
      this.b = paramComparator;
    }
  }
  
  static final class d<E>
    extends AbstractCollection<List<E>>
  {
    final ImmutableList<E> a;
    
    d(ImmutableList<E> paramImmutableList)
    {
      this.a = paramImmutableList;
    }
    
    public final boolean contains(@Nullable Object paramObject)
    {
      if ((paramObject instanceof List))
      {
        paramObject = (List)paramObject;
        return Collections2.a(this.a, (List)paramObject);
      }
      return false;
    }
    
    public final boolean isEmpty()
    {
      return false;
    }
    
    public final Iterator<List<E>> iterator()
    {
      return new Collections2.e(this.a);
    }
    
    public final int size()
    {
      return IntMath.factorial(this.a.size());
    }
    
    public final String toString()
    {
      String str = String.valueOf(String.valueOf(this.a));
      return str.length() + 14 + "permutations(" + str + ")";
    }
  }
  
  static final class e<E>
    extends AbstractIterator<List<E>>
  {
    final List<E> a;
    final int[] b;
    final int[] c;
    int d;
    
    e(List<E> paramList)
    {
      this.a = new ArrayList(paramList);
      int i = paramList.size();
      this.b = new int[i];
      this.c = new int[i];
      Arrays.fill(this.b, 0);
      Arrays.fill(this.c, 1);
      this.d = Integer.MAX_VALUE;
    }
    
    private void a()
    {
      this.c[this.d] = (-this.c[this.d]);
      this.d -= 1;
    }
  }
  
  static final class f<F, T>
    extends AbstractCollection<T>
  {
    final Collection<F> a;
    final Function<? super F, ? extends T> b;
    
    f(Collection<F> paramCollection, Function<? super F, ? extends T> paramFunction)
    {
      this.a = ((Collection)Preconditions.checkNotNull(paramCollection));
      this.b = ((Function)Preconditions.checkNotNull(paramFunction));
    }
    
    public final void clear()
    {
      this.a.clear();
    }
    
    public final boolean isEmpty()
    {
      return this.a.isEmpty();
    }
    
    public final Iterator<T> iterator()
    {
      return Iterators.transform(this.a.iterator(), this.b);
    }
    
    public final int size()
    {
      return this.a.size();
    }
  }
}


/* Location:              /home/merong/decompile/hackery-dex2jar.jar!/com/google/common/collect/Collections2.class
 * Java compiler version: 6 (50.0)
 * JD-Core Version:       0.7.1
 */