001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.kernel.io.unsync;
016    
017    import java.io.IOException;
018    import java.io.OutputStream;
019    
020    /**
021     * <p>
022     * See http://issues.liferay.com/browse/LPS-6648.
023     * </p>
024     *
025     * @author Shuyang Zhou
026     */
027    public class UnsyncFilterOutputStream extends OutputStream {
028    
029            public UnsyncFilterOutputStream(OutputStream outputStream) {
030                    this.outputStream = outputStream;
031            }
032    
033            public void close() throws IOException {
034                    try {
035                            flush();
036                    }
037                    catch (IOException ioe) {
038                    }
039    
040                    outputStream.close();
041            }
042    
043            public void flush() throws IOException {
044                    outputStream.flush();
045            }
046    
047            public void write(byte[] byteArray) throws IOException {
048                    outputStream.write(byteArray, 0, byteArray.length);
049            }
050    
051            public void write(byte[] byteArray, int offset, int length)
052                    throws IOException {
053    
054                    outputStream.write(byteArray, offset, length);
055            }
056    
057            public void write(int b) throws IOException {
058                    outputStream.write(b);
059            }
060    
061            protected OutputStream outputStream;
062    
063    }