Coverage Report - eu.simuline.octave.util.TeeWriter
 
Classes in this File Line Coverage Branch Coverage Complexity
TeeWriter
61%
22/36
75%
9/12
3.4
 
 1  
 /*
 2  
  * Copyright 2007, 2008 Ange Optimization ApS
 3  
  *
 4  
  * Licensed under the Apache License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  *     http://www.apache.org/licenses/LICENSE-2.0
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 /** 
 17  
  * @author Kim Hansen
 18  
  */
 19  
 package eu.simuline.octave.util;
 20  
 
 21  
 import java.io.IOException;
 22  
 import java.io.Writer;
 23  
 
 24  
 import org.apache.commons.logging.LogFactory;
 25  
 import org.apache.commons.logging.Log;
 26  
 
 27  
 /**
 28  
  * Executes the actions on a single writer to multiple writers.
 29  
  * 
 30  
  * If the list of writers in the constructor is empty 
 31  
  * everything that is written will be discarted.
 32  
  * 
 33  
  * If there is thrown one or more exception all writers will still be accessed, 
 34  
  * the exceptions will be logged and the last exception thrown 
 35  
  * will be passed on outside.
 36  
  */
 37  
 public final class TeeWriter extends Writer {
 38  
 
 39  2
     private static final Log LOG = LogFactory.getLog(TeeWriter.class);
 40  
 
 41  
     private final Writer[] writers;
 42  
 
 43  
     /**
 44  
      * Create a writer that doesn't do anything.
 45  
      */
 46  
     public TeeWriter() {
 47  
 //        this.writers = new Writer[0];
 48  0
         this(new Writer[0]);
 49  0
     }
 50  
 
 51  
     /**
 52  
      * Create a single writer that writes to multiple writers.
 53  
      * 
 54  
      * @param writers
 55  
      *            the list of writers that should be written to.
 56  
      */
 57  4
     public TeeWriter(final Writer... writers) {
 58  4
         this.writers = writers;
 59  4
     }
 60  
 
 61  
     @Override
 62  
     public void write(final char[] cbuf, final int off, final int len) 
 63  
         throws IOException {
 64  
 
 65  28
         IOException ioe = null;
 66  84
         for (final Writer writer : writers) {
 67  
             try {
 68  56
                 writer.write(cbuf, off, len);
 69  0
             } catch (final IOException e) {
 70  0
                 LOG.debug("Exception during write()", e);
 71  0
                 ioe = e;
 72  56
             }
 73  
         }
 74  28
         if (ioe != null) {
 75  0
             throw ioe;
 76  
         }
 77  28
     }
 78  
 
 79  
     @Override
 80  
     public void flush() throws IOException {
 81  14
         IOException ioe = null;
 82  42
         for (final Writer writer : writers) {
 83  
             try {
 84  28
                 writer.flush();
 85  0
             } catch (final IOException e) {
 86  0
                 LOG.debug("Exception during flush()", e);
 87  0
                 ioe = e;
 88  28
             }
 89  
         }
 90  14
         if (ioe != null) {
 91  0
             throw ioe;
 92  
         }
 93  14
     }
 94  
 
 95  
     @Override
 96  
     public void close() throws IOException {
 97  2
         IOException ioe = null;
 98  6
         for (final Writer writer : writers) {
 99  
             try {
 100  4
                 writer.close();
 101  0
             } catch (final IOException e) {
 102  0
                 LOG.debug("Exception during close()", e);
 103  0
                 ioe = e;
 104  4
             }
 105  
         }
 106  2
         if (ioe != null) {
 107  0
             throw ioe;
 108  
         }
 109  2
     }
 110  
 
 111  
 }