001/* 002 * Copyright (C) 2007 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.collect; 018 019import static com.google.common.base.Preconditions.checkArgument; 020import static com.google.common.base.Preconditions.checkNotNull; 021import static com.google.common.base.Preconditions.checkState; 022import static com.google.common.base.Predicates.equalTo; 023import static com.google.common.base.Predicates.in; 024import static com.google.common.base.Predicates.instanceOf; 025import static com.google.common.base.Predicates.not; 026import static com.google.common.collect.CollectPreconditions.checkRemove; 027 028import com.google.common.annotations.Beta; 029import com.google.common.annotations.GwtCompatible; 030import com.google.common.annotations.GwtIncompatible; 031import com.google.common.base.Function; 032import com.google.common.base.Objects; 033import com.google.common.base.Optional; 034import com.google.common.base.Preconditions; 035import com.google.common.base.Predicate; 036 037import java.util.Arrays; 038import java.util.Collection; 039import java.util.Collections; 040import java.util.Comparator; 041import java.util.Enumeration; 042import java.util.Iterator; 043import java.util.List; 044import java.util.ListIterator; 045import java.util.NoSuchElementException; 046import java.util.PriorityQueue; 047import java.util.Queue; 048 049import javax.annotation.CheckReturnValue; 050import javax.annotation.Nullable; 051 052/** 053 * This class contains static utility methods that operate on or return objects 054 * of type {@link Iterator}. Except as noted, each method has a corresponding 055 * {@link Iterable}-based method in the {@link Iterables} class. 056 * 057 * <p><i>Performance notes:</i> Unless otherwise noted, all of the iterators 058 * produced in this class are <i>lazy</i>, which means that they only advance 059 * the backing iteration when absolutely necessary. 060 * 061 * <p>See the Guava User Guide section on <a href= 062 * "https://github.com/google/guava/wiki/CollectionUtilitiesExplained#iterables"> 063 * {@code Iterators}</a>. 064 * 065 * @author Kevin Bourrillion 066 * @author Jared Levy 067 * @since 2.0 068 */ 069@GwtCompatible(emulated = true) 070public final class Iterators { 071 private Iterators() {} 072 073 static final UnmodifiableListIterator<Object> EMPTY_LIST_ITERATOR = 074 new UnmodifiableListIterator<Object>() { 075 @Override 076 public boolean hasNext() { 077 return false; 078 } 079 080 @Override 081 public Object next() { 082 throw new NoSuchElementException(); 083 } 084 085 @Override 086 public boolean hasPrevious() { 087 return false; 088 } 089 090 @Override 091 public Object previous() { 092 throw new NoSuchElementException(); 093 } 094 095 @Override 096 public int nextIndex() { 097 return 0; 098 } 099 100 @Override 101 public int previousIndex() { 102 return -1; 103 } 104 }; 105 106 /** 107 * Returns the empty iterator. 108 * 109 * <p>The {@link Iterable} equivalent of this method is {@link 110 * ImmutableSet#of()}. 111 * 112 * @deprecated Use {@code ImmutableSet.<T>of().iterator()} instead; or for 113 * Java 7 or later, {@link Collections#emptyIterator}. This method is 114 * scheduled for removal in May 2016. 115 */ 116 @Deprecated 117 public static <T> UnmodifiableIterator<T> emptyIterator() { 118 return emptyListIterator(); 119 } 120 121 /** 122 * Returns the empty iterator. 123 * 124 * <p>The {@link Iterable} equivalent of this method is {@link 125 * ImmutableSet#of()}. 126 */ 127 // Casting to any type is safe since there are no actual elements. 128 @SuppressWarnings("unchecked") 129 static <T> UnmodifiableListIterator<T> emptyListIterator() { 130 return (UnmodifiableListIterator<T>) EMPTY_LIST_ITERATOR; 131 } 132 133 private static final Iterator<Object> EMPTY_MODIFIABLE_ITERATOR = 134 new Iterator<Object>() { 135 @Override 136 public boolean hasNext() { 137 return false; 138 } 139 140 @Override 141 public Object next() { 142 throw new NoSuchElementException(); 143 } 144 145 @Override 146 public void remove() { 147 checkRemove(false); 148 } 149 }; 150 151 /** 152 * Returns the empty {@code Iterator} that throws 153 * {@link IllegalStateException} instead of 154 * {@link UnsupportedOperationException} on a call to 155 * {@link Iterator#remove()}. 156 */ 157 // Casting to any type is safe since there are no actual elements. 158 @SuppressWarnings("unchecked") 159 static <T> Iterator<T> emptyModifiableIterator() { 160 return (Iterator<T>) EMPTY_MODIFIABLE_ITERATOR; 161 } 162 163 /** Returns an unmodifiable view of {@code iterator}. */ 164 public static <T> UnmodifiableIterator<T> unmodifiableIterator(final Iterator<T> iterator) { 165 checkNotNull(iterator); 166 if (iterator instanceof UnmodifiableIterator) { 167 return (UnmodifiableIterator<T>) iterator; 168 } 169 return new UnmodifiableIterator<T>() { 170 @Override 171 public boolean hasNext() { 172 return iterator.hasNext(); 173 } 174 175 @Override 176 public T next() { 177 return iterator.next(); 178 } 179 }; 180 } 181 182 /** 183 * Simply returns its argument. 184 * 185 * @deprecated no need to use this 186 * @since 10.0 187 */ 188 @Deprecated 189 public static <T> UnmodifiableIterator<T> unmodifiableIterator(UnmodifiableIterator<T> iterator) { 190 return checkNotNull(iterator); 191 } 192 193 /** 194 * Returns the number of elements remaining in {@code iterator}. The iterator 195 * will be left exhausted: its {@code hasNext()} method will return 196 * {@code false}. 197 */ 198 public static int size(Iterator<?> iterator) { 199 int count = 0; 200 while (iterator.hasNext()) { 201 iterator.next(); 202 count++; 203 } 204 return count; 205 } 206 207 /** 208 * Returns {@code true} if {@code iterator} contains {@code element}. 209 */ 210 public static boolean contains(Iterator<?> iterator, @Nullable Object element) { 211 return any(iterator, equalTo(element)); 212 } 213 214 /** 215 * Traverses an iterator and removes every element that belongs to the 216 * provided collection. The iterator will be left exhausted: its 217 * {@code hasNext()} method will return {@code false}. 218 * 219 * @param removeFrom the iterator to (potentially) remove elements from 220 * @param elementsToRemove the elements to remove 221 * @return {@code true} if any element was removed from {@code iterator} 222 */ 223 public static boolean removeAll(Iterator<?> removeFrom, Collection<?> elementsToRemove) { 224 return removeIf(removeFrom, in(elementsToRemove)); 225 } 226 227 /** 228 * Removes every element that satisfies the provided predicate from the 229 * iterator. The iterator will be left exhausted: its {@code hasNext()} 230 * method will return {@code false}. 231 * 232 * @param removeFrom the iterator to (potentially) remove elements from 233 * @param predicate a predicate that determines whether an element should 234 * be removed 235 * @return {@code true} if any elements were removed from the iterator 236 * @since 2.0 237 */ 238 public static <T> boolean removeIf(Iterator<T> removeFrom, Predicate<? super T> predicate) { 239 checkNotNull(predicate); 240 boolean modified = false; 241 while (removeFrom.hasNext()) { 242 if (predicate.apply(removeFrom.next())) { 243 removeFrom.remove(); 244 modified = true; 245 } 246 } 247 return modified; 248 } 249 250 /** 251 * Traverses an iterator and removes every element that does not belong to the 252 * provided collection. The iterator will be left exhausted: its 253 * {@code hasNext()} method will return {@code false}. 254 * 255 * @param removeFrom the iterator to (potentially) remove elements from 256 * @param elementsToRetain the elements to retain 257 * @return {@code true} if any element was removed from {@code iterator} 258 */ 259 public static boolean retainAll(Iterator<?> removeFrom, Collection<?> elementsToRetain) { 260 return removeIf(removeFrom, not(in(elementsToRetain))); 261 } 262 263 /** 264 * Determines whether two iterators contain equal elements in the same order. 265 * More specifically, this method returns {@code true} if {@code iterator1} 266 * and {@code iterator2} contain the same number of elements and every element 267 * of {@code iterator1} is equal to the corresponding element of 268 * {@code iterator2}. 269 * 270 * <p>Note that this will modify the supplied iterators, since they will have 271 * been advanced some number of elements forward. 272 */ 273 public static boolean elementsEqual(Iterator<?> iterator1, Iterator<?> iterator2) { 274 while (iterator1.hasNext()) { 275 if (!iterator2.hasNext()) { 276 return false; 277 } 278 Object o1 = iterator1.next(); 279 Object o2 = iterator2.next(); 280 if (!Objects.equal(o1, o2)) { 281 return false; 282 } 283 } 284 return !iterator2.hasNext(); 285 } 286 287 /** 288 * Returns a string representation of {@code iterator}, with the format 289 * {@code [e1, e2, ..., en]}. The iterator will be left exhausted: its 290 * {@code hasNext()} method will return {@code false}. 291 */ 292 public static String toString(Iterator<?> iterator) { 293 return Collections2.STANDARD_JOINER 294 .appendTo(new StringBuilder().append('['), iterator) 295 .append(']') 296 .toString(); 297 } 298 299 /** 300 * Returns the single element contained in {@code iterator}. 301 * 302 * @throws NoSuchElementException if the iterator is empty 303 * @throws IllegalArgumentException if the iterator contains multiple 304 * elements. The state of the iterator is unspecified. 305 */ 306 public static <T> T getOnlyElement(Iterator<T> iterator) { 307 T first = iterator.next(); 308 if (!iterator.hasNext()) { 309 return first; 310 } 311 312 StringBuilder sb = new StringBuilder(); 313 sb.append("expected one element but was: <" + first); 314 for (int i = 0; i < 4 && iterator.hasNext(); i++) { 315 sb.append(", " + iterator.next()); 316 } 317 if (iterator.hasNext()) { 318 sb.append(", ..."); 319 } 320 sb.append('>'); 321 322 throw new IllegalArgumentException(sb.toString()); 323 } 324 325 /** 326 * Returns the single element contained in {@code iterator}, or {@code 327 * defaultValue} if the iterator is empty. 328 * 329 * @throws IllegalArgumentException if the iterator contains multiple 330 * elements. The state of the iterator is unspecified. 331 */ 332 @Nullable 333 public static <T> T getOnlyElement(Iterator<? extends T> iterator, @Nullable T defaultValue) { 334 return iterator.hasNext() ? getOnlyElement(iterator) : defaultValue; 335 } 336 337 /** 338 * Copies an iterator's elements into an array. The iterator will be left 339 * exhausted: its {@code hasNext()} method will return {@code false}. 340 * 341 * @param iterator the iterator to copy 342 * @param type the type of the elements 343 * @return a newly-allocated array into which all the elements of the iterator 344 * have been copied 345 */ 346 @GwtIncompatible("Array.newInstance(Class, int)") 347 public static <T> T[] toArray(Iterator<? extends T> iterator, Class<T> type) { 348 List<T> list = Lists.newArrayList(iterator); 349 return Iterables.toArray(list, type); 350 } 351 352 /** 353 * Adds all elements in {@code iterator} to {@code collection}. The iterator 354 * will be left exhausted: its {@code hasNext()} method will return 355 * {@code false}. 356 * 357 * @return {@code true} if {@code collection} was modified as a result of this 358 * operation 359 */ 360 public static <T> boolean addAll(Collection<T> addTo, Iterator<? extends T> iterator) { 361 checkNotNull(addTo); 362 checkNotNull(iterator); 363 boolean wasModified = false; 364 while (iterator.hasNext()) { 365 wasModified |= addTo.add(iterator.next()); 366 } 367 return wasModified; 368 } 369 370 /** 371 * Returns the number of elements in the specified iterator that equal the 372 * specified object. The iterator will be left exhausted: its 373 * {@code hasNext()} method will return {@code false}. 374 * 375 * @see Collections#frequency 376 */ 377 public static int frequency(Iterator<?> iterator, @Nullable Object element) { 378 return size(filter(iterator, equalTo(element))); 379 } 380 381 /** 382 * Returns an iterator that cycles indefinitely over the elements of {@code 383 * iterable}. 384 * 385 * <p>The returned iterator supports {@code remove()} if the provided iterator 386 * does. After {@code remove()} is called, subsequent cycles omit the removed 387 * element, which is no longer in {@code iterable}. The iterator's 388 * {@code hasNext()} method returns {@code true} until {@code iterable} is 389 * empty. 390 * 391 * <p><b>Warning:</b> Typical uses of the resulting iterator may produce an 392 * infinite loop. You should use an explicit {@code break} or be certain that 393 * you will eventually remove all the elements. 394 */ 395 public static <T> Iterator<T> cycle(final Iterable<T> iterable) { 396 checkNotNull(iterable); 397 return new Iterator<T>() { 398 Iterator<T> iterator = emptyIterator(); 399 Iterator<T> removeFrom; 400 401 @Override 402 public boolean hasNext() { 403 if (!iterator.hasNext()) { 404 iterator = iterable.iterator(); 405 } 406 return iterator.hasNext(); 407 } 408 409 @Override 410 public T next() { 411 if (!hasNext()) { 412 throw new NoSuchElementException(); 413 } 414 removeFrom = iterator; 415 return iterator.next(); 416 } 417 418 @Override 419 public void remove() { 420 checkRemove(removeFrom != null); 421 removeFrom.remove(); 422 removeFrom = null; 423 } 424 }; 425 } 426 427 /** 428 * Returns an iterator that cycles indefinitely over the provided elements. 429 * 430 * <p>The returned iterator supports {@code remove()}. After {@code remove()} 431 * is called, subsequent cycles omit the removed 432 * element, but {@code elements} does not change. The iterator's 433 * {@code hasNext()} method returns {@code true} until all of the original 434 * elements have been removed. 435 * 436 * <p><b>Warning:</b> Typical uses of the resulting iterator may produce an 437 * infinite loop. You should use an explicit {@code break} or be certain that 438 * you will eventually remove all the elements. 439 */ 440 public static <T> Iterator<T> cycle(T... elements) { 441 return cycle(Lists.newArrayList(elements)); 442 } 443 444 /** 445 * Combines two iterators into a single iterator. The returned iterator 446 * iterates across the elements in {@code a}, followed by the elements in 447 * {@code b}. The source iterators are not polled until necessary. 448 * 449 * <p>The returned iterator supports {@code remove()} when the corresponding 450 * input iterator supports it. 451 * 452 * <p><b>Note:</b> the current implementation is not suitable for nested 453 * concatenated iterators, i.e. the following should be avoided when in a loop: 454 * {@code iterator = Iterators.concat(iterator, suffix);}, since iteration over the 455 * resulting iterator has a cubic complexity to the depth of the nesting. 456 */ 457 public static <T> Iterator<T> concat(Iterator<? extends T> a, Iterator<? extends T> b) { 458 checkNotNull(a); 459 checkNotNull(b); 460 return concat(new ConsumingQueueIterator<Iterator<? extends T>>(a, b)); 461 } 462 463 /** 464 * Combines three iterators into a single iterator. The returned iterator 465 * iterates across the elements in {@code a}, followed by the elements in 466 * {@code b}, followed by the elements in {@code c}. The source iterators 467 * are not polled until necessary. 468 * 469 * <p>The returned iterator supports {@code remove()} when the corresponding 470 * input iterator supports it. 471 * 472 * <p><b>Note:</b> the current implementation is not suitable for nested 473 * concatenated iterators, i.e. the following should be avoided when in a loop: 474 * {@code iterator = Iterators.concat(iterator, suffix);}, since iteration over the 475 * resulting iterator has a cubic complexity to the depth of the nesting. 476 */ 477 public static <T> Iterator<T> concat( 478 Iterator<? extends T> a, Iterator<? extends T> b, Iterator<? extends T> c) { 479 checkNotNull(a); 480 checkNotNull(b); 481 checkNotNull(c); 482 return concat(new ConsumingQueueIterator<Iterator<? extends T>>(a, b, c)); 483 } 484 485 /** 486 * Combines four iterators into a single iterator. The returned iterator 487 * iterates across the elements in {@code a}, followed by the elements in 488 * {@code b}, followed by the elements in {@code c}, followed by the elements 489 * in {@code d}. The source iterators are not polled until necessary. 490 * 491 * <p>The returned iterator supports {@code remove()} when the corresponding 492 * input iterator supports it. 493 * 494 * <p><b>Note:</b> the current implementation is not suitable for nested 495 * concatenated iterators, i.e. the following should be avoided when in a loop: 496 * {@code iterator = Iterators.concat(iterator, suffix);}, since iteration over the 497 * resulting iterator has a cubic complexity to the depth of the nesting. 498 */ 499 public static <T> Iterator<T> concat( 500 Iterator<? extends T> a, 501 Iterator<? extends T> b, 502 Iterator<? extends T> c, 503 Iterator<? extends T> d) { 504 checkNotNull(a); 505 checkNotNull(b); 506 checkNotNull(c); 507 checkNotNull(d); 508 return concat(new ConsumingQueueIterator<Iterator<? extends T>>(a, b, c, d)); 509 } 510 511 /** 512 * Combines multiple iterators into a single iterator. The returned iterator 513 * iterates across the elements of each iterator in {@code inputs}. The input 514 * iterators are not polled until necessary. 515 * 516 * <p>The returned iterator supports {@code remove()} when the corresponding 517 * input iterator supports it. 518 * 519 * <p><b>Note:</b> the current implementation is not suitable for nested 520 * concatenated iterators, i.e. the following should be avoided when in a loop: 521 * {@code iterator = Iterators.concat(iterator, suffix);}, since iteration over the 522 * resulting iterator has a cubic complexity to the depth of the nesting. 523 * 524 * @throws NullPointerException if any of the provided iterators is null 525 */ 526 public static <T> Iterator<T> concat(Iterator<? extends T>... inputs) { 527 for (Iterator<? extends T> input : checkNotNull(inputs)) { 528 checkNotNull(input); 529 } 530 return concat(new ConsumingQueueIterator<Iterator<? extends T>>(inputs)); 531 } 532 533 /** 534 * Combines multiple iterators into a single iterator. The returned iterator 535 * iterates across the elements of each iterator in {@code inputs}. The input 536 * iterators are not polled until necessary. 537 * 538 * <p>The returned iterator supports {@code remove()} when the corresponding 539 * input iterator supports it. The methods of the returned iterator may throw 540 * {@code NullPointerException} if any of the input iterators is null. 541 * 542 * <p><b>Note:</b> the current implementation is not suitable for nested 543 * concatenated iterators, i.e. the following should be avoided when in a loop: 544 * {@code iterator = Iterators.concat(iterator, suffix);}, since iteration over the 545 * resulting iterator has a cubic complexity to the depth of the nesting. 546 */ 547 public static <T> Iterator<T> concat(final Iterator<? extends Iterator<? extends T>> inputs) { 548 checkNotNull(inputs); 549 return new Iterator<T>() { 550 Iterator<? extends T> current = emptyIterator(); 551 Iterator<? extends T> removeFrom; 552 553 @Override 554 public boolean hasNext() { 555 // http://code.google.com/p/google-collections/issues/detail?id=151 556 // current.hasNext() might be relatively expensive, worth minimizing. 557 boolean currentHasNext; 558 // checkNotNull eager for GWT 559 // note: it must be here & not where 'current' is assigned, 560 // because otherwise we'll have called inputs.next() before throwing 561 // the first NPE, and the next time around we'll call inputs.next() 562 // again, incorrectly moving beyond the error. 563 while (!(currentHasNext = checkNotNull(current).hasNext()) && inputs.hasNext()) { 564 current = inputs.next(); 565 } 566 return currentHasNext; 567 } 568 569 @Override 570 public T next() { 571 if (!hasNext()) { 572 throw new NoSuchElementException(); 573 } 574 removeFrom = current; 575 return current.next(); 576 } 577 578 @Override 579 public void remove() { 580 checkRemove(removeFrom != null); 581 removeFrom.remove(); 582 removeFrom = null; 583 } 584 }; 585 } 586 587 /** 588 * Divides an iterator into unmodifiable sublists of the given size (the final 589 * list may be smaller). For example, partitioning an iterator containing 590 * {@code [a, b, c, d, e]} with a partition size of 3 yields {@code 591 * [[a, b, c], [d, e]]} -- an outer iterator containing two inner lists of 592 * three and two elements, all in the original order. 593 * 594 * <p>The returned lists implement {@link java.util.RandomAccess}. 595 * 596 * @param iterator the iterator to return a partitioned view of 597 * @param size the desired size of each partition (the last may be smaller) 598 * @return an iterator of immutable lists containing the elements of {@code 599 * iterator} divided into partitions 600 * @throws IllegalArgumentException if {@code size} is nonpositive 601 */ 602 public static <T> UnmodifiableIterator<List<T>> partition(Iterator<T> iterator, int size) { 603 return partitionImpl(iterator, size, false); 604 } 605 606 /** 607 * Divides an iterator into unmodifiable sublists of the given size, padding 608 * the final iterator with null values if necessary. For example, partitioning 609 * an iterator containing {@code [a, b, c, d, e]} with a partition size of 3 610 * yields {@code [[a, b, c], [d, e, null]]} -- an outer iterator containing 611 * two inner lists of three elements each, all in the original order. 612 * 613 * <p>The returned lists implement {@link java.util.RandomAccess}. 614 * 615 * @param iterator the iterator to return a partitioned view of 616 * @param size the desired size of each partition 617 * @return an iterator of immutable lists containing the elements of {@code 618 * iterator} divided into partitions (the final iterable may have 619 * trailing null elements) 620 * @throws IllegalArgumentException if {@code size} is nonpositive 621 */ 622 public static <T> UnmodifiableIterator<List<T>> paddedPartition(Iterator<T> iterator, int size) { 623 return partitionImpl(iterator, size, true); 624 } 625 626 private static <T> UnmodifiableIterator<List<T>> partitionImpl( 627 final Iterator<T> iterator, final int size, final boolean pad) { 628 checkNotNull(iterator); 629 checkArgument(size > 0); 630 return new UnmodifiableIterator<List<T>>() { 631 @Override 632 public boolean hasNext() { 633 return iterator.hasNext(); 634 } 635 636 @Override 637 public List<T> next() { 638 if (!hasNext()) { 639 throw new NoSuchElementException(); 640 } 641 Object[] array = new Object[size]; 642 int count = 0; 643 for (; count < size && iterator.hasNext(); count++) { 644 array[count] = iterator.next(); 645 } 646 for (int i = count; i < size; i++) { 647 array[i] = null; // for GWT 648 } 649 650 @SuppressWarnings("unchecked") // we only put Ts in it 651 List<T> list = Collections.unmodifiableList((List<T>) Arrays.asList(array)); 652 return (pad || count == size) ? list : list.subList(0, count); 653 } 654 }; 655 } 656 657 /** 658 * Returns the elements of {@code unfiltered} that satisfy a predicate. 659 */ 660 @CheckReturnValue 661 public static <T> UnmodifiableIterator<T> filter( 662 final Iterator<T> unfiltered, final Predicate<? super T> predicate) { 663 checkNotNull(unfiltered); 664 checkNotNull(predicate); 665 return new AbstractIterator<T>() { 666 @Override 667 protected T computeNext() { 668 while (unfiltered.hasNext()) { 669 T element = unfiltered.next(); 670 if (predicate.apply(element)) { 671 return element; 672 } 673 } 674 return endOfData(); 675 } 676 }; 677 } 678 679 /** 680 * Returns all instances of class {@code type} in {@code unfiltered}. The 681 * returned iterator has elements whose class is {@code type} or a subclass of 682 * {@code type}. 683 * 684 * @param unfiltered an iterator containing objects of any type 685 * @param type the type of elements desired 686 * @return an unmodifiable iterator containing all elements of the original 687 * iterator that were of the requested type 688 */ 689 @SuppressWarnings("unchecked") // can cast to <T> because non-Ts are removed 690 @GwtIncompatible("Class.isInstance") 691 @CheckReturnValue 692 public static <T> UnmodifiableIterator<T> filter(Iterator<?> unfiltered, Class<T> type) { 693 return (UnmodifiableIterator<T>) filter(unfiltered, instanceOf(type)); 694 } 695 696 /** 697 * Returns {@code true} if one or more elements returned by {@code iterator} 698 * satisfy the given predicate. 699 */ 700 public static <T> boolean any(Iterator<T> iterator, Predicate<? super T> predicate) { 701 return indexOf(iterator, predicate) != -1; 702 } 703 704 /** 705 * Returns {@code true} if every element returned by {@code iterator} 706 * satisfies the given predicate. If {@code iterator} is empty, {@code true} 707 * is returned. 708 */ 709 public static <T> boolean all(Iterator<T> iterator, Predicate<? super T> predicate) { 710 checkNotNull(predicate); 711 while (iterator.hasNext()) { 712 T element = iterator.next(); 713 if (!predicate.apply(element)) { 714 return false; 715 } 716 } 717 return true; 718 } 719 720 /** 721 * Returns the first element in {@code iterator} that satisfies the given 722 * predicate; use this method only when such an element is known to exist. If 723 * no such element is found, the iterator will be left exhausted: its {@code 724 * hasNext()} method will return {@code false}. If it is possible that 725 * <i>no</i> element will match, use {@link #tryFind} or {@link 726 * #find(Iterator, Predicate, Object)} instead. 727 * 728 * @throws NoSuchElementException if no element in {@code iterator} matches 729 * the given predicate 730 */ 731 public static <T> T find(Iterator<T> iterator, Predicate<? super T> predicate) { 732 return filter(iterator, predicate).next(); 733 } 734 735 /** 736 * Returns the first element in {@code iterator} that satisfies the given 737 * predicate. If no such element is found, {@code defaultValue} will be 738 * returned from this method and the iterator will be left exhausted: its 739 * {@code hasNext()} method will return {@code false}. Note that this can 740 * usually be handled more naturally using {@code 741 * tryFind(iterator, predicate).or(defaultValue)}. 742 * 743 * @since 7.0 744 */ 745 @Nullable 746 public static <T> T find( 747 Iterator<? extends T> iterator, Predicate<? super T> predicate, @Nullable T defaultValue) { 748 return getNext(filter(iterator, predicate), defaultValue); 749 } 750 751 /** 752 * Returns an {@link Optional} containing the first element in {@code 753 * iterator} that satisfies the given predicate, if such an element exists. If 754 * no such element is found, an empty {@link Optional} will be returned from 755 * this method and the iterator will be left exhausted: its {@code 756 * hasNext()} method will return {@code false}. 757 * 758 * <p><b>Warning:</b> avoid using a {@code predicate} that matches {@code 759 * null}. If {@code null} is matched in {@code iterator}, a 760 * NullPointerException will be thrown. 761 * 762 * @since 11.0 763 */ 764 public static <T> Optional<T> tryFind(Iterator<T> iterator, Predicate<? super T> predicate) { 765 UnmodifiableIterator<T> filteredIterator = filter(iterator, predicate); 766 return filteredIterator.hasNext() 767 ? Optional.of(filteredIterator.next()) 768 : Optional.<T>absent(); 769 } 770 771 /** 772 * Returns the index in {@code iterator} of the first element that satisfies 773 * the provided {@code predicate}, or {@code -1} if the Iterator has no such 774 * elements. 775 * 776 * <p>More formally, returns the lowest index {@code i} such that 777 * {@code predicate.apply(Iterators.get(iterator, i))} returns {@code true}, 778 * or {@code -1} if there is no such index. 779 * 780 * <p>If -1 is returned, the iterator will be left exhausted: its 781 * {@code hasNext()} method will return {@code false}. Otherwise, 782 * the iterator will be set to the element which satisfies the 783 * {@code predicate}. 784 * 785 * @since 2.0 786 */ 787 public static <T> int indexOf(Iterator<T> iterator, Predicate<? super T> predicate) { 788 checkNotNull(predicate, "predicate"); 789 for (int i = 0; iterator.hasNext(); i++) { 790 T current = iterator.next(); 791 if (predicate.apply(current)) { 792 return i; 793 } 794 } 795 return -1; 796 } 797 798 /** 799 * Returns an iterator that applies {@code function} to each element of {@code 800 * fromIterator}. 801 * 802 * <p>The returned iterator supports {@code remove()} if the provided iterator 803 * does. After a successful {@code remove()} call, {@code fromIterator} no 804 * longer contains the corresponding element. 805 */ 806 public static <F, T> Iterator<T> transform( 807 final Iterator<F> fromIterator, final Function<? super F, ? extends T> function) { 808 checkNotNull(function); 809 return new TransformedIterator<F, T>(fromIterator) { 810 @Override 811 T transform(F from) { 812 return function.apply(from); 813 } 814 }; 815 } 816 817 /** 818 * Advances {@code iterator} {@code position + 1} times, returning the 819 * element at the {@code position}th position. 820 * 821 * @param position position of the element to return 822 * @return the element at the specified position in {@code iterator} 823 * @throws IndexOutOfBoundsException if {@code position} is negative or 824 * greater than or equal to the number of elements remaining in 825 * {@code iterator} 826 */ 827 public static <T> T get(Iterator<T> iterator, int position) { 828 checkNonnegative(position); 829 int skipped = advance(iterator, position); 830 if (!iterator.hasNext()) { 831 throw new IndexOutOfBoundsException( 832 "position (" 833 + position 834 + ") must be less than the number of elements that remained (" 835 + skipped 836 + ")"); 837 } 838 return iterator.next(); 839 } 840 841 static void checkNonnegative(int position) { 842 if (position < 0) { 843 throw new IndexOutOfBoundsException("position (" + position + ") must not be negative"); 844 } 845 } 846 847 /** 848 * Advances {@code iterator} {@code position + 1} times, returning the 849 * element at the {@code position}th position or {@code defaultValue} 850 * otherwise. 851 * 852 * @param position position of the element to return 853 * @param defaultValue the default value to return if the iterator is empty 854 * or if {@code position} is greater than the number of elements 855 * remaining in {@code iterator} 856 * @return the element at the specified position in {@code iterator} or 857 * {@code defaultValue} if {@code iterator} produces fewer than 858 * {@code position + 1} elements. 859 * @throws IndexOutOfBoundsException if {@code position} is negative 860 * @since 4.0 861 */ 862 @Nullable 863 public static <T> T get(Iterator<? extends T> iterator, int position, @Nullable T defaultValue) { 864 checkNonnegative(position); 865 advance(iterator, position); 866 return getNext(iterator, defaultValue); 867 } 868 869 /** 870 * Returns the next element in {@code iterator} or {@code defaultValue} if 871 * the iterator is empty. The {@link Iterables} analog to this method is 872 * {@link Iterables#getFirst}. 873 * 874 * @param defaultValue the default value to return if the iterator is empty 875 * @return the next element of {@code iterator} or the default value 876 * @since 7.0 877 */ 878 @Nullable 879 public static <T> T getNext(Iterator<? extends T> iterator, @Nullable T defaultValue) { 880 return iterator.hasNext() ? iterator.next() : defaultValue; 881 } 882 883 /** 884 * Advances {@code iterator} to the end, returning the last element. 885 * 886 * @return the last element of {@code iterator} 887 * @throws NoSuchElementException if the iterator is empty 888 */ 889 public static <T> T getLast(Iterator<T> iterator) { 890 while (true) { 891 T current = iterator.next(); 892 if (!iterator.hasNext()) { 893 return current; 894 } 895 } 896 } 897 898 /** 899 * Advances {@code iterator} to the end, returning the last element or 900 * {@code defaultValue} if the iterator is empty. 901 * 902 * @param defaultValue the default value to return if the iterator is empty 903 * @return the last element of {@code iterator} 904 * @since 3.0 905 */ 906 @Nullable 907 public static <T> T getLast(Iterator<? extends T> iterator, @Nullable T defaultValue) { 908 return iterator.hasNext() ? getLast(iterator) : defaultValue; 909 } 910 911 /** 912 * Calls {@code next()} on {@code iterator}, either {@code numberToAdvance} times 913 * or until {@code hasNext()} returns {@code false}, whichever comes first. 914 * 915 * @return the number of elements the iterator was advanced 916 * @since 13.0 (since 3.0 as {@code Iterators.skip}) 917 */ 918 public static int advance(Iterator<?> iterator, int numberToAdvance) { 919 checkNotNull(iterator); 920 checkArgument(numberToAdvance >= 0, "numberToAdvance must be nonnegative"); 921 922 int i; 923 for (i = 0; i < numberToAdvance && iterator.hasNext(); i++) { 924 iterator.next(); 925 } 926 return i; 927 } 928 929 /** 930 * Creates an iterator returning the first {@code limitSize} elements of the 931 * given iterator. If the original iterator does not contain that many 932 * elements, the returned iterator will have the same behavior as the original 933 * iterator. The returned iterator supports {@code remove()} if the original 934 * iterator does. 935 * 936 * @param iterator the iterator to limit 937 * @param limitSize the maximum number of elements in the returned iterator 938 * @throws IllegalArgumentException if {@code limitSize} is negative 939 * @since 3.0 940 */ 941 public static <T> Iterator<T> limit(final Iterator<T> iterator, final int limitSize) { 942 checkNotNull(iterator); 943 checkArgument(limitSize >= 0, "limit is negative"); 944 return new Iterator<T>() { 945 private int count; 946 947 @Override 948 public boolean hasNext() { 949 return count < limitSize && iterator.hasNext(); 950 } 951 952 @Override 953 public T next() { 954 if (!hasNext()) { 955 throw new NoSuchElementException(); 956 } 957 count++; 958 return iterator.next(); 959 } 960 961 @Override 962 public void remove() { 963 iterator.remove(); 964 } 965 }; 966 } 967 968 /** 969 * Returns a view of the supplied {@code iterator} that removes each element 970 * from the supplied {@code iterator} as it is returned. 971 * 972 * <p>The provided iterator must support {@link Iterator#remove()} or 973 * else the returned iterator will fail on the first call to {@code 974 * next}. 975 * 976 * @param iterator the iterator to remove and return elements from 977 * @return an iterator that removes and returns elements from the 978 * supplied iterator 979 * @since 2.0 980 */ 981 public static <T> Iterator<T> consumingIterator(final Iterator<T> iterator) { 982 checkNotNull(iterator); 983 return new UnmodifiableIterator<T>() { 984 @Override 985 public boolean hasNext() { 986 return iterator.hasNext(); 987 } 988 989 @Override 990 public T next() { 991 T next = iterator.next(); 992 iterator.remove(); 993 return next; 994 } 995 996 @Override 997 public String toString() { 998 return "Iterators.consumingIterator(...)"; 999 } 1000 }; 1001 } 1002 1003 /** 1004 * Deletes and returns the next value from the iterator, or returns 1005 * {@code null} if there is no such value. 1006 */ 1007 @Nullable 1008 static <T> T pollNext(Iterator<T> iterator) { 1009 if (iterator.hasNext()) { 1010 T result = iterator.next(); 1011 iterator.remove(); 1012 return result; 1013 } else { 1014 return null; 1015 } 1016 } 1017 1018 // Methods only in Iterators, not in Iterables 1019 1020 /** 1021 * Clears the iterator using its remove method. 1022 */ 1023 static void clear(Iterator<?> iterator) { 1024 checkNotNull(iterator); 1025 while (iterator.hasNext()) { 1026 iterator.next(); 1027 iterator.remove(); 1028 } 1029 } 1030 1031 /** 1032 * Returns an iterator containing the elements of {@code array} in order. The 1033 * returned iterator is a view of the array; subsequent changes to the array 1034 * will be reflected in the iterator. 1035 * 1036 * <p><b>Note:</b> It is often preferable to represent your data using a 1037 * collection type, for example using {@link Arrays#asList(Object[])}, making 1038 * this method unnecessary. 1039 * 1040 * <p>The {@code Iterable} equivalent of this method is either {@link 1041 * Arrays#asList(Object[])}, {@link ImmutableList#copyOf(Object[])}}, 1042 * or {@link ImmutableList#of}. 1043 */ 1044 public static <T> UnmodifiableIterator<T> forArray(final T... array) { 1045 return forArray(array, 0, array.length, 0); 1046 } 1047 1048 /** 1049 * Returns a list iterator containing the elements in the specified range of 1050 * {@code array} in order, starting at the specified index. 1051 * 1052 * <p>The {@code Iterable} equivalent of this method is {@code 1053 * Arrays.asList(array).subList(offset, offset + length).listIterator(index)}. 1054 */ 1055 static <T> UnmodifiableListIterator<T> forArray( 1056 final T[] array, final int offset, int length, int index) { 1057 checkArgument(length >= 0); 1058 int end = offset + length; 1059 1060 // Technically we should give a slightly more descriptive error on overflow 1061 Preconditions.checkPositionIndexes(offset, end, array.length); 1062 Preconditions.checkPositionIndex(index, length); 1063 if (length == 0) { 1064 return emptyListIterator(); 1065 } 1066 1067 /* 1068 * We can't use call the two-arg constructor with arguments (offset, end) 1069 * because the returned Iterator is a ListIterator that may be moved back 1070 * past the beginning of the iteration. 1071 */ 1072 return new AbstractIndexedListIterator<T>(length, index) { 1073 @Override 1074 protected T get(int index) { 1075 return array[offset + index]; 1076 } 1077 }; 1078 } 1079 1080 /** 1081 * Returns an iterator containing only {@code value}. 1082 * 1083 * <p>The {@link Iterable} equivalent of this method is {@link 1084 * Collections#singleton}. 1085 */ 1086 public static <T> UnmodifiableIterator<T> singletonIterator(@Nullable final T value) { 1087 return new UnmodifiableIterator<T>() { 1088 boolean done; 1089 1090 @Override 1091 public boolean hasNext() { 1092 return !done; 1093 } 1094 1095 @Override 1096 public T next() { 1097 if (done) { 1098 throw new NoSuchElementException(); 1099 } 1100 done = true; 1101 return value; 1102 } 1103 }; 1104 } 1105 1106 /** 1107 * Adapts an {@code Enumeration} to the {@code Iterator} interface. 1108 * 1109 * <p>This method has no equivalent in {@link Iterables} because viewing an 1110 * {@code Enumeration} as an {@code Iterable} is impossible. However, the 1111 * contents can be <i>copied</i> into a collection using {@link 1112 * Collections#list}. 1113 */ 1114 public static <T> UnmodifiableIterator<T> forEnumeration(final Enumeration<T> enumeration) { 1115 checkNotNull(enumeration); 1116 return new UnmodifiableIterator<T>() { 1117 @Override 1118 public boolean hasNext() { 1119 return enumeration.hasMoreElements(); 1120 } 1121 1122 @Override 1123 public T next() { 1124 return enumeration.nextElement(); 1125 } 1126 }; 1127 } 1128 1129 /** 1130 * Adapts an {@code Iterator} to the {@code Enumeration} interface. 1131 * 1132 * <p>The {@code Iterable} equivalent of this method is either {@link 1133 * Collections#enumeration} (if you have a {@link Collection}), or 1134 * {@code Iterators.asEnumeration(collection.iterator())}. 1135 */ 1136 public static <T> Enumeration<T> asEnumeration(final Iterator<T> iterator) { 1137 checkNotNull(iterator); 1138 return new Enumeration<T>() { 1139 @Override 1140 public boolean hasMoreElements() { 1141 return iterator.hasNext(); 1142 } 1143 1144 @Override 1145 public T nextElement() { 1146 return iterator.next(); 1147 } 1148 }; 1149 } 1150 1151 /** 1152 * Implementation of PeekingIterator that avoids peeking unless necessary. 1153 */ 1154 private static class PeekingImpl<E> implements PeekingIterator<E> { 1155 1156 private final Iterator<? extends E> iterator; 1157 private boolean hasPeeked; 1158 private E peekedElement; 1159 1160 public PeekingImpl(Iterator<? extends E> iterator) { 1161 this.iterator = checkNotNull(iterator); 1162 } 1163 1164 @Override 1165 public boolean hasNext() { 1166 return hasPeeked || iterator.hasNext(); 1167 } 1168 1169 @Override 1170 public E next() { 1171 if (!hasPeeked) { 1172 return iterator.next(); 1173 } 1174 E result = peekedElement; 1175 hasPeeked = false; 1176 peekedElement = null; 1177 return result; 1178 } 1179 1180 @Override 1181 public void remove() { 1182 checkState(!hasPeeked, "Can't remove after you've peeked at next"); 1183 iterator.remove(); 1184 } 1185 1186 @Override 1187 public E peek() { 1188 if (!hasPeeked) { 1189 peekedElement = iterator.next(); 1190 hasPeeked = true; 1191 } 1192 return peekedElement; 1193 } 1194 } 1195 1196 /** 1197 * Returns a {@code PeekingIterator} backed by the given iterator. 1198 * 1199 * <p>Calls to the {@code peek} method with no intervening calls to {@code 1200 * next} do not affect the iteration, and hence return the same object each 1201 * time. A subsequent call to {@code next} is guaranteed to return the same 1202 * object again. For example: <pre> {@code 1203 * 1204 * PeekingIterator<String> peekingIterator = 1205 * Iterators.peekingIterator(Iterators.forArray("a", "b")); 1206 * String a1 = peekingIterator.peek(); // returns "a" 1207 * String a2 = peekingIterator.peek(); // also returns "a" 1208 * String a3 = peekingIterator.next(); // also returns "a"}</pre> 1209 * 1210 * <p>Any structural changes to the underlying iteration (aside from those 1211 * performed by the iterator's own {@link PeekingIterator#remove()} method) 1212 * will leave the iterator in an undefined state. 1213 * 1214 * <p>The returned iterator does not support removal after peeking, as 1215 * explained by {@link PeekingIterator#remove()}. 1216 * 1217 * <p>Note: If the given iterator is already a {@code PeekingIterator}, 1218 * it <i>might</i> be returned to the caller, although this is neither 1219 * guaranteed to occur nor required to be consistent. For example, this 1220 * method <i>might</i> choose to pass through recognized implementations of 1221 * {@code PeekingIterator} when the behavior of the implementation is 1222 * known to meet the contract guaranteed by this method. 1223 * 1224 * <p>There is no {@link Iterable} equivalent to this method, so use this 1225 * method to wrap each individual iterator as it is generated. 1226 * 1227 * @param iterator the backing iterator. The {@link PeekingIterator} assumes 1228 * ownership of this iterator, so users should cease making direct calls 1229 * to it after calling this method. 1230 * @return a peeking iterator backed by that iterator. Apart from the 1231 * additional {@link PeekingIterator#peek()} method, this iterator behaves 1232 * exactly the same as {@code iterator}. 1233 */ 1234 public static <T> PeekingIterator<T> peekingIterator(Iterator<? extends T> iterator) { 1235 if (iterator instanceof PeekingImpl) { 1236 // Safe to cast <? extends T> to <T> because PeekingImpl only uses T 1237 // covariantly (and cannot be subclassed to add non-covariant uses). 1238 @SuppressWarnings("unchecked") 1239 PeekingImpl<T> peeking = (PeekingImpl<T>) iterator; 1240 return peeking; 1241 } 1242 return new PeekingImpl<T>(iterator); 1243 } 1244 1245 /** 1246 * Simply returns its argument. 1247 * 1248 * @deprecated no need to use this 1249 * @since 10.0 1250 */ 1251 @Deprecated 1252 public static <T> PeekingIterator<T> peekingIterator(PeekingIterator<T> iterator) { 1253 return checkNotNull(iterator); 1254 } 1255 1256 /** 1257 * Returns an iterator over the merged contents of all given 1258 * {@code iterators}, traversing every element of the input iterators. 1259 * Equivalent entries will not be de-duplicated. 1260 * 1261 * <p>Callers must ensure that the source {@code iterators} are in 1262 * non-descending order as this method does not sort its input. 1263 * 1264 * <p>For any equivalent elements across all {@code iterators}, it is 1265 * undefined which element is returned first. 1266 * 1267 * @since 11.0 1268 */ 1269 @Beta 1270 public static <T> UnmodifiableIterator<T> mergeSorted( 1271 Iterable<? extends Iterator<? extends T>> iterators, Comparator<? super T> comparator) { 1272 checkNotNull(iterators, "iterators"); 1273 checkNotNull(comparator, "comparator"); 1274 1275 return new MergingIterator<T>(iterators, comparator); 1276 } 1277 1278 /** 1279 * An iterator that performs a lazy N-way merge, calculating the next value 1280 * each time the iterator is polled. This amortizes the sorting cost over the 1281 * iteration and requires less memory than sorting all elements at once. 1282 * 1283 * <p>Retrieving a single element takes approximately O(log(M)) time, where M 1284 * is the number of iterators. (Retrieving all elements takes approximately 1285 * O(N*log(M)) time, where N is the total number of elements.) 1286 */ 1287 private static class MergingIterator<T> extends UnmodifiableIterator<T> { 1288 final Queue<PeekingIterator<T>> queue; 1289 1290 public MergingIterator( 1291 Iterable<? extends Iterator<? extends T>> iterators, 1292 final Comparator<? super T> itemComparator) { 1293 // A comparator that's used by the heap, allowing the heap 1294 // to be sorted based on the top of each iterator. 1295 Comparator<PeekingIterator<T>> heapComparator = 1296 new Comparator<PeekingIterator<T>>() { 1297 @Override 1298 public int compare(PeekingIterator<T> o1, PeekingIterator<T> o2) { 1299 return itemComparator.compare(o1.peek(), o2.peek()); 1300 } 1301 }; 1302 1303 queue = new PriorityQueue<PeekingIterator<T>>(2, heapComparator); 1304 1305 for (Iterator<? extends T> iterator : iterators) { 1306 if (iterator.hasNext()) { 1307 queue.add(Iterators.peekingIterator(iterator)); 1308 } 1309 } 1310 } 1311 1312 @Override 1313 public boolean hasNext() { 1314 return !queue.isEmpty(); 1315 } 1316 1317 @Override 1318 public T next() { 1319 PeekingIterator<T> nextIter = queue.remove(); 1320 T next = nextIter.next(); 1321 if (nextIter.hasNext()) { 1322 queue.add(nextIter); 1323 } 1324 return next; 1325 } 1326 } 1327 1328 /** 1329 * Used to avoid http://bugs.sun.com/view_bug.do?bug_id=6558557 1330 */ 1331 static <T> ListIterator<T> cast(Iterator<T> iterator) { 1332 return (ListIterator<T>) iterator; 1333 } 1334}