001/* 002 * Copyright (C) 2012 The Guava Authors 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except 005 * in compliance with the License. You may obtain a copy of the License at 006 * 007 * http://www.apache.org/licenses/LICENSE-2.0 008 * 009 * Unless required by applicable law or agreed to in writing, software distributed under the License 010 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express 011 * or implied. See the License for the specific language governing permissions and limitations under 012 * the License. 013 */ 014 015package com.google.common.io; 016 017import static com.google.common.base.Preconditions.checkArgument; 018import static com.google.common.base.Preconditions.checkNotNull; 019import static com.google.common.io.ByteStreams.createBuffer; 020import static com.google.common.io.ByteStreams.skipUpTo; 021 022import com.google.common.annotations.Beta; 023import com.google.common.annotations.GwtIncompatible; 024import com.google.common.base.Ascii; 025import com.google.common.base.Optional; 026import com.google.common.collect.ImmutableList; 027import com.google.common.hash.Funnels; 028import com.google.common.hash.HashCode; 029import com.google.common.hash.HashFunction; 030import com.google.common.hash.Hasher; 031import com.google.errorprone.annotations.CanIgnoreReturnValue; 032import java.io.BufferedInputStream; 033import java.io.ByteArrayInputStream; 034import java.io.IOException; 035import java.io.InputStream; 036import java.io.InputStreamReader; 037import java.io.OutputStream; 038import java.io.Reader; 039import java.nio.charset.Charset; 040import java.util.Arrays; 041import java.util.Iterator; 042 043/** 044 * A readable source of bytes, such as a file. Unlike an {@link InputStream}, a {@code ByteSource} 045 * is not an open, stateful stream for input that can be read and closed. Instead, it is an 046 * immutable <i>supplier</i> of {@code InputStream} instances. 047 * 048 * <p>{@code ByteSource} provides two kinds of methods: 049 * <ul> 050 * <li><b>Methods that return a stream:</b> These methods should return a <i>new</i>, independent 051 * instance each time they are called. The caller is responsible for ensuring that the returned 052 * stream is closed. 053 * <li><b>Convenience methods:</b> These are implementations of common operations that are typically 054 * implemented by opening a stream using one of the methods in the first category, doing 055 * something and finally closing the stream that was opened. 056 * </ul> 057 * 058 * @since 14.0 059 * @author Colin Decker 060 */ 061@GwtIncompatible 062public abstract class ByteSource { 063 064 /** 065 * Constructor for use by subclasses. 066 */ 067 protected ByteSource() {} 068 069 /** 070 * Returns a {@link CharSource} view of this byte source that decodes bytes read from this source 071 * as characters using the given {@link Charset}. 072 * 073 * <p>If {@link CharSource#asByteSource} is called on the returned source with the same charset, 074 * the default implementation of this method will ensure that the original {@code ByteSource} is 075 * returned, rather than round-trip encoding. Subclasses that override this method should behave 076 * the same way. 077 */ 078 public CharSource asCharSource(Charset charset) { 079 return new AsCharSource(charset); 080 } 081 082 /** 083 * Opens a new {@link InputStream} for reading from this source. This method returns a new, 084 * independent stream each time it is called. 085 * 086 * <p>The caller is responsible for ensuring that the returned stream is closed. 087 * 088 * @throws IOException if an I/O error occurs while opening the stream 089 */ 090 public abstract InputStream openStream() throws IOException; 091 092 /** 093 * Opens a new buffered {@link InputStream} for reading from this source. The returned stream is 094 * not required to be a {@link BufferedInputStream} in order to allow implementations to simply 095 * delegate to {@link #openStream()} when the stream returned by that method does not benefit from 096 * additional buffering (for example, a {@code ByteArrayInputStream}). This method returns a 097 * new, independent stream each time it is called. 098 * 099 * <p>The caller is responsible for ensuring that the returned stream is closed. 100 * 101 * @throws IOException if an I/O error occurs while opening the stream 102 * @since 15.0 (in 14.0 with return type {@link BufferedInputStream}) 103 */ 104 public InputStream openBufferedStream() throws IOException { 105 InputStream in = openStream(); 106 return (in instanceof BufferedInputStream) 107 ? (BufferedInputStream) in 108 : new BufferedInputStream(in); 109 } 110 111 /** 112 * Returns a view of a slice of this byte source that is at most {@code length} bytes long 113 * starting at the given {@code offset}. If {@code offset} is greater than the size of this 114 * source, the returned source will be empty. If {@code offset + length} is greater than the size 115 * of this source, the returned source will contain the slice starting at {@code offset} and 116 * ending at the end of this source. 117 * 118 * @throws IllegalArgumentException if {@code offset} or {@code length} is negative 119 */ 120 public ByteSource slice(long offset, long length) { 121 return new SlicedByteSource(offset, length); 122 } 123 124 /** 125 * Returns whether the source has zero bytes. The default implementation returns true if 126 * {@link #sizeIfKnown} returns zero, falling back to opening a stream and checking for EOF if the 127 * size is not known. 128 * 129 * <p>Note that, in cases where {@code sizeIfKnown} returns zero, it is <i>possible</i> that bytes 130 * are actually available for reading. (For example, some special files may return a size of 0 131 * despite actually having content when read.) This means that a source may return {@code true} 132 * from {@code isEmpty()} despite having readable content. 133 * 134 * @throws IOException if an I/O error occurs 135 * @since 15.0 136 */ 137 public boolean isEmpty() throws IOException { 138 Optional<Long> sizeIfKnown = sizeIfKnown(); 139 if (sizeIfKnown.isPresent() && sizeIfKnown.get() == 0L) { 140 return true; 141 } 142 Closer closer = Closer.create(); 143 try { 144 InputStream in = closer.register(openStream()); 145 return in.read() == -1; 146 } catch (Throwable e) { 147 throw closer.rethrow(e); 148 } finally { 149 closer.close(); 150 } 151 } 152 153 /** 154 * Returns the size of this source in bytes, if the size can be easily determined without actually 155 * opening the data stream. 156 * 157 * <p>The default implementation returns {@link Optional#absent}. Some sources, such as a file, 158 * may return a non-absent value. Note that in such cases, it is <i>possible</i> that this method 159 * will return a different number of bytes than would be returned by reading all of the bytes (for 160 * example, some special files may return a size of 0 despite actually having content when read). 161 * 162 * <p>Additionally, for mutable sources such as files, a subsequent read may return a different 163 * number of bytes if the contents are changed. 164 * 165 * @since 19.0 166 */ 167 @Beta 168 public Optional<Long> sizeIfKnown() { 169 return Optional.absent(); 170 } 171 172 /** 173 * Returns the size of this source in bytes, even if doing so requires opening and traversing an 174 * entire stream. To avoid a potentially expensive operation, see {@link #sizeIfKnown}. 175 * 176 * <p>The default implementation calls {@link #sizeIfKnown} and returns the value if present. If 177 * absent, it will fall back to a heavyweight operation that will open a stream, read (or 178 * {@link InputStream#skip(long) skip}, if possible) to the end of the stream and return the total 179 * number of bytes that were read. 180 * 181 * <p>Note that for some sources that implement {@link #sizeIfKnown} to provide a more efficient 182 * implementation, it is <i>possible</i> that this method will return a different number of bytes 183 * than would be returned by reading all of the bytes (for example, some special files may return 184 * a size of 0 despite actually having content when read). 185 * 186 * <p>In either case, for mutable sources such as files, a subsequent read may return a different 187 * number of bytes if the contents are changed. 188 * 189 * @throws IOException if an I/O error occurs while reading the size of this source 190 */ 191 public long size() throws IOException { 192 Optional<Long> sizeIfKnown = sizeIfKnown(); 193 if (sizeIfKnown.isPresent()) { 194 return sizeIfKnown.get(); 195 } 196 197 Closer closer = Closer.create(); 198 try { 199 InputStream in = closer.register(openStream()); 200 return countBySkipping(in); 201 } catch (IOException e) { 202 // skip may not be supported... at any rate, try reading 203 } finally { 204 closer.close(); 205 } 206 207 closer = Closer.create(); 208 try { 209 InputStream in = closer.register(openStream()); 210 return ByteStreams.exhaust(in); 211 } catch (Throwable e) { 212 throw closer.rethrow(e); 213 } finally { 214 closer.close(); 215 } 216 } 217 218 /** 219 * Counts the bytes in the given input stream using skip if possible. Returns SKIP_FAILED if the 220 * first call to skip threw, in which case skip may just not be supported. 221 */ 222 private long countBySkipping(InputStream in) throws IOException { 223 long count = 0; 224 long skipped; 225 while ((skipped = skipUpTo(in, Integer.MAX_VALUE)) > 0) { 226 count += skipped; 227 } 228 return count; 229 } 230 231 /** 232 * Copies the contents of this byte source to the given {@code OutputStream}. Does not close 233 * {@code output}. 234 * 235 * @return the number of bytes copied 236 * @throws IOException if an I/O error occurs while reading from this source or writing to 237 * {@code output} 238 */ 239 @CanIgnoreReturnValue 240 public long copyTo(OutputStream output) throws IOException { 241 checkNotNull(output); 242 243 Closer closer = Closer.create(); 244 try { 245 InputStream in = closer.register(openStream()); 246 return ByteStreams.copy(in, output); 247 } catch (Throwable e) { 248 throw closer.rethrow(e); 249 } finally { 250 closer.close(); 251 } 252 } 253 254 /** 255 * Copies the contents of this byte source to the given {@code ByteSink}. 256 * 257 * @return the number of bytes copied 258 * @throws IOException if an I/O error occurs while reading from this source or writing to 259 * {@code sink} 260 */ 261 @CanIgnoreReturnValue 262 public long copyTo(ByteSink sink) throws IOException { 263 checkNotNull(sink); 264 265 Closer closer = Closer.create(); 266 try { 267 InputStream in = closer.register(openStream()); 268 OutputStream out = closer.register(sink.openStream()); 269 return ByteStreams.copy(in, out); 270 } catch (Throwable e) { 271 throw closer.rethrow(e); 272 } finally { 273 closer.close(); 274 } 275 } 276 277 /** 278 * Reads the full contents of this byte source as a byte array. 279 * 280 * @throws IOException if an I/O error occurs while reading from this source 281 */ 282 public byte[] read() throws IOException { 283 Closer closer = Closer.create(); 284 try { 285 InputStream in = closer.register(openStream()); 286 return ByteStreams.toByteArray(in); 287 } catch (Throwable e) { 288 throw closer.rethrow(e); 289 } finally { 290 closer.close(); 291 } 292 } 293 294 /** 295 * Reads the contents of this byte source using the given {@code processor} to process bytes as 296 * they are read. Stops when all bytes have been read or the consumer returns {@code false}. 297 * Returns the result produced by the processor. 298 * 299 * @throws IOException if an I/O error occurs while reading from this source or if 300 * {@code processor} throws an {@code IOException} 301 * @since 16.0 302 */ 303 @Beta 304 @CanIgnoreReturnValue // some processors won't return a useful result 305 public <T> T read(ByteProcessor<T> processor) throws IOException { 306 checkNotNull(processor); 307 308 Closer closer = Closer.create(); 309 try { 310 InputStream in = closer.register(openStream()); 311 return ByteStreams.readBytes(in, processor); 312 } catch (Throwable e) { 313 throw closer.rethrow(e); 314 } finally { 315 closer.close(); 316 } 317 } 318 319 /** 320 * Hashes the contents of this byte source using the given hash function. 321 * 322 * @throws IOException if an I/O error occurs while reading from this source 323 */ 324 public HashCode hash(HashFunction hashFunction) throws IOException { 325 Hasher hasher = hashFunction.newHasher(); 326 copyTo(Funnels.asOutputStream(hasher)); 327 return hasher.hash(); 328 } 329 330 /** 331 * Checks that the contents of this byte source are equal to the contents of the given byte 332 * source. 333 * 334 * @throws IOException if an I/O error occurs while reading from this source or {@code other} 335 */ 336 public boolean contentEquals(ByteSource other) throws IOException { 337 checkNotNull(other); 338 339 byte[] buf1 = createBuffer(); 340 byte[] buf2 = createBuffer(); 341 342 Closer closer = Closer.create(); 343 try { 344 InputStream in1 = closer.register(openStream()); 345 InputStream in2 = closer.register(other.openStream()); 346 while (true) { 347 int read1 = ByteStreams.read(in1, buf1, 0, buf1.length); 348 int read2 = ByteStreams.read(in2, buf2, 0, buf2.length); 349 if (read1 != read2 || !Arrays.equals(buf1, buf2)) { 350 return false; 351 } else if (read1 != buf1.length) { 352 return true; 353 } 354 } 355 } catch (Throwable e) { 356 throw closer.rethrow(e); 357 } finally { 358 closer.close(); 359 } 360 } 361 362 /** 363 * Concatenates multiple {@link ByteSource} instances into a single source. Streams returned from 364 * the source will contain the concatenated data from the streams of the underlying sources. 365 * 366 * <p>Only one underlying stream will be open at a time. Closing the concatenated stream will 367 * close the open underlying stream. 368 * 369 * @param sources the sources to concatenate 370 * @return a {@code ByteSource} containing the concatenated data 371 * @since 15.0 372 */ 373 public static ByteSource concat(Iterable<? extends ByteSource> sources) { 374 return new ConcatenatedByteSource(sources); 375 } 376 377 /** 378 * Concatenates multiple {@link ByteSource} instances into a single source. Streams returned from 379 * the source will contain the concatenated data from the streams of the underlying sources. 380 * 381 * <p>Only one underlying stream will be open at a time. Closing the concatenated stream will 382 * close the open underlying stream. 383 * 384 * <p>Note: The input {@code Iterator} will be copied to an {@code ImmutableList} when this method 385 * is called. This will fail if the iterator is infinite and may cause problems if the iterator 386 * eagerly fetches data for each source when iterated (rather than producing sources that only 387 * load data through their streams). Prefer using the {@link #concat(Iterable)} overload if 388 * possible. 389 * 390 * @param sources the sources to concatenate 391 * @return a {@code ByteSource} containing the concatenated data 392 * @throws NullPointerException if any of {@code sources} is {@code null} 393 * @since 15.0 394 */ 395 public static ByteSource concat(Iterator<? extends ByteSource> sources) { 396 return concat(ImmutableList.copyOf(sources)); 397 } 398 399 /** 400 * Concatenates multiple {@link ByteSource} instances into a single source. Streams returned from 401 * the source will contain the concatenated data from the streams of the underlying sources. 402 * 403 * <p>Only one underlying stream will be open at a time. Closing the concatenated stream will 404 * close the open underlying stream. 405 * 406 * @param sources the sources to concatenate 407 * @return a {@code ByteSource} containing the concatenated data 408 * @throws NullPointerException if any of {@code sources} is {@code null} 409 * @since 15.0 410 */ 411 public static ByteSource concat(ByteSource... sources) { 412 return concat(ImmutableList.copyOf(sources)); 413 } 414 415 /** 416 * Returns a view of the given byte array as a {@link ByteSource}. To view only a specific range 417 * in the array, use {@code ByteSource.wrap(b).slice(offset, length)}. 418 * 419 * @since 15.0 (since 14.0 as {@code ByteStreams.asByteSource(byte[])}). 420 */ 421 public static ByteSource wrap(byte[] b) { 422 return new ByteArrayByteSource(b); 423 } 424 425 /** 426 * Returns an immutable {@link ByteSource} that contains no bytes. 427 * 428 * @since 15.0 429 */ 430 public static ByteSource empty() { 431 return EmptyByteSource.INSTANCE; 432 } 433 434 /** 435 * A char source that reads bytes from this source and decodes them as characters using a charset. 436 */ 437 class AsCharSource extends CharSource { 438 439 final Charset charset; 440 441 AsCharSource(Charset charset) { 442 this.charset = checkNotNull(charset); 443 } 444 445 @Override 446 public ByteSource asByteSource(Charset charset) { 447 if (charset.equals(this.charset)) { 448 return ByteSource.this; 449 } 450 return super.asByteSource(charset); 451 } 452 453 @Override 454 public Reader openStream() throws IOException { 455 return new InputStreamReader(ByteSource.this.openStream(), charset); 456 } 457 458 @Override 459 public String toString() { 460 return ByteSource.this.toString() + ".asCharSource(" + charset + ")"; 461 } 462 } 463 464 /** 465 * A view of a subsection of the containing byte source. 466 */ 467 private final class SlicedByteSource extends ByteSource { 468 469 final long offset; 470 final long length; 471 472 SlicedByteSource(long offset, long length) { 473 checkArgument(offset >= 0, "offset (%s) may not be negative", offset); 474 checkArgument(length >= 0, "length (%s) may not be negative", length); 475 this.offset = offset; 476 this.length = length; 477 } 478 479 @Override 480 public InputStream openStream() throws IOException { 481 return sliceStream(ByteSource.this.openStream()); 482 } 483 484 @Override 485 public InputStream openBufferedStream() throws IOException { 486 return sliceStream(ByteSource.this.openBufferedStream()); 487 } 488 489 private InputStream sliceStream(InputStream in) throws IOException { 490 if (offset > 0) { 491 long skipped; 492 try { 493 skipped = ByteStreams.skipUpTo(in, offset); 494 } catch (Throwable e) { 495 Closer closer = Closer.create(); 496 closer.register(in); 497 try { 498 throw closer.rethrow(e); 499 } finally { 500 closer.close(); 501 } 502 } 503 504 if (skipped < offset) { 505 // offset was beyond EOF 506 in.close(); 507 return new ByteArrayInputStream(new byte[0]); 508 } 509 } 510 return ByteStreams.limit(in, length); 511 } 512 513 @Override 514 public ByteSource slice(long offset, long length) { 515 checkArgument(offset >= 0, "offset (%s) may not be negative", offset); 516 checkArgument(length >= 0, "length (%s) may not be negative", length); 517 long maxLength = this.length - offset; 518 return ByteSource.this.slice(this.offset + offset, Math.min(length, maxLength)); 519 } 520 521 @Override 522 public boolean isEmpty() throws IOException { 523 return length == 0 || super.isEmpty(); 524 } 525 526 @Override 527 public Optional<Long> sizeIfKnown() { 528 Optional<Long> optionalUnslicedSize = ByteSource.this.sizeIfKnown(); 529 if (optionalUnslicedSize.isPresent()) { 530 long unslicedSize = optionalUnslicedSize.get(); 531 long off = Math.min(offset, unslicedSize); 532 return Optional.of(Math.min(length, unslicedSize - off)); 533 } 534 return Optional.absent(); 535 } 536 537 @Override 538 public String toString() { 539 return ByteSource.this.toString() + ".slice(" + offset + ", " + length + ")"; 540 } 541 } 542 543 private static class ByteArrayByteSource extends ByteSource { 544 545 final byte[] bytes; 546 final int offset; 547 final int length; 548 549 ByteArrayByteSource(byte[] bytes) { 550 this(bytes, 0, bytes.length); 551 } 552 553 // NOTE: Preconditions are enforced by slice, the only non-trivial caller. 554 ByteArrayByteSource(byte[] bytes, int offset, int length) { 555 this.bytes = bytes; 556 this.offset = offset; 557 this.length = length; 558 } 559 560 @Override 561 public InputStream openStream() { 562 return new ByteArrayInputStream(bytes, offset, length); 563 } 564 565 @Override 566 public InputStream openBufferedStream() throws IOException { 567 return openStream(); 568 } 569 570 @Override 571 public boolean isEmpty() { 572 return length == 0; 573 } 574 575 @Override 576 public long size() { 577 return length; 578 } 579 580 @Override 581 public Optional<Long> sizeIfKnown() { 582 return Optional.of((long) length); 583 } 584 585 @Override 586 public byte[] read() { 587 return Arrays.copyOfRange(bytes, offset, offset + length); 588 } 589 590 @Override 591 public long copyTo(OutputStream output) throws IOException { 592 output.write(bytes, offset, length); 593 return length; 594 } 595 596 @SuppressWarnings("CheckReturnValue") // it doesn't matter what processBytes returns here 597 @Override 598 public <T> T read(ByteProcessor<T> processor) throws IOException { 599 processor.processBytes(bytes, offset, length); 600 return processor.getResult(); 601 } 602 603 @Override 604 public HashCode hash(HashFunction hashFunction) throws IOException { 605 return hashFunction.hashBytes(bytes, offset, length); 606 } 607 608 @Override 609 public ByteSource slice(long offset, long length) { 610 checkArgument(offset >= 0, "offset (%s) may not be negative", offset); 611 checkArgument(length >= 0, "length (%s) may not be negative", length); 612 613 offset = Math.min(offset, this.length); 614 length = Math.min(length, this.length - offset); 615 int newOffset = this.offset + (int) offset; 616 return new ByteArrayByteSource(bytes, newOffset, (int) length); 617 } 618 619 @Override 620 public String toString() { 621 return "ByteSource.wrap(" 622 + Ascii.truncate(BaseEncoding.base16().encode(bytes, offset, length), 30, "...") + ")"; 623 } 624 } 625 626 private static final class EmptyByteSource extends ByteArrayByteSource { 627 628 static final EmptyByteSource INSTANCE = new EmptyByteSource(); 629 630 EmptyByteSource() { 631 super(new byte[0]); 632 } 633 634 @Override 635 public CharSource asCharSource(Charset charset) { 636 checkNotNull(charset); 637 return CharSource.empty(); 638 } 639 640 @Override 641 public byte[] read() { 642 return bytes; // length is 0, no need to clone 643 } 644 645 @Override 646 public String toString() { 647 return "ByteSource.empty()"; 648 } 649 } 650 651 private static final class ConcatenatedByteSource extends ByteSource { 652 653 final Iterable<? extends ByteSource> sources; 654 655 ConcatenatedByteSource(Iterable<? extends ByteSource> sources) { 656 this.sources = checkNotNull(sources); 657 } 658 659 @Override 660 public InputStream openStream() throws IOException { 661 return new MultiInputStream(sources.iterator()); 662 } 663 664 @Override 665 public boolean isEmpty() throws IOException { 666 for (ByteSource source : sources) { 667 if (!source.isEmpty()) { 668 return false; 669 } 670 } 671 return true; 672 } 673 674 @Override 675 public Optional<Long> sizeIfKnown() { 676 long result = 0L; 677 for (ByteSource source : sources) { 678 Optional<Long> sizeIfKnown = source.sizeIfKnown(); 679 if (!sizeIfKnown.isPresent()) { 680 return Optional.absent(); 681 } 682 result += sizeIfKnown.get(); 683 } 684 return Optional.of(result); 685 } 686 687 @Override 688 public long size() throws IOException { 689 long result = 0L; 690 for (ByteSource source : sources) { 691 result += source.size(); 692 } 693 return result; 694 } 695 696 @Override 697 public String toString() { 698 return "ByteSource.concat(" + sources + ")"; 699 } 700 } 701}