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.io;
018
019import static com.google.common.base.Preconditions.checkNotNull;
020
021import com.google.common.annotations.Beta;
022
023import java.io.FilterOutputStream;
024import java.io.IOException;
025import java.io.OutputStream;
026
027/**
028 * An OutputStream that counts the number of bytes written.
029 *
030 * @author Chris Nokleberg
031 * @since 1.0
032 */
033@Beta
034public final class CountingOutputStream extends FilterOutputStream {
035
036  private long count;
037
038  /**
039   * Wraps another output stream, counting the number of bytes written.
040   *
041   * @param out the output stream to be wrapped
042   */
043  public CountingOutputStream(OutputStream out) {
044    super(checkNotNull(out));
045  }
046
047  /** Returns the number of bytes written. */
048  public long getCount() {
049    return count;
050  }
051
052  @Override public void write(byte[] b, int off, int len) throws IOException {
053    out.write(b, off, len);
054    count += len;
055  }
056
057  @Override public void write(int b) throws IOException {
058    out.write(b);
059    count++;
060  }
061
062  // Overriding close() because FilterOutputStream's close() method pre-JDK8 has bad behavior:
063  // it silently ignores any exception thrown by flush(). Instead, just close the delegate stream.
064  // It should flush itself if necessary.
065  @Override public void close() throws IOException {
066    out.close();
067  }
068}